@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
55 lines (43 loc) • 1.53 kB
text/typescript
import { and, desc, eq } from 'drizzle-orm/expressions';
import { LobeChatDatabase } from '@/database/type';
import { NewSessionGroup, SessionGroupItem, sessionGroups } from '../schemas';
export class TemplateModel {
private userId: string;
private db: LobeChatDatabase;
constructor(db: LobeChatDatabase, userId: string) {
this.userId = userId;
this.db = db;
}
create = async (params: Omit<NewSessionGroup, 'userId'>) => {
const [result] = await this.db
.insert(sessionGroups)
.values({ ...params, userId: this.userId })
.returning();
return result;
};
delete = async (id: string) => {
return this.db
.delete(sessionGroups)
.where(and(eq(sessionGroups.id, id), eq(sessionGroups.userId, this.userId)));
};
deleteAll = async () => {
return this.db.delete(sessionGroups).where(eq(sessionGroups.userId, this.userId));
};
query = async () => {
return this.db.query.sessionGroups.findMany({
orderBy: [desc(sessionGroups.updatedAt)],
where: eq(sessionGroups.userId, this.userId),
});
};
findById = async (id: string) => {
return this.db.query.sessionGroups.findFirst({
where: and(eq(sessionGroups.id, id), eq(sessionGroups.userId, this.userId)),
});
};
update = async (id: string, value: Partial<SessionGroupItem>) => {
return this.db
.update(sessionGroups)
.set({ ...value, updatedAt: new Date() })
.where(and(eq(sessionGroups.id, id), eq(sessionGroups.userId, this.userId)));
};
}