]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/initializers/checker.ts
Add information concerning video privacy in my videos list
[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',
a465bf5f
C
25 'redis.hostname', 'redis.port', 'redis.auth',
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
C
31 'instance.name', 'instance.short_description', 'instance.description', 'instance.terms', 'instance.default_client_route',
32 'instance.default_nsfw_policy'
56835348 33 ]
69818c93 34 const miss: string[] = []
9f10b292 35
f0f5567b 36 for (const key of required) {
9f10b292
C
37 if (!config.has(key)) {
38 miss.push(key)
8c308c2b 39 }
8c308c2b
C
40 }
41
9f10b292
C
42 return miss
43}
44
e5b88539 45// Check the available codecs
3482688c 46// We get CONFIG by param to not import it in this file (import orders)
f5028693 47async function checkFFmpeg (CONFIG: { TRANSCODING: { ENABLED: boolean } }) {
e5b88539 48 const Ffmpeg = require('fluent-ffmpeg')
6fcd19ba
C
49 const getAvailableCodecsPromise = promisify0(Ffmpeg.getAvailableCodecs)
50
f5028693
C
51 const codecs = await getAvailableCodecsPromise()
52 if (CONFIG.TRANSCODING.ENABLED === false) return undefined
53
54 const canEncode = [ 'libx264' ]
55 for (const codec of canEncode) {
56 if (codecs[codec] === undefined) {
57 throw new Error('Unknown codec ' + codec + ' in FFmpeg.')
58 }
59
60 if (codecs[codec].canEncode !== true) {
61 throw new Error('Unavailable encode codec ' + codec + ' in FFmpeg')
62 }
63 }
e5b88539
C
64}
65
3482688c 66// We get db by param to not import it in this file (import orders)
3fd3ab2d
C
67async function clientsExist () {
68 const totalClients = await OAuthClientModel.countTotal()
f5028693
C
69
70 return totalClients !== 0
37dc07b2
C
71}
72
3482688c 73// We get db by param to not import it in this file (import orders)
3fd3ab2d
C
74async function usersExist () {
75 const totalUsers = await UserModel.countTotal()
f5028693
C
76
77 return totalUsers !== 0
9f10b292 78}
8c308c2b 79
350e31d6 80// We get db by param to not import it in this file (import orders)
3fd3ab2d
C
81async function applicationExist () {
82 const totalApplication = await ApplicationModel.countTotal()
350e31d6
C
83
84 return totalApplication !== 0
85}
86
9f10b292 87// ---------------------------------------------------------------------------
c45f7f84 88
65fcc311
C
89export {
90 checkConfig,
91 checkFFmpeg,
92 checkMissedConfig,
93 clientsExist,
350e31d6
C
94 usersExist,
95 applicationExist
65fcc311 96}