hexo/node_modules/hexo-util/lib/url_for.js

51 lines
1.4 KiB
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
'use strict';
const { parse } = require('url');
const encodeURL = require('./encode_url');
const relative_url = require('./relative_url');
const prettyUrls = require('./pretty_urls');
const Cache = require('./cache');
const cache = new Cache();
function urlForHelper(path = '/', options) {
if (/^(#|\/\/|http(s)?:)/.test(path)) return path;
const { config } = this;
options = Object.assign({
relative: config.relative_link
}, options);
// Resolve relative url
if (options.relative) {
return relative_url(this.path, path);
}
const { root } = config;
const prettyUrlsOptions = Object.assign({
trailing_index: true,
trailing_html: true
}, config.pretty_urls);
// cacheId is designed to works across different hexo.config & options
return cache.apply(`${config.url}-${root}-${prettyUrlsOptions.trailing_index}-${prettyUrlsOptions.trailing_html}-${path}`, () => {
const sitehost = parse(config.url).hostname || config.url;
const data = new URL(path, `http://${sitehost}`);
// Exit if input is an external link or a data url
if (data.hostname !== sitehost || data.origin === 'null') {
return path;
}
// Prepend root path
path = encodeURL((root + path).replace(/\/{2,}/g, '/'));
path = prettyUrls(path, prettyUrlsOptions);
return path;
});
}
module.exports = urlForHelper;