2025-03-03 18:37:04 +08:00
|
|
|
import { ObjectId } from "mongodb";
|
2025-01-21 18:41:27 +08:00
|
|
|
import { getCollection } from "../mongodb";
|
|
|
|
|
|
|
|
export type User = {
|
|
|
|
_id: string;
|
|
|
|
name: string;
|
|
|
|
role: number;
|
|
|
|
account: string;
|
|
|
|
password: string;
|
|
|
|
}
|
|
|
|
export async function getUser(account: string) {
|
|
|
|
const collection = await getCollection('user')
|
|
|
|
const user = await collection.findOne<User>({ account })
|
|
|
|
|
|
|
|
return user
|
2025-03-03 18:37:04 +08:00
|
|
|
}
|
|
|
|
export async function updateUser(user: Partial<User>) {
|
|
|
|
const collection = await getCollection('user')
|
|
|
|
await collection.updateOne({
|
|
|
|
_id: new ObjectId(user._id)
|
|
|
|
}, {
|
|
|
|
$$set: user
|
|
|
|
})
|
2025-01-21 18:41:27 +08:00
|
|
|
}
|