2024-01-19 19:25:58 +00:00
|
|
|
/*\
|
|
|
|
title: $:/plugins/tiddlywiki/multiwikiserver/route-get-bag.js
|
|
|
|
type: application/javascript
|
|
|
|
module-type: route
|
|
|
|
|
|
|
|
GET /wikis/:bag_name/bags/:bag_name
|
|
|
|
|
|
|
|
NOTE: Urls currently include the bag name twice. This is temporary to minimise the changes to the TiddlyWeb plugin
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function() {
|
|
|
|
|
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
exports.method = "GET";
|
|
|
|
|
2024-02-21 17:54:56 +00:00
|
|
|
exports.path = /^\/wiki\/([^\/]+)\/bags\/(.+)$/;
|
2024-01-19 19:25:58 +00:00
|
|
|
|
|
|
|
exports.handler = function(request,response,state) {
|
|
|
|
// Get the parameters
|
|
|
|
var bag_name = $tw.utils.decodeURIComponentSafe(state.params[0]),
|
|
|
|
bag_name_2 = $tw.utils.decodeURIComponentSafe(state.params[1]),
|
2024-02-05 14:49:08 +00:00
|
|
|
titles = bag_name === bag_name_2 && $tw.mws.store.getBagTiddlers(bag_name);
|
2024-01-19 19:25:58 +00:00
|
|
|
if(bag_name === bag_name_2 && titles) {
|
|
|
|
// If application/json is requested then this is an API request, and gets the response in JSON
|
|
|
|
if(request.headers.accept && request.headers.accept.indexOf("application/json") !== -1) {
|
|
|
|
state.sendResponse(200,{"Content-Type": "application/json"},JSON.stringify(titles),"utf8");
|
|
|
|
} else {
|
|
|
|
// This is not a JSON API request, we should return the raw tiddler content
|
|
|
|
response.writeHead(200, "OK",{
|
|
|
|
"Content-Type": "text/html"
|
|
|
|
});
|
2024-02-23 17:47:00 +00:00
|
|
|
response.write(`
|
|
|
|
<!doctype html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
`);
|
2024-01-19 19:25:58 +00:00
|
|
|
// Render the html
|
2024-02-05 14:49:08 +00:00
|
|
|
var html = $tw.mws.store.adminWiki.renderTiddler("text/html","$:/plugins/tiddlywiki/multiwikiserver/templates/get-bags",{
|
2024-01-19 19:25:58 +00:00
|
|
|
variables: {
|
|
|
|
"bag-name": bag_name,
|
|
|
|
"bag-titles": JSON.stringify(titles)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
response.write(html);
|
2024-02-23 17:47:00 +00:00
|
|
|
response.write(`
|
|
|
|
</body>
|
2024-02-28 18:19:01 +00:00
|
|
|
</html>
|
2024-02-23 17:47:00 +00:00
|
|
|
`);
|
2024-01-19 19:25:58 +00:00
|
|
|
response.end();;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
response.writeHead(404);
|
|
|
|
response.end();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}());
|