-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·97 lines (85 loc) · 2.76 KB
/
index.js
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env node
/**
* Early bootstrap routine for loading the application.
* @packageDocumentation
*
* Note about how videu is started:
* Configuration parsing is done in plain JavaScript. The reason for this is
* that most properties in the `gloval.videu` type definition are declared
* `readonly` (see `src/types/global.d.ts` for details and the reason why).
*
* @license
* Copyright (c) 2020 The videu Project <videu@freetube.eu>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
'use strict';
require('dotenv').config();
const semver = require('semver');
switch (process.env.NODE_ENV) {
case 'development':
case 'production':
break;
default:
console.error(
'The NODE_ENV environment variable must be set to either '
+ '"production" or "development". Exiting.'
);
process.exit(1);
}
function _parseVersion(version) {
if (typeof version !== 'string') {
throw new TypeError(
`Expected "version" to be of type "string", got "${typeof version}" instead`
);
}
if (!semver.valid(version)) {
throw new EvalError(
`Invalid version: "${version}" does not conform to the semver format`
);
}
return {
versionString: version,
major: semver.major(version),
minor: semver.minor(version),
patch: semver.patch(version),
tags: semver.prerelease(version) || []
};
}
global.videu = {
logLevel: 0, // will be parsed in TypeScript
appName: process.env.VIDEU_APP_NAME || 'videu',
instanceId: process.env.VIDEU_INSTANCE_ID || 'default',
jwt: {},
};
try {
global.videu.version = _parseVersion(require('./package.json').version);
} catch (err) {
console.error(err);
process.exit(1);
}
console.log(
'Starting the \x1b[1mvideu backend\x1b[0m version \x1b[1m'
+ global.videu.version.versionString
+ `\x1b[0m in \x1b[1m${process.env.NODE_ENV}\x1b[0m mode`
);
if (process.env._VIDEU_LOADED !== 'true') {
try {
require('./build/bootstrap');
} catch (err) {
console.error(
'Could not load the application bootstrapper, did you forget to run `npm build`?'
);
}
}