discourse/app/assets/javascripts/discourse-common/addon/lib/get-url.js
Robin Ward cbb27241c4
DEV: Make discourse-common an Ember addon. (#9578)
This is to help with the migration to Ember CLI. In the current running
version of Discourse everything should be the same as before, just with
a few extra files that are not used. However, using Ember CLI this can
be installed as an Ember addon.

Co-Authored-By: Jarek Radosz <jradosz@gmail.com>
2020-04-29 12:18:21 -04:00

20 lines
423 B
JavaScript

let baseUri;
export default function getURL(url) {
if (!url) return url;
if (!baseUri) {
baseUri = $('meta[name="discourse-base-uri"]').attr("content") || "";
}
// if it's a non relative URL, return it.
if (url !== "/" && !/^\/[^\/]/.test(url)) return url;
const found = url.indexOf(baseUri);
if (found >= 0 && found < 3) return url;
if (url[0] !== "/") url = "/" + url;
return baseUri + url;
}