-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackend.js
58 lines (49 loc) · 1.39 KB
/
backend.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
var http = require('http'),
rp = require('./reverse-proxy');
function backend_proto(db_api) {
var ready = false;
db_api.getAll(function(routes){
var options = {
table: routes
};
rp.init(options);
ready = true;
});
this.addRoute = function(obj, callback) {
var timer = setInterval(function(){
if (ready) {
clearInterval(timer);
db_api.addOne(obj, function(worked) {
if (worked) {
rp.addRoute(obj);
callback(true);
}
else {
callback(false);
}
});
}
},10);
}
this.removeRoute = function(route, callback) {
var timer = setInterval(function(){
if (ready) {
clearInterval(timer);
db_api.removeOne(route, function(worked) {
if (worked) {
rp.removeRoute(route);
callback(true);
}
else {
callback(false);
}
});
}
},10);
}
this.get = rp.get;
this.post = rp.post;
}
exports.backend = function(db_api) {
return new backend_proto(db_api);
}