forked from pifabs/fsocket
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnode_utils.js
More file actions
38 lines (30 loc) · 972 Bytes
/
Copy pathnode_utils.js
File metadata and controls
38 lines (30 loc) · 972 Bytes
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
'use strict';
const fs = require('fs');
const path = require('path');
const bench_path = path.resolve(__dirname, '..', '..');
function get_fsocket_conf() {
// Default configuration
var conf = {
fsocketio_port: 9002 // Default port; change as needed
};
var read_config = function (file_path) {
const full_path = path.resolve(bench_path, file_path);
if (fs.existsSync(full_path)) {
var bench_config = JSON.parse(fs.readFileSync(full_path));
for (let key in bench_config) {
if (bench_config[key]) {
conf[key] = bench_config[key];
}
}
}
};
read_config('config.json');
read_config('sites/common_site_config.json');
if (fs.existsSync('sites/currentsite.txt')) {
conf.default_site = fs.readFileSync('sites/currentsite.txt').toString().trim();
}
return conf;
}
module.exports = {
get_fsocket_conf,
};