df7e64fafa
refs #10790 - Moved /core/apps into core/frontend - Moved /core/server/helpers to /core/frontend/helpers along with /core/server/services/themes - Changed helper location in overrides - Moved /core/server/services/routing to /core/frontend/services - Moved /core/server/services/url to /core/frontend/services - Moved /core/server/data/meta to /core/frontend/meta - Moved /core/server/services/rss to /core/frontend/services - Moved /core/server/data/xml to /core/frontend/services
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
const crypto = require('crypto'),
|
|
config = require('../../server/config'),
|
|
imageLib = require('../../server/lib/image'),
|
|
urlUtils = require('../../server/lib/url-utils');
|
|
|
|
/**
|
|
* Serve either uploaded favicon or default
|
|
* @return {string}
|
|
*/
|
|
function getFaviconUrl() {
|
|
return imageLib.blogIcon.getIconUrl();
|
|
}
|
|
|
|
function getAssetUrl(path, hasMinFile) {
|
|
// CASE: favicon - this is special path with its own functionality
|
|
if (path.match(/\/?favicon\.(ico|png)$/)) {
|
|
// @TODO, resolve this - we should only be resolving subdirectory and extension.
|
|
return getFaviconUrl();
|
|
}
|
|
|
|
// CASE: Build the output URL
|
|
// Add subdirectory...
|
|
var output = urlUtils.urlJoin(urlUtils.getSubdir(), '/');
|
|
|
|
// Optionally add /assets/
|
|
if (!path.match(/^public/) && !path.match(/^asset/)) {
|
|
output = urlUtils.urlJoin(output, 'assets/');
|
|
}
|
|
|
|
// replace ".foo" with ".min.foo" if configured
|
|
if (hasMinFile && config.get('useMinFiles') !== false) {
|
|
path = path.replace(/\.([^.]*)$/, '.min.$1');
|
|
}
|
|
|
|
// Add the path for the requested asset
|
|
output = urlUtils.urlJoin(output, path);
|
|
|
|
// Ensure we have an assetHash
|
|
// @TODO rework this!
|
|
if (!config.get('assetHash')) {
|
|
config.set('assetHash', (crypto.createHash('md5').update(Date.now().toString()).digest('hex')).substring(0, 10));
|
|
}
|
|
|
|
// Finally add the asset hash to the output URL
|
|
output += '?v=' + config.get('assetHash');
|
|
|
|
return output;
|
|
}
|
|
|
|
module.exports = getAssetUrl;
|