forked from haraka/Haraka
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.js
73 lines (61 loc) · 2 KB
/
config.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
"use strict";
var configloader = require('./configfile');
var path = require('path');
var logger = require('./logger');
var config = exports;
config.get = function(name, type, cb, options) {
var args = this.arrange_args([name, type, cb, options]);
if (!args[1]) args[1] = 'value';
var config_path = process.env.HARAKA
? path.join(process.env.HARAKA, 'config')
: path.join(__dirname, './config');
var full_path = path.resolve(config_path, args[0]);
var results = configloader.read_config(full_path, args[1], args[2], args[3]);
// Pass arrays by value to prevent config being modified accidentally.
if (Array.isArray(results)) {
return results.slice();
}
else {
return results;
}
};
/* ways get() can be called:
config.get('thing');
config.get('thing', type);
config.get('thing', cb);
config.get('thing', cb, options);
config.get('thing', options);
config.get('thing', type, cb);
config.get('thing', type, options);
config.get('thing', type, cb, options);
*/
config.arrange_args = function (args) {
var fs_name = args.shift();
var fs_type = null;
var cb, options;
for (var a=0; a < args.length; a++) {
if (args[a] === undefined) continue;
var what_is_it = args[a];
if (typeof what_is_it == 'function') {
cb = what_is_it;
continue;
}
if (typeof what_is_it == 'object') {
options = what_is_it;
continue;
}
if (typeof what_is_it == 'string') {
if (what_is_it.match(/^(ini|value|list|data|json|binary)$/)) {
fs_type = what_is_it;
continue;
}
// console.log('not recognized string:' + what_is_it);
continue;
}
// console.log('unknown arg:' + what_is_it + ', typeof: ' + typeof what_is_it);
}
if (!fs_type && fs_name.match(/\.ini$/)) {
fs_type = 'ini';
}
return [fs_name, fs_type, cb, options];
};