2021-07-16 03:47:51 -04:00
|
|
|
import { ChildProcess, fork } from 'child_process'
|
|
|
|
import { copy } from 'fs-extra'
|
|
|
|
import { join } from 'path'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { parallelTests, randomInt, root } from '@shared/core-utils'
|
2022-08-10 05:51:13 -04:00
|
|
|
import { Video, VideoChannel, VideoChannelSync, VideoCreateResult, VideoDetails } from '@shared/models'
|
2021-07-16 03:47:51 -04:00
|
|
|
import { BulkCommand } from '../bulk'
|
|
|
|
import { CLICommand } from '../cli'
|
|
|
|
import { CustomPagesCommand } from '../custom-pages'
|
|
|
|
import { FeedCommand } from '../feeds'
|
|
|
|
import { LogsCommand } from '../logs'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { SQLCommand } from '../miscs'
|
2021-07-16 03:47:51 -04:00
|
|
|
import { AbusesCommand } from '../moderation'
|
|
|
|
import { OverviewsCommand } from '../overviews'
|
|
|
|
import { SearchCommand } from '../search'
|
|
|
|
import { SocketIOCommand } from '../socket'
|
2022-10-05 09:37:15 -04:00
|
|
|
import {
|
|
|
|
AccountsCommand,
|
|
|
|
BlocklistCommand,
|
|
|
|
LoginCommand,
|
|
|
|
NotificationsCommand,
|
2023-01-19 03:28:29 -05:00
|
|
|
RegistrationsCommand,
|
2022-10-05 09:37:15 -04:00
|
|
|
SubscriptionsCommand,
|
|
|
|
TwoFactorCommand,
|
|
|
|
UsersCommand
|
|
|
|
} from '../users'
|
2021-07-16 03:47:51 -04:00
|
|
|
import {
|
|
|
|
BlacklistCommand,
|
|
|
|
CaptionsCommand,
|
|
|
|
ChangeOwnershipCommand,
|
|
|
|
ChannelsCommand,
|
2022-08-10 03:53:39 -04:00
|
|
|
ChannelSyncsCommand,
|
2021-07-16 03:47:51 -04:00
|
|
|
HistoryCommand,
|
|
|
|
ImportsCommand,
|
|
|
|
LiveCommand,
|
|
|
|
PlaylistsCommand,
|
|
|
|
ServicesCommand,
|
|
|
|
StreamingPlaylistsCommand,
|
2022-03-24 08:36:47 -04:00
|
|
|
VideosCommand,
|
2022-03-22 11:58:49 -04:00
|
|
|
VideoStudioCommand,
|
2022-10-12 10:09:02 -04:00
|
|
|
VideoTokenCommand,
|
2022-03-24 08:36:47 -04:00
|
|
|
ViewsCommand
|
2021-07-16 03:47:51 -04:00
|
|
|
} from '../videos'
|
|
|
|
import { CommentsCommand } from '../videos/comments-command'
|
2022-03-24 08:36:47 -04:00
|
|
|
import { VideoStatsCommand } from '../videos/video-stats-command'
|
2021-07-16 03:47:51 -04:00
|
|
|
import { ConfigCommand } from './config-command'
|
|
|
|
import { ContactFormCommand } from './contact-form-command'
|
|
|
|
import { DebugCommand } from './debug-command'
|
|
|
|
import { FollowsCommand } from './follows-command'
|
|
|
|
import { JobsCommand } from './jobs-command'
|
2022-08-12 10:41:29 -04:00
|
|
|
import { MetricsCommand } from './metrics-command'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { ObjectStorageCommand } from './object-storage-command'
|
2021-07-16 03:47:51 -04:00
|
|
|
import { PluginsCommand } from './plugins-command'
|
|
|
|
import { RedundancyCommand } from './redundancy-command'
|
|
|
|
import { ServersCommand } from './servers-command'
|
|
|
|
import { StatsCommand } from './stats-command'
|
|
|
|
|
|
|
|
export type RunServerOptions = {
|
|
|
|
hideLogs?: boolean
|
2021-07-22 06:07:26 -04:00
|
|
|
nodeArgs?: string[]
|
|
|
|
peertubeArgs?: string[]
|
2021-08-17 02:26:20 -04:00
|
|
|
env?: { [ id: string ]: string }
|
2021-07-16 03:47:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export class PeerTubeServer {
|
|
|
|
app?: ChildProcess
|
|
|
|
|
|
|
|
url: string
|
|
|
|
host?: string
|
|
|
|
hostname?: string
|
|
|
|
port?: number
|
|
|
|
|
|
|
|
rtmpPort?: number
|
2021-11-05 06:36:03 -04:00
|
|
|
rtmpsPort?: number
|
2021-07-16 03:47:51 -04:00
|
|
|
|
|
|
|
parallel?: boolean
|
|
|
|
internalServerNumber: number
|
|
|
|
|
|
|
|
serverNumber?: number
|
|
|
|
customConfigFile?: string
|
|
|
|
|
|
|
|
store?: {
|
|
|
|
client?: {
|
|
|
|
id?: string
|
|
|
|
secret?: string
|
|
|
|
}
|
|
|
|
|
|
|
|
user?: {
|
|
|
|
username: string
|
|
|
|
password: string
|
|
|
|
email?: string
|
|
|
|
}
|
|
|
|
|
|
|
|
channel?: VideoChannel
|
2022-08-10 05:51:13 -04:00
|
|
|
videoChannelSync?: Partial<VideoChannelSync>
|
2021-07-16 03:47:51 -04:00
|
|
|
|
2021-07-22 08:28:03 -04:00
|
|
|
video?: Video
|
|
|
|
videoCreated?: VideoCreateResult
|
|
|
|
videoDetails?: VideoDetails
|
2021-07-16 03:47:51 -04:00
|
|
|
|
|
|
|
videos?: { id: number, uuid: string }[]
|
|
|
|
}
|
|
|
|
|
|
|
|
accessToken?: string
|
|
|
|
refreshToken?: string
|
|
|
|
|
|
|
|
bulk?: BulkCommand
|
|
|
|
cli?: CLICommand
|
|
|
|
customPage?: CustomPagesCommand
|
|
|
|
feed?: FeedCommand
|
|
|
|
logs?: LogsCommand
|
|
|
|
abuses?: AbusesCommand
|
|
|
|
overviews?: OverviewsCommand
|
|
|
|
search?: SearchCommand
|
|
|
|
contactForm?: ContactFormCommand
|
|
|
|
debug?: DebugCommand
|
|
|
|
follows?: FollowsCommand
|
|
|
|
jobs?: JobsCommand
|
2022-08-12 10:41:29 -04:00
|
|
|
metrics?: MetricsCommand
|
2021-07-16 03:47:51 -04:00
|
|
|
plugins?: PluginsCommand
|
|
|
|
redundancy?: RedundancyCommand
|
|
|
|
stats?: StatsCommand
|
|
|
|
config?: ConfigCommand
|
|
|
|
socketIO?: SocketIOCommand
|
|
|
|
accounts?: AccountsCommand
|
|
|
|
blocklist?: BlocklistCommand
|
|
|
|
subscriptions?: SubscriptionsCommand
|
|
|
|
live?: LiveCommand
|
|
|
|
services?: ServicesCommand
|
|
|
|
blacklist?: BlacklistCommand
|
|
|
|
captions?: CaptionsCommand
|
|
|
|
changeOwnership?: ChangeOwnershipCommand
|
|
|
|
playlists?: PlaylistsCommand
|
|
|
|
history?: HistoryCommand
|
|
|
|
imports?: ImportsCommand
|
2022-08-10 03:53:39 -04:00
|
|
|
channelSyncs?: ChannelSyncsCommand
|
2021-07-16 03:47:51 -04:00
|
|
|
streamingPlaylists?: StreamingPlaylistsCommand
|
|
|
|
channels?: ChannelsCommand
|
|
|
|
comments?: CommentsCommand
|
|
|
|
sql?: SQLCommand
|
|
|
|
notifications?: NotificationsCommand
|
|
|
|
servers?: ServersCommand
|
|
|
|
login?: LoginCommand
|
|
|
|
users?: UsersCommand
|
2021-08-17 02:26:20 -04:00
|
|
|
objectStorage?: ObjectStorageCommand
|
2022-03-22 11:58:49 -04:00
|
|
|
videoStudio?: VideoStudioCommand
|
2021-07-16 03:47:51 -04:00
|
|
|
videos?: VideosCommand
|
2022-03-24 08:36:47 -04:00
|
|
|
videoStats?: VideoStatsCommand
|
|
|
|
views?: ViewsCommand
|
2022-10-05 09:37:15 -04:00
|
|
|
twoFactor?: TwoFactorCommand
|
2022-10-12 10:09:02 -04:00
|
|
|
videoToken?: VideoTokenCommand
|
2023-01-19 03:28:29 -05:00
|
|
|
registrations?: RegistrationsCommand
|
2021-07-16 03:47:51 -04:00
|
|
|
|
|
|
|
constructor (options: { serverNumber: number } | { url: string }) {
|
|
|
|
if ((options as any).url) {
|
|
|
|
this.setUrl((options as any).url)
|
|
|
|
} else {
|
|
|
|
this.setServerNumber((options as any).serverNumber)
|
|
|
|
}
|
|
|
|
|
|
|
|
this.store = {
|
|
|
|
client: {
|
|
|
|
id: null,
|
|
|
|
secret: null
|
|
|
|
},
|
|
|
|
user: {
|
|
|
|
username: null,
|
|
|
|
password: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.assignCommands()
|
|
|
|
}
|
|
|
|
|
|
|
|
setServerNumber (serverNumber: number) {
|
|
|
|
this.serverNumber = serverNumber
|
|
|
|
|
|
|
|
this.parallel = parallelTests()
|
|
|
|
|
|
|
|
this.internalServerNumber = this.parallel ? this.randomServer() : this.serverNumber
|
|
|
|
this.rtmpPort = this.parallel ? this.randomRTMP() : 1936
|
2021-11-05 06:36:03 -04:00
|
|
|
this.rtmpsPort = this.parallel ? this.randomRTMP() : 1937
|
2021-07-16 03:47:51 -04:00
|
|
|
this.port = 9000 + this.internalServerNumber
|
|
|
|
|
2022-12-09 05:14:47 -05:00
|
|
|
this.url = `http://127.0.0.1:${this.port}`
|
|
|
|
this.host = `127.0.0.1:${this.port}`
|
|
|
|
this.hostname = '127.0.0.1'
|
2021-07-16 03:47:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
setUrl (url: string) {
|
|
|
|
const parsed = new URL(url)
|
|
|
|
|
|
|
|
this.url = url
|
|
|
|
this.host = parsed.host
|
|
|
|
this.hostname = parsed.hostname
|
|
|
|
this.port = parseInt(parsed.port)
|
|
|
|
}
|
|
|
|
|
2022-10-04 04:53:00 -04:00
|
|
|
getDirectoryPath (directoryName: string) {
|
|
|
|
const testDirectory = 'test' + this.internalServerNumber
|
|
|
|
|
|
|
|
return join(root(), testDirectory, directoryName)
|
|
|
|
}
|
|
|
|
|
2021-07-22 06:07:26 -04:00
|
|
|
async flushAndRun (configOverride?: Object, options: RunServerOptions = {}) {
|
2021-07-16 03:47:51 -04:00
|
|
|
await ServersCommand.flushTests(this.internalServerNumber)
|
|
|
|
|
2021-07-22 06:07:26 -04:00
|
|
|
return this.run(configOverride, options)
|
2021-07-16 03:47:51 -04:00
|
|
|
}
|
|
|
|
|
2021-07-22 06:07:26 -04:00
|
|
|
async run (configOverrideArg?: any, options: RunServerOptions = {}) {
|
2021-07-16 03:47:51 -04:00
|
|
|
// These actions are async so we need to be sure that they have both been done
|
|
|
|
const serverRunString = {
|
|
|
|
'HTTP server listening': false
|
|
|
|
}
|
|
|
|
const key = 'Database peertube_test' + this.internalServerNumber + ' is ready'
|
|
|
|
serverRunString[key] = false
|
|
|
|
|
|
|
|
const regexps = {
|
|
|
|
client_id: 'Client id: (.+)',
|
|
|
|
client_secret: 'Client secret: (.+)',
|
|
|
|
user_username: 'Username: (.+)',
|
|
|
|
user_password: 'User password: (.+)'
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.assignCustomConfigFile()
|
|
|
|
|
|
|
|
const configOverride = this.buildConfigOverride()
|
|
|
|
|
|
|
|
if (configOverrideArg !== undefined) {
|
|
|
|
Object.assign(configOverride, configOverrideArg)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Share the environment
|
|
|
|
const env = Object.create(process.env)
|
|
|
|
env['NODE_ENV'] = 'test'
|
|
|
|
env['NODE_APP_INSTANCE'] = this.internalServerNumber.toString()
|
|
|
|
env['NODE_CONFIG'] = JSON.stringify(configOverride)
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
if (options.env) {
|
|
|
|
Object.assign(env, options.env)
|
|
|
|
}
|
|
|
|
|
2022-01-03 11:17:12 -05:00
|
|
|
const execArgv = options.nodeArgs || []
|
2022-01-04 03:16:43 -05:00
|
|
|
// FIXME: too slow :/
|
|
|
|
// execArgv.push('--enable-source-maps')
|
2022-01-03 11:17:12 -05:00
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
const forkOptions = {
|
|
|
|
silent: true,
|
|
|
|
env,
|
|
|
|
detached: true,
|
2022-01-03 11:17:12 -05:00
|
|
|
execArgv
|
2021-07-16 03:47:51 -04:00
|
|
|
}
|
|
|
|
|
2022-01-03 10:37:16 -05:00
|
|
|
const peertubeArgs = options.peertubeArgs || []
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
return new Promise<void>((res, rej) => {
|
2021-07-16 04:20:44 -04:00
|
|
|
const self = this
|
2021-12-07 09:20:03 -05:00
|
|
|
let aggregatedLogs = ''
|
2021-07-16 04:20:44 -04:00
|
|
|
|
2022-01-03 10:37:16 -05:00
|
|
|
this.app = fork(join(root(), 'dist', 'server.js'), peertubeArgs, forkOptions)
|
2021-08-17 02:26:20 -04:00
|
|
|
|
2021-12-07 09:20:03 -05:00
|
|
|
const onPeerTubeExit = () => rej(new Error('Process exited:\n' + aggregatedLogs))
|
2021-08-26 05:11:46 -04:00
|
|
|
const onParentExit = () => {
|
2022-11-15 09:00:19 -05:00
|
|
|
if (!this.app?.pid) return
|
2021-08-26 05:11:46 -04:00
|
|
|
|
|
|
|
try {
|
|
|
|
process.kill(self.app.pid)
|
|
|
|
} catch { /* empty */ }
|
2021-08-17 02:26:20 -04:00
|
|
|
}
|
|
|
|
|
2021-08-26 05:11:46 -04:00
|
|
|
this.app.on('exit', onPeerTubeExit)
|
|
|
|
process.on('exit', onParentExit)
|
2021-08-17 02:26:20 -04:00
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
this.app.stdout.on('data', function onStdout (data) {
|
|
|
|
let dontContinue = false
|
|
|
|
|
2021-12-07 09:20:03 -05:00
|
|
|
const log: string = data.toString()
|
|
|
|
aggregatedLogs += log
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
// Capture things if we want to
|
|
|
|
for (const key of Object.keys(regexps)) {
|
|
|
|
const regexp = regexps[key]
|
2021-12-07 09:20:03 -05:00
|
|
|
const matches = log.match(regexp)
|
2021-07-16 03:47:51 -04:00
|
|
|
if (matches !== null) {
|
2021-07-16 04:20:44 -04:00
|
|
|
if (key === 'client_id') self.store.client.id = matches[1]
|
|
|
|
else if (key === 'client_secret') self.store.client.secret = matches[1]
|
|
|
|
else if (key === 'user_username') self.store.user.username = matches[1]
|
|
|
|
else if (key === 'user_password') self.store.user.password = matches[1]
|
2021-07-16 03:47:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if all required sentences are here
|
|
|
|
for (const key of Object.keys(serverRunString)) {
|
2021-12-07 09:20:03 -05:00
|
|
|
if (log.includes(key)) serverRunString[key] = true
|
2021-07-16 03:47:51 -04:00
|
|
|
if (serverRunString[key] === false) dontContinue = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no, there is maybe one thing not already initialized (client/user credentials generation...)
|
|
|
|
if (dontContinue === true) return
|
|
|
|
|
|
|
|
if (options.hideLogs === false) {
|
2021-12-07 09:20:03 -05:00
|
|
|
console.log(log)
|
2021-07-16 03:47:51 -04:00
|
|
|
} else {
|
2021-08-26 05:11:46 -04:00
|
|
|
process.removeListener('exit', onParentExit)
|
2021-07-16 04:20:44 -04:00
|
|
|
self.app.stdout.removeListener('data', onStdout)
|
2021-08-26 05:11:46 -04:00
|
|
|
self.app.removeListener('exit', onPeerTubeExit)
|
2021-07-16 03:47:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
res()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async kill () {
|
|
|
|
if (!this.app) return
|
|
|
|
|
|
|
|
await this.sql.cleanup()
|
|
|
|
|
|
|
|
process.kill(-this.app.pid)
|
|
|
|
|
|
|
|
this.app = null
|
|
|
|
}
|
|
|
|
|
|
|
|
private randomServer () {
|
|
|
|
const low = 10
|
|
|
|
const high = 10000
|
|
|
|
|
|
|
|
return randomInt(low, high)
|
|
|
|
}
|
|
|
|
|
|
|
|
private randomRTMP () {
|
|
|
|
const low = 1900
|
|
|
|
const high = 2100
|
|
|
|
|
|
|
|
return randomInt(low, high)
|
|
|
|
}
|
|
|
|
|
|
|
|
private async assignCustomConfigFile () {
|
|
|
|
if (this.internalServerNumber === this.serverNumber) return
|
|
|
|
|
|
|
|
const basePath = join(root(), 'config')
|
|
|
|
|
|
|
|
const tmpConfigFile = join(basePath, `test-${this.internalServerNumber}.yaml`)
|
|
|
|
await copy(join(basePath, `test-${this.serverNumber}.yaml`), tmpConfigFile)
|
|
|
|
|
|
|
|
this.customConfigFile = tmpConfigFile
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildConfigOverride () {
|
|
|
|
if (!this.parallel) return {}
|
|
|
|
|
|
|
|
return {
|
|
|
|
listen: {
|
|
|
|
port: this.port
|
|
|
|
},
|
|
|
|
webserver: {
|
|
|
|
port: this.port
|
|
|
|
},
|
|
|
|
database: {
|
|
|
|
suffix: '_test' + this.internalServerNumber
|
|
|
|
},
|
|
|
|
storage: {
|
2022-10-04 04:53:00 -04:00
|
|
|
tmp: this.getDirectoryPath('tmp') + '/',
|
|
|
|
bin: this.getDirectoryPath('bin') + '/',
|
|
|
|
avatars: this.getDirectoryPath('avatars') + '/',
|
|
|
|
videos: this.getDirectoryPath('videos') + '/',
|
|
|
|
streaming_playlists: this.getDirectoryPath('streaming-playlists') + '/',
|
|
|
|
redundancy: this.getDirectoryPath('redundancy') + '/',
|
|
|
|
logs: this.getDirectoryPath('logs') + '/',
|
|
|
|
previews: this.getDirectoryPath('previews') + '/',
|
|
|
|
thumbnails: this.getDirectoryPath('thumbnails') + '/',
|
|
|
|
torrents: this.getDirectoryPath('torrents') + '/',
|
|
|
|
captions: this.getDirectoryPath('captions') + '/',
|
|
|
|
cache: this.getDirectoryPath('cache') + '/',
|
|
|
|
plugins: this.getDirectoryPath('plugins') + '/',
|
|
|
|
well_known: this.getDirectoryPath('well-known') + '/'
|
2021-07-16 03:47:51 -04:00
|
|
|
},
|
|
|
|
admin: {
|
|
|
|
email: `admin${this.internalServerNumber}@example.com`
|
|
|
|
},
|
|
|
|
live: {
|
|
|
|
rtmp: {
|
|
|
|
port: this.rtmpPort
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private assignCommands () {
|
|
|
|
this.bulk = new BulkCommand(this)
|
|
|
|
this.cli = new CLICommand(this)
|
|
|
|
this.customPage = new CustomPagesCommand(this)
|
|
|
|
this.feed = new FeedCommand(this)
|
|
|
|
this.logs = new LogsCommand(this)
|
|
|
|
this.abuses = new AbusesCommand(this)
|
|
|
|
this.overviews = new OverviewsCommand(this)
|
|
|
|
this.search = new SearchCommand(this)
|
|
|
|
this.contactForm = new ContactFormCommand(this)
|
|
|
|
this.debug = new DebugCommand(this)
|
|
|
|
this.follows = new FollowsCommand(this)
|
|
|
|
this.jobs = new JobsCommand(this)
|
2022-08-12 10:41:29 -04:00
|
|
|
this.metrics = new MetricsCommand(this)
|
2021-07-16 03:47:51 -04:00
|
|
|
this.plugins = new PluginsCommand(this)
|
|
|
|
this.redundancy = new RedundancyCommand(this)
|
|
|
|
this.stats = new StatsCommand(this)
|
|
|
|
this.config = new ConfigCommand(this)
|
|
|
|
this.socketIO = new SocketIOCommand(this)
|
|
|
|
this.accounts = new AccountsCommand(this)
|
|
|
|
this.blocklist = new BlocklistCommand(this)
|
|
|
|
this.subscriptions = new SubscriptionsCommand(this)
|
|
|
|
this.live = new LiveCommand(this)
|
|
|
|
this.services = new ServicesCommand(this)
|
|
|
|
this.blacklist = new BlacklistCommand(this)
|
|
|
|
this.captions = new CaptionsCommand(this)
|
|
|
|
this.changeOwnership = new ChangeOwnershipCommand(this)
|
|
|
|
this.playlists = new PlaylistsCommand(this)
|
|
|
|
this.history = new HistoryCommand(this)
|
|
|
|
this.imports = new ImportsCommand(this)
|
2022-08-10 03:53:39 -04:00
|
|
|
this.channelSyncs = new ChannelSyncsCommand(this)
|
2021-07-16 03:47:51 -04:00
|
|
|
this.streamingPlaylists = new StreamingPlaylistsCommand(this)
|
|
|
|
this.channels = new ChannelsCommand(this)
|
|
|
|
this.comments = new CommentsCommand(this)
|
|
|
|
this.sql = new SQLCommand(this)
|
|
|
|
this.notifications = new NotificationsCommand(this)
|
|
|
|
this.servers = new ServersCommand(this)
|
|
|
|
this.login = new LoginCommand(this)
|
|
|
|
this.users = new UsersCommand(this)
|
|
|
|
this.videos = new VideosCommand(this)
|
2021-08-17 02:26:20 -04:00
|
|
|
this.objectStorage = new ObjectStorageCommand(this)
|
2022-03-22 11:58:49 -04:00
|
|
|
this.videoStudio = new VideoStudioCommand(this)
|
2022-03-24 08:36:47 -04:00
|
|
|
this.videoStats = new VideoStatsCommand(this)
|
|
|
|
this.views = new ViewsCommand(this)
|
2022-10-05 09:37:15 -04:00
|
|
|
this.twoFactor = new TwoFactorCommand(this)
|
2022-10-12 10:09:02 -04:00
|
|
|
this.videoToken = new VideoTokenCommand(this)
|
2023-01-19 03:28:29 -05:00
|
|
|
this.registrations = new RegistrationsCommand(this)
|
2021-07-16 03:47:51 -04:00
|
|
|
}
|
|
|
|
}
|