feat: 更新用户数据库操作,统一使用数据库名称常量

This commit is contained in:
zhaoyingbo 2024-12-19 08:11:58 +00:00
parent 8c42f639ba
commit abca5fcf87
2 changed files with 10 additions and 2 deletions

View File

@ -4,6 +4,8 @@ import { Context } from "../../types"
import { managePbError } from "../../utils/pbTools"
import pbClient from "../pbClient"
const DB_NAME = "users"
// 用户接口定义
interface User {
email: string
@ -25,7 +27,7 @@ export type UserModel = User & RecordModel
* @returns {Promise<UserModel>} -
*/
const create = async (user: User) =>
managePbError<UserModel>(() => pbClient.collection("user").create(user))
managePbError<UserModel>(() => pbClient.collection(DB_NAME).create(user))
/**
* ID获取用户
@ -34,7 +36,7 @@ const create = async (user: User) =>
*/
const getByUserId = async (userId: string) =>
managePbError<UserModel>(() =>
pbClient.collection("user").getFirstListItem(`userId = "${userId}"`)
pbClient.collection(DB_NAME).getFirstListItem(`userId = "${userId}"`)
)
/**
@ -76,6 +78,7 @@ const getByCtx = async ({ larkBody, larkService }: Context) => {
// 用户对象
const user = {
getByCtx,
getByUserId,
}
export default user

5
test/user/index.ts Normal file
View File

@ -0,0 +1,5 @@
import pbClient from "../../db/pbClient"
const userId = "zhaoyingbo"
pbClient.collection("users").getFirstListItem(`userId = "${userId}"`)