1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-08-28 03:52:43 +00:00
TiddlyWiki5/plugins/tiddlywiki/multiwikiserver/modules/route-put-bag.js
Jeremy Ruston 4b0df1a7ae Basic support for creating bags and recipes
Cannot yet specify the bags for the new recipe
2024-01-19 11:03:58 +00:00

37 lines
859 B
JavaScript

/*\
title: $:/plugins/tiddlywiki/multiwikiserver/route-put-bag.js
type: application/javascript
module-type: route
PUT /wikis/:bag_name/bags/:bag_name
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 = "PUT";
exports.path = /^\/wiki\/([^\/]+)\/bags\/([^\/]+)$/;
exports.handler = function(request,response,state) {
// Get the parameters
var bag_name = $tw.utils.decodeURIComponentSafe(state.params[0]),
bag_name_2 = $tw.utils.decodeURIComponentSafe(state.params[1]);
if(bag_name === bag_name_2) {
$tw.sqlTiddlerStore.createBag(bag_name);
state.sendResponse(204,{
"Content-Type": "text/plain"
});
} else {
response.writeHead(404);
response.end();
}
};
}());