]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/initializers/constants.js
d8a13d066930adab55fd196ab7453995b0fa8246
[github/Chocobozzz/PeerTube.git] / server / initializers / constants.js
1 'use strict'
2
3 const config = require('config')
4 const maxBy = require('lodash/maxBy')
5 const path = require('path')
6
7 // ---------------------------------------------------------------------------
8
9 // API version
10 const API_VERSION = 'v1'
11
12 // Number of results by default for the pagination
13 const PAGINATION_COUNT_DEFAULT = 15
14
15 // Sortable columns per schema
16 const SEARCHABLE_COLUMNS = {
17 VIDEOS: [ 'name', 'magnetUri', 'podHost', 'author', 'tags' ]
18 }
19
20 // Sortable columns per schema
21 const SORTABLE_COLUMNS = {
22 USERS: [ 'username', '-username', 'createdDate', '-createdDate' ],
23 VIDEOS: [ 'name', '-name', 'duration', '-duration', 'createdDate', '-createdDate' ]
24 }
25
26 const OAUTH_LIFETIME = {
27 ACCESS_TOKEN: 3600 * 4, // 4 hours
28 REFRESH_TOKEN: 1209600 // 2 weeks
29 }
30
31 // ---------------------------------------------------------------------------
32
33 const CONFIG = {
34 LISTEN: {
35 PORT: config.get('listen.port')
36 },
37 DATABASE: {
38 DBNAME: 'peertube' + config.get('database.suffix'),
39 HOSTNAME: config.get('database.hostname'),
40 PORT: config.get('database.port')
41 },
42 STORAGE: {
43 CERT_DIR: path.join(__dirname, '..', '..', config.get('storage.certs')),
44 LOG_DIR: path.join(__dirname, '..', '..', config.get('storage.logs')),
45 VIDEOS_DIR: path.join(__dirname, '..', '..', config.get('storage.videos')),
46 THUMBNAILS_DIR: path.join(__dirname, '..', '..', config.get('storage.thumbnails')),
47 PREVIEWS_DIR: path.join(__dirname, '..', '..', config.get('storage.previews')),
48 TORRENTS_DIR: path.join(__dirname, '..', '..', config.get('storage.torrents'))
49 },
50 WEBSERVER: {
51 SCHEME: config.get('webserver.https') === true ? 'https' : 'http',
52 WS: config.get('webserver.https') === true ? 'wss' : 'ws',
53 HOSTNAME: config.get('webserver.hostname'),
54 PORT: config.get('webserver.port')
55 }
56 }
57 CONFIG.WEBSERVER.URL = CONFIG.WEBSERVER.SCHEME + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
58 CONFIG.WEBSERVER.HOST = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
59
60 // ---------------------------------------------------------------------------
61
62 const CONSTRAINTS_FIELDS = {
63 USERS: {
64 USERNAME: { min: 3, max: 20 }, // Length
65 PASSWORD: { min: 6, max: 255 } // Length
66 },
67 VIDEOS: {
68 NAME: { min: 3, max: 50 }, // Length
69 DESCRIPTION: { min: 3, max: 250 }, // Length
70 MAGNET: {
71 INFO_HASH: { min: 10, max: 50 } // Length
72 },
73 DURATION: { min: 1, max: 7200 }, // Number
74 TAGS: { min: 1, max: 3 }, // Number of total tags
75 TAG: { min: 2, max: 10 }, // Length
76 THUMBNAIL: { min: 2, max: 30 },
77 THUMBNAIL64: { min: 0, max: 20000 } // Bytes
78 }
79 }
80
81 // ---------------------------------------------------------------------------
82
83 // Score a pod has when we create it as a friend
84 const FRIEND_SCORE = {
85 BASE: 100,
86 MAX: 1000
87 }
88
89 // ---------------------------------------------------------------------------
90
91 const MONGO_MIGRATION_SCRIPTS = [
92 {
93 script: '0005-create-application',
94 version: 5
95 },
96 {
97 script: '0010-users-password',
98 version: 10
99 },
100 {
101 script: '0015-admin-role',
102 version: 15
103 },
104 {
105 script: '0020-requests-endpoint',
106 version: 20
107 }
108 ]
109 const LAST_MONGO_SCHEMA_VERSION = (maxBy(MONGO_MIGRATION_SCRIPTS, 'version'))['version']
110
111 // ---------------------------------------------------------------------------
112
113 // Number of points we add/remove from a friend after a successful/bad request
114 const PODS_SCORE = {
115 MALUS: -10,
116 BONUS: 10
117 }
118
119 // Time to wait between requests to the friends (10 min)
120 let REQUESTS_INTERVAL = 600000
121
122 // Number of requests in parallel we can make
123 const REQUESTS_IN_PARALLEL = 10
124
125 // How many requests we put in request
126 const REQUESTS_LIMIT = 10
127
128 // Number of requests to retry for replay requests module
129 const RETRY_REQUESTS = 5
130
131 const REQUEST_ENDPOINTS = {
132 VIDEOS: 'videos'
133 }
134
135 // ---------------------------------------------------------------------------
136
137 const REMOTE_SCHEME = {
138 HTTP: 'https',
139 WS: 'WS'
140 }
141
142 // Password encryption
143 const BCRYPT_SALT_SIZE = 10
144
145 // Express static paths (router)
146 const STATIC_PATHS = {
147 PREVIEWS: '/static/previews/',
148 THUMBNAILS: '/static/thumbnails/',
149 TORRENTS: '/static/torrents/',
150 WEBSEED: '/static/webseed/'
151 }
152
153 // Cache control
154 let STATIC_MAX_AGE = '30d'
155
156 // Videos thumbnail size
157 const THUMBNAILS_SIZE = '200x110'
158 const PREVIEWS_SIZE = '640x480'
159
160 const USER_ROLES = {
161 ADMIN: 'admin',
162 USER: 'user'
163 }
164
165 // ---------------------------------------------------------------------------
166
167 // Special constants for a test instance
168 if (isTestInstance() === true) {
169 CONSTRAINTS_FIELDS.VIDEOS.DURATION.max = 14
170 FRIEND_SCORE.BASE = 20
171 REQUESTS_INTERVAL = 10000
172 REMOTE_SCHEME.HTTP = 'http'
173 REMOTE_SCHEME.WS = 'ws'
174 STATIC_MAX_AGE = 0
175 }
176
177 // ---------------------------------------------------------------------------
178
179 module.exports = {
180 API_VERSION,
181 BCRYPT_SALT_SIZE,
182 CONFIG,
183 CONSTRAINTS_FIELDS,
184 FRIEND_SCORE,
185 LAST_MONGO_SCHEMA_VERSION,
186 MONGO_MIGRATION_SCRIPTS,
187 OAUTH_LIFETIME,
188 PAGINATION_COUNT_DEFAULT,
189 PODS_SCORE,
190 PREVIEWS_SIZE,
191 REMOTE_SCHEME,
192 REQUEST_ENDPOINTS,
193 REQUESTS_IN_PARALLEL,
194 REQUESTS_INTERVAL,
195 REQUESTS_LIMIT,
196 RETRY_REQUESTS,
197 SEARCHABLE_COLUMNS,
198 SORTABLE_COLUMNS,
199 STATIC_MAX_AGE,
200 STATIC_PATHS,
201 THUMBNAILS_SIZE,
202 USER_ROLES
203 }
204
205 // ---------------------------------------------------------------------------
206
207 function isTestInstance () {
208 return (process.env.NODE_ENV === 'test')
209 }