]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/initializers/constants.js
Update node for travis
[github/Chocobozzz/PeerTube.git] / server / initializers / constants.js
CommitLineData
9f10b292
C
1'use strict'
2
3// API version of our pod
f0f5567b 4const API_VERSION = 'v1'
9f10b292
C
5
6// Score a pod has when we create it as a friend
f0f5567b 7let FRIEND_BASE_SCORE = 100
9f10b292
C
8
9// Time to wait between requests to the friends
f0f5567b 10let INTERVAL = 60000
9f10b292 11
a996fc4a
C
12// Max length of the author username
13const MAXIMUM_AUTHOR_LENGTH = 20
67100f1f
C
14// 2 hours maximum for the duration of a video (in seconds)
15let MAXIMUM_VIDEO_DURATION = 7200
16
3fe81fa7
C
17// Number of results by default for the pagination
18const PAGINATION_COUNT_DEFAULT = 15
19
9f10b292 20// Number of points we add/remove from a friend after a successful/bad request
f0f5567b 21const PODS_SCORE = {
9f10b292
C
22 MALUS: -10,
23 BONUS: 10
24}
25
26// Number of retries we make for the make retry requests (to friends...)
f0f5567b 27let REQUEST_RETRIES = 10
9f10b292 28
a877d5ac
C
29// Sortable columns per schema
30const SORTABLE_COLUMNS = {
31 VIDEOS: [ 'name', '-name', 'duration', '-duration', 'createdDate', '-createdDate' ]
32}
33
cbe2f7c3
C
34// Videos thumbnail size
35const THUMBNAILS_SIZE = '200x110'
36
37// Path for access to thumbnails with express router
38const THUMBNAILS_STATIC_PATH = '/static/thumbnails'
39
9f10b292
C
40// Special constants for a test instance
41if (isTestInstance() === true) {
42 FRIEND_BASE_SCORE = 20
43 INTERVAL = 10000
67100f1f 44 MAXIMUM_VIDEO_DURATION = 14
9f10b292
C
45 REQUEST_RETRIES = 2
46}
47
48// ---------------------------------------------------------------------------
49
50module.exports = {
51 API_VERSION: API_VERSION,
52 FRIEND_BASE_SCORE: FRIEND_BASE_SCORE,
53 INTERVAL: INTERVAL,
a996fc4a 54 MAXIMUM_AUTHOR_LENGTH: MAXIMUM_AUTHOR_LENGTH,
67100f1f 55 MAXIMUM_VIDEO_DURATION: MAXIMUM_VIDEO_DURATION,
3fe81fa7 56 PAGINATION_COUNT_DEFAULT: PAGINATION_COUNT_DEFAULT,
9f10b292 57 PODS_SCORE: PODS_SCORE,
cbe2f7c3 58 REQUEST_RETRIES: REQUEST_RETRIES,
a877d5ac 59 SORTABLE_COLUMNS: SORTABLE_COLUMNS,
cbe2f7c3
C
60 THUMBNAILS_SIZE: THUMBNAILS_SIZE,
61 THUMBNAILS_STATIC_PATH: THUMBNAILS_STATIC_PATH
9f10b292
C
62}
63
64// ---------------------------------------------------------------------------
65
66function isTestInstance () {
67 return (process.env.NODE_ENV === 'test')
68}