« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/misc-templates.js11
-rw-r--r--src/strings-default.json1
2 files changed, 11 insertions, 1 deletions
diff --git a/src/misc-templates.js b/src/misc-templates.js
index 139978d..a6b39b9 100644
--- a/src/misc-templates.js
+++ b/src/misc-templates.js
@@ -199,8 +199,17 @@ export function getAlbumStylesheet(album, {to}) {
 // Fancy lookin' links
 
 export function fancifyURL(url, {strings, album = false} = {}) {
-    const domain = new URL(url).hostname;
+    let local = Symbol();
+    let domain;
+    try {
+        domain = new URL(url).hostname;
+    } catch (error) {
+        // No support for relative local URLs yet, sorry! (I.e, local URLs must
+        // be absolute relative to the domain name in order to work.)
+        domain = local;
+    }
     return fixWS`<a href="${url}" class="nowrap">${
+        domain === local ? strings('misc.external.local') :
         domain.includes('bandcamp.com') ? strings('misc.external.bandcamp') :
         [
             'music.solatrux.com'
diff --git a/src/strings-default.json b/src/strings-default.json
index c5132c0..b80c99f 100644
--- a/src/strings-default.json
+++ b/src/strings-default.json
@@ -114,6 +114,7 @@
     "misc.chronology.heading.flash": "{INDEX} flash/game by {ARTIST}",
     "misc.chronology.heading.track": "{INDEX} track by {ARTIST}",
     "misc.external.domain": "External ({DOMAIN})",
+    "misc.external.local": "Wiki Archive (local upload)",
     "misc.external.bandcamp": "Bandcamp",
     "misc.external.bandcamp.domain": "Bandcamp ({DOMAIN})",
     "misc.external.deviantart": "DeviantArt",