-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequestHandlers.js
More file actions
42 lines (38 loc) · 1.34 KB
/
Copy pathrequestHandlers.js
File metadata and controls
42 lines (38 loc) · 1.34 KB
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
var querystring=require("querystring");
function start(response){
console.log("Request Handler 'start' was called.");
var body='<html>'+
'<head>'+
'<script src="http://dl.dropbox.com/u/1545014/curea/youieststart.js"></script>'+
'<meta http-equiv="Content-Type" content="text/html; '+
'charset=UTF-8" />'+
'</head>'+
'<body>'+
'<div id="youiest" API_KEY="AapOfugaFhcaMjVaQXrN0w" twitter_user="wiber"></div>'+
'<form action="upload" method="post">'+
'<textarea name="text" rows="20" cols="60"></textarea>'+
'<input type="submit" value="Submit text" />'+
'</form>'+
'</body>'+
'</html>';
response.writeHead(200, {"Content-Type":"text/html"});
response.write(body);
response.end();
}
function upload(response, postData){
console.log("Request handler 'upload' was called.");
response.writeHead(200, {"Content-Type":"text/plain"});
response.write("You've sent: "+ querystring.parse(postData).text);
response.end();
}
var pileoftweets= [];
function dropin(response, postData){
console.log("Request handler 'dropin' was called.");
pileoftweets.unshift(postData);
response.writeHead(200, {"Content-Type":"text/plain"});
response.write("You've sent: "+ querystring.parse(postData).text);
response.end();
}
exports.start=start;
exports.upload=upload;
exports.upload=dropin;