4265afe580
refs #9178 - we have to take care that we don't end up in circular dependencies - e.g. API requires UrlService and UrlService needs to require the API (for requesting data) - update the references - we would like to get rid of the utils folder, this is/was the most complicated change
15 lines
351 B
JavaScript
15 lines
351 B
JavaScript
var urlService = require('../../services/url'),
|
|
getUrl = require('./url');
|
|
|
|
function getCanonicalUrl(data) {
|
|
var url = urlService.utils.urlJoin(urlService.utils.urlFor('home', true), getUrl(data, false));
|
|
|
|
if (url.indexOf('/amp/')) {
|
|
url = url.replace(/\/amp\/$/i, '/');
|
|
}
|
|
|
|
return url;
|
|
}
|
|
|
|
module.exports = getCanonicalUrl;
|