-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathserver_api_define.js
93 lines (77 loc) · 3.06 KB
/
server_api_define.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
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
var url = require("url");
var fs = require("fs");
var path = require("path");
var mime = {
"": "application/json;charset=utf-8",
"css": "text/css",
"gif": "image/gif",
"html": "text/html",
"ico": "image/x-icon",
"jpeg": "image/jpeg",
"jpg": "image/jpeg",
"js": "text/javascript",
"json": "application/json",
"pdf": "application/pdf",
"png": "image/png",
"svg": "image/svg+xml",
"swf": "application/x-shockwave-flash",
"tiff": "image/tiff",
"txt": "text/plain",
"wav": "audio/x-wav",
"wma": "audio/x-ms-wma",
"wmv": "video/x-ms-wmv",
"xml": "text/xml"
}
var Api = function() {};
var welcome_file = "index.html"
Api.prototype.dispatch = function(request, response, root_dir) {
response.setHeader("Server", "Pengzhen Server");
response.setHeader('Accept-Ranges', 'bytes');
console.log("[api] " + request.method + " " + request.url);
var pathname = url.parse(request.url).pathname;
if (pathname.slice(-1) === "/") {
pathname = pathname + welcome_file;
}
var realPath = path.join(root_dir,
path.normalize(pathname.replace(/\.\./g, "")));
var pathHandle = function(realPath) {
fs.stat(realPath, function(err, stats) {
if (err) {
response.writeHead(404, "Not Found", {
'Content-Type': 'text/plain'
});
response.write("404\n\nThis request URL " + pathname + " was not found on this server.");
response.end();
} else {
if (stats.isDirectory()) {
realPath = path.join(realPath, "/", welcome_file);
pathHandle(realPath);
} else {
var ext = path.extname(realPath);
ext = ext ? ext.slice(1) : ''; //unknow
var contentType = mime[ext] || "text/plain";
response.setHeader("Content-Type", contentType);
response.setHeader('Content-Length', stats.size);
var lastModified = stats.mtime.toUTCString();
var ifModifiedSince = "If-Modified-Since".toLowerCase();
response.setHeader("Last-Modified", lastModified);
if (request.headers[ifModifiedSince] && lastModified == request.headers[ifModifiedSince]) {
response.writeHead(304, "Not Modified");
response.end();
} else {
var compressHandle = function(raw, statusCode, reasonPhrase) {
var stream = raw;
var acceptEncoding = request.headers['accept-encoding'] || "";
response.writeHead(statusCode, reasonPhrase);
stream.pipe(response);
};
var raw = fs.createReadStream(realPath);
compressHandle(raw, 200);
}
}
}
});
};
pathHandle(realPath);
};
exports.Api = Api;