PeerTube/server/initializers/installer.ts

162 lines
4.4 KiB
TypeScript
Raw Normal View History

2017-06-05 21:53:49 +02:00
import * as passwordGenerator from 'password-generator'
2017-11-10 17:27:49 +01:00
import { UserRole } from '../../shared'
2017-12-28 11:16:08 +01:00
import { logger } from '../helpers/logger'
2019-03-05 10:58:44 +01:00
import { createApplicationActor, createUserAccountAndChannelAndPlaylist } from '../lib/user'
2017-12-12 17:53:50 +01:00
import { UserModel } from '../models/account/user'
import { ApplicationModel } from '../models/application/application'
import { OAuthClientModel } from '../models/oauth/oauth-client'
import { applicationExist, clientsExist, usersExist } from './checker-after-init'
2019-01-29 08:37:25 +01:00
import { CACHE, CONFIG, HLS_PLAYLIST_DIRECTORY, LAST_MIGRATION_VERSION } from './constants'
2017-12-12 17:53:50 +01:00
import { sequelizeTypescript } from './database'
2018-08-27 16:23:34 +02:00
import { remove, ensureDir } from 'fs-extra'
async function installApplication () {
2017-11-14 10:57:56 +01:00
try {
2018-11-19 15:21:09 +01:00
await Promise.all([
// Database related
sequelizeTypescript.sync()
.then(() => {
return Promise.all([
createApplicationIfNotExist(),
createOAuthClientIfNotExist(),
createOAuthAdminIfNotExist()
])
}),
// Directories
removeCacheDirectories()
.then(() => createDirectoriesIfNotExist())
])
2017-11-14 10:57:56 +01:00
} catch (err) {
2018-03-26 15:54:13 +02:00
logger.error('Cannot install application.', { err })
2018-01-10 17:18:12 +01:00
process.exit(-1)
2017-11-14 10:57:56 +01:00
}
}
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
installApplication
}
// ---------------------------------------------------------------------------
2017-07-12 11:56:02 +02:00
function removeCacheDirectories () {
2018-07-16 14:22:16 +02:00
const cacheDirectories = Object.keys(CACHE)
.map(k => CACHE[k].DIRECTORY)
2017-07-12 11:56:02 +02:00
2017-11-10 17:27:49 +01:00
const tasks: Promise<any>[] = []
2017-07-12 11:56:02 +02:00
// Cache directories
for (const key of Object.keys(cacheDirectories)) {
2017-07-12 11:56:02 +02:00
const dir = cacheDirectories[key]
2018-08-27 16:23:34 +02:00
tasks.push(remove(dir))
}
2017-07-12 11:56:02 +02:00
return Promise.all(tasks)
}
function createDirectoriesIfNotExist () {
2017-09-04 20:07:54 +02:00
const storage = CONFIG.STORAGE
2018-07-16 14:22:16 +02:00
const cacheDirectories = Object.keys(CACHE)
.map(k => CACHE[k].DIRECTORY)
2018-08-27 16:23:34 +02:00
const tasks: Promise<void>[] = []
for (const key of Object.keys(storage)) {
2017-09-04 20:07:54 +02:00
const dir = storage[key]
2018-08-27 16:23:34 +02:00
tasks.push(ensureDir(dir))
}
2017-07-12 11:56:02 +02:00
// Cache directories
for (const key of Object.keys(cacheDirectories)) {
2017-07-12 11:56:02 +02:00
const dir = cacheDirectories[key]
2018-08-27 16:23:34 +02:00
tasks.push(ensureDir(dir))
}
2019-01-29 08:37:25 +01:00
// Playlist directories
tasks.push(ensureDir(HLS_PLAYLIST_DIRECTORY))
return Promise.all(tasks)
}
async function createOAuthClientIfNotExist () {
2017-12-12 17:53:50 +01:00
const exist = await clientsExist()
// Nothing to do, clients already exist
if (exist === true) return undefined
logger.info('Creating a default OAuth Client.')
const id = passwordGenerator(32, false, /[a-z0-9]/)
const secret = passwordGenerator(32, false, /[a-zA-Z0-9]/)
2017-12-12 17:53:50 +01:00
const client = new OAuthClientModel({
clientId: id,
clientSecret: secret,
grants: [ 'password', 'refresh_token' ],
redirectUris: null
})
const createdClient = await client.save()
logger.info('Client id: ' + createdClient.clientId)
logger.info('Client secret: ' + createdClient.clientSecret)
return undefined
}
async function createOAuthAdminIfNotExist () {
2017-12-12 17:53:50 +01:00
const exist = await usersExist()
// Nothing to do, users already exist
if (exist === true) return undefined
logger.info('Creating the administrator.')
const username = 'root'
const role = UserRole.ADMINISTRATOR
const email = CONFIG.ADMIN.EMAIL
let validatePassword = true
let password = ''
2016-12-28 15:49:23 +01:00
// Do not generate a random password for tests
if (process.env.NODE_ENV === 'test') {
password = 'test'
if (process.env.NODE_APP_INSTANCE) {
password += process.env.NODE_APP_INSTANCE
2016-12-28 15:49:23 +01:00
}
// Our password is weak so do not validate it
validatePassword = false
} else {
2018-03-29 10:58:24 +02:00
password = passwordGenerator(16, true)
}
const userData = {
username,
email,
password,
role,
verified: true,
nsfwPolicy: CONFIG.INSTANCE.DEFAULT_NSFW_POLICY,
videoQuota: -1,
videoQuotaDaily: -1
}
2017-12-12 17:53:50 +01:00
const user = new UserModel(userData)
2019-03-05 10:58:44 +01:00
await createUserAccountAndChannelAndPlaylist(user, validatePassword)
logger.info('Username: ' + username)
logger.info('User password: ' + password)
2017-11-10 17:27:49 +01:00
}
2017-11-10 17:27:49 +01:00
async function createApplicationIfNotExist () {
2017-12-12 17:53:50 +01:00
const exist = await applicationExist()
2017-11-14 17:31:26 +01:00
// Nothing to do, application already exist
if (exist === true) return undefined
2017-11-10 17:27:49 +01:00
logger.info('Creating application account.')
2017-11-16 18:40:50 +01:00
2017-12-14 17:38:41 +01:00
const application = await ApplicationModel.create({
migrationVersion: LAST_MIGRATION_VERSION
})
2017-11-17 09:12:03 +01:00
2017-12-14 17:38:41 +01:00
return createApplicationActor(application.id)
}