-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
30 lines (23 loc) · 804 Bytes
/
server.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
var http = require('http'),
liburl = require('url'),
utilities = require('./utilities')
// simple, async, promise or stream
var implementation_type = process.argv[2] || 'simple'
var Implementation = require('./' + implementation_type + '-implementation')
http.createServer(function(req,res){
var url = liburl.parse(req.url, true)
if ( /\/I\/want\/title\/?$/.test(url.pathname) ){
var urls_to_fetch = url['query'] && url['query']['address']
if ( !urls_to_fetch ) return utilities.render404(res)
if ( typeof urls_to_fetch == 'string' )
urls_to_fetch = new Array(urls_to_fetch)
res.writeHead(200,{'Content-Type': 'text/html'})
new Implementation(req,res).handleTitleRoute(urls_to_fetch,function(){
res.end()
})
}
else{
utilities.render404(res)
}
})
.listen(3000)