Merge branch 'master' into webseed-merged
[oweals/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', 'podUrl', 'author', 'tags' ]
17 }
18
19 // Sortable columns per schema
20 const SORTABLE_COLUMNS = {
21   USERS: [ 'username', '-username', 'createdDate', '-createdDate' ],
22   VIDEOS: [ 'name', '-name', 'duration', '-duration', 'createdDate', '-createdDate' ]
23 }
24
25 const OAUTH_LIFETIME = {
26   ACCESS_TOKEN: 3600 * 4, // 4 hours
27   REFRESH_TOKEN: 1209600 // 2 weeks
28 }
29
30 // ---------------------------------------------------------------------------
31
32 const CONFIG = {
33   DATABASE: {
34     DBNAME: 'peertube' + config.get('database.suffix'),
35     HOST: config.get('database.host'),
36     PORT: config.get('database.port')
37   },
38   ELECTRON: {
39     DEBUG: config.get('electron.debug')
40   },
41   STORAGE: {
42     CERT_DIR: path.join(__dirname, '..', '..', config.get('storage.certs')),
43     LOG_DIR: path.join(__dirname, '..', '..', config.get('storage.logs')),
44     UPLOAD_DIR: path.join(__dirname, '..', '..', config.get('storage.uploads')),
45     THUMBNAILS_DIR: path.join(__dirname, '..', '..', config.get('storage.thumbnails'))
46   },
47   WEBSERVER: {
48     SCHEME: config.get('webserver.https') === true ? 'https' : 'http',
49     HOST: config.get('webserver.host'),
50     PORT: config.get('webserver.port')
51   }
52 }
53 CONFIG.WEBSERVER.URL = CONFIG.WEBSERVER.SCHEME + '://' + CONFIG.WEBSERVER.HOST + ':' + CONFIG.WEBSERVER.PORT
54
55 // ---------------------------------------------------------------------------
56
57 const CONSTRAINTS_FIELDS = {
58   USERS: {
59     USERNAME: { min: 3, max: 20 }, // Length
60     PASSWORD: { min: 6, max: 255 } // Length
61   },
62   VIDEOS: {
63     NAME: { min: 3, max: 50 }, // Length
64     DESCRIPTION: { min: 3, max: 250 }, // Length
65     MAGNET_URI: { min: 10 }, // Length
66     DURATION: { min: 1, max: 7200 }, // Number
67     TAGS: { min: 1, max: 3 }, // Number of total tags
68     TAG: { min: 2, max: 10 }, // Length
69     THUMBNAIL: { min: 2, max: 30 },
70     THUMBNAIL64: { min: 0, max: 20000 } // Bytes
71   }
72 }
73
74 // ---------------------------------------------------------------------------
75
76 // Score a pod has when we create it as a friend
77 const FRIEND_SCORE = {
78   BASE: 100,
79   MAX: 1000
80 }
81
82 // ---------------------------------------------------------------------------
83
84 const MONGO_MIGRATION_SCRIPTS = [
85   {
86     script: '0005-create-application',
87     version: 5
88   },
89   {
90     script: '0010-users-password',
91     version: 10
92   },
93   {
94     script: '0015-admin-role',
95     version: 15
96   }
97 ]
98 const LAST_MONGO_SCHEMA_VERSION = 15
99
100 // ---------------------------------------------------------------------------
101
102 // Number of points we add/remove from a friend after a successful/bad request
103 const PODS_SCORE = {
104   MALUS: -10,
105   BONUS: 10
106 }
107
108 // Time to wait between requests to the friends (10 min)
109 let REQUESTS_INTERVAL = 600000
110
111 // Number of requests in parallel we can make
112 const REQUESTS_IN_PARALLEL = 10
113
114 // How many requests we put in request
115 const REQUESTS_LIMIT = 10
116
117 // Number of requests to retry for replay requests module
118 const RETRY_REQUESTS = 5
119
120 // ---------------------------------------------------------------------------
121
122 // Password encryption
123 const BCRYPT_SALT_SIZE = 10
124
125 // Express static paths (router)
126 const STATIC_PATHS = {
127   THUMBNAILS: '/static/thumbnails',
128   TORRENTS: '/static/torrents/',
129   WEBSEED: '/static/webseed/'
130 }
131
132 // Videos thumbnail size
133 const THUMBNAILS_SIZE = '200x110'
134
135 const USER_ROLES = {
136   ADMIN: 'admin',
137   USER: 'user'
138 }
139
140 // Seeds in parallel we send to electron when "seed all"
141 // Once a video is in seeding state we seed another video etc
142 const SEEDS_IN_PARALLEL = 3
143
144 // ---------------------------------------------------------------------------
145
146 // Special constants for a test instance
147 if (isTestInstance() === true) {
148   CONSTRAINTS_FIELDS.VIDEOS.DURATION.max = 14
149   FRIEND_SCORE.BASE = 20
150   REQUESTS_INTERVAL = 10000
151 }
152
153 // ---------------------------------------------------------------------------
154
155 module.exports = {
156   API_VERSION,
157   BCRYPT_SALT_SIZE,
158   CONFIG,
159   CONSTRAINTS_FIELDS,
160   FRIEND_SCORE,
161   LAST_MONGO_SCHEMA_VERSION,
162   MONGO_MIGRATION_SCRIPTS,
163   OAUTH_LIFETIME,
164   PAGINATION_COUNT_DEFAULT,
165   PODS_SCORE,
166   REQUESTS_IN_PARALLEL,
167   REQUESTS_INTERVAL,
168   REQUESTS_LIMIT,
169   RETRY_REQUESTS,
170   SEARCHABLE_COLUMNS,
171   SEEDS_IN_PARALLEL,
172   SORTABLE_COLUMNS,
173   STATIC_PATHS,
174   THUMBNAILS_SIZE,
175   USER_ROLES
176 }
177
178 // ---------------------------------------------------------------------------
179
180 function isTestInstance () {
181   return (process.env.NODE_ENV === 'test')
182 }