-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequestHandlers.js
More file actions
73 lines (62 loc) · 2.04 KB
/
requestHandlers.js
File metadata and controls
73 lines (62 loc) · 2.04 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
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
var process = require("child_process");
var queryStr = require("querystring");
var fs = require("fs");
var formidable = require("formidable");
function start(request, response) {
console.log("Request handler 'start' has been enabled.");
var body = '<html>'+
'<head>'+
'<meta http-equiv="Content-Type" '+
'content="text/html; charset=UTF-8" />'+
'</head>'+
'<body>'+
'<form action="/upload" enctype="multipart/form-data" '+
'method="post">'+
'<input type="file" name="upload">'+
'<input type="submit" value="Upload file" />'+
'</form>'+
'</body>'+
'</html>';
response.writeHead(200, { "Content-Type": "text/html" });
response.write(body);
response.end();
}
function file(request, response) {
console.log("Request handler 'start' has been enabled.");
response.writeHead(200, { "Content-Type": "text/plain" });
process.exec("ls -lah", function(err, stdout, stderr) {
response.write(stdout);
// Has to put this inside because this is a callback function.
response.end();
});
}
function upload(request, response) {
console.log("Request handler 'upload' has been enabled.");
var form = new formidable.IncomingForm();
console.log("About to parse the form.");
form.parse(request, function(err, fields, files) {
console.log("Parse finished.");
fs.renameSync(files.upload.path, "./tmp/test.png");
response.writeHead(200, { "Content-Type": "text/html" });
response.write("Received image: <br>");
response.write("<img src='/show' />");
response.end();
});
}
function show(request, response) {
console.log("Request handler 'show' has been enabled.");
fs.readFile("./tmp/test.png", "binary", function(err, file) {
if (err) {
response.writeHead(500, { "Content-Type": "text/plain" });
response.write("We have encountered an error: " + err + "\n");
response.end();
} else {
response.writeHead(200, { "Content-Type": "image/png" });
response.write(file, "binary");
response.end();
}
});
}
exports.start = start;
exports.upload = upload;
exports.show = show;