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'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { createApplicationActor, createUserAccountAndChannel } 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'
|
2017-11-14 17:31:26 +01:00
|
|
|
import { applicationExist, clientsExist, usersExist } from './checker'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { CACHE, CONFIG, 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'
|
2017-07-05 13:26:25 +02:00
|
|
|
|
2017-10-25 16:03:33 +02:00
|
|
|
async function installApplication () {
|
2017-11-14 10:57:56 +01:00
|
|
|
try {
|
2017-12-12 17:53:50 +01:00
|
|
|
await sequelizeTypescript.sync()
|
2017-11-14 10:57:56 +01:00
|
|
|
await removeCacheDirectories()
|
|
|
|
await createDirectoriesIfNotExist()
|
2017-11-16 11:08:25 +01:00
|
|
|
await createApplicationIfNotExist()
|
2017-11-14 10:57:56 +01:00
|
|
|
await createOAuthClientIfNotExist()
|
|
|
|
await createOAuthAdminIfNotExist()
|
|
|
|
} 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
|
|
|
}
|
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 () {
|
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
|
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]
|
2018-08-27 16:23:34 +02:00
|
|
|
tasks.push(remove(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
|
2018-07-16 14:22:16 +02:00
|
|
|
const cacheDirectories = Object.keys(CACHE)
|
|
|
|
.map(k => CACHE[k].DIRECTORY)
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2018-08-27 16:23:34 +02:00
|
|
|
const tasks: Promise<void>[] = []
|
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]
|
2018-08-27 16:23:34 +02:00
|
|
|
tasks.push(ensureDir(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]
|
2018-08-27 16:23:34 +02:00
|
|
|
tasks.push(ensureDir(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 () {
|
2017-12-12 17:53:50 +01:00
|
|
|
const exist = await clientsExist()
|
2017-10-25 16:03:33 +02:00
|
|
|
// 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]/)
|
2017-12-12 17:53:50 +01:00
|
|
|
const client = new OAuthClientModel({
|
2017-10-25 16:03:33 +02:00
|
|
|
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 () {
|
2017-12-12 17:53:50 +01:00
|
|
|
const exist = await usersExist()
|
2017-10-25 16:03:33 +02:00
|
|
|
// 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 {
|
2018-03-29 10:58:24 +02:00
|
|
|
password = passwordGenerator(16, true)
|
2017-10-25 16:03:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const userData = {
|
|
|
|
username,
|
|
|
|
email,
|
|
|
|
password,
|
|
|
|
role,
|
2018-04-19 11:01:34 +02:00
|
|
|
nsfwPolicy: CONFIG.INSTANCE.DEFAULT_NSFW_POLICY,
|
2017-10-25 16:03:33 +02:00
|
|
|
videoQuota: -1
|
|
|
|
}
|
2017-12-12 17:53:50 +01:00
|
|
|
const user = new UserModel(userData)
|
2017-10-25 16:03:33 +02:00
|
|
|
|
2017-11-10 14:48:08 +01:00
|
|
|
await createUserAccountAndChannel(user, validatePassword)
|
2017-10-25 16:03:33 +02:00
|
|
|
logger.info('Username: ' + username)
|
|
|
|
logger.info('User password: ' + password)
|
2017-11-10 17:27:49 +01:00
|
|
|
}
|
2017-10-25 16:03:33 +02: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)
|
2016-03-21 21:11:26 +01:00
|
|
|
}
|