X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Finitializers%2Finstaller.js;h=1df300ba8d467fb76d3a7b5647fe1efc76559294;hb=763381deafebc660657ff175210a9585962ed9c4;hp=750eb2c5927d3072adf1adf123e3aabaa182b829;hpb=37dc07b292ae4b24011a99146150869bb9c17c65;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/initializers/installer.js b/server/initializers/installer.js index 750eb2c59..1df300ba8 100644 --- a/server/initializers/installer.js +++ b/server/initializers/installer.js @@ -1,35 +1,44 @@ 'use strict' -const async = require('async') const config = require('config') +const each = require('async/each') const mkdirp = require('mkdirp') +const mongoose = require('mongoose') +const passwordGenerator = require('password-generator') const path = require('path') +const series = require('async/series') const checker = require('./checker') +const constants = require('./constants') const logger = require('../helpers/logger') -const peertubeCrypto = require('../helpers/peertubeCrypto') -const Users = require('../models/users') +const peertubeCrypto = require('../helpers/peertube-crypto') + +const Application = mongoose.model('Application') +const Client = mongoose.model('OAuthClient') +const User = mongoose.model('User') const installer = { - installApplication: installApplication + installApplication } function installApplication (callback) { - // Creates directories - createDirectoriesIfNotExist(function (err) { - if (err) return callback(err) - - // ----------- Create the certificates if they don't already exist ----------- - peertubeCrypto.createCertsIfNotExist(function (err) { - if (err) return callback(err) - - createOAuthClientIfNotExist(function (err) { - if (err) return callback(err) - - createOAuthUserIfNotExist(callback) - }) - }) - }) + series([ + function createDirectories (callbackAsync) { + createDirectoriesIfNotExist(callbackAsync) + }, + + function createCertificates (callbackAsync) { + peertubeCrypto.createCertsIfNotExist(callbackAsync) + }, + + function createOAuthClient (callbackAsync) { + createOAuthClientIfNotExist(callbackAsync) + }, + + function createOAuthUser (callbackAsync) { + createOAuthAdminIfNotExist(callbackAsync) + } + ], callback) } // --------------------------------------------------------------------------- @@ -41,7 +50,7 @@ module.exports = installer function createDirectoriesIfNotExist (callback) { const storages = config.get('storage') - async.each(Object.keys(storages), function (key, callbackEach) { + each(Object.keys(storages), function (key, callbackEach) { const dir = storages[key] mkdirp(path.join(__dirname, '..', '..', dir), callbackEach) }, callback) @@ -56,20 +65,24 @@ function createOAuthClientIfNotExist (callback) { logger.info('Creating a default OAuth Client.') - // TODO: generate password - const password = 'megustalabanana' - Users.createClient(password, [ 'password' ], function (err, id) { + const secret = passwordGenerator(32, false) + const client = new Client({ + clientSecret: secret, + grants: [ 'password', 'refresh_token' ] + }) + + client.save(function (err, createdClient) { if (err) return callback(err) - logger.info('Client id: ' + id) - logger.info('Client password: ' + password) + logger.info('Client id: ' + createdClient._id) + logger.info('Client secret: ' + createdClient.clientSecret) return callback(null) }) }) } -function createOAuthUserIfNotExist (callback) { +function createOAuthAdminIfNotExist (callback) { checker.usersExist(function (err, exist) { if (err) return callback(err) @@ -78,17 +91,36 @@ function createOAuthUserIfNotExist (callback) { logger.info('Creating the administrator.') - // TODO: generate password - const username = 'admin' - const password = 'nomegustalabanana' + const username = 'root' + const role = constants.USER_ROLES.ADMIN + 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 + } + } else { + password = passwordGenerator(8, true) + } + + const user = new User({ + username, + password, + role + }) - Users.createUser(username, password, function (err) { + user.save(function (err, createdUser) { if (err) return callback(err) logger.info('Username: ' + username) logger.info('User password: ' + password) - return callback(null) + logger.info('Creating Application collection.') + const application = new Application({ mongoSchemaVersion: constants.LAST_MONGO_SCHEMA_VERSION }) + application.save(callback) }) }) }