]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/initializers/checker.ts
Bumped to version v1.0.0-beta.13
[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'
23687332
C
6import { parse } from 'url'
7import { CONFIG } from './constants'
8import { logger } from '../helpers/logger'
9import { getServerActor } from '../helpers/utils'
10
11async function checkActivityPubUrls () {
12 const actor = await getServerActor()
13
14 const parsed = parse(actor.url)
15 if (CONFIG.WEBSERVER.HOST !== parsed.host) {
16 const NODE_ENV = config.util.getEnv('NODE_ENV')
17 const NODE_CONFIG_DIR = config.util.getEnv('NODE_CONFIG_DIR')
18
19 logger.warn(
20 'It seems PeerTube was started (and created some data) with another domain name. ' +
21 'This means you will not be able to federate! ' +
22 'Please use %s %s npm run update-host to fix this.',
23 NODE_CONFIG_DIR ? `NODE_CONFIG_DIR=${NODE_CONFIG_DIR}` : '',
24 NODE_ENV ? `NODE_ENV=${NODE_ENV}` : ''
25 )
26 }
27}
9f10b292 28
b65c27aa 29// Some checks on configuration files
0883b324 30// Return an error message, or null if everything is okay
9f10b292 31function checkConfig () {
0883b324 32 const defaultNSFWPolicy = config.get<string>('instance.default_nsfw_policy')
b65c27aa 33
0883b324
C
34 if ([ 'do_not_list', 'blur', 'display' ].indexOf(defaultNSFWPolicy) === -1) {
35 return 'NSFW policy setting should be "do_not_list" or "blur" or "display" instead of ' + defaultNSFWPolicy
b65c27aa
C
36 }
37
38 return null
39}
40
41// Check the config files
42function checkMissedConfig () {
cff8b272 43 const required = [ 'listen.port', 'listen.hostname',
3737bbaf 44 'webserver.https', 'webserver.hostname', 'webserver.port',
490b595a 45 'trust_proxy',
1c3386e8 46 'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password', 'database.pool.max',
a465bf5f
C
47 'smtp.hostname', 'smtp.port', 'smtp.username', 'smtp.password', 'smtp.tls', 'smtp.from_address',
48 'storage.avatars', 'storage.videos', 'storage.logs', 'storage.previews', 'storage.thumbnails', 'storage.torrents', 'storage.cache',
49 'log.level',
bee0abff 50 'user.video_quota', 'user.video_quota_daily',
ff2c1fe8 51 'cache.previews.size', 'admin.email',
d9eaee39
JM
52 'signup.enabled', 'signup.limit', 'signup.requires_email_verification',
53 'signup.filters.cidr.whitelist', 'signup.filters.cidr.blacklist',
ff2c1fe8 54 'transcoding.enabled', 'transcoding.threads',
9a629c6e 55 'import.videos.http.enabled', 'import.videos.torrent.enabled',
df39a683 56 'trending.videos.interval_days',
0883b324 57 'instance.name', 'instance.short_description', 'instance.description', 'instance.terms', 'instance.default_client_route',
5447516b 58 'instance.default_nsfw_policy', 'instance.robots', 'instance.securitytxt',
8be1afa1 59 'services.twitter.username', 'services.twitter.whitelisted'
56835348 60 ]
19f7b248
RK
61 const requiredAlternatives = [
62 [ // set
63 ['redis.hostname', 'redis.port'], // alternative
64 ['redis.socket']
65 ]
66 ]
69818c93 67 const miss: string[] = []
9f10b292 68
f0f5567b 69 for (const key of required) {
9f10b292
C
70 if (!config.has(key)) {
71 miss.push(key)
8c308c2b 72 }
8c308c2b
C
73 }
74
19f7b248
RK
75 const missingAlternatives = requiredAlternatives.filter(
76 set => !set.find(alternative => !alternative.find(key => !config.has(key)))
77 )
78
79 missingAlternatives
80 .forEach(set => set[0].forEach(key => miss.push(key)))
81
9f10b292
C
82 return miss
83}
84
e5b88539 85// Check the available codecs
3482688c 86// We get CONFIG by param to not import it in this file (import orders)
f5028693 87async function checkFFmpeg (CONFIG: { TRANSCODING: { ENABLED: boolean } }) {
e5b88539 88 const Ffmpeg = require('fluent-ffmpeg')
6fcd19ba 89 const getAvailableCodecsPromise = promisify0(Ffmpeg.getAvailableCodecs)
f5028693 90 const codecs = await getAvailableCodecsPromise()
4176e227
RK
91 const canEncode = [ 'libx264' ]
92
f5028693
C
93 if (CONFIG.TRANSCODING.ENABLED === false) return undefined
94
f5028693
C
95 for (const codec of canEncode) {
96 if (codecs[codec] === undefined) {
97 throw new Error('Unknown codec ' + codec + ' in FFmpeg.')
98 }
99
100 if (codecs[codec].canEncode !== true) {
101 throw new Error('Unavailable encode codec ' + codec + ' in FFmpeg')
102 }
103 }
4176e227
RK
104
105 checkFFmpegEncoders()
106}
107
108// Optional encoders, if present, can be used to improve transcoding
109// Here we ask ffmpeg if it detects their presence on the system, so that we can later use them
110let supportedOptionalEncoders: Map<string, boolean>
111async function checkFFmpegEncoders (): Promise<Map<string, boolean>> {
112 if (supportedOptionalEncoders !== undefined) {
113 return supportedOptionalEncoders
114 }
115
116 const Ffmpeg = require('fluent-ffmpeg')
117 const getAvailableEncodersPromise = promisify0(Ffmpeg.getAvailableEncoders)
118 const encoders = await getAvailableEncodersPromise()
119 const optionalEncoders = [ 'libfdk_aac' ]
120 supportedOptionalEncoders = new Map<string, boolean>()
121
122 for (const encoder of optionalEncoders) {
123 supportedOptionalEncoders.set(encoder,
124 encoders[encoder] !== undefined
125 )
126 }
e5b88539
C
127}
128
3482688c 129// We get db by param to not import it in this file (import orders)
3fd3ab2d
C
130async function clientsExist () {
131 const totalClients = await OAuthClientModel.countTotal()
f5028693
C
132
133 return totalClients !== 0
37dc07b2
C
134}
135
3482688c 136// We get db by param to not import it in this file (import orders)
3fd3ab2d
C
137async function usersExist () {
138 const totalUsers = await UserModel.countTotal()
f5028693
C
139
140 return totalUsers !== 0
9f10b292 141}
8c308c2b 142
350e31d6 143// We get db by param to not import it in this file (import orders)
3fd3ab2d
C
144async function applicationExist () {
145 const totalApplication = await ApplicationModel.countTotal()
350e31d6
C
146
147 return totalApplication !== 0
148}
149
9f10b292 150// ---------------------------------------------------------------------------
c45f7f84 151
65fcc311
C
152export {
153 checkConfig,
154 checkFFmpeg,
4176e227 155 checkFFmpegEncoders,
65fcc311
C
156 checkMissedConfig,
157 clientsExist,
350e31d6 158 usersExist,
23687332
C
159 applicationExist,
160 checkActivityPubUrls
65fcc311 161}