aboutsummaryrefslogtreecommitdiff
path: root/src/api/database/seeds/initial.js
blob: bb60b2c04ced4fcaa478b29ba9e068b062df7135 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* eslint-disable no-console */
const bcrypt = require('bcrypt');
const moment = require('moment');
const Util = require('../../utils/Util');

exports.seed = async db => {
	const now = moment.utc().toDate();

	// Save environment variables to the database
	try {
		const settings = await db.table('settings').first();
		if (!settings) {
			await Util.writeConfigToDb(Util.getEnvironmentDefaults(), false);
		}
	} catch (error) {
		console.error(error);
	}

	// Create admin user if it doesnt exist
	const user = await db.table('users').where({ username: process.env.ADMIN_ACCOUNT }).first();
	if (user) return;
	try {
		const hash = await bcrypt.hash(process.env.ADMIN_PASSWORD, 10);
		await db.table('users').insert({
			username: process.env.ADMIN_ACCOUNT,
			password: hash,
			passwordEditedAt: now,
			createdAt: now,
			editedAt: now,
			enabled: true,
			isAdmin: true
		});
		console.log();
		console.log('=========================================================');
		console.log('==       Successfully created the admin account.       ==');
		console.log('=========================================================');
		console.log('==    Run `pm2 start pm2.json` to start the service    ==');
		console.log('=========================================================');
		console.log();
	} catch (error) {
		console.error(error);
	}
};