2023-06-08 06:31:35 +02:00
|
|
|
const slugify = require("slugify");
|
|
|
|
const { Document } = require("./documents");
|
2023-06-04 04:28:07 +02:00
|
|
|
|
|
|
|
const Workspace = {
|
2023-06-08 06:31:35 +02:00
|
|
|
tablename: "workspaces",
|
2023-06-04 04:28:07 +02:00
|
|
|
colsInit: `
|
|
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
|
|
name TEXT NOT NULL UNIQUE,
|
|
|
|
slug TEXT NOT NULL UNIQUE,
|
|
|
|
vectorTag TEXT DEFAULT NULL,
|
|
|
|
createdAt TEXT DEFAULT CURRENT_TIMESTAMP,
|
|
|
|
lastUpdatedAt TEXT DEFAULT CURRENT_TIMESTAMP
|
|
|
|
`,
|
|
|
|
db: async function () {
|
2023-06-08 06:31:35 +02:00
|
|
|
const sqlite3 = require("sqlite3").verbose();
|
|
|
|
const { open } = require("sqlite");
|
2023-06-04 04:28:07 +02:00
|
|
|
|
|
|
|
const db = await open({
|
2023-06-08 23:00:43 +02:00
|
|
|
filename: `${
|
|
|
|
!!process.env.STORAGE_DIR ? `${process.env.STORAGE_DIR}/` : ""
|
|
|
|
}anythingllm.db`,
|
2023-06-08 06:31:35 +02:00
|
|
|
driver: sqlite3.Database,
|
|
|
|
});
|
2023-06-04 04:28:07 +02:00
|
|
|
|
2023-06-08 06:31:35 +02:00
|
|
|
await db.exec(
|
|
|
|
`CREATE TABLE IF NOT EXISTS ${this.tablename} (${this.colsInit})`
|
|
|
|
);
|
|
|
|
db.on("trace", (sql) => console.log(sql));
|
|
|
|
return db;
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
|
|
|
new: async function (name = null) {
|
2023-06-08 06:31:35 +02:00
|
|
|
if (!name) return { result: null, message: "name cannot be null" };
|
2023-06-04 04:28:07 +02:00
|
|
|
|
2023-06-08 06:31:35 +02:00
|
|
|
const db = await this.db();
|
|
|
|
const { id, success, message } = await db
|
|
|
|
.run(`INSERT INTO ${this.tablename} (name, slug) VALUES (?, ?)`, [
|
|
|
|
name,
|
|
|
|
slugify(name, { lower: true }),
|
|
|
|
])
|
2023-06-04 04:28:07 +02:00
|
|
|
.then((res) => {
|
2023-06-08 06:31:35 +02:00
|
|
|
return { id: res.lastID, success: true, message: null };
|
2023-06-04 04:28:07 +02:00
|
|
|
})
|
|
|
|
.catch((error) => {
|
2023-06-08 06:31:35 +02:00
|
|
|
return { id: null, success: false, message: error.message };
|
|
|
|
});
|
|
|
|
if (!success) return { workspace: null, message };
|
2023-06-04 04:28:07 +02:00
|
|
|
|
2023-06-08 06:31:35 +02:00
|
|
|
const workspace = await db.get(
|
|
|
|
`SELECT * FROM ${this.tablename} WHERE id = ${id}`
|
|
|
|
);
|
|
|
|
return { workspace, message: null };
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
2023-06-08 06:31:35 +02:00
|
|
|
get: async function (clause = "") {
|
|
|
|
const db = await this.db();
|
|
|
|
const result = await db
|
|
|
|
.get(`SELECT * FROM ${this.tablename} WHERE ${clause}`)
|
|
|
|
.then((res) => res || null);
|
2023-06-04 04:28:07 +02:00
|
|
|
if (!result) return null;
|
|
|
|
|
|
|
|
const documents = await Document.forWorkspace(result.id);
|
2023-06-08 06:31:35 +02:00
|
|
|
return { ...result, documents };
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
2023-06-08 06:31:35 +02:00
|
|
|
delete: async function (clause = "") {
|
|
|
|
const db = await this.db();
|
|
|
|
await db.get(`DELETE FROM ${this.tablename} WHERE ${clause}`);
|
|
|
|
return true;
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
2023-06-08 06:31:35 +02:00
|
|
|
where: async function (clause = "", limit = null) {
|
|
|
|
const db = await this.db();
|
|
|
|
const results = await db.all(
|
|
|
|
`SELECT * FROM ${this.tablename} ${clause ? `WHERE ${clause}` : ""} ${
|
|
|
|
!!limit ? `LIMIT ${limit}` : ""
|
|
|
|
}`
|
|
|
|
);
|
|
|
|
return results;
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
2023-06-08 06:31:35 +02:00
|
|
|
};
|
2023-06-04 04:28:07 +02:00
|
|
|
|
2023-06-08 06:31:35 +02:00
|
|
|
module.exports = { Workspace };
|