]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/initializers/checker-after-init.ts
Merge branch 'release/4.3.0' into develop
[github/Chocobozzz/PeerTube.git] / server / initializers / checker-after-init.ts
CommitLineData
d41a3805 1import config from 'config'
a1587156 2import { URL } from 'url'
c729caf6 3import { getFFmpegVersion } from '@server/helpers/ffmpeg'
690bb8f9 4import { uniqify } from '@shared/core-utils'
ae71acca 5import { VideoRedundancyConfigFilter } from '@shared/models/redundancy/video-redundancy-config-filter.type'
d1105b97 6import { RecentlyAddedStrategy } from '../../shared/models/redundancy'
9452d4fd 7import { isProdInstance, parseSemVersion } from '../helpers/core-utils'
e5565833 8import { isArray } from '../helpers/custom-validators/misc'
ae71acca 9import { logger } from '../helpers/logger'
ae71acca
C
10import { ApplicationModel, getServerActor } from '../models/application/application'
11import { OAuthClientModel } from '../models/oauth/oauth-client'
d41a3805 12import { UserModel } from '../models/user/user'
ae71acca 13import { CONFIG, isEmailEnabled } from './config'
6dd9de95 14import { WEBSERVER } from './constants'
e5565833
C
15
16async function checkActivityPubUrls () {
17 const actor = await getServerActor()
18
a1587156 19 const parsed = new URL(actor.url)
6dd9de95 20 if (WEBSERVER.HOST !== parsed.host) {
d41a3805
C
21 const NODE_ENV = config.util.getEnv('NODE_ENV')
22 const NODE_CONFIG_DIR = config.util.getEnv('NODE_CONFIG_DIR')
e5565833
C
23
24 logger.warn(
25 'It seems PeerTube was started (and created some data) with another domain name. ' +
26 'This means you will not be able to federate! ' +
27 'Please use %s %s npm run update-host to fix this.',
28 NODE_CONFIG_DIR ? `NODE_CONFIG_DIR=${NODE_CONFIG_DIR}` : '',
29 NODE_ENV ? `NODE_ENV=${NODE_ENV}` : ''
30 )
31 }
32}
33
c729caf6 34// Some checks on configuration files or throw if there is an error
e5565833 35function checkConfig () {
d3e56c0c 36
9452d4fd
C
37 const configFiles = config.util.getConfigSources().map(s => s.name).join(' -> ')
38 logger.info('Using following configuration file hierarchy: %s.', configFiles)
39
539d3f4f 40 // Moved configuration keys
d41a3805 41 if (config.has('services.csp-logger')) {
539d3f4f
C
42 logger.warn('services.csp-logger configuration has been renamed to csp.report_uri. Please update your configuration file.')
43 }
44
a3e5f804 45 checkSecretsConfig()
c729caf6
C
46 checkEmailConfig()
47 checkNSFWPolicyConfig()
48 checkLocalRedundancyConfig()
49 checkRemoteRedundancyConfig()
50 checkStorageConfig()
51 checkTranscodingConfig()
2a491182 52 checkImportConfig()
c729caf6
C
53 checkBroadcastMessageConfig()
54 checkSearchConfig()
55 checkLiveConfig()
56 checkObjectStorageConfig()
92e66e04 57 checkVideoStudioConfig()
c729caf6
C
58}
59
60// We get db by param to not import it in this file (import orders)
61async function clientsExist () {
62 const totalClients = await OAuthClientModel.countTotal()
63
64 return totalClients !== 0
65}
66
67// We get db by param to not import it in this file (import orders)
68async function usersExist () {
69 const totalUsers = await UserModel.countTotal()
70
71 return totalUsers !== 0
72}
73
74// We get db by param to not import it in this file (import orders)
75async function applicationExist () {
76 const totalApplication = await ApplicationModel.countTotal()
77
78 return totalApplication !== 0
79}
80
81async function checkFFmpegVersion () {
82 const version = await getFFmpegVersion()
1efad362 83 const { major, minor, patch } = parseSemVersion(version)
c729caf6
C
84
85 if (major < 4 || (major === 4 && minor < 1)) {
1efad362
C
86 logger.warn('Your ffmpeg version (%s) is outdated. PeerTube supports ffmpeg >= 4.1. Please upgrade ffmpeg.', version)
87 }
88
89 if (major === 4 && minor === 4 && patch === 0) {
90 logger.warn('There is a bug in ffmpeg 4.4.0 with HLS videos. Please upgrade ffmpeg.')
c729caf6
C
91 }
92}
93
94// ---------------------------------------------------------------------------
95
96export {
97 checkConfig,
98 clientsExist,
99 checkFFmpegVersion,
100 usersExist,
101 applicationExist,
102 checkActivityPubUrls
103}
104
105// ---------------------------------------------------------------------------
106
a3e5f804
C
107function checkSecretsConfig () {
108 if (!CONFIG.SECRETS.PEERTUBE) {
109 throw new Error('secrets.peertube is missing in config. Generate one using `openssl rand -hex 32`')
110 }
111}
112
c729caf6 113function checkEmailConfig () {
4c1c1709 114 if (!isEmailEnabled()) {
d3e56c0c 115 if (CONFIG.SIGNUP.ENABLED && CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION) {
c729caf6 116 throw new Error('Emailer is disabled but you require signup email verification.')
d3e56c0c
C
117 }
118
119 if (CONFIG.CONTACT_FORM.ENABLED) {
120 logger.warn('Emailer is disabled so the contact form will not work.')
121 }
122 }
c729caf6 123}
e5565833 124
c729caf6 125function checkNSFWPolicyConfig () {
d3e56c0c 126 const defaultNSFWPolicy = CONFIG.INSTANCE.DEFAULT_NSFW_POLICY
c729caf6
C
127
128 const available = [ 'do_not_list', 'blur', 'display' ]
129 if (available.includes(defaultNSFWPolicy) === false) {
130 throw new Error('NSFW policy setting should be ' + available.join(' or ') + ' instead of ' + defaultNSFWPolicy)
e5565833 131 }
c729caf6 132}
e5565833 133
c729caf6 134function checkLocalRedundancyConfig () {
e5565833 135 const redundancyVideos = CONFIG.REDUNDANCY.VIDEOS.STRATEGIES
c729caf6 136
e5565833
C
137 if (isArray(redundancyVideos)) {
138 const available = [ 'most-views', 'trending', 'recently-added' ]
c729caf6 139
e5565833 140 for (const r of redundancyVideos) {
bdd428a6 141 if (available.includes(r.strategy) === false) {
c729caf6 142 throw new Error('Videos redundancy should have ' + available.join(' or ') + ' strategy instead of ' + r.strategy)
e5565833
C
143 }
144
145 // Lifetime should not be < 10 hours
9452d4fd 146 if (isProdInstance() && r.minLifetime < 1000 * 3600 * 10) {
c729caf6 147 throw new Error('Video redundancy minimum lifetime should be >= 10 hours for strategy ' + r.strategy)
e5565833
C
148 }
149 }
150
690bb8f9 151 const filtered = uniqify(redundancyVideos.map(r => r.strategy))
e5565833 152 if (filtered.length !== redundancyVideos.length) {
c729caf6 153 throw new Error('Redundancy video entries should have unique strategies')
e5565833
C
154 }
155
156 const recentlyAddedStrategy = redundancyVideos.find(r => r.strategy === 'recently-added') as RecentlyAddedStrategy
157 if (recentlyAddedStrategy && isNaN(recentlyAddedStrategy.minViews)) {
c729caf6 158 throw new Error('Min views in recently added strategy is not a number')
e5565833 159 }
d85798c4 160 } else {
c729caf6 161 throw new Error('Videos redundancy should be an array (you must uncomment lines containing - too)')
e5565833 162 }
c729caf6 163}
e5565833 164
c729caf6 165function checkRemoteRedundancyConfig () {
8c9e7875
C
166 const acceptFrom = CONFIG.REMOTE_REDUNDANCY.VIDEOS.ACCEPT_FROM
167 const acceptFromValues = new Set<VideoRedundancyConfigFilter>([ 'nobody', 'anybody', 'followings' ])
c729caf6 168
8c9e7875 169 if (acceptFromValues.has(acceptFrom) === false) {
c729caf6 170 throw new Error('remote_redundancy.videos.accept_from has an incorrect value')
8c9e7875 171 }
c729caf6 172}
8c9e7875 173
c729caf6 174function checkStorageConfig () {
d3e56c0c 175 // Check storage directory locations
e5565833 176 if (isProdInstance()) {
d41a3805 177 const configStorage = config.get('storage')
e5565833
C
178 for (const key of Object.keys(configStorage)) {
179 if (configStorage[key].startsWith('storage/')) {
180 logger.warn(
181 'Directory of %s should not be in the production directory of PeerTube. Please check your production configuration file.',
182 key
183 )
184 }
185 }
186 }
187
72c33e71
C
188 if (CONFIG.STORAGE.VIDEOS_DIR === CONFIG.STORAGE.REDUNDANCY_DIR) {
189 logger.warn('Redundancy directory should be different than the videos folder.')
190 }
c729caf6 191}
72c33e71 192
c729caf6 193function checkTranscodingConfig () {
d7a25329
C
194 if (CONFIG.TRANSCODING.ENABLED) {
195 if (CONFIG.TRANSCODING.WEBTORRENT.ENABLED === false && CONFIG.TRANSCODING.HLS.ENABLED === false) {
c729caf6 196 throw new Error('You need to enable at least WebTorrent transcoding or HLS transcoding.')
d7a25329 197 }
9129b769
C
198
199 if (CONFIG.TRANSCODING.CONCURRENCY <= 0) {
c729caf6 200 throw new Error('Transcoding concurrency should be > 0')
9129b769
C
201 }
202 }
203
204 if (CONFIG.IMPORT.VIDEOS.HTTP.ENABLED || CONFIG.IMPORT.VIDEOS.TORRENT.ENABLED) {
205 if (CONFIG.IMPORT.VIDEOS.CONCURRENCY <= 0) {
c729caf6 206 throw new Error('Video import concurrency should be > 0')
9129b769 207 }
d7a25329 208 }
c729caf6 209}
d7a25329 210
2a491182
F
211function checkImportConfig () {
212 if (CONFIG.IMPORT.VIDEO_CHANNEL_SYNCHRONIZATION.ENABLED && !CONFIG.IMPORT.VIDEOS.HTTP) {
213 throw new Error('You need to enable HTTP import to allow synchronization')
214 }
215}
216
c729caf6 217function checkBroadcastMessageConfig () {
72c33e71
C
218 if (CONFIG.BROADCAST_MESSAGE.ENABLED) {
219 const currentLevel = CONFIG.BROADCAST_MESSAGE.LEVEL
31a91119 220 const available = [ 'info', 'warning', 'error' ]
72c33e71
C
221
222 if (available.includes(currentLevel) === false) {
c729caf6 223 throw new Error('Broadcast message level should be ' + available.join(' or ') + ' instead of ' + currentLevel)
72c33e71 224 }
2034c3aa 225 }
c729caf6 226}
2034c3aa 227
c729caf6 228function checkSearchConfig () {
5fb2e288
C
229 if (CONFIG.SEARCH.SEARCH_INDEX.ENABLED === true) {
230 if (CONFIG.SEARCH.REMOTE_URI.USERS === false) {
c729caf6 231 throw new Error('You cannot enable search index without enabling remote URI search for users.')
5fb2e288
C
232 }
233 }
c729caf6 234}
5fb2e288 235
c729caf6 236function checkLiveConfig () {
fb719404
C
237 if (CONFIG.LIVE.ENABLED === true) {
238 if (CONFIG.LIVE.ALLOW_REPLAY === true && CONFIG.TRANSCODING.ENABLED === false) {
c729caf6 239 throw new Error('Live allow replay cannot be enabled if transcoding is not enabled.')
fb719404 240 }
df1db951
C
241
242 if (CONFIG.LIVE.RTMP.ENABLED === false && CONFIG.LIVE.RTMPS.ENABLED === false) {
c729caf6 243 throw new Error('You must enable at least RTMP or RTMPS')
df1db951
C
244 }
245
246 if (CONFIG.LIVE.RTMPS.ENABLED) {
247 if (!CONFIG.LIVE.RTMPS.KEY_FILE) {
c729caf6 248 throw new Error('You must specify a key file to enabled RTMPS')
df1db951
C
249 }
250
251 if (!CONFIG.LIVE.RTMPS.CERT_FILE) {
c729caf6 252 throw new Error('You must specify a cert file to enable RTMPS')
df1db951
C
253 }
254 }
fb719404 255 }
c729caf6 256}
fb719404 257
c729caf6 258function checkObjectStorageConfig () {
0305db28
JB
259 if (CONFIG.OBJECT_STORAGE.ENABLED === true) {
260
261 if (!CONFIG.OBJECT_STORAGE.VIDEOS.BUCKET_NAME) {
c729caf6 262 throw new Error('videos_bucket should be set when object storage support is enabled.')
0305db28
JB
263 }
264
265 if (!CONFIG.OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET_NAME) {
c729caf6 266 throw new Error('streaming_playlists_bucket should be set when object storage support is enabled.')
0305db28
JB
267 }
268
269 if (
270 CONFIG.OBJECT_STORAGE.VIDEOS.BUCKET_NAME === CONFIG.OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET_NAME &&
271 CONFIG.OBJECT_STORAGE.VIDEOS.PREFIX === CONFIG.OBJECT_STORAGE.STREAMING_PLAYLISTS.PREFIX
272 ) {
273 if (CONFIG.OBJECT_STORAGE.VIDEOS.PREFIX === '') {
c729caf6 274 throw new Error('Object storage bucket prefixes should be set when the same bucket is used for both types of video.')
0305db28 275 }
c729caf6
C
276
277 throw new Error(
278 'Object storage bucket prefixes should be set to different values when the same bucket is used for both types of video.'
279 )
0305db28 280 }
9ab330b9
C
281
282 if (!CONFIG.OBJECT_STORAGE.UPLOAD_ACL.PUBLIC) {
283 throw new Error('object_storage.upload_acl.public must be set')
284 }
285
286 if (!CONFIG.OBJECT_STORAGE.UPLOAD_ACL.PRIVATE) {
287 throw new Error('object_storage.upload_acl.private must be set')
288 }
0305db28 289 }
e5565833
C
290}
291
92e66e04
C
292function checkVideoStudioConfig () {
293 if (CONFIG.VIDEO_STUDIO.ENABLED === true && CONFIG.TRANSCODING.ENABLED === false) {
294 throw new Error('Video studio cannot be enabled if transcoding is disabled')
ae71acca
C
295 }
296}