]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/initializers/checker.ts
(feed) adding thumbnail support for RSS feed
[github/Chocobozzz/PeerTube.git] / server / initializers / checker.ts
1 import * as config from 'config'
2 import { promisify0 } 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 { parse } from 'url'
7 import { CONFIG } from './constants'
8 import { logger } from '../helpers/logger'
9 import { getServerActor } from '../helpers/utils'
10
11 async 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 }
28
29 // Some checks on configuration files
30 // Return an error message, or null if everything is okay
31 function checkConfig () {
32 const defaultNSFWPolicy = config.get<string>('instance.default_nsfw_policy')
33
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
36 }
37
38 return null
39 }
40
41 // Check the config files
42 function checkMissedConfig () {
43 const required = [ 'listen.port', 'listen.hostname',
44 'webserver.https', 'webserver.hostname', 'webserver.port',
45 'trust_proxy',
46 'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password',
47 'redis.hostname', 'redis.port', 'redis.auth', 'redis.db',
48 'smtp.hostname', 'smtp.port', 'smtp.username', 'smtp.password', 'smtp.tls', 'smtp.from_address',
49 'storage.avatars', 'storage.videos', 'storage.logs', 'storage.previews', 'storage.thumbnails', 'storage.torrents', 'storage.cache',
50 'log.level',
51 'user.video_quota',
52 'cache.previews.size', 'admin.email',
53 'signup.enabled', 'signup.limit', 'signup.filters.cidr.whitelist', 'signup.filters.cidr.blacklist',
54 'transcoding.enabled', 'transcoding.threads',
55 'instance.name', 'instance.short_description', 'instance.description', 'instance.terms', 'instance.default_client_route',
56 'instance.default_nsfw_policy', 'instance.robots',
57 'services.twitter.username', 'services.twitter.whitelisted'
58 ]
59 const miss: string[] = []
60
61 for (const key of required) {
62 if (!config.has(key)) {
63 miss.push(key)
64 }
65 }
66
67 return miss
68 }
69
70 // Check the available codecs
71 // We get CONFIG by param to not import it in this file (import orders)
72 async function checkFFmpeg (CONFIG: { TRANSCODING: { ENABLED: boolean } }) {
73 const Ffmpeg = require('fluent-ffmpeg')
74 const getAvailableCodecsPromise = promisify0(Ffmpeg.getAvailableCodecs)
75
76 const codecs = await getAvailableCodecsPromise()
77 if (CONFIG.TRANSCODING.ENABLED === false) return undefined
78
79 const canEncode = [ 'libx264' ]
80 for (const codec of canEncode) {
81 if (codecs[codec] === undefined) {
82 throw new Error('Unknown codec ' + codec + ' in FFmpeg.')
83 }
84
85 if (codecs[codec].canEncode !== true) {
86 throw new Error('Unavailable encode codec ' + codec + ' in FFmpeg')
87 }
88 }
89 }
90
91 // We get db by param to not import it in this file (import orders)
92 async function clientsExist () {
93 const totalClients = await OAuthClientModel.countTotal()
94
95 return totalClients !== 0
96 }
97
98 // We get db by param to not import it in this file (import orders)
99 async function usersExist () {
100 const totalUsers = await UserModel.countTotal()
101
102 return totalUsers !== 0
103 }
104
105 // We get db by param to not import it in this file (import orders)
106 async function applicationExist () {
107 const totalApplication = await ApplicationModel.countTotal()
108
109 return totalApplication !== 0
110 }
111
112 // ---------------------------------------------------------------------------
113
114 export {
115 checkConfig,
116 checkFFmpeg,
117 checkMissedConfig,
118 clientsExist,
119 usersExist,
120 applicationExist,
121 checkActivityPubUrls
122 }