forked from socketstream/socketstream
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrouter.js
48 lines (41 loc) · 1.03 KB
/
router.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
// Generated by CoffeeScript 1.3.3
var EventEmitter2;
EventEmitter2 = require('eventemitter2').EventEmitter2;
exports.Router = (function() {
function Router() {
this.ee = new EventEmitter2({
wildcard: true,
delimiter: '?'
});
}
Router.prototype.route = function(url, req, res) {
var newUrl, sr;
if (this.ee.listeners(url).length > 0) {
this.ee.emit(url, req, res);
return true;
} else {
if (url === '/') {
return false;
}
if (url.indexOf('?') >= 0) {
sr = url.split('?');
} else {
sr = url.split('/');
}
sr.pop();
newUrl = sr.join('/');
if (!(newUrl.length > 0)) {
newUrl = '/';
}
return this.route(newUrl, req, res);
}
};
Router.prototype.on = function(url, cb) {
if (url.substring(0, 1) === '/' && url.indexOf(' ') === -1) {
return this.ee.on(url, cb);
} else {
throw new Error(url + ' is not a valid URL. Valid URLs must start with /');
}
};
return Router;
})();