2024-01-03 16:27:13 +00:00
|
|
|
/*\
|
2024-01-19 19:27:54 +00:00
|
|
|
title: $:/plugins/tiddlywiki/multiwikiserver/route-delete-recipe-tiddler.js
|
2024-01-03 16:27:13 +00:00
|
|
|
type: application/javascript
|
|
|
|
module-type: route
|
|
|
|
|
|
|
|
DELETE /wikis/:recipe_name/recipes/:bag_name/tiddler/:title
|
|
|
|
|
|
|
|
NOTE: Urls currently include the recipe 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 = "DELETE";
|
|
|
|
|
|
|
|
exports.path = /^\/wiki\/([^\/]+)\/bags\/([^\/]+)\/tiddlers\/([^\/]+)$/;
|
|
|
|
|
|
|
|
exports.handler = function(request,response,state) {
|
|
|
|
// Get the parameters
|
|
|
|
var recipe_name = $tw.utils.decodeURIComponentSafe(state.params[0]),
|
|
|
|
bag_name = $tw.utils.decodeURIComponentSafe(state.params[1]),
|
|
|
|
title = $tw.utils.decodeURIComponentSafe(state.params[2]);
|
2024-02-05 14:49:08 +00:00
|
|
|
var recipeBags = $tw.mws.store.getRecipeBags(recipe_name);
|
2024-01-03 16:27:13 +00:00
|
|
|
if(recipeBags.indexOf(bag_name) !== -1) {
|
2024-02-05 14:49:08 +00:00
|
|
|
$tw.mws.store.deleteTiddler(title,bag_name);
|
2024-01-03 16:27:13 +00:00
|
|
|
response.writeHead(204, "OK", {
|
|
|
|
"Content-Type": "text/plain"
|
|
|
|
});
|
|
|
|
response.end();
|
|
|
|
} else {
|
|
|
|
response.writeHead(404);
|
|
|
|
response.end();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}());
|