-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
43 lines (30 loc) · 867 Bytes
/
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
var annotationRouter = require('annotation-router');
var toAbsolutePath = require('to-absolute-path');
module.exports = function(app, paths, callback){
paths = toAbsolutePath(paths, 1);
var registerRoute = registerApp(app);
annotationRouter(paths, function(err, route){
if(err) return callCallback(err);
registerRoute(route);
},
function(err){
callCallback(err);
});
function callCallback(err){
if(callback != null){
callback(err);
}
}
};
module.exports.sync = function(app, paths){
paths = toAbsolutePath(paths, 1);
var registerRoute = registerApp(app);
annotationRouter
.sync(paths)
.forEach(registerRoute);
};
function registerApp(app){
return function(route){
app[route.method.toLowerCase()](route.url, route.action);
}
}