diff options
Diffstat (limited to 'server/initializers/constants.ts')
-rw-r--r-- | server/initializers/constants.ts | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index f087b7476..928a3f570 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -61,7 +61,8 @@ const CONFIG = { | |||
61 | VIDEOS_DIR: join(root(), config.get<string>('storage.videos')), | 61 | VIDEOS_DIR: join(root(), config.get<string>('storage.videos')), |
62 | THUMBNAILS_DIR: join(root(), config.get<string>('storage.thumbnails')), | 62 | THUMBNAILS_DIR: join(root(), config.get<string>('storage.thumbnails')), |
63 | PREVIEWS_DIR: join(root(), config.get<string>('storage.previews')), | 63 | PREVIEWS_DIR: join(root(), config.get<string>('storage.previews')), |
64 | TORRENTS_DIR: join(root(), config.get<string>('storage.torrents')) | 64 | TORRENTS_DIR: join(root(), config.get<string>('storage.torrents')), |
65 | CACHE_DIR: join(root(), config.get<string>('storage.cache')) | ||
65 | }, | 66 | }, |
66 | WEBSERVER: { | 67 | WEBSERVER: { |
67 | SCHEME: config.get<boolean>('webserver.https') === true ? 'https' : 'http', | 68 | SCHEME: config.get<boolean>('webserver.https') === true ? 'https' : 'http', |
@@ -80,6 +81,11 @@ const CONFIG = { | |||
80 | TRANSCODING: { | 81 | TRANSCODING: { |
81 | ENABLED: config.get<boolean>('transcoding.enabled'), | 82 | ENABLED: config.get<boolean>('transcoding.enabled'), |
82 | THREADS: config.get<number>('transcoding.threads') | 83 | THREADS: config.get<number>('transcoding.threads') |
84 | }, | ||
85 | CACHE: { | ||
86 | PREVIEWS: { | ||
87 | SIZE: config.get<number>('cache.previews.size') | ||
88 | } | ||
83 | } | 89 | } |
84 | } | 90 | } |
85 | CONFIG.WEBSERVER.URL = CONFIG.WEBSERVER.SCHEME + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT | 91 | CONFIG.WEBSERVER.URL = CONFIG.WEBSERVER.SCHEME + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT |
@@ -278,6 +284,13 @@ let STATIC_MAX_AGE = '30d' | |||
278 | const THUMBNAILS_SIZE = '200x110' | 284 | const THUMBNAILS_SIZE = '200x110' |
279 | const PREVIEWS_SIZE = '640x480' | 285 | const PREVIEWS_SIZE = '640x480' |
280 | 286 | ||
287 | // Subfolders of cache directory | ||
288 | const CACHE = { | ||
289 | DIRECTORIES: { | ||
290 | PREVIEWS: join(CONFIG.STORAGE.CACHE_DIR, 'previews') | ||
291 | } | ||
292 | } | ||
293 | |||
281 | // --------------------------------------------------------------------------- | 294 | // --------------------------------------------------------------------------- |
282 | 295 | ||
283 | const USER_ROLES: { [ id: string ]: UserRole } = { | 296 | const USER_ROLES: { [ id: string ]: UserRole } = { |
@@ -307,6 +320,7 @@ if (isTestInstance() === true) { | |||
307 | export { | 320 | export { |
308 | API_VERSION, | 321 | API_VERSION, |
309 | BCRYPT_SALT_SIZE, | 322 | BCRYPT_SALT_SIZE, |
323 | CACHE, | ||
310 | CONFIG, | 324 | CONFIG, |
311 | CONSTRAINTS_FIELDS, | 325 | CONSTRAINTS_FIELDS, |
312 | FRIEND_SCORE, | 326 | FRIEND_SCORE, |