MatchMaster/server/laf-cloud/functions/userHealth.ts

51 lines
1.6 KiB
TypeScript

import cloud from '@lafjs/cloud'
const db = cloud.database();
import Utils from "@/Utils";
export default async function (ctx: FunctionContext) {
const action = ctx.body.action;
const uid = ctx.body.uid;
let dbname = "users";
const gameName = ctx.body.gameName;
if (gameName == "iaa") {
dbname = "usersAd";
}
if (!action) {
return { code: 0, data: null, msg: "未获取到action" };
}
if (!uid) {
return { code: 0, data: null, msg: "未获取到uid" };
}
let res = await db.collection(dbname).where({ _id: uid }).getOne();
const token1 = ctx.body.token;
if (res.data && res.data.token) {
let istoken = Utils.checkToken(token1, res.data.token);
if (!istoken) {
return { code: 0, data: null, msg: "token校验失败" };
}
}
switch (action) {
case 'save':
let healthAmount = Number(ctx.body.healthAmount);
let healthtimestamp = Number(ctx.body.timestamp);
if (!healthAmount) {
return { code: 0, data: null, msg: "未获取到coinAmount" };
}
if (healthAmount < 0) {
healthAmount = 0;
}
let ret = await db.collection(dbname).where({ _id: uid }).update({ healthAmount: healthAmount, healthtimestamp: healthtimestamp });
return { code: 1, data: { healthAmount: healthAmount, timestamp: healthtimestamp }, msg: "用户数据更新成功" }
case 'read':
return {
code: 1, data: { healthAmount: res.data.healthAmount, timestamp: res.data.healthtimestamp}, msg: "成功" }
default:
return {
code: 400,
message: '无效的操作类型,请使用 save 或 read'
}
}
}