aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/installer.js
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-03-21 21:11:26 +0100
committerChocobozzz <florian.bigard@gmail.com>2016-03-21 21:11:26 +0100
commit37dc07b292ae4b24011a99146150869bb9c17c65 (patch)
tree07bd9ade440cc8dd07349a725ba7d38398628d94 /server/initializers/installer.js
parent9457bf88079a23d28011ff7c65faa56a548b7817 (diff)
downloadPeerTube-37dc07b292ae4b24011a99146150869bb9c17c65.tar.gz
PeerTube-37dc07b292ae4b24011a99146150869bb9c17c65.tar.zst
PeerTube-37dc07b292ae4b24011a99146150869bb9c17c65.zip
Create an "installer" module that create defaults clients/users...
Diffstat (limited to 'server/initializers/installer.js')
-rw-r--r--server/initializers/installer.js94
1 files changed, 94 insertions, 0 deletions
diff --git a/server/initializers/installer.js b/server/initializers/installer.js
new file mode 100644
index 000000000..750eb2c59
--- /dev/null
+++ b/server/initializers/installer.js
@@ -0,0 +1,94 @@
1'use strict'
2
3const async = require('async')
4const config = require('config')
5const mkdirp = require('mkdirp')
6const path = require('path')
7
8const checker = require('./checker')
9const logger = require('../helpers/logger')
10const peertubeCrypto = require('../helpers/peertubeCrypto')
11const Users = require('../models/users')
12
13const installer = {
14 installApplication: installApplication
15}
16
17function installApplication (callback) {
18 // Creates directories
19 createDirectoriesIfNotExist(function (err) {
20 if (err) return callback(err)
21
22 // ----------- Create the certificates if they don't already exist -----------
23 peertubeCrypto.createCertsIfNotExist(function (err) {
24 if (err) return callback(err)
25
26 createOAuthClientIfNotExist(function (err) {
27 if (err) return callback(err)
28
29 createOAuthUserIfNotExist(callback)
30 })
31 })
32 })
33}
34
35// ---------------------------------------------------------------------------
36
37module.exports = installer
38
39// ---------------------------------------------------------------------------
40
41function createDirectoriesIfNotExist (callback) {
42 const storages = config.get('storage')
43
44 async.each(Object.keys(storages), function (key, callbackEach) {
45 const dir = storages[key]
46 mkdirp(path.join(__dirname, '..', '..', dir), callbackEach)
47 }, callback)
48}
49
50function createOAuthClientIfNotExist (callback) {
51 checker.clientsExist(function (err, exist) {
52 if (err) return callback(err)
53
54 // Nothing to do, clients already exist
55 if (exist === true) return callback(null)
56
57 logger.info('Creating a default OAuth Client.')
58
59 // TODO: generate password
60 const password = 'megustalabanana'
61 Users.createClient(password, [ 'password' ], function (err, id) {
62 if (err) return callback(err)
63
64 logger.info('Client id: ' + id)
65 logger.info('Client password: ' + password)
66
67 return callback(null)
68 })
69 })
70}
71
72function createOAuthUserIfNotExist (callback) {
73 checker.usersExist(function (err, exist) {
74 if (err) return callback(err)
75
76 // Nothing to do, users already exist
77 if (exist === true) return callback(null)
78
79 logger.info('Creating the administrator.')
80
81 // TODO: generate password
82 const username = 'admin'
83 const password = 'nomegustalabanana'
84
85 Users.createUser(username, password, function (err) {
86 if (err) return callback(err)
87
88 logger.info('Username: ' + username)
89 logger.info('User password: ' + password)
90
91 return callback(null)
92 })
93 })
94}