1
0
Fork 0
peertube/server/initializers/installer.ts

164 lines
4.5 KiB
TypeScript
Raw Normal View History

2017-06-05 19:53:49 +00:00
import * as passwordGenerator from 'password-generator'
2017-11-10 16:27:49 +00:00
import { UserRole } from '../../shared'
2017-12-28 10:16:08 +00:00
import { logger } from '../helpers/logger'
2019-03-05 09:58:44 +00:00
import { createApplicationActor, createUserAccountAndChannelAndPlaylist } from '../lib/user'
2017-12-12 16:53:50 +00: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-03-19 13:23:17 +00:00
import { FILES_CACHE, CONFIG, HLS_STREAMING_PLAYLIST_DIRECTORY, LAST_MIGRATION_VERSION } from './constants'
2017-12-12 16:53:50 +00:00
import { sequelizeTypescript } from './database'
2018-08-27 14:23:34 +00:00
import { remove, ensureDir } from 'fs-extra'
async function installApplication () {
2017-11-14 09:57:56 +00:00
try {
2018-11-19 14:21:09 +00:00
await Promise.all([
// Database related
sequelizeTypescript.sync()
.then(() => {
return Promise.all([
createApplicationIfNotExist(),
createOAuthClientIfNotExist(),
createOAuthAdminIfNotExist()
])
}),
// Directories
2019-03-19 09:53:53 +00:00
removeCacheAndTmpDirectories()
2018-11-19 14:21:09 +00:00
.then(() => createDirectoriesIfNotExist())
])
2017-11-14 09:57:56 +00:00
} catch (err) {
2018-03-26 13:54:13 +00:00
logger.error('Cannot install application.', { err })
2018-01-10 16:18:12 +00:00
process.exit(-1)
2017-11-14 09:57:56 +00:00
}
}
// ---------------------------------------------------------------------------
2017-05-15 20:22:03 +00:00
export {
installApplication
}
// ---------------------------------------------------------------------------
2019-03-19 09:53:53 +00:00
function removeCacheAndTmpDirectories () {
2019-03-19 13:23:17 +00:00
const cacheDirectories = Object.keys(FILES_CACHE)
.map(k => FILES_CACHE[k].DIRECTORY)
2017-07-12 09:56:02 +00:00
2017-11-10 16:27:49 +00:00
const tasks: Promise<any>[] = []
2017-07-12 09:56:02 +00:00
// Cache directories
for (const key of Object.keys(cacheDirectories)) {
2017-07-12 09:56:02 +00:00
const dir = cacheDirectories[key]
2018-08-27 14:23:34 +00:00
tasks.push(remove(dir))
}
2017-07-12 09:56:02 +00:00
2019-03-19 09:53:53 +00:00
tasks.push(remove(CONFIG.STORAGE.TMP_DIR))
2017-07-12 09:56:02 +00:00
return Promise.all(tasks)
}
function createDirectoriesIfNotExist () {
2017-09-04 18:07:54 +00:00
const storage = CONFIG.STORAGE
2019-03-19 13:23:17 +00:00
const cacheDirectories = Object.keys(FILES_CACHE)
.map(k => FILES_CACHE[k].DIRECTORY)
2018-08-27 14:23:34 +00:00
const tasks: Promise<void>[] = []
for (const key of Object.keys(storage)) {
2017-09-04 18:07:54 +00:00
const dir = storage[key]
2018-08-27 14:23:34 +00:00
tasks.push(ensureDir(dir))
}
2017-07-12 09:56:02 +00:00
// Cache directories
for (const key of Object.keys(cacheDirectories)) {
2017-07-12 09:56:02 +00:00
const dir = cacheDirectories[key]
2018-08-27 14:23:34 +00:00
tasks.push(ensureDir(dir))
}
2019-01-29 07:37:25 +00:00
// Playlist directories
tasks.push(ensureDir(HLS_STREAMING_PLAYLIST_DIRECTORY))
2019-01-29 07:37:25 +00:00
return Promise.all(tasks)
}
async function createOAuthClientIfNotExist () {
2017-12-12 16:53:50 +00: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 16:53:50 +00: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 16:53:50 +00: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 14:49:23 +00: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 14:49:23 +00:00
}
// Our password is weak so do not validate it
validatePassword = false
} else {
2018-03-29 08:58:24 +00: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 16:53:50 +00:00
const user = new UserModel(userData)
2019-03-05 09:58:44 +00:00
await createUserAccountAndChannelAndPlaylist(user, validatePassword)
logger.info('Username: ' + username)
logger.info('User password: ' + password)
2017-11-10 16:27:49 +00:00
}
2017-11-10 16:27:49 +00:00
async function createApplicationIfNotExist () {
2017-12-12 16:53:50 +00:00
const exist = await applicationExist()
2017-11-14 16:31:26 +00:00
// Nothing to do, application already exist
if (exist === true) return undefined
2017-11-10 16:27:49 +00:00
logger.info('Creating application account.')
2017-11-16 17:40:50 +00:00
2017-12-14 16:38:41 +00:00
const application = await ApplicationModel.create({
migrationVersion: LAST_MIGRATION_VERSION
})
2017-11-17 08:12:03 +00:00
2017-12-14 16:38:41 +00:00
return createApplicationActor(application.id)
}