Ghost/core/frontend/meta/asset-url.js
Torsten Zander f1b71f7fd7
🐛 Fixed AssetHelper not working with svg (#13978)
loses TryGhost#13971

This fixes an issue with links containing # anchor. It makes sure the # part is at the end of the url like url?v=hash#anhor

Co-authored-by: Hannah Wolfe <github.erisds@gmail.com>
2022-02-07 15:07:18 +00:00

62 lines
1.8 KiB
JavaScript

const crypto = require('crypto');
const config = require('../../shared/config');
const {blogIcon} = require('../../server/lib/image');
const urlUtils = require('../../shared/url-utils');
/**
* Serve either uploaded favicon or default
* @return {string}
*/
function getFaviconUrl() {
return 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...
let 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));
}
// if url has # make sure the hash is at th right place
let anchor;
if (path.match('#')) {
const index = output.indexOf('#');
anchor = output.substring(index);
output = output.slice(0, index);
}
// Finally add the asset hash to the output URL
output += '?v=' + config.get('assetHash');
if (anchor) {
output += anchor;
}
return output;
}
module.exports = getAssetUrl;