2016-02-07 11:23:23 +01:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
// API version of our pod
|
2016-03-16 22:29:27 +01:00
|
|
|
const API_VERSION = 'v1'
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
// Score a pod has when we create it as a friend
|
2016-03-16 22:29:27 +01:00
|
|
|
let FRIEND_BASE_SCORE = 100
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
// Time to wait between requests to the friends
|
2016-03-16 22:29:27 +01:00
|
|
|
let INTERVAL = 60000
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
// Number of points we add/remove from a friend after a successful/bad request
|
2016-03-16 22:29:27 +01:00
|
|
|
const PODS_SCORE = {
|
2016-02-07 11:23:23 +01:00
|
|
|
MALUS: -10,
|
|
|
|
BONUS: 10
|
|
|
|
}
|
|
|
|
|
|
|
|
// Number of retries we make for the make retry requests (to friends...)
|
2016-03-16 22:29:27 +01:00
|
|
|
let REQUEST_RETRIES = 10
|
2016-02-07 11:23:23 +01:00
|
|
|
|
|
|
|
// Special constants for a test instance
|
|
|
|
if (isTestInstance() === true) {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function isTestInstance () {
|
|
|
|
return (process.env.NODE_ENV === 'test')
|
|
|
|
}
|