WIP plugins: add ability to register plugins
[oweals/peertube.git] / server / initializers / config.ts
1 import { IConfig } from 'config'
2 import { dirname, join } from 'path'
3 import { VideosRedundancy } from '../../shared/models'
4 // Do not use barrels, remain constants as independent as possible
5 import { buildPath, parseBytes, parseDurationToMs, root } from '../helpers/core-utils'
6 import { NSFWPolicyType } from '../../shared/models/videos/nsfw-policy.type'
7 import * as bytes from 'bytes'
8
9 // Use a variable to reload the configuration if we need
10 let config: IConfig = require('config')
11
12 const configChangedHandlers: Function[] = []
13
14 const CONFIG = {
15   CUSTOM_FILE: getLocalConfigFilePath(),
16   LISTEN: {
17     PORT: config.get<number>('listen.port'),
18     HOSTNAME: config.get<string>('listen.hostname')
19   },
20   DATABASE: {
21     DBNAME: 'peertube' + config.get<string>('database.suffix'),
22     HOSTNAME: config.get<string>('database.hostname'),
23     PORT: config.get<number>('database.port'),
24     USERNAME: config.get<string>('database.username'),
25     PASSWORD: config.get<string>('database.password'),
26     POOL: {
27       MAX: config.get<number>('database.pool.max')
28     }
29   },
30   REDIS: {
31     HOSTNAME: config.has('redis.hostname') ? config.get<string>('redis.hostname') : null,
32     PORT: config.has('redis.port') ? config.get<number>('redis.port') : null,
33     SOCKET: config.has('redis.socket') ? config.get<string>('redis.socket') : null,
34     AUTH: config.has('redis.auth') ? config.get<string>('redis.auth') : null,
35     DB: config.has('redis.db') ? config.get<number>('redis.db') : null
36   },
37   SMTP: {
38     HOSTNAME: config.get<string>('smtp.hostname'),
39     PORT: config.get<number>('smtp.port'),
40     USERNAME: config.get<string>('smtp.username'),
41     PASSWORD: config.get<string>('smtp.password'),
42     TLS: config.get<boolean>('smtp.tls'),
43     DISABLE_STARTTLS: config.get<boolean>('smtp.disable_starttls'),
44     CA_FILE: config.get<string>('smtp.ca_file'),
45     FROM_ADDRESS: config.get<string>('smtp.from_address')
46   },
47   EMAIL: {
48     BODY: {
49       SIGNATURE: config.get<string>('email.body.signature')
50     },
51     OBJECT: {
52       PREFIX: config.get<string>('email.object.prefix') + ' '
53     }
54   },
55   STORAGE: {
56     TMP_DIR: buildPath(config.get<string>('storage.tmp')),
57     AVATARS_DIR: buildPath(config.get<string>('storage.avatars')),
58     LOG_DIR: buildPath(config.get<string>('storage.logs')),
59     VIDEOS_DIR: buildPath(config.get<string>('storage.videos')),
60     STREAMING_PLAYLISTS_DIR: buildPath(config.get<string>('storage.streaming_playlists')),
61     REDUNDANCY_DIR: buildPath(config.get<string>('storage.redundancy')),
62     THUMBNAILS_DIR: buildPath(config.get<string>('storage.thumbnails')),
63     PREVIEWS_DIR: buildPath(config.get<string>('storage.previews')),
64     CAPTIONS_DIR: buildPath(config.get<string>('storage.captions')),
65     TORRENTS_DIR: buildPath(config.get<string>('storage.torrents')),
66     CACHE_DIR: buildPath(config.get<string>('storage.cache')),
67     PLUGINS_DIR: buildPath(config.get<string>('storage.plugins'))
68   },
69   WEBSERVER: {
70     SCHEME: config.get<boolean>('webserver.https') === true ? 'https' : 'http',
71     WS: config.get<boolean>('webserver.https') === true ? 'wss' : 'ws',
72     HOSTNAME: config.get<string>('webserver.hostname'),
73     PORT: config.get<number>('webserver.port')
74   },
75   RATES_LIMIT: {
76     API: {
77       WINDOW_MS: parseDurationToMs(config.get<string>('rates_limit.api.window')),
78       MAX: config.get<number>('rates_limit.api.max')
79     },
80     SIGNUP: {
81       WINDOW_MS: parseDurationToMs(config.get<string>('rates_limit.signup.window')),
82       MAX: config.get<number>('rates_limit.signup.max')
83     },
84     LOGIN: {
85       WINDOW_MS: parseDurationToMs(config.get<string>('rates_limit.login.window')),
86       MAX: config.get<number>('rates_limit.login.max')
87     },
88     ASK_SEND_EMAIL: {
89       WINDOW_MS: parseDurationToMs(config.get<string>('rates_limit.ask_send_email.window')),
90       MAX: config.get<number>('rates_limit.ask_send_email.max')
91     }
92   },
93   TRUST_PROXY: config.get<string[]>('trust_proxy'),
94   LOG: {
95     LEVEL: config.get<string>('log.level'),
96     ROTATION: config.get<boolean>('log.rotation.enabled')
97   },
98   SEARCH: {
99     REMOTE_URI: {
100       USERS: config.get<boolean>('search.remote_uri.users'),
101       ANONYMOUS: config.get<boolean>('search.remote_uri.anonymous')
102     }
103   },
104   TRENDING: {
105     VIDEOS: {
106       INTERVAL_DAYS: config.get<number>('trending.videos.interval_days')
107     }
108   },
109   REDUNDANCY: {
110     VIDEOS: {
111       CHECK_INTERVAL: parseDurationToMs(config.get<string>('redundancy.videos.check_interval')),
112       STRATEGIES: buildVideosRedundancy(config.get<any[]>('redundancy.videos.strategies'))
113     }
114   },
115   CSP: {
116     ENABLED: config.get<boolean>('csp.enabled'),
117     REPORT_ONLY: config.get<boolean>('csp.report_only'),
118     REPORT_URI: config.get<boolean>('csp.report_uri')
119   },
120   TRACKER: {
121     ENABLED: config.get<boolean>('tracker.enabled'),
122     PRIVATE: config.get<boolean>('tracker.private'),
123     REJECT_TOO_MANY_ANNOUNCES: config.get<boolean>('tracker.reject_too_many_announces')
124   },
125   HISTORY: {
126     VIDEOS: {
127       MAX_AGE: parseDurationToMs(config.get('history.videos.max_age'))
128     }
129   },
130   VIEWS: {
131     VIDEOS: {
132       REMOTE: {
133         MAX_AGE: parseDurationToMs(config.get('views.videos.remote.max_age'))
134       }
135     }
136   },
137   ADMIN: {
138     get EMAIL () { return config.get<string>('admin.email') }
139   },
140   CONTACT_FORM: {
141     get ENABLED () { return config.get<boolean>('contact_form.enabled') }
142   },
143   SIGNUP: {
144     get ENABLED () { return config.get<boolean>('signup.enabled') },
145     get LIMIT () { return config.get<number>('signup.limit') },
146     get REQUIRES_EMAIL_VERIFICATION () { return config.get<boolean>('signup.requires_email_verification') },
147     FILTERS: {
148       CIDR: {
149         get WHITELIST () { return config.get<string[]>('signup.filters.cidr.whitelist') },
150         get BLACKLIST () { return config.get<string[]>('signup.filters.cidr.blacklist') }
151       }
152     }
153   },
154   USER: {
155     get VIDEO_QUOTA () { return parseBytes(config.get<number>('user.video_quota')) },
156     get VIDEO_QUOTA_DAILY () { return parseBytes(config.get<number>('user.video_quota_daily')) }
157   },
158   TRANSCODING: {
159     get ENABLED () { return config.get<boolean>('transcoding.enabled') },
160     get ALLOW_ADDITIONAL_EXTENSIONS () { return config.get<boolean>('transcoding.allow_additional_extensions') },
161     get ALLOW_AUDIO_FILES () { return config.get<boolean>('transcoding.allow_audio_files') },
162     get THREADS () { return config.get<number>('transcoding.threads') },
163     RESOLUTIONS: {
164       get '240p' () { return config.get<boolean>('transcoding.resolutions.240p') },
165       get '360p' () { return config.get<boolean>('transcoding.resolutions.360p') },
166       get '480p' () { return config.get<boolean>('transcoding.resolutions.480p') },
167       get '720p' () { return config.get<boolean>('transcoding.resolutions.720p') },
168       get '1080p' () { return config.get<boolean>('transcoding.resolutions.1080p') },
169       get '2160p' () { return config.get<boolean>('transcoding.resolutions.2160p') }
170     },
171     HLS: {
172       get ENABLED () { return config.get<boolean>('transcoding.hls.enabled') }
173     }
174   },
175   IMPORT: {
176     VIDEOS: {
177       HTTP: {
178         get ENABLED () { return config.get<boolean>('import.videos.http.enabled') }
179       },
180       TORRENT: {
181         get ENABLED () { return config.get<boolean>('import.videos.torrent.enabled') }
182       }
183     }
184   },
185   AUTO_BLACKLIST: {
186     VIDEOS: {
187       OF_USERS: {
188         get ENABLED () { return config.get<boolean>('auto_blacklist.videos.of_users.enabled') }
189       }
190     }
191   },
192   CACHE: {
193     PREVIEWS: {
194       get SIZE () { return config.get<number>('cache.previews.size') }
195     },
196     VIDEO_CAPTIONS: {
197       get SIZE () { return config.get<number>('cache.captions.size') }
198     }
199   },
200   INSTANCE: {
201     get NAME () { return config.get<string>('instance.name') },
202     get SHORT_DESCRIPTION () { return config.get<string>('instance.short_description') },
203     get DESCRIPTION () { return config.get<string>('instance.description') },
204     get TERMS () { return config.get<string>('instance.terms') },
205     get IS_NSFW () { return config.get<boolean>('instance.is_nsfw') },
206     get DEFAULT_CLIENT_ROUTE () { return config.get<string>('instance.default_client_route') },
207     get DEFAULT_NSFW_POLICY () { return config.get<NSFWPolicyType>('instance.default_nsfw_policy') },
208     CUSTOMIZATIONS: {
209       get JAVASCRIPT () { return config.get<string>('instance.customizations.javascript') },
210       get CSS () { return config.get<string>('instance.customizations.css') }
211     },
212     get ROBOTS () { return config.get<string>('instance.robots') },
213     get SECURITYTXT () { return config.get<string>('instance.securitytxt') },
214     get SECURITYTXT_CONTACT () { return config.get<string>('admin.email') }
215   },
216   SERVICES: {
217     TWITTER: {
218       get USERNAME () { return config.get<string>('services.twitter.username') },
219       get WHITELISTED () { return config.get<boolean>('services.twitter.whitelisted') }
220     }
221   },
222   FOLLOWERS: {
223     INSTANCE: {
224       get ENABLED () { return config.get<boolean>('followers.instance.enabled') },
225       get MANUAL_APPROVAL () { return config.get<boolean>('followers.instance.manual_approval') }
226     }
227   }
228 }
229
230 function registerConfigChangedHandler (fun: Function) {
231   configChangedHandlers.push(fun)
232 }
233
234 // ---------------------------------------------------------------------------
235
236 export {
237   CONFIG,
238   registerConfigChangedHandler
239 }
240
241 // ---------------------------------------------------------------------------
242
243 function getLocalConfigFilePath () {
244   const configSources = config.util.getConfigSources()
245   if (configSources.length === 0) throw new Error('Invalid config source.')
246
247   let filename = 'local'
248   if (process.env.NODE_ENV) filename += `-${process.env.NODE_ENV}`
249   if (process.env.NODE_APP_INSTANCE) filename += `-${process.env.NODE_APP_INSTANCE}`
250
251   return join(dirname(configSources[ 0 ].name), filename + '.json')
252 }
253
254 function buildVideosRedundancy (objs: any[]): VideosRedundancy[] {
255   if (!objs) return []
256
257   if (!Array.isArray(objs)) return objs
258
259   return objs.map(obj => {
260     return Object.assign({}, obj, {
261       minLifetime: parseDurationToMs(obj.min_lifetime),
262       size: bytes.parse(obj.size),
263       minViews: obj.min_views
264     })
265   })
266 }
267
268 export function reloadConfig () {
269
270   function directory () {
271     if (process.env.NODE_CONFIG_DIR) {
272       return process.env.NODE_CONFIG_DIR
273     }
274
275     return join(root(), 'config')
276   }
277
278   function purge () {
279     for (const fileName in require.cache) {
280       if (-1 === fileName.indexOf(directory())) {
281         continue
282       }
283
284       delete require.cache[fileName]
285     }
286
287     delete require.cache[require.resolve('config')]
288   }
289
290   purge()
291
292   config = require('config')
293
294   for (const configChangedHandler of configChangedHandlers) {
295     configChangedHandler()
296   }
297 }