« 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: bab97efafcbe787158fbc2059a26f396855b6594 (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
/** @format */

import {withEntries} from './util/sugar.js';

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

    paths: {
      root: '',
      path: '<>',

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

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

    paths: {
      root: '',
      path: '<>',

      home: '',

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

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

      commentaryIndex: 'commentary/',

      flashIndex: 'flash/',
      flash: 'flash/<>/',

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

      listingIndex: 'list/',
      listing: 'list/<>/',

      newsIndex: 'news/',
      newsEntry: 'news/<>/',

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

  shared: {
    paths: {
      root: '',
      path: '<>',

      utilityRoot: 'util',
      staticRoot: 'static',

      utilityFile: 'util/<>',
      staticFile: 'static/<>',
    },
  },

  media: {
    prefix: 'media/',

    paths: {
      root: '',
      path: '<>',

      albumCover: 'album-art/<>/cover.<>',
      albumWallpaper: 'album-art/<>/bg.<>',
      albumBanner: 'album-art/<>/banner.<>',
      trackCover: 'album-art/<>/<>.<>',
      artistAvatar: 'artist-avatar/<>.<>',
      flashArt: 'flash-art/<>.<>',
      albumAdditionalFile: 'album-additional/<>/<>',
    },
  },
};

// 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;