-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.js
More file actions
208 lines (177 loc) · 4.88 KB
/
config.js
File metadata and controls
208 lines (177 loc) · 4.88 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/**
* Configuration Loading
*
* Loads config from (in order of precedence):
* 1. CLI arguments (highest)
* 2. Environment variables (JSS_*)
* 3. Config file (config.json)
* 4. Defaults (lowest)
*/
import fs from 'fs-extra';
import path from 'path';
/**
* Default configuration values
*/
export const defaults = {
// Server
port: 3000,
host: '0.0.0.0',
root: './data',
// SSL
sslKey: null,
sslCert: null,
// Features
multiuser: true,
conneg: false,
notifications: false,
// Identity Provider
idp: false,
idpIssuer: null,
// Subdomain mode (XSS protection)
subdomains: false,
baseDomain: null,
// Mashlib data browser
mashlib: false,
mashlibCdn: false,
mashlibVersion: '2.0.0',
// Logging
logger: true,
quiet: false,
// Paths
configPath: './.jss',
};
/**
* Map of environment variable names to config keys
*/
const envMap = {
JSS_PORT: 'port',
JSS_HOST: 'host',
JSS_ROOT: 'root',
JSS_SSL_KEY: 'sslKey',
JSS_SSL_CERT: 'sslCert',
JSS_MULTIUSER: 'multiuser',
JSS_CONNEG: 'conneg',
JSS_NOTIFICATIONS: 'notifications',
JSS_QUIET: 'quiet',
JSS_CONFIG_PATH: 'configPath',
JSS_IDP: 'idp',
JSS_IDP_ISSUER: 'idpIssuer',
JSS_SUBDOMAINS: 'subdomains',
JSS_BASE_DOMAIN: 'baseDomain',
JSS_MASHLIB: 'mashlib',
JSS_MASHLIB_CDN: 'mashlibCdn',
JSS_MASHLIB_VERSION: 'mashlibVersion',
};
/**
* Parse a value from environment variable string
*/
function parseEnvValue(value, key) {
if (value === undefined) return undefined;
// Boolean values
if (value.toLowerCase() === 'true') return true;
if (value.toLowerCase() === 'false') return false;
// Numeric values for known numeric keys
if (key === 'port' && !isNaN(value)) {
return parseInt(value, 10);
}
return value;
}
/**
* Load configuration from environment variables
*/
function loadEnvConfig() {
const config = {};
for (const [envVar, configKey] of Object.entries(envMap)) {
const value = process.env[envVar];
if (value !== undefined) {
config[configKey] = parseEnvValue(value, configKey);
}
}
return config;
}
/**
* Load configuration from a JSON file
*/
async function loadFileConfig(configFile) {
if (!configFile) return {};
try {
const fullPath = path.resolve(configFile);
if (await fs.pathExists(fullPath)) {
const content = await fs.readFile(fullPath, 'utf8');
return JSON.parse(content);
}
} catch (e) {
console.error(`Warning: Failed to load config file: ${e.message}`);
}
return {};
}
/**
* Merge configuration sources
* @param {object} cliOptions - Options from command line
* @param {string} configFile - Path to config file (optional)
* @returns {Promise<object>} Merged configuration
*/
export async function loadConfig(cliOptions = {}, configFile = null) {
// Load from file first
const fileConfig = await loadFileConfig(configFile || cliOptions.config);
// Load from environment
const envConfig = loadEnvConfig();
// Merge in order: defaults < file < env < cli
const config = {
...defaults,
...fileConfig,
...envConfig,
...filterUndefined(cliOptions),
};
// Derive additional settings
if (config.quiet) {
config.logger = false;
}
// Validate SSL config
if ((config.sslKey && !config.sslCert) || (!config.sslKey && config.sslCert)) {
throw new Error('Both --ssl-key and --ssl-cert must be provided together');
}
config.ssl = !!(config.sslKey && config.sslCert);
return config;
}
/**
* Filter out undefined values from an object
*/
function filterUndefined(obj) {
const result = {};
for (const [key, value] of Object.entries(obj)) {
if (value !== undefined) {
result[key] = value;
}
}
return result;
}
/**
* Save configuration to a file
*/
export async function saveConfig(config, configFile) {
const toSave = { ...config };
// Remove derived/runtime values
delete toSave.ssl;
delete toSave.logger;
await fs.ensureDir(path.dirname(configFile));
await fs.writeFile(configFile, JSON.stringify(toSave, null, 2));
}
/**
* Print configuration (for debugging)
*/
export function printConfig(config) {
console.log('\nConfiguration:');
console.log('─'.repeat(40));
console.log(` Port: ${config.port}`);
console.log(` Host: ${config.host}`);
console.log(` Root: ${path.resolve(config.root)}`);
console.log(` SSL: ${config.ssl ? 'enabled' : 'disabled'}`);
console.log(` Multi-user: ${config.multiuser}`);
console.log(` Conneg: ${config.conneg}`);
console.log(` Notifications: ${config.notifications}`);
console.log(` IdP: ${config.idp ? (config.idpIssuer || 'enabled') : 'disabled'}`);
console.log(` Subdomains: ${config.subdomains ? (config.baseDomain || 'enabled') : 'disabled'}`);
console.log(` Mashlib: ${config.mashlibCdn ? `CDN v${config.mashlibVersion}` : config.mashlib ? 'local' : 'disabled'}`);
console.log('─'.repeat(40));
}