]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/initializers/checker.ts
feature: db selection in redis
[github/Chocobozzz/PeerTube.git] / server / initializers / checker.ts
... / ...
CommitLineData
1import * as config from 'config'
2import { promisify0 } from '../helpers/core-utils'
3import { UserModel } from '../models/account/user'
4import { ApplicationModel } from '../models/application/application'
5import { OAuthClientModel } from '../models/oauth/oauth-client'
6
7// Some checks on configuration files
8// Return an error message, or null if everything is okay
9function checkConfig () {
10 const defaultNSFWPolicy = config.get<string>('instance.default_nsfw_policy')
11
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
14 }
15
16 return null
17}
18
19// Check the config files
20function checkMissedConfig () {
21 const required = [ 'listen.port', 'listen.hostname',
22 'webserver.https', 'webserver.hostname', 'webserver.port',
23 'trust_proxy',
24 'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password',
25 'redis.hostname', 'redis.port', 'redis.auth', 'redis.db',
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',
30 'cache.previews.size', 'admin.email', 'signup.enabled', 'signup.limit', 'transcoding.enabled', 'transcoding.threads',
31 'instance.name', 'instance.short_description', 'instance.description', 'instance.terms', 'instance.default_client_route',
32 'instance.default_nsfw_policy', 'instance.robots',
33 'services.twitter.username', 'services.twitter.whitelisted'
34 ]
35 const miss: string[] = []
36
37 for (const key of required) {
38 if (!config.has(key)) {
39 miss.push(key)
40 }
41 }
42
43 return miss
44}
45
46// Check the available codecs
47// We get CONFIG by param to not import it in this file (import orders)
48async function checkFFmpeg (CONFIG: { TRANSCODING: { ENABLED: boolean } }) {
49 const Ffmpeg = require('fluent-ffmpeg')
50 const getAvailableCodecsPromise = promisify0(Ffmpeg.getAvailableCodecs)
51
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 }
65}
66
67// We get db by param to not import it in this file (import orders)
68async function clientsExist () {
69 const totalClients = await OAuthClientModel.countTotal()
70
71 return totalClients !== 0
72}
73
74// We get db by param to not import it in this file (import orders)
75async function usersExist () {
76 const totalUsers = await UserModel.countTotal()
77
78 return totalUsers !== 0
79}
80
81// We get db by param to not import it in this file (import orders)
82async function applicationExist () {
83 const totalApplication = await ApplicationModel.countTotal()
84
85 return totalApplication !== 0
86}
87
88// ---------------------------------------------------------------------------
89
90export {
91 checkConfig,
92 checkFFmpeg,
93 checkMissedConfig,
94 clientsExist,
95 usersExist,
96 applicationExist
97}