PeerTube/server/initializers/installer.ts

141 lines
3.8 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'
import { logger, mkdirpPromise, rimrafPromise } from '../helpers'
import { createUserAccountAndChannel } from '../lib'
2017-11-14 10:57:56 +01:00
import { createLocalAccount } from '../lib/user'
2017-11-14 17:31:26 +01:00
import { applicationExist, clientsExist, usersExist } from './checker'
import { CACHE, CONFIG, LAST_MIGRATION_VERSION, SERVER_ACCOUNT_NAME } from './constants'
2017-05-22 20:58:25 +02:00
import { database as db } from './database'
async function installApplication () {
2017-11-14 10:57:56 +01:00
try {
await db.sequelize.sync()
await removeCacheDirectories()
await createDirectoriesIfNotExist()
await createOAuthClientIfNotExist()
await createOAuthAdminIfNotExist()
await createApplicationIfNotExist()
} catch (err) {
logger.error('Cannot install application.', err)
throw err
}
}
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
installApplication
}
// ---------------------------------------------------------------------------
2017-07-12 11:56:02 +02:00
function removeCacheDirectories () {
const cacheDirectories = CACHE.DIRECTORIES
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]
tasks.push(rimrafPromise(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
2017-07-12 11:56:02 +02:00
const cacheDirectories = CACHE.DIRECTORIES
const tasks = []
for (const key of Object.keys(storage)) {
2017-09-04 20:07:54 +02:00
const dir = storage[key]
2017-07-12 11:56:02 +02:00
tasks.push(mkdirpPromise(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]
tasks.push(mkdirpPromise(dir))
}
return Promise.all(tasks)
}
async function createOAuthClientIfNotExist () {
const exist = await clientsExist(db.OAuthClient)
// 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]/)
const client = db.OAuthClient.build({
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 () {
const exist = await usersExist(db.User)
// 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 {
password = passwordGenerator(8, true)
}
const userData = {
username,
email,
password,
role,
videoQuota: -1
}
const user = db.User.build(userData)
2017-11-10 14:48:08 +01:00
await createUserAccountAndChannel(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-11-14 17:31:26 +01:00
const exist = await applicationExist(db.Application)
// Nothing to do, application already exist
if (exist === true) return undefined
logger.info('Creating Application table.')
2017-11-10 17:27:49 +01:00
const applicationInstance = await db.Application.create({ migrationVersion: LAST_MIGRATION_VERSION })
logger.info('Creating application account.')
2017-11-14 17:31:26 +01:00
return createLocalAccount(SERVER_ACCOUNT_NAME, null, applicationInstance.id, undefined)
}