2017-05-15 22:22:03 +02:00
|
|
|
import { join } from 'path'
|
2017-06-05 21:53:49 +02:00
|
|
|
import * as config from 'config'
|
|
|
|
import * as passwordGenerator from 'password-generator'
|
2017-07-05 13:26:25 +02:00
|
|
|
import * as Promise 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-07-12 11:56:02 +02:00
|
|
|
import { USER_ROLES, CONFIG, LAST_MIGRATION_VERSION, CACHE } from './constants'
|
2017-05-15 22:22:03 +02:00
|
|
|
import { clientsExist, usersExist } from './checker'
|
2017-07-12 11:56:02 +02:00
|
|
|
import { logger, createCertsIfNotExist, root, mkdirpPromise, rimrafPromise } from '../helpers'
|
2017-07-05 13:26:25 +02:00
|
|
|
|
|
|
|
function installApplication () {
|
|
|
|
return db.sequelize.sync()
|
2017-07-12 11:56:02 +02:00
|
|
|
.then(() => removeCacheDirectories())
|
2017-07-05 13:26:25 +02:00
|
|
|
.then(() => createDirectoriesIfNotExist())
|
|
|
|
.then(() => createCertsIfNotExist())
|
|
|
|
.then(() => createOAuthClientIfNotExist())
|
|
|
|
.then(() => 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
|
|
|
|
|
|
|
|
const tasks = []
|
|
|
|
|
|
|
|
// Cache directories
|
|
|
|
Object.keys(cacheDirectories).forEach(key => {
|
|
|
|
const dir = cacheDirectories[key]
|
|
|
|
tasks.push(rimrafPromise(dir))
|
|
|
|
})
|
|
|
|
|
|
|
|
return Promise.all(tasks)
|
|
|
|
}
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
function createDirectoriesIfNotExist () {
|
2017-07-12 11:56:02 +02:00
|
|
|
const storages = CONFIG.STORAGE
|
|
|
|
const cacheDirectories = CACHE.DIRECTORIES
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
const tasks = []
|
|
|
|
Object.keys(storages).forEach(key => {
|
2016-03-21 21:11:26 +01:00
|
|
|
const dir = storages[key]
|
2017-07-12 11:56:02 +02:00
|
|
|
tasks.push(mkdirpPromise(dir))
|
|
|
|
})
|
|
|
|
|
|
|
|
// Cache directories
|
|
|
|
Object.keys(cacheDirectories).forEach(key => {
|
|
|
|
const dir = cacheDirectories[key]
|
|
|
|
tasks.push(mkdirpPromise(dir))
|
2017-07-05 13:26:25 +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-07-05 13:26:25 +02:00
|
|
|
function createOAuthClientIfNotExist () {
|
|
|
|
return clientsExist().then(exist => {
|
2016-03-21 21:11:26 +01:00
|
|
|
// Nothing to do, clients already exist
|
2017-07-05 13:26:25 +02:00
|
|
|
if (exist === true) return undefined
|
2016-03-21 21:11:26 +01:00
|
|
|
|
|
|
|
logger.info('Creating a default OAuth Client.')
|
|
|
|
|
2016-12-11 21:50:51 +01: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,
|
2016-07-01 16:03:53 +02:00
|
|
|
clientSecret: secret,
|
2017-05-22 20:58:25 +02:00
|
|
|
grants: [ 'password', 'refresh_token' ],
|
|
|
|
redirectUris: null
|
2016-07-01 16:03:53 +02:00
|
|
|
})
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
return client.save().then(createdClient => {
|
2016-12-11 21:50:51 +01:00
|
|
|
logger.info('Client id: ' + createdClient.clientId)
|
2016-07-01 16:03:53 +02:00
|
|
|
logger.info('Client secret: ' + createdClient.clientSecret)
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
return undefined
|
2016-03-21 21:11:26 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
function createOAuthAdminIfNotExist () {
|
|
|
|
return usersExist().then(exist => {
|
2016-03-21 21:11:26 +01:00
|
|
|
// Nothing to do, users already exist
|
2017-07-05 13:26:25 +02:00
|
|
|
if (exist === true) return undefined
|
2016-03-21 21:11:26 +01:00
|
|
|
|
|
|
|
logger.info('Creating the administrator.')
|
|
|
|
|
2016-04-19 22:29:36 +02:00
|
|
|
const username = 'root'
|
2017-05-15 22:22:03 +02:00
|
|
|
const role = USER_ROLES.ADMIN
|
|
|
|
const email = CONFIG.ADMIN.EMAIL
|
|
|
|
const createOptions: { validate?: boolean } = {}
|
2016-06-30 21:58:48 +02:00
|
|
|
let password = ''
|
|
|
|
|
|
|
|
// 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
|
|
|
|
createOptions.validate = false
|
2016-06-30 21:58:48 +02:00
|
|
|
} else {
|
|
|
|
password = passwordGenerator(8, true)
|
|
|
|
}
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2016-12-28 15:49:23 +01:00
|
|
|
const userData = {
|
2016-10-02 12:19:02 +02:00
|
|
|
username,
|
2017-02-18 09:29:59 +01:00
|
|
|
email,
|
2016-10-02 12:19:02 +02:00
|
|
|
password,
|
|
|
|
role
|
2016-12-28 15:49:23 +01:00
|
|
|
}
|
2016-07-01 16:03:53 +02:00
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
return db.User.create(userData, createOptions).then(createdUser => {
|
2016-08-25 17:57:37 +02:00
|
|
|
logger.info('Username: ' + username)
|
|
|
|
logger.info('User password: ' + password)
|
2016-03-21 21:11:26 +01:00
|
|
|
|
2016-12-25 09:44:57 +01:00
|
|
|
logger.info('Creating Application table.')
|
2017-07-05 13:26:25 +02:00
|
|
|
return db.Application.create({ migrationVersion: LAST_MIGRATION_VERSION })
|
2016-03-21 21:11:26 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|