2024-03-10 17:45:33 +00:00
|
|
|
/*\
|
2024-03-11 09:10:01 +00:00
|
|
|
title: $:/plugins/tiddlywiki/multiwikiserver/routes/handlers/get-bag-tiddler-blob.js
|
2024-03-10 17:45:33 +00:00
|
|
|
type: application/javascript
|
|
|
|
module-type: route
|
|
|
|
|
|
|
|
GET /wiki/:bag_name/bags/:bag_name/tiddler/:title/blob
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
exports.method = "GET";
|
|
|
|
|
|
|
|
exports.path = /^\/wiki\/([^\/]+)\/bags\/([^\/]+)\/tiddlers\/([^\/]+)\/blob$/;
|
|
|
|
|
|
|
|
exports.handler = function(request,response,state) {
|
|
|
|
// Get the parameters
|
|
|
|
const bag_name = $tw.utils.decodeURIComponentSafe(state.params[0]),
|
|
|
|
bag_name_2 = $tw.utils.decodeURIComponentSafe(state.params[1]),
|
|
|
|
title = $tw.utils.decodeURIComponentSafe(state.params[2]);
|
|
|
|
if(bag_name === bag_name_2) {
|
|
|
|
const result = $tw.mws.store.getBagTiddlerStream(title,bag_name);
|
|
|
|
if(result) {
|
|
|
|
response.writeHead(200, "OK",{
|
|
|
|
"Content-Type": result.type
|
|
|
|
});
|
|
|
|
result.stream.pipe(response);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
response.writeHead(404);
|
|
|
|
response.end();
|
|
|
|
};
|
|
|
|
|
|
|
|
}());
|