-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.coffee
104 lines (86 loc) · 2.98 KB
/
index.coffee
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
###
Glue/server logic.
Lets event API handler modules determine what to do with any POSTed urls.
Lets the datahandler see what to do with any GET requests.
@author Torstein Thune
###
http = require 'http'
querystring = require 'querystring'
colors = require 'colors'
port = process.argv[2] || 8888 # port to start paraply on
frontend = require './app/frontend'
api = require './app/api'
security = require './app/security'
modules = {}
modules.meetup = require './app/meetup'
modules.eventbrite = require './app/eventbrite'
modules.facebook = require './app/facebook'
#db = require './db'
handleUrl = (url, req, res) ->
# check if url is a valid url
queryObj =
url: url
onSuccess: ->
res.writeHead(302, {'Location': '/'})
res.end('Thank you!')
onError: ->
res.writeHead(400)
res.end("Paraplyen klarte ikke å håndtere #{url}. Kun Facebook-arrangementer, Meetup-grupper og -arrangementer og Eventbrite-organiserere og -arrangementer støttes.")
securityQueryObj =
req: req
onSuccess: ->
for module, val of modules
break if val.handle?(queryObj)
onError: ->
res.writeHead(403)
res.end("Paraplyen ville ikke håndtere #{url}. Du har sendt for mange forespørsler om å sette inn eventer. Vent litt før du prøver igjen.")
security.verifySubmission securityQueryObj
# Handle post requests (e.g urls for adding events)
postHandler = (req, res) ->
req.body = ''
req.addListener('data', (chunk) ->
req.body += chunk
)
req.addListener('error', (error) ->
console.error('got a error', error)
)
req.addListener('end', (chunk) =>
req.body += chunk if chunk
url = decodeURIComponent(req.body).replace('url=', '')
handleUrl(url, req, res)
)
# Handle GET requests (e.g getting JSON)
getHandler = (req, res) ->
frontend.handle(req, res)
# res.writeHead(200)
# res.write('Hello world!')
# res.end()
# Wrapper for handling requests
requestHandler = (req, res) ->
if req.method is 'GET'
getHandler(req,res)
else if req.method is 'POST'
postHandler(req,res)
# Start the server
http.createServer(requestHandler).listen(parseInt(port, 10))
# Really important =D
console.log "\n\n\n
yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyyyy++yyyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyyys syyyyyyyyyyyyyyyyyy\n
yyyyyyyyyysssssso+. .+ossssssyyyyyyyyyy\n
yyyyyyy:` `+/` `:yyyyyyy\n
yyyyyy+ `/ooooooosyyyysooooooo/` +yyyyyy\n
yyyyyy: :yyyyyyyyys--oyyyyyyyyy: :yyyyyy\n
yyyyyyo+syyyyyyyyyo +yyyyyyyyys+oyyyyyy\n
yyyyyyyyyyyyyyyyyyo +yyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyyyo +yyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyyys--oyyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyyyy/:+yyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyyyy` :yyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyyyo .syyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyyy.-yyyyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyys+yyyyyyyyyyyyyyyyyyyyy\n
yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy\n"['red']
console.log ' Paraply started @ ' + "http://localhost:#{port}\n\n\n"['cyan']