« get me outta code hell

url-spec.js « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/url-spec.js
blob: 56366ed429b670de238f3cc2c2c0a60d60425ca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import {withEntries} from '#sugar';

// Static files are all grouped under a `static-${STATIC_VERSION}` folder as
// part of a build. This is so that multiple builds of a wiki can coexist
// served from the same server / file system root: older builds' HTML files
// refer to earlier values of STATIC_VERSION, avoiding name collisions.
const STATIC_VERSION = '3p2';

const genericPaths = {
  root: '',
  path: '<>',
};

const urlSpec = {
  data: {
    prefix: 'data/',

    paths: {
      ...genericPaths,

      album: 'album/<>',
      artist: 'artist/<>',
      track: 'track/<>',
    },
  },

  localized: {
    // TODO: Implement this.
    // prefix: '_languageCode',

    paths: {
      ...genericPaths,
      page: '<>/',

      home: '',

      album: 'album/<>/',
      albumCommentary: 'commentary/album/<>/',
      albumGallery: 'album/<>/gallery/',

      artist: 'artist/<>/',
      artistGallery: 'artist/<>/gallery/',

      commentaryIndex: 'commentary/',

      flashIndex: 'flash/',

      flash: 'flash/<>/',

      flashActGallery: 'flash-act/<>/',

      groupInfo: 'group/<>/',
      groupGallery: 'group/<>/gallery/',

      listingIndex: 'list/',

      listing: 'list/<>/',

      newsIndex: 'news/',

      newsEntry: 'news/<>/',

      staticPage: '<>/',

      tag: 'tag/<>/',

      track: 'track/<>/',
    },
  },

  shared: {
    paths: genericPaths,
  },

  staticCSS: {
    prefix: `static-${STATIC_VERSION}/css/`,
    paths: genericPaths,
  },

  staticJS: {
    prefix: `static-${STATIC_VERSION}/js/`,
    paths: genericPaths,
  },

  staticLib: {
    prefix: `static-${STATIC_VERSION}/lib/`,
    paths: genericPaths,
  },

  staticMisc: {
    prefix: `static-${STATIC_VERSION}/misc/`,
    paths: {
      ...genericPaths,
      icon: 'icons.svg#icon-<>',
    },
  },

  staticSharedUtil: {
    prefix: `static-${STATIC_VERSION}/shared-util/`,
    paths: genericPaths,
  },

  media: {
    prefix: 'media/',

    paths: {
      ...genericPaths,

      albumAdditionalFile: 'album-additional/<>/<>',
      albumBanner: 'album-art/<>/banner.<>',
      albumCover: 'album-art/<>/cover.<>',
      albumWallpaper: 'album-art/<>/bg.<>',

      artistAvatar: 'artist-avatar/<>.<>',

      flashArt: 'flash-art/<>.<>',

      trackCover: 'album-art/<>/<>.<>',
    },
  },

  thumb: {
    prefix: 'thumb/',
    paths: genericPaths,
  },

  searchData: {
    prefix: 'search-data/',
    paths: genericPaths,
  },
};

// This gets automatically switched in place when working from a baseDirectory,
// so it should never be referenced manually.
urlSpec.localizedWithBaseDirectory = {
  paths: withEntries(urlSpec.localized.paths, (entries) =>
    entries.map(([key, path]) => [key, '<>/' + path])),
};

export default urlSpec;