mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-04 14:00:11 +01:00
31fbb0784b
* added ui for custom welcome messages and added label for custom logo in admin settings * linting * fixing img to use light/dark modes * converted ChatBubble into component * implemented backend for welcome messages and admin appearance page * completed custom welcome messages for admin * finished custom messages for single user mode * merged with master and linted * improved UI for appearance settings pages * linted and merged with master * small updates --------- Co-authored-by: timothycarambat <rambat1010@gmail.com>
90 lines
2.3 KiB
JavaScript
90 lines
2.3 KiB
JavaScript
const WelcomeMessages = {
|
|
tablename: "welcome_messages",
|
|
colsInit: `
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
user TEXT NOT NULL,
|
|
response TEXT NOT NULL,
|
|
orderIndex INTEGER,
|
|
createdAt TEXT DEFAULT CURRENT_TIMESTAMP
|
|
`,
|
|
|
|
migrateTable: async function () {
|
|
const { checkForMigrations } = require("../utils/database");
|
|
console.log(
|
|
`\x1b[34m[MIGRATING]\x1b[0m Checking for Welcome Messages migrations`
|
|
);
|
|
const db = await this.db(false);
|
|
await checkForMigrations(this, db);
|
|
db.close();
|
|
},
|
|
|
|
migrations: function () {
|
|
return [];
|
|
},
|
|
|
|
db: async function (tracing = true) {
|
|
const sqlite3 = require("sqlite3").verbose();
|
|
const { open } = require("sqlite");
|
|
|
|
const db = await open({
|
|
filename: `${
|
|
!!process.env.STORAGE_DIR ? `${process.env.STORAGE_DIR}/` : "storage/"
|
|
}anythingllm.db`,
|
|
driver: sqlite3.Database,
|
|
});
|
|
|
|
await db.exec(
|
|
`PRAGMA foreign_keys = ON;CREATE TABLE IF NOT EXISTS ${this.tablename} (${this.colsInit})`
|
|
);
|
|
|
|
if (tracing) {
|
|
db.on("trace", (sql) => console.log(sql));
|
|
}
|
|
|
|
return db;
|
|
},
|
|
|
|
get: async function (clause = "") {
|
|
const db = await this.db();
|
|
const result = await db
|
|
.get(`SELECT * FROM ${this.tablename} WHERE ${clause}`)
|
|
.then((res) => res || null);
|
|
db.close();
|
|
return result;
|
|
},
|
|
|
|
where: async function (clause = null, limit = null) {
|
|
const db = await this.db();
|
|
const results = await db.all(
|
|
`SELECT * FROM ${this.tablename} ${clause ? `WHERE ${clause}` : ""} ${
|
|
!!limit ? `LIMIT ${limit}` : ""
|
|
}`
|
|
);
|
|
db.close();
|
|
return results;
|
|
},
|
|
|
|
saveAll: async function (messages) {
|
|
const db = await this.db();
|
|
await db.run(`DELETE FROM ${this.tablename}`);
|
|
for (const [index, message] of messages.entries()) {
|
|
await db.run(
|
|
`INSERT INTO ${this.tablename} (user, response, orderIndex) VALUES (?, ?, ?)`,
|
|
[message.user, message.response, index]
|
|
);
|
|
}
|
|
db.close();
|
|
},
|
|
|
|
getMessages: async function () {
|
|
const db = await this.db();
|
|
const results = await db.all(
|
|
`SELECT user, response FROM ${this.tablename} ORDER BY orderIndex ASC`
|
|
);
|
|
db.close();
|
|
return results;
|
|
},
|
|
};
|
|
|
|
module.exports.WelcomeMessages = WelcomeMessages;
|