mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 15:46:18 +00:00
33eef0202d
* call self.displayError
* Revert "call self.displayError"
This reverts commit 5d599aa979
.
* fixes decodeURI & decodeURIComponent
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
/*\
|
|
title: $:/core/modules/server/routes/get-file.js
|
|
type: application/javascript
|
|
module-type: route
|
|
|
|
GET /files/:filepath
|
|
|
|
\*/
|
|
(function() {
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.method = "GET";
|
|
|
|
exports.path = /^\/files\/(.+)$/;
|
|
|
|
exports.handler = function(request,response,state) {
|
|
var path = require("path"),
|
|
fs = require("fs"),
|
|
util = require("util"),
|
|
suppliedFilename = $tw.utils.decodeURIComponentSafe(state.params[0]),
|
|
baseFilename = path.resolve(state.boot.wikiPath,"files"),
|
|
filename = path.resolve(baseFilename,suppliedFilename),
|
|
extension = path.extname(filename);
|
|
// Check that the filename is inside the wiki files folder
|
|
if(path.relative(baseFilename,filename).indexOf("..") !== 0) {
|
|
// Send the file
|
|
fs.readFile(filename,function(err,content) {
|
|
var status,content,type = "text/plain";
|
|
if(err) {
|
|
console.log("Error accessing file " + filename + ": " + err.toString());
|
|
status = 404;
|
|
content = "File '" + suppliedFilename + "' not found";
|
|
} else {
|
|
status = 200;
|
|
content = content;
|
|
type = ($tw.config.fileExtensionInfo[extension] ? $tw.config.fileExtensionInfo[extension].type : "application/octet-stream");
|
|
}
|
|
state.sendResponse(status,{"Content-Type": type},content);
|
|
});
|
|
} else {
|
|
state.sendResponse(404,{"Content-Type": "text/plain"},"File '" + suppliedFilename + "' not found");
|
|
}
|
|
};
|
|
|
|
}());
|