2024-01-03 16:27:13 +00:00
|
|
|
/*\
|
2024-03-11 09:10:01 +00:00
|
|
|
title: $:/plugins/tiddlywiki/multiwikiserver/routes/handlers/put-recipe-tiddler.js
|
2024-01-03 16:27:13 +00:00
|
|
|
type: application/javascript
|
2024-03-18 08:44:45 +00:00
|
|
|
module-type: mws-route
|
2024-01-03 16:27:13 +00:00
|
|
|
|
2024-03-20 15:13:50 +00:00
|
|
|
PUT /recipes/:recipe_name/tiddlers/:title
|
2024-01-03 16:27:13 +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\/([^\/]+)\/tiddlers\/(.+)$/;
|
2024-01-03 16:27:13 +00:00
|
|
|
|
|
|
|
exports.handler = function(request,response,state) {
|
|
|
|
// Get the parameters
|
|
|
|
var recipe_name = $tw.utils.decodeURIComponentSafe(state.params[0]),
|
2024-03-20 15:13:50 +00:00
|
|
|
title = $tw.utils.decodeURIComponentSafe(state.params[1]),
|
2024-01-03 16:27:13 +00:00
|
|
|
fields = $tw.utils.parseJSONSafe(state.data);
|
2024-03-20 19:22:12 +00:00
|
|
|
if(recipe_name && title === fields.title) {
|
2024-02-05 14:49:08 +00:00
|
|
|
var result = $tw.mws.store.saveRecipeTiddler(fields,recipe_name);
|
2024-01-23 14:29:50 +00:00
|
|
|
if(result) {
|
|
|
|
response.writeHead(204, "OK",{
|
2024-03-24 21:15:59 +00:00
|
|
|
"X-Revision-Number": result.tiddler_id.toString(),
|
|
|
|
"X-Bag-Name": result.bag_name,
|
2024-03-20 18:52:54 +00:00
|
|
|
Etag: state.makeTiddlerEtag(result),
|
2024-01-23 14:29:50 +00:00
|
|
|
"Content-Type": "text/plain"
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
response.writeHead(400);
|
|
|
|
}
|
2024-01-03 16:27:13 +00:00
|
|
|
response.end();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Fail if something went wrong
|
|
|
|
response.writeHead(404);
|
|
|
|
response.end();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}());
|