]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/initializers/checker.ts
feature: db selection in redis
[github/Chocobozzz/PeerTube.git] / server / initializers / checker.ts
CommitLineData
4d4e5cd4 1import * as config from 'config'
da854ddd 2import { promisify0 } from '../helpers/core-utils'
3fd3ab2d
C
3import { UserModel } from '../models/account/user'
4import { ApplicationModel } from '../models/application/application'
5import { OAuthClientModel } from '../models/oauth/oauth-client'
9f10b292 6
b65c27aa 7// Some checks on configuration files
0883b324 8// Return an error message, or null if everything is okay
9f10b292 9function checkConfig () {
0883b324 10 const defaultNSFWPolicy = config.get<string>('instance.default_nsfw_policy')
b65c27aa 11
0883b324
C
12 if ([ 'do_not_list', 'blur', 'display' ].indexOf(defaultNSFWPolicy) === -1) {
13 return 'NSFW policy setting should be "do_not_list" or "blur" or "display" instead of ' + defaultNSFWPolicy
b65c27aa
C
14 }
15
16 return null
17}
18
19// Check the config files
20function checkMissedConfig () {
cff8b272 21 const required = [ 'listen.port', 'listen.hostname',
3737bbaf 22 'webserver.https', 'webserver.hostname', 'webserver.port',
490b595a 23 'trust_proxy',
b769007f 24 'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password',
30c82f0d 25 'redis.hostname', 'redis.port', 'redis.auth', 'redis.db',
a465bf5f
C
26 'smtp.hostname', 'smtp.port', 'smtp.username', 'smtp.password', 'smtp.tls', 'smtp.from_address',
27 'storage.avatars', 'storage.videos', 'storage.logs', 'storage.previews', 'storage.thumbnails', 'storage.torrents', 'storage.cache',
28 'log.level',
29 'user.video_quota',
ecb4e35f 30 'cache.previews.size', 'admin.email', 'signup.enabled', 'signup.limit', 'transcoding.enabled', 'transcoding.threads',
0883b324 31 'instance.name', 'instance.short_description', 'instance.description', 'instance.terms', 'instance.default_client_route',
ac235c37 32 'instance.default_nsfw_policy', 'instance.robots',
8be1afa1 33 'services.twitter.username', 'services.twitter.whitelisted'
56835348 34 ]
69818c93 35 const miss: string[] = []
9f10b292 36
f0f5567b 37 for (const key of required) {
9f10b292
C
38 if (!config.has(key)) {
39 miss.push(key)
8c308c2b 40 }
8c308c2b
C
41 }
42
9f10b292
C
43 return miss
44}
45
e5b88539 46// Check the available codecs
3482688c 47// We get CONFIG by param to not import it in this file (import orders)
f5028693 48async function checkFFmpeg (CONFIG: { TRANSCODING: { ENABLED: boolean } }) {
e5b88539 49 const Ffmpeg = require('fluent-ffmpeg')
6fcd19ba
C
50 const getAvailableCodecsPromise = promisify0(Ffmpeg.getAvailableCodecs)
51
f5028693
C
52 const codecs = await getAvailableCodecsPromise()
53 if (CONFIG.TRANSCODING.ENABLED === false) return undefined
54
55 const canEncode = [ 'libx264' ]
56 for (const codec of canEncode) {
57 if (codecs[codec] === undefined) {
58 throw new Error('Unknown codec ' + codec + ' in FFmpeg.')
59 }
60
61 if (codecs[codec].canEncode !== true) {
62 throw new Error('Unavailable encode codec ' + codec + ' in FFmpeg')
63 }
64 }
e5b88539
C
65}
66
3482688c 67// We get db by param to not import it in this file (import orders)
3fd3ab2d
C
68async function clientsExist () {
69 const totalClients = await OAuthClientModel.countTotal()
f5028693
C
70
71 return totalClients !== 0
37dc07b2
C
72}
73
3482688c 74// We get db by param to not import it in this file (import orders)
3fd3ab2d
C
75async function usersExist () {
76 const totalUsers = await UserModel.countTotal()
f5028693
C
77
78 return totalUsers !== 0
9f10b292 79}
8c308c2b 80
350e31d6 81// We get db by param to not import it in this file (import orders)
3fd3ab2d
C
82async function applicationExist () {
83 const totalApplication = await ApplicationModel.countTotal()
350e31d6
C
84
85 return totalApplication !== 0
86}
87
9f10b292 88// ---------------------------------------------------------------------------
c45f7f84 89
65fcc311
C
90export {
91 checkConfig,
92 checkFFmpeg,
93 checkMissedConfig,
94 clientsExist,
350e31d6
C
95 usersExist,
96 applicationExist
65fcc311 97}