2017-06-05 21:53:49 +02:00
|
|
|
import * as passwordGenerator from 'password-generator'
|
2017-10-25 16:03:33 +02:00
|
|
|
import * as Bluebird from 'bluebird'
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2017-05-22 20:58:25 +02:00
|
|
|
import { database as db } from './database'
|
2017-10-27 16:55:03 +02:00
|
|
|
import { CONFIG, LAST_MIGRATION_VERSION, CACHE } from './constants'
|
2017-05-15 22:22:03 +02:00
|
|
|
import { clientsExist, usersExist } from './checker'
|
2017-07-12 14:58:34 +02:00
|
|
|
import { logger, createCertsIfNotExist, mkdirpPromise, rimrafPromise } from '../helpers'
|
2017-10-24 19:41:09 +02:00
|
|
|
import { createUserAuthorAndChannel } from '../lib'
|
2017-10-27 16:55:03 +02:00
|
|
|
import { UserRole } from '../../shared'
|
2017-07-05 13:26:25 +02:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
async function installApplication () {
|
|
|
|
await db.sequelize.sync()
|
|
|
|
await removeCacheDirectories()
|
|
|
|
await createDirectoriesIfNotExist()
|
|
|
|
await createCertsIfNotExist()
|
|
|
|
await createOAuthClientIfNotExist()
|
|
|
|
await createOAuthAdminIfNotExist()
|
2016-03-21 21:11:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
installApplication
|
|
|
|
}
|
2016-03-21 21:11:26 +01:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-07-12 11:56:02 +02:00
|
|
|
function removeCacheDirectories () {
|
|
|
|
const cacheDirectories = CACHE.DIRECTORIES
|
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
const tasks: Bluebird<any>[] = []
|
2017-07-12 11:56:02 +02:00
|
|
|
|
|
|
|
// Cache directories
|
2017-10-25 16:03:33 +02:00
|
|
|
for (const key of Object.keys(cacheDirectories)) {
|
2017-07-12 11:56:02 +02:00
|
|
|
const dir = cacheDirectories[key]
|
|
|
|
tasks.push(rimrafPromise(dir))
|
2017-10-25 16:03:33 +02:00
|
|
|
}
|
2017-07-12 11:56:02 +02:00
|
|
|
|
|
|
|
return Promise.all(tasks)
|
|
|
|
}
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
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
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
const tasks = []
|
2017-10-25 16:03:33 +02:00
|
|
|
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-10-25 16:03:33 +02:00
|
|
|
}
|
2017-07-12 11:56:02 +02:00
|
|
|
|
|
|
|
// Cache directories
|
2017-10-25 16:03:33 +02:00
|
|
|
for (const key of Object.keys(cacheDirectories)) {
|
2017-07-12 11:56:02 +02:00
|
|
|
const dir = cacheDirectories[key]
|
|
|
|
tasks.push(mkdirpPromise(dir))
|
2017-10-25 16:03:33 +02:00
|
|
|
}
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
return Promise.all(tasks)
|
|
|
|
}
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
async function createOAuthClientIfNotExist () {
|
|
|
|
const exist = await clientsExist(db.OAuthClient)
|
|
|
|
// Nothing to do, clients already exist
|
|
|
|
if (exist === true) return undefined
|
2016-07-01 16:03:53 +02:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
logger.info('Creating a default OAuth Client.')
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
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
|
2016-03-21 21:11:26 +01:00
|
|
|
})
|
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
const createdClient = await client.save()
|
|
|
|
logger.info('Client id: ' + createdClient.clientId)
|
|
|
|
logger.info('Client secret: ' + createdClient.clientSecret)
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
return undefined
|
|
|
|
}
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
async function createOAuthAdminIfNotExist () {
|
|
|
|
const exist = await usersExist(db.User)
|
|
|
|
// Nothing to do, users already exist
|
|
|
|
if (exist === true) return undefined
|
2016-06-30 21:58:48 +02:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
logger.info('Creating the administrator.')
|
2016-06-30 21:58:48 +02:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
const username = 'root'
|
2017-10-27 16:55:03 +02:00
|
|
|
const role = UserRole.ADMINISTRATOR
|
2017-10-25 16:03:33 +02:00
|
|
|
const email = CONFIG.ADMIN.EMAIL
|
|
|
|
let validatePassword = true
|
|
|
|
let password = ''
|
2016-12-28 15:49:23 +01:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
// Do not generate a random password for tests
|
|
|
|
if (process.env.NODE_ENV === 'test') {
|
|
|
|
password = 'test'
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
if (process.env.NODE_APP_INSTANCE) {
|
|
|
|
password += process.env.NODE_APP_INSTANCE
|
2016-12-28 15:49:23 +01:00
|
|
|
}
|
2016-07-01 16:03:53 +02:00
|
|
|
|
2017-10-25 16:03:33 +02: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)
|
|
|
|
|
|
|
|
await createUserAuthorAndChannel(user, validatePassword)
|
|
|
|
logger.info('Username: ' + username)
|
|
|
|
logger.info('User password: ' + password)
|
|
|
|
|
|
|
|
logger.info('Creating Application table.')
|
|
|
|
await db.Application.create({ migrationVersion: LAST_MIGRATION_VERSION })
|
2016-03-21 21:11:26 +01:00
|
|
|
}
|