-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequestHandlers.js
35 lines (29 loc) · 913 Bytes
/
requestHandlers.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
var querystring = require("querystring");
var compressor = require("./Compressor.js");
function start(response, postData) {
console.log("Request handler 'start' was called.");
var body = '<html>'+
'<head>'+
'<meta http-equiv="Content-Type" content="text/html; '+
'charset=UTF-8" />'+
'</head>'+
'<body>'+
'<form action="/upload" method="post">'+
'<input type="submit" value="Show XML" />'+
'</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/html"});
var recivedtxt = compressor.compress()+'';
response.write(recivedtxt);
console.log(compressor.compress);
response.end();
}
exports.start = start;
exports.upload = upload;