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