1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-13 15:59:42 +00:00
TiddlyWiki5/plugins/tiddlywiki/multiwikiserver/modules/init.js

59 lines
2.0 KiB
JavaScript
Raw Normal View History

2024-01-02 14:39:14 +00:00
/*\
title: $:/plugins/tiddlywiki/multiwikiserver/init.js
type: application/javascript
module-type: startup
Multi wiki server initialisation
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
// Export name and synchronous status
exports.name = "multiwikiserver";
exports.platforms = ["node"];
exports.before = ["story"];
exports.synchronous = true;
exports.startup = function() {
2024-01-05 10:58:07 +00:00
var path = require("path");
2024-01-02 14:39:14 +00:00
// Install the sqlite3 global namespace
$tw.sqlite3 = {
Database: null
};
// Check that better-sqlite3 is installed
var logger = new $tw.utils.Logger("multiwikiserver");
try {
$tw.sqlite3.Database = require("better-sqlite3");
} catch(e) {
}
if(!$tw.sqlite3.Database) {
2024-01-02 21:41:25 +00:00
logger.alert("The plugin 'tiddlywiki/multiwikiserver' requires the better-sqlite3 npm package to be installed. Run 'npm install' in the root of the TiddlyWiki repository");
2024-01-02 14:39:14 +00:00
return;
}
2024-01-05 10:58:07 +00:00
// Compute the database path
var databasePath = path.resolve($tw.boot.wikiPath,"database.sqlite");
2024-01-02 14:39:14 +00:00
// Create and initialise the tiddler store
var SqlTiddlerStore = require("$:/plugins/tiddlywiki/multiwikiserver/sql-tiddler-store.js").SqlTiddlerStore;
2024-01-05 10:58:07 +00:00
$tw.sqlTiddlerStore = new SqlTiddlerStore({
databasePath: databasePath
});
2024-01-02 14:39:14 +00:00
// Create bags and recipes
2024-01-05 10:58:07 +00:00
$tw.sqlTiddlerStore.createBag("bag-alpha");
$tw.sqlTiddlerStore.createBag("bag-beta");
$tw.sqlTiddlerStore.createBag("bag-gamma");
2024-01-23 14:29:50 +00:00
$tw.sqlTiddlerStore.createRecipe("recipe-rho",["bag-alpha","bag-beta"],"First wiki");
$tw.sqlTiddlerStore.createRecipe("recipe-sigma",["bag-alpha","bag-gamma"],"Second Wiki");
$tw.sqlTiddlerStore.createRecipe("recipe-tau",["bag-alpha"],"Third Wiki");
$tw.sqlTiddlerStore.createRecipe("recipe-upsilon",["bag-alpha","bag-gamma","bag-beta"],"Fourth Wiki");
2024-01-02 14:39:14 +00:00
// Save tiddlers
2024-01-19 19:52:57 +00:00
$tw.sqlTiddlerStore.saveBagTiddler({title: "$:/SiteTitle",text: "Bag Alpha"},"bag-alpha");
$tw.sqlTiddlerStore.saveBagTiddler({title: "$:/SiteTitle",text: "Bag Beta"},"bag-beta");
$tw.sqlTiddlerStore.saveBagTiddler({title: "$:/SiteTitle",text: "Bag Gamma"},"bag-gamma");
2024-01-02 14:39:14 +00:00
};
})();