egg_server/db/appInfo/index.ts
zhaoyingbo 6e65581bbf
All checks were successful
Egg CI/CD / build-image (push) Successful in 32s
Egg CI/CD / deploy (push) Successful in 37s
feat: 接入lint 和 husky
2024-07-25 01:48:22 +00:00

40 lines
742 B
TypeScript

import { DB } from "../../types"
import { managePb404 } from "../../utils/pbTools"
import pbClient from "../pbClient"
/**
* 获取配置
* @param appName
* @returns
*/
const get = async (appName: string) =>
managePb404<DB.AppInfo>(() =>
pbClient.collection("app_info").getFirstListItem(`name='${appName}'`)
)
/**
* 获取所有配置
* @returns
*/
const getFullList = () => pbClient.collection("app_info").getFullList()
/**
* 获取配置的某个值
* @param appName
* @param key
* @returns
*/
const getVal = async (appName: string, key: string) => {
const config = await get(appName)
if (!config) return ""
return config[key] || ""
}
const appInfo = {
get,
getVal,
getFullList,
}
export default appInfo