mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-11 04:19:56 +00:00
3aa5607a3a
Instead we store them as dictionary tiddlers
44 lines
1020 B
JavaScript
44 lines
1020 B
JavaScript
/*\
|
|
title: $:/plugins/tiddlywiki/multiwikiserver/routes/handlers/put-recipe-tiddler.js
|
|
type: application/javascript
|
|
module-type: mws-route
|
|
|
|
PUT /recipes/:recipe_name/tiddlers/:title
|
|
|
|
\*/
|
|
(function() {
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
exports.method = "PUT";
|
|
|
|
exports.path = /^\/recipes\/([^\/]+)\/tiddlers\/(.+)$/;
|
|
|
|
exports.handler = function(request,response,state) {
|
|
// Get the parameters
|
|
var recipe_name = $tw.utils.decodeURIComponentSafe(state.params[0]),
|
|
title = $tw.utils.decodeURIComponentSafe(state.params[1]),
|
|
fields = $tw.utils.parseJSONSafe(state.data);
|
|
if(recipe_name && title === fields.title) {
|
|
var result = $tw.mws.store.saveRecipeTiddler(fields,recipe_name);
|
|
if(result) {
|
|
response.writeHead(204, "OK",{
|
|
Etag: state.makeTiddlerEtag(result),
|
|
"Content-Type": "text/plain"
|
|
});
|
|
} else {
|
|
response.writeHead(400);
|
|
}
|
|
response.end();
|
|
return;
|
|
}
|
|
// Fail if something went wrong
|
|
response.writeHead(404);
|
|
response.end();
|
|
|
|
};
|
|
|
|
}());
|