]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/initializers/constants.js
Server: remote request process refractoring
[github/Chocobozzz/PeerTube.git] / server / initializers / constants.js
CommitLineData
9f10b292
C
1'use strict'
2
e861452f
C
3const config = require('config')
4const path = require('path')
5
9f6bae3a
C
6// ---------------------------------------------------------------------------
7
8// API version
f0f5567b 9const API_VERSION = 'v1'
9f10b292 10
9f6bae3a
C
11// Number of results by default for the pagination
12const PAGINATION_COUNT_DEFAULT = 15
13
14// Sortable columns per schema
15const SEARCHABLE_COLUMNS = {
feb4bdfd 16 VIDEOS: [ 'name', 'magnetUri', 'host', 'author', 'tags' ]
a3ee6fa2 17}
9f10b292 18
9f6bae3a
C
19// Sortable columns per schema
20const SORTABLE_COLUMNS = {
feb4bdfd 21 USERS: [ 'username', '-username', 'createdAt', '-createdAt' ],
55fa55a9 22 VIDEO_ABUSES: [ 'createdAt', '-createdAt' ],
feb4bdfd 23 VIDEOS: [ 'name', '-name', 'duration', '-duration', 'createdAt', '-createdAt' ]
9f6bae3a 24}
9f10b292 25
2f372a86
C
26const OAUTH_LIFETIME = {
27 ACCESS_TOKEN: 3600 * 4, // 4 hours
28 REFRESH_TOKEN: 1209600 // 2 weeks
29}
30
9f6bae3a 31// ---------------------------------------------------------------------------
26d7d31b 32
e861452f 33const CONFIG = {
d16b5172
C
34 LISTEN: {
35 PORT: config.get('listen.port')
36 },
e861452f
C
37 DATABASE: {
38 DBNAME: 'peertube' + config.get('database.suffix'),
3737bbaf 39 HOSTNAME: config.get('database.hostname'),
b769007f
C
40 PORT: config.get('database.port'),
41 USERNAME: config.get('database.username'),
42 PASSWORD: config.get('database.password')
e861452f 43 },
e861452f
C
44 STORAGE: {
45 CERT_DIR: path.join(__dirname, '..', '..', config.get('storage.certs')),
46 LOG_DIR: path.join(__dirname, '..', '..', config.get('storage.logs')),
b3d92510 47 VIDEOS_DIR: path.join(__dirname, '..', '..', config.get('storage.videos')),
bf94b6f0 48 THUMBNAILS_DIR: path.join(__dirname, '..', '..', config.get('storage.thumbnails')),
6a94a109 49 PREVIEWS_DIR: path.join(__dirname, '..', '..', config.get('storage.previews')),
bf94b6f0 50 TORRENTS_DIR: path.join(__dirname, '..', '..', config.get('storage.torrents'))
e861452f
C
51 },
52 WEBSERVER: {
53 SCHEME: config.get('webserver.https') === true ? 'https' : 'http',
25cad919 54 WS: config.get('webserver.https') === true ? 'wss' : 'ws',
3737bbaf 55 HOSTNAME: config.get('webserver.hostname'),
e861452f
C
56 PORT: config.get('webserver.port')
57 }
58}
3737bbaf 59CONFIG.WEBSERVER.URL = CONFIG.WEBSERVER.SCHEME + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
49abbbbe 60CONFIG.WEBSERVER.HOST = CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
e861452f 61
9f6bae3a
C
62// ---------------------------------------------------------------------------
63
e4c55619
C
64const CONSTRAINTS_FIELDS = {
65 USERS: {
66 USERNAME: { min: 3, max: 20 }, // Length
67 PASSWORD: { min: 6, max: 255 } // Length
68 },
55fa55a9
C
69 VIDEO_ABUSES: {
70 REASON: { min: 2, max: 300 } // Length
71 },
e4c55619
C
72 VIDEOS: {
73 NAME: { min: 3, max: 50 }, // Length
74 DESCRIPTION: { min: 3, max: 250 }, // Length
feb4bdfd 75 EXTNAME: [ '.mp4', '.ogv', '.webm' ],
67bf9b96 76 INFO_HASH: { min: 40, max: 40 }, // Length, infohash is 20 bytes length but we represent it in hexa so 20 * 2
e4c55619
C
77 DURATION: { min: 1, max: 7200 }, // Number
78 TAGS: { min: 1, max: 3 }, // Number of total tags
79 TAG: { min: 2, max: 10 }, // Length
80 THUMBNAIL: { min: 2, max: 30 },
4d324488 81 THUMBNAIL_DATA: { min: 0, max: 20000 } // Bytes
e4c55619
C
82 }
83}
84
9f6bae3a
C
85// ---------------------------------------------------------------------------
86
9f10b292 87// Score a pod has when we create it as a friend
a3ee6fa2
C
88const FRIEND_SCORE = {
89 BASE: 100,
90 MAX: 1000
91}
9f10b292 92
9f6bae3a
C
93// ---------------------------------------------------------------------------
94
b769007f 95const LAST_MIGRATION_VERSION = 0
00d6b0dd 96
9f6bae3a 97// ---------------------------------------------------------------------------
3fe81fa7 98
9f10b292 99// Number of points we add/remove from a friend after a successful/bad request
f0f5567b 100const PODS_SCORE = {
9f10b292
C
101 MALUS: -10,
102 BONUS: 10
103}
104
9f6bae3a
C
105// Time to wait between requests to the friends (10 min)
106let REQUESTS_INTERVAL = 600000
107
528a9efa
C
108// Number of requests in parallel we can make
109const REQUESTS_IN_PARALLEL = 10
9f10b292 110
bd14d16a
C
111// To how many pods we send requests
112const REQUESTS_LIMIT_PODS = 10
113// How many requests we send to a pod per interval
114const REQUESTS_LIMIT_PER_POD = 5
b3595463 115
528a9efa
C
116// Number of requests to retry for replay requests module
117const RETRY_REQUESTS = 5
8c255eb5 118
4b08096b
C
119const REQUEST_ENDPOINTS = {
120 VIDEOS: 'videos'
121}
62f4ef41
C
122const REQUEST_ENDPOINT_ACTIONS = {}
123REQUEST_ENDPOINT_ACTIONS[REQUEST_ENDPOINTS.VIDEOS] = {
124 ADD: 'add',
125 UPDATE: 'update',
126 REMOVE: 'remove',
127 REPORT_ABUSE: 'report-abuse'
128}
4b08096b 129
f285faa0
C
130const REMOTE_SCHEME = {
131 HTTP: 'https',
441b66f8 132 WS: 'wss'
f285faa0
C
133}
134
bdfbd4f1
C
135// ---------------------------------------------------------------------------
136
137const SIGNATURE_ALGORITHM = 'RSA-SHA256'
138const SIGNATURE_ENCODING = 'hex'
139
9f6bae3a
C
140// Password encryption
141const BCRYPT_SALT_SIZE = 10
a877d5ac 142
bdfbd4f1
C
143// ---------------------------------------------------------------------------
144
052937db
C
145// Express static paths (router)
146const STATIC_PATHS = {
f285faa0
C
147 PREVIEWS: '/static/previews/',
148 THUMBNAILS: '/static/thumbnails/',
052937db
C
149 TORRENTS: '/static/torrents/',
150 WEBSEED: '/static/webseed/'
151}
152
dc009132
C
153// Cache control
154let STATIC_MAX_AGE = '30d'
155
cbe2f7c3
C
156// Videos thumbnail size
157const THUMBNAILS_SIZE = '200x110'
6a94a109 158const PREVIEWS_SIZE = '640x480'
cbe2f7c3 159
bdfbd4f1
C
160// ---------------------------------------------------------------------------
161
9bd26629
C
162const USER_ROLES = {
163 ADMIN: 'admin',
164 USER: 'user'
be587647
C
165}
166
9f6bae3a
C
167// ---------------------------------------------------------------------------
168
9f10b292
C
169// Special constants for a test instance
170if (isTestInstance() === true) {
9f6bae3a 171 CONSTRAINTS_FIELDS.VIDEOS.DURATION.max = 14
a3ee6fa2 172 FRIEND_SCORE.BASE = 20
d3cd34be 173 REQUESTS_INTERVAL = 10000
f285faa0
C
174 REMOTE_SCHEME.HTTP = 'http'
175 REMOTE_SCHEME.WS = 'ws'
dc009132 176 STATIC_MAX_AGE = 0
9f10b292
C
177}
178
179// ---------------------------------------------------------------------------
180
181module.exports = {
9f6bae3a
C
182 API_VERSION,
183 BCRYPT_SALT_SIZE,
184 CONFIG,
185 CONSTRAINTS_FIELDS,
186 FRIEND_SCORE,
b769007f 187 LAST_MIGRATION_VERSION,
9f6bae3a
C
188 OAUTH_LIFETIME,
189 PAGINATION_COUNT_DEFAULT,
190 PODS_SCORE,
f285faa0
C
191 PREVIEWS_SIZE,
192 REMOTE_SCHEME,
4b08096b 193 REQUEST_ENDPOINTS,
62f4ef41 194 REQUEST_ENDPOINT_ACTIONS,
9f6bae3a
C
195 REQUESTS_IN_PARALLEL,
196 REQUESTS_INTERVAL,
bd14d16a
C
197 REQUESTS_LIMIT_PODS,
198 REQUESTS_LIMIT_PER_POD,
9f6bae3a
C
199 RETRY_REQUESTS,
200 SEARCHABLE_COLUMNS,
bdfbd4f1
C
201 SIGNATURE_ALGORITHM,
202 SIGNATURE_ENCODING,
9f6bae3a 203 SORTABLE_COLUMNS,
dc009132 204 STATIC_MAX_AGE,
a6375e69 205 STATIC_PATHS,
9f6bae3a 206 THUMBNAILS_SIZE,
9f6bae3a 207 USER_ROLES
9f10b292
C
208}
209
210// ---------------------------------------------------------------------------
211
441b66f8 212// This method exists in utils module but we want to let the constants module independent
9f10b292
C
213function isTestInstance () {
214 return (process.env.NODE_ENV === 'test')
215}