2024-01-19 11:03:58 +00:00
|
|
|
/*\
|
2024-03-11 09:10:01 +00:00
|
|
|
title: $:/plugins/tiddlywiki/multiwikiserver/routes/handlers/put-recipe.js
|
2024-01-19 11:03:58 +00:00
|
|
|
type: application/javascript
|
2024-03-18 08:44:45 +00:00
|
|
|
module-type: mws-route
|
2024-01-19 11:03:58 +00:00
|
|
|
|
2024-03-20 15:13:50 +00:00
|
|
|
PUT /recipes/:recipe_name
|
2024-01-19 11:03:58 +00:00
|
|
|
|
|
|
|
\*/
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
exports.method = "PUT";
|
|
|
|
|
2024-03-20 15:13:50 +00:00
|
|
|
exports.path = /^\/recipes\/(.+)$/;
|
2024-01-19 11:03:58 +00:00
|
|
|
|
|
|
|
exports.handler = function(request,response,state) {
|
|
|
|
// Get the parameters
|
|
|
|
var recipe_name = $tw.utils.decodeURIComponentSafe(state.params[0]),
|
2024-01-24 22:24:24 +00:00
|
|
|
data = $tw.utils.parseJSONSafe(state.data);
|
2024-03-20 15:13:50 +00:00
|
|
|
if(recipe_name && data) {
|
2024-02-05 14:49:08 +00:00
|
|
|
const result = $tw.mws.store.createRecipe(recipe_name,data.bag_names,data.description);
|
2024-01-24 22:24:24 +00:00
|
|
|
if(!result) {
|
|
|
|
state.sendResponse(204,{
|
|
|
|
"Content-Type": "text/plain"
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
state.sendResponse(400,{
|
|
|
|
"Content-Type": "text/plain"
|
|
|
|
},
|
|
|
|
result.message,
|
|
|
|
"utf8");
|
|
|
|
}
|
2024-01-19 11:03:58 +00:00
|
|
|
} else {
|
|
|
|
response.writeHead(404);
|
|
|
|
response.end();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}());
|