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