mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-10 11:59:58 +00:00
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
|
/*\
|
||
|
title: $:/plugins/tiddlywiki/multiwikiserver/routes/handlers/get-index.js
|
||
|
type: application/javascript
|
||
|
module-type: mws-route
|
||
|
|
||
|
GET /
|
||
|
|
||
|
\*/
|
||
|
(function() {
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
exports.method = "GET";
|
||
|
|
||
|
exports.path = /^\/$/;
|
||
|
|
||
|
exports.handler = function(request,response,state) {
|
||
|
// Get the bag and recipe information
|
||
|
var bagList = $tw.mws.store.listBags(),
|
||
|
recipeList = $tw.mws.store.listRecipes();
|
||
|
// 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(recipes),"utf8");
|
||
|
} else {
|
||
|
// This is not a JSON API request, we should return the raw tiddler content
|
||
|
response.writeHead(200, "OK",{
|
||
|
"Content-Type": "text/html"
|
||
|
});
|
||
|
// Render the html
|
||
|
var html = $tw.mws.store.adminWiki.renderTiddler("text/plain","$:/plugins/tiddlywiki/multiwikiserver/templates/page",{
|
||
|
variables: {
|
||
|
"page-content": "$:/plugins/tiddlywiki/multiwikiserver/templates/get-index",
|
||
|
"bag-list": JSON.stringify(bagList),
|
||
|
"recipe-list": JSON.stringify(recipeList)
|
||
|
}
|
||
|
});
|
||
|
response.write(html);
|
||
|
response.end();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}());
|