985ba77579
This commit also moves the content type logic into a helper method to ever so slightly reduce duplication.
356 lines
10 KiB
JavaScript
356 lines
10 KiB
JavaScript
/*
|
|
* Copyright 2014 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import fs from "fs";
|
|
import fsPromises from "fs/promises";
|
|
import http from "http";
|
|
import path from "path";
|
|
|
|
const MIME_TYPES = {
|
|
".css": "text/css",
|
|
".html": "text/html",
|
|
".js": "application/javascript",
|
|
".mjs": "application/javascript",
|
|
".json": "application/json",
|
|
".svg": "image/svg+xml",
|
|
".pdf": "application/pdf",
|
|
".xhtml": "application/xhtml+xml",
|
|
".gif": "image/gif",
|
|
".ico": "image/x-icon",
|
|
".png": "image/png",
|
|
".log": "text/plain",
|
|
".bcmap": "application/octet-stream",
|
|
".ftl": "text/plain",
|
|
};
|
|
const DEFAULT_MIME_TYPE = "application/octet-stream";
|
|
|
|
class WebServer {
|
|
constructor() {
|
|
this.root = ".";
|
|
this.host = "localhost";
|
|
this.port = 0;
|
|
this.server = null;
|
|
this.verbose = false;
|
|
this.cacheExpirationTime = 0;
|
|
this.disableRangeRequests = false;
|
|
this.hooks = {
|
|
GET: [crossOriginHandler],
|
|
POST: [],
|
|
};
|
|
}
|
|
|
|
start(callback) {
|
|
this.#ensureNonZeroPort();
|
|
this.server = http.createServer(this.#handler.bind(this));
|
|
this.server.listen(this.port, this.host, callback);
|
|
console.log(`Server running at http://${this.host}:${this.port}/`);
|
|
}
|
|
|
|
stop(callback) {
|
|
this.server.close(callback);
|
|
this.server = null;
|
|
}
|
|
|
|
#ensureNonZeroPort() {
|
|
if (!this.port) {
|
|
// If port is 0, a random port will be chosen instead. Do not set a host
|
|
// name to make sure that the port is synchronously set by `.listen()`.
|
|
const server = http.createServer().listen(0);
|
|
const address = server.address();
|
|
// `.address().port` being available synchronously is merely an
|
|
// implementation detail, so we are defensive here and fall back to a
|
|
// fixed port when the address is not available yet.
|
|
this.port = address ? address.port : 8000;
|
|
server.close();
|
|
}
|
|
}
|
|
|
|
async #handler(request, response) {
|
|
// Validate and parse the request URL.
|
|
const url = request.url.replaceAll("//", "/");
|
|
const urlParts = /([^?]*)((?:\?(.*))?)/.exec(url);
|
|
let pathPart;
|
|
try {
|
|
// Guard against directory traversal attacks such as
|
|
// `/../../../../../../../etc/passwd`, which let you make GET requests
|
|
// for files outside of `this.root`.
|
|
pathPart = path.normalize(decodeURI(urlParts[1]));
|
|
// `path.normalize` returns a path on the basis of the current platform.
|
|
// Windows paths cause issues in `checkRequest` and underlying methods.
|
|
// Converting to a Unix path avoids platform checks in said functions.
|
|
pathPart = pathPart.replaceAll("\\", "/");
|
|
} catch {
|
|
// If the URI cannot be decoded, a `URIError` is thrown. This happens for
|
|
// malformed URIs such as `http://localhost:8888/%s%s` and should be
|
|
// handled as a bad request.
|
|
response.writeHead(400);
|
|
response.end("Bad request", "utf8");
|
|
return;
|
|
}
|
|
|
|
// Validate the request method and execute method hooks.
|
|
const methodHooks = this.hooks[request.method];
|
|
if (!methodHooks) {
|
|
response.writeHead(405);
|
|
response.end("Unsupported request method", "utf8");
|
|
return;
|
|
}
|
|
const handled = methodHooks.some(hook => hook(request, response));
|
|
if (handled) {
|
|
return;
|
|
}
|
|
|
|
// Check the request and serve the file/folder contents.
|
|
if (pathPart === "/favicon.ico") {
|
|
pathPart = "test/resources/favicon.ico";
|
|
}
|
|
await this.#checkRequest(request, response, url, urlParts, pathPart);
|
|
}
|
|
|
|
async #checkRequest(request, response, url, urlParts, pathPart) {
|
|
// Check if the file/folder exists.
|
|
let filePath;
|
|
try {
|
|
filePath = await fsPromises.realpath(path.join(this.root, pathPart));
|
|
} catch {
|
|
response.writeHead(404);
|
|
response.end();
|
|
if (this.verbose) {
|
|
console.error(`${url}: not found`);
|
|
}
|
|
return;
|
|
}
|
|
|
|
// Get the properties of the file/folder.
|
|
let stats;
|
|
try {
|
|
stats = await fsPromises.stat(filePath);
|
|
} catch {
|
|
response.writeHead(500);
|
|
response.end();
|
|
return;
|
|
}
|
|
const fileSize = stats.size;
|
|
const isDir = stats.isDirectory();
|
|
|
|
// If a folder is requested, serve the directory listing.
|
|
if (isDir && !/\/$/.test(pathPart)) {
|
|
response.setHeader("Location", `${pathPart}/${urlParts[2]}`);
|
|
response.writeHead(301);
|
|
response.end("Redirected", "utf8");
|
|
return;
|
|
}
|
|
if (isDir) {
|
|
const queryPart = urlParts[3];
|
|
await this.#serveDirectoryIndex(response, pathPart, queryPart, filePath);
|
|
return;
|
|
}
|
|
|
|
// If a file is requested with range requests, serve it accordingly.
|
|
const { range } = request.headers;
|
|
if (range && !this.disableRangeRequests) {
|
|
const rangesMatches = /^bytes=(\d+)-(\d+)?/.exec(range);
|
|
if (!rangesMatches) {
|
|
response.writeHead(501);
|
|
response.end("Bad range", "utf8");
|
|
if (this.verbose) {
|
|
console.error(`${url}: bad range: ${range}`);
|
|
}
|
|
return;
|
|
}
|
|
|
|
const start = +rangesMatches[1];
|
|
const end = +rangesMatches[2];
|
|
if (this.verbose) {
|
|
console.log(`${url}: range ${start}-${end}`);
|
|
}
|
|
this.#serveFileRange(
|
|
response,
|
|
filePath,
|
|
fileSize,
|
|
start,
|
|
isNaN(end) ? fileSize : end + 1
|
|
);
|
|
return;
|
|
}
|
|
|
|
// Otherwise, serve the file normally.
|
|
if (this.verbose) {
|
|
console.log(url);
|
|
}
|
|
this.#serveFile(response, filePath, fileSize);
|
|
}
|
|
|
|
async #serveDirectoryIndex(response, pathPart, queryPart, directory) {
|
|
response.setHeader("Content-Type", "text/html");
|
|
response.writeHead(200);
|
|
|
|
if (queryPart === "frame") {
|
|
response.end(
|
|
`<html>
|
|
<frameset cols=*,200>
|
|
<frame name=pdf>
|
|
<frame src="${encodeURI(pathPart)}?side">
|
|
</frameset>
|
|
</html>`,
|
|
"utf8"
|
|
);
|
|
return;
|
|
}
|
|
|
|
let files;
|
|
try {
|
|
files = await fsPromises.readdir(directory);
|
|
} catch {
|
|
response.end();
|
|
return;
|
|
}
|
|
|
|
response.write(
|
|
`<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<h1>Index of ${pathPart}</h1>`
|
|
);
|
|
if (pathPart !== "/") {
|
|
response.write('<a href="..">..</a><br>');
|
|
}
|
|
|
|
const all = queryPart === "all";
|
|
const escapeHTML = untrusted =>
|
|
// Escape untrusted input so that it can safely be used in a HTML response
|
|
// in HTML and in HTML attributes.
|
|
untrusted
|
|
.replaceAll("&", "&")
|
|
.replaceAll("<", "<")
|
|
.replaceAll(">", ">")
|
|
.replaceAll('"', """)
|
|
.replaceAll("'", "'");
|
|
|
|
for (const file of files) {
|
|
let stat;
|
|
const item = pathPart + file;
|
|
let href = "";
|
|
let label = "";
|
|
let extraAttributes = "";
|
|
|
|
try {
|
|
stat = fs.statSync(path.join(directory, file));
|
|
} catch (ex) {
|
|
href = encodeURI(item);
|
|
label = `${file} (${ex})`;
|
|
extraAttributes = ' style="color:red"';
|
|
}
|
|
|
|
if (stat) {
|
|
if (stat.isDirectory()) {
|
|
href = encodeURI(item);
|
|
label = file;
|
|
} else if (path.extname(file).toLowerCase() === ".pdf") {
|
|
href = `/web/viewer.html?file=${encodeURIComponent(item)}`;
|
|
label = file;
|
|
extraAttributes = ' target="pdf"';
|
|
} else if (all) {
|
|
href = encodeURI(item);
|
|
label = file;
|
|
}
|
|
}
|
|
|
|
if (label) {
|
|
response.write(
|
|
`<a href="${escapeHTML(href)}"${extraAttributes}>${escapeHTML(label)}</a><br>`
|
|
);
|
|
}
|
|
}
|
|
|
|
if (files.length === 0) {
|
|
response.write("<p>No files found</p>");
|
|
}
|
|
if (!all && queryPart !== "side") {
|
|
response.write(
|
|
'<hr><p>(only PDF files are shown, <a href="?all">show all</a>)</p>'
|
|
);
|
|
}
|
|
response.end("</body></html>");
|
|
}
|
|
|
|
#serveFile(response, filePath, fileSize) {
|
|
const stream = fs.createReadStream(filePath, { flags: "rs" });
|
|
stream.on("error", error => {
|
|
response.writeHead(500);
|
|
response.end();
|
|
});
|
|
|
|
if (!this.disableRangeRequests) {
|
|
response.setHeader("Accept-Ranges", "bytes");
|
|
}
|
|
response.setHeader("Content-Type", this.#getContentType(filePath));
|
|
response.setHeader("Content-Length", fileSize);
|
|
if (this.cacheExpirationTime > 0) {
|
|
const expireTime = new Date();
|
|
expireTime.setSeconds(expireTime.getSeconds() + this.cacheExpirationTime);
|
|
response.setHeader("Expires", expireTime.toUTCString());
|
|
}
|
|
response.writeHead(200);
|
|
stream.pipe(response);
|
|
}
|
|
|
|
#serveFileRange(response, filePath, fileSize, start, end) {
|
|
const stream = fs.createReadStream(filePath, {
|
|
flags: "rs",
|
|
start,
|
|
end: end - 1,
|
|
});
|
|
stream.on("error", error => {
|
|
response.writeHead(500);
|
|
response.end();
|
|
});
|
|
|
|
response.setHeader("Accept-Ranges", "bytes");
|
|
response.setHeader("Content-Type", this.#getContentType(filePath));
|
|
response.setHeader("Content-Length", end - start);
|
|
response.setHeader(
|
|
"Content-Range",
|
|
`bytes ${start}-${end - 1}/${fileSize}`
|
|
);
|
|
response.writeHead(206);
|
|
stream.pipe(response);
|
|
}
|
|
|
|
#getContentType(filePath) {
|
|
const extension = path.extname(filePath).toLowerCase();
|
|
return MIME_TYPES[extension] || DEFAULT_MIME_TYPE;
|
|
}
|
|
}
|
|
|
|
// This supports the "Cross-origin" test in test/unit/api_spec.js
|
|
// It is here instead of test.js so that when the test will still complete as
|
|
// expected if the user does "gulp server" and then visits
|
|
// http://localhost:8888/test/unit/unit_test.html?spec=Cross-origin
|
|
function crossOriginHandler(request, response) {
|
|
if (request.url === "/test/pdfs/basicapi.pdf?cors=withCredentials") {
|
|
response.setHeader("Access-Control-Allow-Origin", request.headers.origin);
|
|
response.setHeader("Access-Control-Allow-Credentials", "true");
|
|
}
|
|
if (request.url === "/test/pdfs/basicapi.pdf?cors=withoutCredentials") {
|
|
response.setHeader("Access-Control-Allow-Origin", request.headers.origin);
|
|
}
|
|
}
|
|
|
|
export { WebServer };
|