diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-03-07 11:33:59 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-03-07 11:33:59 +0100 |
commit | b9a3e09ad5a7673f64556d1dba122ed4c4fac980 (patch) | |
tree | 66d4928b82af19a2372a2505822233884f3fd471 /server/initializers/constants.js | |
parent | b2ff5e3e686eb552c5ccd64ce67b0455972ceef0 (diff) | |
download | PeerTube-b9a3e09ad5a7673f64556d1dba122ed4c4fac980.tar.gz PeerTube-b9a3e09ad5a7673f64556d1dba122ed4c4fac980.tar.zst PeerTube-b9a3e09ad5a7673f64556d1dba122ed4c4fac980.zip |
Prepare folders structure for angular app
Diffstat (limited to 'server/initializers/constants.js')
-rw-r--r-- | server/initializers/constants.js | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/server/initializers/constants.js b/server/initializers/constants.js new file mode 100644 index 000000000..16e50443b --- /dev/null +++ b/server/initializers/constants.js | |||
@@ -0,0 +1,42 @@ | |||
1 | 'use strict' | ||
2 | |||
3 | // API version of our pod | ||
4 | var API_VERSION = 'v1' | ||
5 | |||
6 | // Score a pod has when we create it as a friend | ||
7 | var FRIEND_BASE_SCORE = 100 | ||
8 | |||
9 | // Time to wait between requests to the friends | ||
10 | var INTERVAL = 60000 | ||
11 | |||
12 | // Number of points we add/remove from a friend after a successful/bad request | ||
13 | var PODS_SCORE = { | ||
14 | MALUS: -10, | ||
15 | BONUS: 10 | ||
16 | } | ||
17 | |||
18 | // Number of retries we make for the make retry requests (to friends...) | ||
19 | var REQUEST_RETRIES = 10 | ||
20 | |||
21 | // Special constants for a test instance | ||
22 | if (isTestInstance() === true) { | ||
23 | FRIEND_BASE_SCORE = 20 | ||
24 | INTERVAL = 10000 | ||
25 | REQUEST_RETRIES = 2 | ||
26 | } | ||
27 | |||
28 | // --------------------------------------------------------------------------- | ||
29 | |||
30 | module.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 | |||
40 | function isTestInstance () { | ||
41 | return (process.env.NODE_ENV === 'test') | ||
42 | } | ||