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