]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/initializers/checker-after-init.ts
Increase fetcher job ttl
[github/Chocobozzz/PeerTube.git] / server / initializers / checker-after-init.ts
1 import * as config from 'config'
2 import { isProdInstance, isTestInstance } from '../helpers/core-utils'
3 import { UserModel } from '../models/account/user'
4 import { ApplicationModel } from '../models/application/application'
5 import { OAuthClientModel } from '../models/oauth/oauth-client'
6 import { URL } from 'url'
7 import { CONFIG, isEmailEnabled } from './config'
8 import { logger } from '../helpers/logger'
9 import { getServerActor } from '../helpers/utils'
10 import { RecentlyAddedStrategy } from '../../shared/models/redundancy'
11 import { isArray } from '../helpers/custom-validators/misc'
12 import { uniq } from 'lodash'
13 import { WEBSERVER } from './constants'
14 import { VideoRedundancyConfigFilter } from '@shared/models/redundancy/video-redundancy-config-filter.type'
15
16 async function checkActivityPubUrls () {
17 const actor = await getServerActor()
18
19 const parsed = new URL(actor.url)
20 if (WEBSERVER.HOST !== parsed.host) {
21 const NODE_ENV = config.util.getEnv('NODE_ENV')
22 const NODE_CONFIG_DIR = config.util.getEnv('NODE_CONFIG_DIR')
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
34 // Some checks on configuration files
35 // Return an error message, or null if everything is okay
36 function checkConfig () {
37
38 // Moved configuration keys
39 if (config.has('services.csp-logger')) {
40 logger.warn('services.csp-logger configuration has been renamed to csp.report_uri. Please update your configuration file.')
41 }
42
43 // Email verification
44 if (!isEmailEnabled()) {
45 if (CONFIG.SIGNUP.ENABLED && CONFIG.SIGNUP.REQUIRES_EMAIL_VERIFICATION) {
46 return 'Emailer is disabled but you require signup email verification.'
47 }
48
49 if (CONFIG.CONTACT_FORM.ENABLED) {
50 logger.warn('Emailer is disabled so the contact form will not work.')
51 }
52 }
53
54 // NSFW policy
55 const defaultNSFWPolicy = CONFIG.INSTANCE.DEFAULT_NSFW_POLICY
56 {
57 const available = [ 'do_not_list', 'blur', 'display' ]
58 if (available.includes(defaultNSFWPolicy) === false) {
59 return 'NSFW policy setting should be ' + available.join(' or ') + ' instead of ' + defaultNSFWPolicy
60 }
61 }
62
63 // Redundancies
64 const redundancyVideos = CONFIG.REDUNDANCY.VIDEOS.STRATEGIES
65 if (isArray(redundancyVideos)) {
66 const available = [ 'most-views', 'trending', 'recently-added' ]
67 for (const r of redundancyVideos) {
68 if (available.includes(r.strategy) === false) {
69 return 'Videos redundancy should have ' + available.join(' or ') + ' strategy instead of ' + r.strategy
70 }
71
72 // Lifetime should not be < 10 hours
73 if (!isTestInstance() && r.minLifetime < 1000 * 3600 * 10) {
74 return 'Video redundancy minimum lifetime should be >= 10 hours for strategy ' + r.strategy
75 }
76 }
77
78 const filtered = uniq(redundancyVideos.map(r => r.strategy))
79 if (filtered.length !== redundancyVideos.length) {
80 return 'Redundancy video entries should have unique strategies'
81 }
82
83 const recentlyAddedStrategy = redundancyVideos.find(r => r.strategy === 'recently-added') as RecentlyAddedStrategy
84 if (recentlyAddedStrategy && isNaN(recentlyAddedStrategy.minViews)) {
85 return 'Min views in recently added strategy is not a number'
86 }
87 } else {
88 return 'Videos redundancy should be an array (you must uncomment lines containing - too)'
89 }
90
91 // Remote redundancies
92 const acceptFrom = CONFIG.REMOTE_REDUNDANCY.VIDEOS.ACCEPT_FROM
93 const acceptFromValues = new Set<VideoRedundancyConfigFilter>([ 'nobody', 'anybody', 'followings' ])
94 if (acceptFromValues.has(acceptFrom) === false) {
95 return 'remote_redundancy.videos.accept_from has an incorrect value'
96 }
97
98 // Check storage directory locations
99 if (isProdInstance()) {
100 const configStorage = config.get('storage')
101 for (const key of Object.keys(configStorage)) {
102 if (configStorage[key].startsWith('storage/')) {
103 logger.warn(
104 'Directory of %s should not be in the production directory of PeerTube. Please check your production configuration file.',
105 key
106 )
107 }
108 }
109 }
110
111 // Transcoding
112 if (CONFIG.TRANSCODING.ENABLED) {
113 if (CONFIG.TRANSCODING.WEBTORRENT.ENABLED === false && CONFIG.TRANSCODING.HLS.ENABLED === false) {
114 return 'You need to enable at least WebTorrent transcoding or HLS transcoding.'
115 }
116 }
117
118 if (CONFIG.STORAGE.VIDEOS_DIR === CONFIG.STORAGE.REDUNDANCY_DIR) {
119 logger.warn('Redundancy directory should be different than the videos folder.')
120 }
121
122 return null
123 }
124
125 // We get db by param to not import it in this file (import orders)
126 async function clientsExist () {
127 const totalClients = await OAuthClientModel.countTotal()
128
129 return totalClients !== 0
130 }
131
132 // We get db by param to not import it in this file (import orders)
133 async function usersExist () {
134 const totalUsers = await UserModel.countTotal()
135
136 return totalUsers !== 0
137 }
138
139 // We get db by param to not import it in this file (import orders)
140 async function applicationExist () {
141 const totalApplication = await ApplicationModel.countTotal()
142
143 return totalApplication !== 0
144 }
145
146 // ---------------------------------------------------------------------------
147
148 export {
149 checkConfig,
150 clientsExist,
151 usersExist,
152 applicationExist,
153 checkActivityPubUrls
154 }