-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.js
68 lines (58 loc) · 1.92 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
/*
* Copyright 2013 eBay Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
var proxy = require('./lib/_proxy'),
_ = require('underscore'),
monitor = require('./monitor'),
fs = require('fs');
var Handlers = {};
Handlers.tcp = require('./lib/tcp.handler');
Handlers.http = require('./lib/handler');
module.exports.monitor = monitor;
module.exports.proxy = function (config, handlers, cluster, httpPort, httpsPort, certs) {
try {
fs.readdirSycn('./netmorphic-configs')
}
catch (err) {
try {
fs.mkdirSync('./netmorphic-configs')
}
catch (err) {}
}
if (arguments.length == 1 && arguments[0][config]) {
// an option object has been passed
var opts = arguments[0];
config = opts.config;
handlers = opts.handlers || null;
cluster = opts.cluster || false;
httpPort = opts.httpPort || undefined;
httpsPort = opts.httspPort || undefined;
certs = opts.certs || undefined;
}
if (config && !_.contains(Object.keys(config), 'global')) {
config = {
'global': config
};
}
if (handlers) {
(function () {
Object.keys(handlers).forEach(function (h) {
Handlers.tcp[h] = Handlers.http[h] = handlers[h];
})
}())
}
return proxy(config, Handlers, cluster, httpPort, httpsPort, certs);
};