go_dreamfactory/modules/plunder/api_getlist.go
2024-01-30 14:43:18 +08:00

115 lines
2.9 KiB
Go

package plunder
import (
"fmt"
"go_dreamfactory/comm"
"go_dreamfactory/lego/core"
"go_dreamfactory/pb"
"go_dreamfactory/sys/configure"
"go_dreamfactory/utils"
"go.mongodb.org/mongo-driver/bson"
)
func (this *apiComp) GetListCheck(session comm.IUserSession, req *pb.PlunderGetListReq) (errdata *pb.ErrorData) {
return
}
// 获取基本信息
func (this *apiComp) GetList(session comm.IUserSession, req *pb.PlunderGetListReq) (errdata *pb.ErrorData) {
var (
err error
list *pb.DBPlunder
land *pb.DBPlunderLand
update map[string]interface{}
)
if errdata = this.GetListCheck(session, req); errdata != nil {
return
}
update = make(map[string]interface{})
if list, err = this.module.modelPlunder.getPlunderData(session); err != nil {
errdata = &pb.ErrorData{
Code: pb.ErrorCode_DBError,
Message: err.Error(),
}
return
}
if list.Landid == "" {
if land, err = this.module.modelLand.createPlunderLandData(list); err != nil {
errdata = &pb.ErrorData{
Code: pb.ErrorCode_DBError,
Message: err.Error(),
}
return
}
list.Landid = land.Id
update["landid"] = land.Id
} else {
if land, err = this.module.modelLand.getPlunderLandData(list.Landid); err != nil {
errdata = &pb.ErrorData{
Code: pb.ErrorCode_DBError,
Message: err.Error(),
}
return
}
var uids []string
// 清理岛数据
if land.Etime < configure.Now().Unix() {
for _, v := range land.Uinfo { // 重置成员信息
uids = append(uids, v.Uid)
}
if _, err = this.module.modelPlunder.DB.UpdateMany(core.SqlTable(comm.TablePlunder), bson.M{"uid": bson.M{"$in": uids}}, bson.M{"$set": bson.M{"landid": land.Id}}); err != nil {
fmt.Printf("err:%v", err)
return
}
if land, err = this.module.modelLand.createPlunderLandData(list); err != nil {
errdata = &pb.ErrorData{
Code: pb.ErrorCode_DBError,
Message: err.Error(),
}
return
}
list.Landid = land.Id
update["landid"] = land.Id
list.Etime = land.Etime
update["etime"] = land.Etime
}
}
if len(list.Source) == 0 {
list.Source, err = this.module.modelPlunder.refreshGoodsInfo()
list.Setout = []int32{}
update["setout"] = list.Setout
update["source"] = list.Source
}
// 校验解锁的是否到期
for _, v := range list.Line {
if v.Closetime > 0 && v.Closetime < configure.Now().Unix() {
v.Closetime = -1
update["line"] = list.Line
}
}
// 每日重置次数
if !utils.IsToday(list.Ctime) { //不是同一天 可以重置数据
list.Ctime = configure.Now().Unix()
list.Pvpcount = 0
list.Count = 0
list.Freecount = 0
update["pvpcount"] = list.Pvpcount
update["count"] = list.Count
update["ctime"] = list.Ctime
update["freecount"] = list.Freecount
}
if len(update) > 0 {
this.module.modelPlunder.changePlunderData(session.GetUserId(), update)
}
session.SendMsg(string(this.module.GetType()), "getlist", &pb.PlunderGetListResp{
List: list,
Land: land,
})
return
}