2024-03-10 17:45:33 +00:00
|
|
|
/*\
|
2024-03-11 09:10:01 +00:00
|
|
|
title: $:/plugins/tiddlywiki/multiwikiserver/routes/handlers/post-bag-tiddlers.js
|
2024-03-10 17:45:33 +00:00
|
|
|
type: application/javascript
|
|
|
|
module-type: route
|
|
|
|
|
|
|
|
POST /wiki/:bag_name/bags/:bag_name/tiddlers/
|
|
|
|
|
|
|
|
NOTE: Urls currently include the bag name twice. This is temporary to minimise the changes to the TiddlyWeb plugin
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
exports.method = "POST";
|
|
|
|
|
|
|
|
exports.path = /^\/wiki\/([^\/]+)\/bags\/([^\/]+)\/tiddlers\/$/;
|
|
|
|
|
|
|
|
exports.bodyFormat = "stream";
|
|
|
|
|
|
|
|
exports.csrfDisable = true;
|
|
|
|
|
|
|
|
exports.handler = function(request,response,state) {
|
|
|
|
const path = require("path"),
|
2024-03-10 20:20:06 +00:00
|
|
|
fs = require("fs"),
|
|
|
|
processIncomingStream = require("$:/plugins/tiddlywiki/multiwikiserver/routes/helpers/multipart-forms.js").processIncomingStream;
|
2024-03-10 17:45:33 +00:00
|
|
|
// Get the parameters
|
|
|
|
var bag_name = $tw.utils.decodeURIComponentSafe(state.params[0]),
|
|
|
|
bag_name_2 = $tw.utils.decodeURIComponentSafe(state.params[1]);
|
|
|
|
console.log(`Got ${bag_name} and ${bag_name_2}`)
|
2024-03-10 20:20:06 +00:00
|
|
|
// Require the bag names to match
|
2024-03-10 17:45:33 +00:00
|
|
|
if(bag_name !== bag_name_2) {
|
|
|
|
return state.sendResponse(400,{"Content-Type": "text/plain"},"Bad Request: bag names do not match");
|
|
|
|
}
|
|
|
|
// Process the incoming data
|
2024-03-10 20:20:06 +00:00
|
|
|
processIncomingStream({
|
|
|
|
store: $tw.mws.store,
|
|
|
|
state: state,
|
|
|
|
response: response,
|
|
|
|
bagname: bag_name,
|
|
|
|
callback: function(err,results) {
|
2024-03-15 16:39:59 +00:00
|
|
|
// If application/json is requested then this is an API request, and gets the response in JSON
|
|
|
|
if(request.headers.accept && request.headers.accept.indexOf("application/json") !== -1) {
|
|
|
|
state.sendResponse(200,{"Content-Type": "application/json"},JSON.stringify({
|
|
|
|
"imported-tiddlers": results
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
response.writeHead(200, "OK",{
|
|
|
|
"Content-Type": "text/html"
|
|
|
|
});
|
|
|
|
response.write(`
|
|
|
|
<!doctype html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
`);
|
|
|
|
// Render the html
|
|
|
|
var html = $tw.mws.store.adminWiki.renderTiddler("text/html","$:/plugins/tiddlywiki/multiwikiserver/templates/post-bag-tiddlers",{
|
|
|
|
variables: {
|
|
|
|
"bag-name": bag_name,
|
|
|
|
"imported-titles": JSON.stringify(results)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
response.write(html);
|
|
|
|
response.write(`
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
`);
|
|
|
|
response.end();
|
|
|
|
}
|
2024-03-10 17:45:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
}());
|