]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/initializers/constants.js
Refractoring and add thumbnails support (without tests)
[github/Chocobozzz/PeerTube.git] / server / initializers / constants.js
1 'use strict'
2
3 // API version of our pod
4 const API_VERSION = 'v1'
5
6 // Score a pod has when we create it as a friend
7 let FRIEND_BASE_SCORE = 100
8
9 // Time to wait between requests to the friends
10 let INTERVAL = 60000
11
12 // Number of points we add/remove from a friend after a successful/bad request
13 const PODS_SCORE = {
14 MALUS: -10,
15 BONUS: 10
16 }
17
18 // Number of retries we make for the make retry requests (to friends...)
19 let REQUEST_RETRIES = 10
20
21 // Videos thumbnail size
22 const THUMBNAILS_SIZE = '200x110'
23
24 // Path for access to thumbnails with express router
25 const THUMBNAILS_STATIC_PATH = '/static/thumbnails'
26
27 // Special constants for a test instance
28 if (isTestInstance() === true) {
29 FRIEND_BASE_SCORE = 20
30 INTERVAL = 10000
31 REQUEST_RETRIES = 2
32 }
33
34 // ---------------------------------------------------------------------------
35
36 module.exports = {
37 API_VERSION: API_VERSION,
38 FRIEND_BASE_SCORE: FRIEND_BASE_SCORE,
39 INTERVAL: INTERVAL,
40 PODS_SCORE: PODS_SCORE,
41 REQUEST_RETRIES: REQUEST_RETRIES,
42 THUMBNAILS_SIZE: THUMBNAILS_SIZE,
43 THUMBNAILS_STATIC_PATH: THUMBNAILS_STATIC_PATH
44 }
45
46 // ---------------------------------------------------------------------------
47
48 function isTestInstance () {
49 return (process.env.NODE_ENV === 'test')
50 }