PeerTube/initializers/constants.js

45 lines
1.0 KiB
JavaScript
Raw Normal View History

;(function () {
'use strict'
// API version of our pod
2016-01-31 10:23:52 +00:00
var API_VERSION = 'v1'
// Score a pod has when we create it as a friend
2016-01-31 10:23:52 +00:00
var FRIEND_BASE_SCORE = 100
// Time to wait between requests to the friends
2016-01-31 10:23:52 +00:00
var INTERVAL = 60000
// Number of points we add/remove from a friend after a successful/bad request
2016-01-31 10:23:52 +00:00
var PODS_SCORE = {
MALUS: -10,
BONUS: 10
}
// Number of retries we make for the make retry requests (to friends...)
2016-01-31 10:23:52 +00:00
var REQUEST_RETRIES = 10
// Special constants for a test instance
if (isTestInstance() === true) {
2016-01-31 10:23:52 +00:00
FRIEND_BASE_SCORE = 20
INTERVAL = 10000
REQUEST_RETRIES = 2
}
// ---------------------------------------------------------------------------
module.exports = {
API_VERSION: API_VERSION,
FRIEND_BASE_SCORE: FRIEND_BASE_SCORE,
INTERVAL: INTERVAL,
PODS_SCORE: PODS_SCORE,
REQUEST_RETRIES: REQUEST_RETRIES
}
2016-01-31 10:23:52 +00:00
// ---------------------------------------------------------------------------
function isTestInstance () {
return (process.env.NODE_ENV === 'test')
}
})()