session lib funcs

This commit is contained in:
Claeb101 2023-03-04 20:43:54 -05:00
parent 93195e4dc3
commit c9ad7424e2
2 changed files with 94 additions and 4 deletions

View File

@ -14,8 +14,28 @@ model Session {
id String @id @default(auto()) @map("_id") @db.ObjectId
startedAt DateTime @default(now())
transferedAt DateTime?
endedAt DateTime?
callId String @unique
phoneNumber String @unique
callerPhone String @unique
receiverPhone String? @unique
messages Message[]
}
enum Role {
USER
BOT
REP
}
model Message {
id String @id @default(auto()) @map("_id") @db.ObjectId
createdAt DateTime @default(now())
role Role
content String
session Session @relation(fields: [sessionId], references: [id])
sessionId String @db.ObjectId
}

View File

@ -1,5 +1,75 @@
import { db } from "./db";
import { Role } from "@prisma/client";
import { db } from "./db.js";
const session = () => {
db.session.create({})
export const createSession = async (callId, callerPhone) => {
return await db.session.create({
data: {
callId: callId,
callerPhone: callerPhone
}
})
}
export const findSessionByCallId = async (callId) => {
return await db.session.findUnique({
where: {
callId: callId
}
})
}
export const transferSession = async (callId, receiverPhone) => {
return await db.session.update({
where: {
callId: callId
},
data: {
transferedAt: new Date(),
receiverPhone: receiverPhone
}
})
}
export const endSession = async (callId) => {
return await db.session.update({
where: {
callId: callId
},
data: {
endedAt: new Date()
}
})
}
export const addMessage = async (callId, role, content) => {
const session = await findSessionByCallId(callId)
return await db.message.create({
data: {
sessionId: session.id,
role: role,
content: content
}
})
}
export const getMessages = async (callId) => {
return await db.message.findMany({
where: {
session: {
callId: callId
}
},
orderBy: [
{
createdAt: 'asc'
}
]
})
}
// const main = async () => {
// // await addMessage("ofijse", Role.USER, "wefoij")
// console.log(await getMessages("ofijse"))
// }
// main()