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