]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/initializers/constants.js
Prepare Angular routes
[github/Chocobozzz/PeerTube.git] / server / initializers / constants.js
CommitLineData
9f10b292
C
1'use strict'
2
3// API version of our pod
4var API_VERSION = 'v1'
5
6// Score a pod has when we create it as a friend
7var FRIEND_BASE_SCORE = 100
8
9// Time to wait between requests to the friends
10var INTERVAL = 60000
11
12// Number of points we add/remove from a friend after a successful/bad request
13var PODS_SCORE = {
14 MALUS: -10,
15 BONUS: 10
16}
17
18// Number of retries we make for the make retry requests (to friends...)
19var REQUEST_RETRIES = 10
20
21// Special constants for a test instance
22if (isTestInstance() === true) {
23 FRIEND_BASE_SCORE = 20
24 INTERVAL = 10000
25 REQUEST_RETRIES = 2
26}
27
28// ---------------------------------------------------------------------------
29
30module.exports = {
31 API_VERSION: API_VERSION,
32 FRIEND_BASE_SCORE: FRIEND_BASE_SCORE,
33 INTERVAL: INTERVAL,
34 PODS_SCORE: PODS_SCORE,
35 REQUEST_RETRIES: REQUEST_RETRIES
36}
37
38// ---------------------------------------------------------------------------
39
40function isTestInstance () {
41 return (process.env.NODE_ENV === 'test')
42}