]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/server-commands/server/server.ts
Add signup approval API REST doc
[github/Chocobozzz/PeerTube.git] / shared / server-commands / server / server.ts
CommitLineData
254d3579
C
1import { ChildProcess, fork } from 'child_process'
2import { copy } from 'fs-extra'
3import { join } from 'path'
c55e3d72 4import { parallelTests, randomInt, root } from '@shared/core-utils'
a3b472a1 5import { Video, VideoChannel, VideoChannelSync, VideoCreateResult, VideoDetails } from '@shared/models'
254d3579
C
6import { BulkCommand } from '../bulk'
7import { CLICommand } from '../cli'
8import { CustomPagesCommand } from '../custom-pages'
9import { FeedCommand } from '../feeds'
10import { LogsCommand } from '../logs'
c55e3d72 11import { SQLCommand } from '../miscs'
254d3579
C
12import { AbusesCommand } from '../moderation'
13import { OverviewsCommand } from '../overviews'
14import { SearchCommand } from '../search'
15import { SocketIOCommand } from '../socket'
56f47830
C
16import {
17 AccountsCommand,
18 BlocklistCommand,
19 LoginCommand,
20 NotificationsCommand,
21 SubscriptionsCommand,
22 TwoFactorCommand,
23 UsersCommand
24} from '../users'
254d3579
C
25import {
26 BlacklistCommand,
27 CaptionsCommand,
28 ChangeOwnershipCommand,
29 ChannelsCommand,
2a491182 30 ChannelSyncsCommand,
254d3579
C
31 HistoryCommand,
32 ImportsCommand,
33 LiveCommand,
34 PlaylistsCommand,
35 ServicesCommand,
36 StreamingPlaylistsCommand,
b2111066 37 VideosCommand,
92e66e04 38 VideoStudioCommand,
3545e72c 39 VideoTokenCommand,
b2111066 40 ViewsCommand
254d3579
C
41} from '../videos'
42import { CommentsCommand } from '../videos/comments-command'
b2111066 43import { VideoStatsCommand } from '../videos/video-stats-command'
254d3579
C
44import { ConfigCommand } from './config-command'
45import { ContactFormCommand } from './contact-form-command'
46import { DebugCommand } from './debug-command'
47import { FollowsCommand } from './follows-command'
48import { JobsCommand } from './jobs-command'
fd3c2e87 49import { MetricsCommand } from './metrics-command'
c55e3d72 50import { ObjectStorageCommand } from './object-storage-command'
254d3579
C
51import { PluginsCommand } from './plugins-command'
52import { RedundancyCommand } from './redundancy-command'
53import { ServersCommand } from './servers-command'
54import { StatsCommand } from './stats-command'
55
56export type RunServerOptions = {
57 hideLogs?: boolean
2e980ed3
C
58 nodeArgs?: string[]
59 peertubeArgs?: string[]
0305db28 60 env?: { [ id: string ]: string }
254d3579
C
61}
62
63export class PeerTubeServer {
64 app?: ChildProcess
65
66 url: string
67 host?: string
68 hostname?: string
69 port?: number
70
71 rtmpPort?: number
df1db951 72 rtmpsPort?: number
254d3579
C
73
74 parallel?: boolean
75 internalServerNumber: number
76
77 serverNumber?: number
78 customConfigFile?: string
79
80 store?: {
81 client?: {
82 id?: string
83 secret?: string
84 }
85
86 user?: {
87 username: string
88 password: string
89 email?: string
90 }
91
92 channel?: VideoChannel
a3b472a1 93 videoChannelSync?: Partial<VideoChannelSync>
254d3579 94
83903cb6
C
95 video?: Video
96 videoCreated?: VideoCreateResult
97 videoDetails?: VideoDetails
254d3579
C
98
99 videos?: { id: number, uuid: string }[]
100 }
101
102 accessToken?: string
103 refreshToken?: string
104
105 bulk?: BulkCommand
106 cli?: CLICommand
107 customPage?: CustomPagesCommand
108 feed?: FeedCommand
109 logs?: LogsCommand
110 abuses?: AbusesCommand
111 overviews?: OverviewsCommand
112 search?: SearchCommand
113 contactForm?: ContactFormCommand
114 debug?: DebugCommand
115 follows?: FollowsCommand
116 jobs?: JobsCommand
fd3c2e87 117 metrics?: MetricsCommand
254d3579
C
118 plugins?: PluginsCommand
119 redundancy?: RedundancyCommand
120 stats?: StatsCommand
121 config?: ConfigCommand
122 socketIO?: SocketIOCommand
123 accounts?: AccountsCommand
124 blocklist?: BlocklistCommand
125 subscriptions?: SubscriptionsCommand
126 live?: LiveCommand
127 services?: ServicesCommand
128 blacklist?: BlacklistCommand
129 captions?: CaptionsCommand
130 changeOwnership?: ChangeOwnershipCommand
131 playlists?: PlaylistsCommand
132 history?: HistoryCommand
133 imports?: ImportsCommand
2a491182 134 channelSyncs?: ChannelSyncsCommand
254d3579
C
135 streamingPlaylists?: StreamingPlaylistsCommand
136 channels?: ChannelsCommand
137 comments?: CommentsCommand
138 sql?: SQLCommand
139 notifications?: NotificationsCommand
140 servers?: ServersCommand
141 login?: LoginCommand
142 users?: UsersCommand
0305db28 143 objectStorage?: ObjectStorageCommand
92e66e04 144 videoStudio?: VideoStudioCommand
254d3579 145 videos?: VideosCommand
b2111066
C
146 videoStats?: VideoStatsCommand
147 views?: ViewsCommand
56f47830 148 twoFactor?: TwoFactorCommand
3545e72c 149 videoToken?: VideoTokenCommand
254d3579
C
150
151 constructor (options: { serverNumber: number } | { url: string }) {
152 if ((options as any).url) {
153 this.setUrl((options as any).url)
154 } else {
155 this.setServerNumber((options as any).serverNumber)
156 }
157
158 this.store = {
159 client: {
160 id: null,
161 secret: null
162 },
163 user: {
164 username: null,
165 password: null
166 }
167 }
168
169 this.assignCommands()
170 }
171
172 setServerNumber (serverNumber: number) {
173 this.serverNumber = serverNumber
174
175 this.parallel = parallelTests()
176
177 this.internalServerNumber = this.parallel ? this.randomServer() : this.serverNumber
178 this.rtmpPort = this.parallel ? this.randomRTMP() : 1936
df1db951 179 this.rtmpsPort = this.parallel ? this.randomRTMP() : 1937
254d3579
C
180 this.port = 9000 + this.internalServerNumber
181
2732eeff
C
182 this.url = `http://127.0.0.1:${this.port}`
183 this.host = `127.0.0.1:${this.port}`
184 this.hostname = '127.0.0.1'
254d3579
C
185 }
186
187 setUrl (url: string) {
188 const parsed = new URL(url)
189
190 this.url = url
191 this.host = parsed.host
192 this.hostname = parsed.hostname
193 this.port = parseInt(parsed.port)
194 }
195
6c5f0d3a 196 getDirectoryPath (directoryName: string) {
197 const testDirectory = 'test' + this.internalServerNumber
198
199 return join(root(), testDirectory, directoryName)
200 }
201
2e980ed3 202 async flushAndRun (configOverride?: Object, options: RunServerOptions = {}) {
254d3579
C
203 await ServersCommand.flushTests(this.internalServerNumber)
204
2e980ed3 205 return this.run(configOverride, options)
254d3579
C
206 }
207
2e980ed3 208 async run (configOverrideArg?: any, options: RunServerOptions = {}) {
254d3579
C
209 // These actions are async so we need to be sure that they have both been done
210 const serverRunString = {
211 'HTTP server listening': false
212 }
213 const key = 'Database peertube_test' + this.internalServerNumber + ' is ready'
214 serverRunString[key] = false
215
216 const regexps = {
217 client_id: 'Client id: (.+)',
218 client_secret: 'Client secret: (.+)',
219 user_username: 'Username: (.+)',
220 user_password: 'User password: (.+)'
221 }
222
223 await this.assignCustomConfigFile()
224
225 const configOverride = this.buildConfigOverride()
226
227 if (configOverrideArg !== undefined) {
228 Object.assign(configOverride, configOverrideArg)
229 }
230
231 // Share the environment
232 const env = Object.create(process.env)
233 env['NODE_ENV'] = 'test'
234 env['NODE_APP_INSTANCE'] = this.internalServerNumber.toString()
235 env['NODE_CONFIG'] = JSON.stringify(configOverride)
236
0305db28
JB
237 if (options.env) {
238 Object.assign(env, options.env)
239 }
240
7298cad6 241 const execArgv = options.nodeArgs || []
8f5a1f36
C
242 // FIXME: too slow :/
243 // execArgv.push('--enable-source-maps')
7298cad6 244
254d3579
C
245 const forkOptions = {
246 silent: true,
247 env,
248 detached: true,
7298cad6 249 execArgv
254d3579
C
250 }
251
9270bd3a 252 const peertubeArgs = options.peertubeArgs || []
9270bd3a 253
0305db28 254 return new Promise<void>((res, rej) => {
08642a76 255 const self = this
f307255e 256 let aggregatedLogs = ''
08642a76 257
9270bd3a 258 this.app = fork(join(root(), 'dist', 'server.js'), peertubeArgs, forkOptions)
0305db28 259
f307255e 260 const onPeerTubeExit = () => rej(new Error('Process exited:\n' + aggregatedLogs))
706a450f 261 const onParentExit = () => {
99b75748 262 if (!this.app?.pid) return
706a450f
C
263
264 try {
265 process.kill(self.app.pid)
266 } catch { /* empty */ }
0305db28
JB
267 }
268
706a450f
C
269 this.app.on('exit', onPeerTubeExit)
270 process.on('exit', onParentExit)
0305db28 271
254d3579
C
272 this.app.stdout.on('data', function onStdout (data) {
273 let dontContinue = false
274
f307255e
C
275 const log: string = data.toString()
276 aggregatedLogs += log
277
254d3579
C
278 // Capture things if we want to
279 for (const key of Object.keys(regexps)) {
280 const regexp = regexps[key]
f307255e 281 const matches = log.match(regexp)
254d3579 282 if (matches !== null) {
08642a76
C
283 if (key === 'client_id') self.store.client.id = matches[1]
284 else if (key === 'client_secret') self.store.client.secret = matches[1]
285 else if (key === 'user_username') self.store.user.username = matches[1]
286 else if (key === 'user_password') self.store.user.password = matches[1]
254d3579
C
287 }
288 }
289
290 // Check if all required sentences are here
291 for (const key of Object.keys(serverRunString)) {
f307255e 292 if (log.includes(key)) serverRunString[key] = true
254d3579
C
293 if (serverRunString[key] === false) dontContinue = true
294 }
295
296 // If no, there is maybe one thing not already initialized (client/user credentials generation...)
297 if (dontContinue === true) return
298
299 if (options.hideLogs === false) {
f307255e 300 console.log(log)
254d3579 301 } else {
706a450f 302 process.removeListener('exit', onParentExit)
08642a76 303 self.app.stdout.removeListener('data', onStdout)
706a450f 304 self.app.removeListener('exit', onPeerTubeExit)
254d3579
C
305 }
306
254d3579
C
307 res()
308 })
309 })
310 }
311
312 async kill () {
313 if (!this.app) return
314
315 await this.sql.cleanup()
316
317 process.kill(-this.app.pid)
318
319 this.app = null
320 }
321
322 private randomServer () {
323 const low = 10
324 const high = 10000
325
326 return randomInt(low, high)
327 }
328
329 private randomRTMP () {
330 const low = 1900
331 const high = 2100
332
333 return randomInt(low, high)
334 }
335
336 private async assignCustomConfigFile () {
337 if (this.internalServerNumber === this.serverNumber) return
338
339 const basePath = join(root(), 'config')
340
341 const tmpConfigFile = join(basePath, `test-${this.internalServerNumber}.yaml`)
342 await copy(join(basePath, `test-${this.serverNumber}.yaml`), tmpConfigFile)
343
344 this.customConfigFile = tmpConfigFile
345 }
346
347 private buildConfigOverride () {
348 if (!this.parallel) return {}
349
350 return {
351 listen: {
352 port: this.port
353 },
354 webserver: {
355 port: this.port
356 },
357 database: {
358 suffix: '_test' + this.internalServerNumber
359 },
360 storage: {
6c5f0d3a 361 tmp: this.getDirectoryPath('tmp') + '/',
362 bin: this.getDirectoryPath('bin') + '/',
363 avatars: this.getDirectoryPath('avatars') + '/',
364 videos: this.getDirectoryPath('videos') + '/',
365 streaming_playlists: this.getDirectoryPath('streaming-playlists') + '/',
366 redundancy: this.getDirectoryPath('redundancy') + '/',
367 logs: this.getDirectoryPath('logs') + '/',
368 previews: this.getDirectoryPath('previews') + '/',
369 thumbnails: this.getDirectoryPath('thumbnails') + '/',
370 torrents: this.getDirectoryPath('torrents') + '/',
371 captions: this.getDirectoryPath('captions') + '/',
372 cache: this.getDirectoryPath('cache') + '/',
373 plugins: this.getDirectoryPath('plugins') + '/',
374 well_known: this.getDirectoryPath('well-known') + '/'
254d3579
C
375 },
376 admin: {
377 email: `admin${this.internalServerNumber}@example.com`
378 },
379 live: {
380 rtmp: {
381 port: this.rtmpPort
382 }
383 }
384 }
385 }
386
387 private assignCommands () {
388 this.bulk = new BulkCommand(this)
389 this.cli = new CLICommand(this)
390 this.customPage = new CustomPagesCommand(this)
391 this.feed = new FeedCommand(this)
392 this.logs = new LogsCommand(this)
393 this.abuses = new AbusesCommand(this)
394 this.overviews = new OverviewsCommand(this)
395 this.search = new SearchCommand(this)
396 this.contactForm = new ContactFormCommand(this)
397 this.debug = new DebugCommand(this)
398 this.follows = new FollowsCommand(this)
399 this.jobs = new JobsCommand(this)
fd3c2e87 400 this.metrics = new MetricsCommand(this)
254d3579
C
401 this.plugins = new PluginsCommand(this)
402 this.redundancy = new RedundancyCommand(this)
403 this.stats = new StatsCommand(this)
404 this.config = new ConfigCommand(this)
405 this.socketIO = new SocketIOCommand(this)
406 this.accounts = new AccountsCommand(this)
407 this.blocklist = new BlocklistCommand(this)
408 this.subscriptions = new SubscriptionsCommand(this)
409 this.live = new LiveCommand(this)
410 this.services = new ServicesCommand(this)
411 this.blacklist = new BlacklistCommand(this)
412 this.captions = new CaptionsCommand(this)
413 this.changeOwnership = new ChangeOwnershipCommand(this)
414 this.playlists = new PlaylistsCommand(this)
415 this.history = new HistoryCommand(this)
416 this.imports = new ImportsCommand(this)
2a491182 417 this.channelSyncs = new ChannelSyncsCommand(this)
254d3579
C
418 this.streamingPlaylists = new StreamingPlaylistsCommand(this)
419 this.channels = new ChannelsCommand(this)
420 this.comments = new CommentsCommand(this)
421 this.sql = new SQLCommand(this)
422 this.notifications = new NotificationsCommand(this)
423 this.servers = new ServersCommand(this)
424 this.login = new LoginCommand(this)
425 this.users = new UsersCommand(this)
426 this.videos = new VideosCommand(this)
0305db28 427 this.objectStorage = new ObjectStorageCommand(this)
92e66e04 428 this.videoStudio = new VideoStudioCommand(this)
b2111066
C
429 this.videoStats = new VideoStatsCommand(this)
430 this.views = new ViewsCommand(this)
56f47830 431 this.twoFactor = new TwoFactorCommand(this)
3545e72c 432 this.videoToken = new VideoTokenCommand(this)
254d3579
C
433 }
434}