mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 01:56:20 +00:00
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
/*\
|
|
title: $:/plugins/tiddlywiki/multiwikiserver/routes/handlers/put-recipe.js
|
|
type: application/javascript
|
|
module-type: route
|
|
|
|
PUT /wiki/:recipe_name/recipes/:recipe_name
|
|
|
|
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 = "PUT";
|
|
|
|
exports.path = /^\/wiki\/([^\/]+)\/recipes\/(.+)$/;
|
|
|
|
exports.handler = function(request,response,state) {
|
|
// Get the parameters
|
|
var recipe_name = $tw.utils.decodeURIComponentSafe(state.params[0]),
|
|
recipe_name_2 = $tw.utils.decodeURIComponentSafe(state.params[1]),
|
|
data = $tw.utils.parseJSONSafe(state.data);
|
|
if(recipe_name === recipe_name_2 && data) {
|
|
const result = $tw.mws.store.createRecipe(recipe_name,data.bag_names,data.description);
|
|
console.log(`create recipe route handler for ${recipe_name} with ${JSON.stringify(data)} got result ${JSON.stringify(result)}`)
|
|
if(!result) {
|
|
state.sendResponse(204,{
|
|
"Content-Type": "text/plain"
|
|
});
|
|
} else {
|
|
state.sendResponse(400,{
|
|
"Content-Type": "text/plain"
|
|
},
|
|
result.message,
|
|
"utf8");
|
|
}
|
|
} else {
|
|
response.writeHead(404);
|
|
response.end();
|
|
}
|
|
};
|
|
|
|
}());
|