mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
64 lines
1.3 KiB
JavaScript
64 lines
1.3 KiB
JavaScript
"use strict";
|
|
|
|
const sql = require('../../services/sql');
|
|
const becca = require("../../becca/becca");
|
|
|
|
function getSchema() {
|
|
const tableNames = sql.getColumn(`SELECT name FROM sqlite_master WHERE type='table' AND name NOT LIKE 'sqlite_%' ORDER BY name`);
|
|
const tables = [];
|
|
|
|
for (const tableName of tableNames) {
|
|
tables.push({
|
|
name: tableName,
|
|
columns: sql.getRows(`PRAGMA table_info(${tableName})`)
|
|
});
|
|
}
|
|
|
|
return tables;
|
|
}
|
|
|
|
function execute(req) {
|
|
const note = becca.getNote(req.params.noteId);
|
|
|
|
if (!note) {
|
|
return [404, `Note ${req.params.noteId} was not found.`];
|
|
}
|
|
|
|
const queries = note.getContent().split("\n---");
|
|
|
|
try {
|
|
const results = [];
|
|
|
|
for (let query of queries) {
|
|
query = query.trim();
|
|
|
|
if (!query) {
|
|
continue;
|
|
}
|
|
|
|
if (query.toLowerCase().startsWith('select')) {
|
|
results.push(sql.getRows(query));
|
|
}
|
|
else {
|
|
results.push(sql.execute(query));
|
|
}
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
results
|
|
};
|
|
}
|
|
catch (e) {
|
|
return {
|
|
success: false,
|
|
error: e.message
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
getSchema,
|
|
execute
|
|
};
|