mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-11 12:29:57 +00:00
51 lines
872 B
JavaScript
51 lines
872 B
JavaScript
|
/*\
|
||
|
title: $:/plugins/tiddlywiki/multiwikiserver/routes/handlers/post-bag.js
|
||
|
type: application/javascript
|
||
|
module-type: mws-route
|
||
|
|
||
|
POST /bags
|
||
|
|
||
|
Parameters:
|
||
|
|
||
|
bag_name
|
||
|
description
|
||
|
|
||
|
\*/
|
||
|
(function() {
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
exports.method = "POST";
|
||
|
|
||
|
exports.path = /^\/bags$/;
|
||
|
|
||
|
exports.bodyFormat = "www-form-urlencoded";
|
||
|
|
||
|
exports.csrfDisable = true;
|
||
|
|
||
|
exports.handler = function(request,response,state) {
|
||
|
if(state.data.bag_name) {
|
||
|
const result = $tw.mws.store.createBag(state.data.bag_name,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"
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}());
|