mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-11 12:29:57 +00:00
52 lines
1006 B
JavaScript
52 lines
1006 B
JavaScript
|
/*\
|
||
|
title: $:/plugins/tiddlywiki/multiwikiserver/routes/handlers/post-recipe.js
|
||
|
type: application/javascript
|
||
|
module-type: mws-route
|
||
|
|
||
|
POST /recipes
|
||
|
|
||
|
Parameters:
|
||
|
|
||
|
recipe_name
|
||
|
description
|
||
|
bag_names: space separated list of bags
|
||
|
|
||
|
\*/
|
||
|
(function() {
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
exports.method = "POST";
|
||
|
|
||
|
exports.path = /^\/recipes$/;
|
||
|
|
||
|
exports.bodyFormat = "www-form-urlencoded";
|
||
|
|
||
|
exports.csrfDisable = true;
|
||
|
|
||
|
exports.handler = function(request,response,state) {
|
||
|
if(state.data.recipe_name && state.data.bag_names) {
|
||
|
const result = $tw.mws.store.createRecipe(state.data.recipe_name,$tw.utils.parseStringArray(state.data.bag_names),state.data.description);
|
||
|
if(!result) {
|
||
|
state.sendResponse(302,{
|
||
|
"Content-Type": "text/plain",
|
||
|
"Location": "/"
|
||
|
});
|
||
|
} else {
|
||
|
state.sendResponse(400,{
|
||
|
"Content-Type": "text/plain"
|
||
|
},
|
||
|
result.message,
|
||
|
"utf8");
|
||
|
}
|
||
|
} else {
|
||
|
state.sendResponse(400,{
|
||
|
"Content-Type": "text/plain"
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}());
|