| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222 |
- package log
- import (
- "context"
- "encoding/json"
- "errors"
- "fmt"
- "github.com/go-redis/redis/v8"
- "github.com/xuri/excelize/v2"
- "go.uber.org/zap"
- "gorm.io/gorm"
- "log-server/global"
- "log-server/model/log"
- "log-server/model/log/request"
- "log-server/model/log/response"
- loging2 "log-server/service/log/loging"
- "log-server/utils"
- "strconv"
- "strings"
- "time"
- )
- type ServiceStatisticsLog struct {
- loging2.LogicalLog
- }
- var StatisticsCompletedKey = "%s:StatisticsCompleted"
- var taskStatistics = "%s:taskStatistics"
- var ComputerNum = "%s:ComputerNum"
- var TaskType = []int{0, 1}
- func (s *ServiceStatisticsLog) CreateStatisticsLog() {
- key := fmt.Sprintf(StatisticsCompletedKey, s.LogicalLog.CurrentDate())
- ctx := context.Background()
- b, err := s.LogicalLog.ExistsKey(ctx, key)
- if err != nil {
- global.GVA_LOG.Error("获取redis key失败!"+key, zap.Error(err))
- return
- }
- if b {
- global.GVA_LOG.Info("统计数据已完成!"+key, zap.Error(err))
- return
- }
- gameMps, err := s.LogicalLog.GetGameCache(context.Background(), s.YesterdayDate())
- if err != nil {
- global.GVA_LOG.Error("获取redis game list失败!", zap.Error(err))
- return
- }
- if len(gameMps) == 0 {
- global.GVA_LOG.Info("获取redis game list没有数据!")
- return
- }
- var statisticsLogs []*log.StatisticsLog
- for gameId, _ := range gameMps {
- for _, tt := range TaskType {
- gameIdInt, _ := strconv.Atoi(gameId)
- statisticsLogNew := new(log.StatisticsLog)
- statisticsLog := s.statisticsData(ctx, gameIdInt, tt, s.LogicalLog.YesterdayDate(), statisticsLogNew)
- if !errors.Is(global.GVA_DB.Where("create_date = ?", s.LogicalLog.YesterdayDate()).Where("game_id = ?", gameIdInt).First(&log.StatisticsLog{}).Error, gorm.ErrRecordNotFound) {
- // 已存在,跳过
- err = global.GVA_DB.Where("game_id", gameIdInt).Where("create_date = ?", s.LogicalLog.YesterdayDate()).Where("type = ?", tt).Updates(statisticsLog).Error
- if err != nil {
- global.GVA_LOG.Error("update StatisticsLogs失败!", zap.Error(err))
- continue
- }
- continue
- }
- statisticsLogs = append(statisticsLogs, statisticsLog)
- }
- }
- if len(statisticsLogs) == 0 {
- global.GVA_LOG.Info("statisticsLogsGameInfo没有数据!", zap.Error(err))
- global.GVA_REDIS.Set(ctx, key, 1, 24*time.Hour)
- return
- }
- err = global.GVA_DB.Create(statisticsLogs).Error
- if err != nil {
- global.GVA_LOG.Error("添加statisticsLogsGameInfo失败!", zap.Error(err))
- return
- }
- global.GVA_REDIS.Set(ctx, key, 1, 24*time.Hour)
- return
- }
- func (s *ServiceStatisticsLog) TodayCreateStatisticsGameInfoLog() {
- date := s.LogicalLog.CurrentDate()
- ctx := context.Background()
- gameMps, err := s.LogicalLog.GetGameCache(context.Background(), date)
- if err != nil {
- global.GVA_LOG.Error("获取redis game list失败!", zap.Error(err))
- return
- }
- if len(gameMps) == 0 {
- global.GVA_LOG.Info("获取redis game list没有数据!")
- return
- }
- var statisticsLogs []*log.StatisticsLog
- for gameId, _ := range gameMps {
- for _, tt := range TaskType {
- gameIdInt, _ := strconv.Atoi(gameId)
- statisticsLogNew := new(log.StatisticsLog)
- statisticsLog := s.statisticsData(ctx, gameIdInt, tt, date, statisticsLogNew)
- if !errors.Is(global.GVA_DB.Where("create_date = ?", date).Where("game_id = ?", gameIdInt).First(&log.StatisticsLog{}).Error, gorm.ErrRecordNotFound) {
- // 已存在,跳过
- err = global.GVA_DB.Where("game_id", gameIdInt).Where("create_date = ?", date).Where("type = ?", tt).Updates(statisticsLog).Error
- if err != nil {
- global.GVA_LOG.Error("update StatisticsLogs失败!", zap.Error(err))
- continue
- }
- continue
- }
- statisticsLogs = append(statisticsLogs, statisticsLog)
- if len(statisticsLogs) == 100 {
- err = global.GVA_DB.Create(statisticsLogs).Error
- if err != nil {
- global.GVA_LOG.Error("添加statisticsLogs失败!", zap.Error(err))
- return
- }
- statisticsLogs = []*log.StatisticsLog{}
- }
- }
- }
- if len(statisticsLogs) == 0 {
- global.GVA_LOG.Info("statisticsLogsGameInfo没有数据!", zap.Error(err))
- return
- }
- err = global.GVA_DB.Create(statisticsLogs).Error
- if err != nil {
- global.GVA_LOG.Error("添加statisticsLogsGameInfo失败!", zap.Error(err))
- return
- }
- return
- }
- func (s *ServiceStatisticsLog) TodayStatisticsLogList(ctx context.Context, api log.StatisticsLog, info request.PageInfo) (interface{}, int64, error) {
- db := global.GVA_DB.Model(&log.StatisticsLog{})
- if api.GameId != 0 {
- db = db.Where("game_id = ?", api.GameId)
- }
- db = db.Where("create_date = ?", s.CurrentDate())
- var total int64
- err := db.Count(&total).Error
- if err != nil {
- return nil, 0, err
- }
- limit := info.PageSize
- offset := info.PageSize * (info.Page - 1)
- var statisticsLogs []*log.StatisticsLog
- var statisticsLogs2 []*log.StatisticsLog
- db = db.Limit(limit).Offset(offset)
- err = db.Order("id").Find(&statisticsLogs).Error
- for _, gameInfo := range statisticsLogs {
- tt := gameInfo.Type
- gameIdInt := gameInfo.GameId
- statisticsLogNew := new(log.StatisticsLog)
- statisticsLog := s.statisticsData(ctx, gameIdInt, tt, s.LogicalLog.CurrentDate(), statisticsLogNew)
- statisticsLogs2 = append(statisticsLogs2, statisticsLog)
- }
- return statisticsLogs2, total, err
- }
- func (s *ServiceStatisticsLog) statisticsData(ctx context.Context, gameIdInt, tt int, date string, statisticsLog *log.StatisticsLog) *log.StatisticsLog {
- key := fmt.Sprintf(taskStatistics, date)
- gameIdStr := strconv.Itoa(gameIdInt)
- data, err := global.GVA_REDIS.HGet(ctx, key, gameIdStr).Result()
- if err != nil {
- if err == redis.Nil {
- global.GVA_LOG.Info("添加缓存数据失败TaskStatisticsDataCache", zap.Error(err))
- } else {
- global.GVA_LOG.Error("添加缓存数据失败TaskStatisticsDataCache", zap.Error(err))
- return nil
- }
- }
- var taskStatistics request.TaskStatistics
- _ = json.Unmarshal([]byte(data), &taskStatistics)
- pullAccountOk, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4100000", loging2.OkStatus, tt)
- pullAccountFail, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4100000", loging2.FailStatus, tt)
- ConstituencyFail, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4604000", loging2.FailStatus, tt)
- ConstituencyOk, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4604000", loging2.OkStatus, tt)
- StartProxyFail, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4200000", loging2.FailStatus, tt)
- StartProxyOk, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4200000", loging2.OkStatus, tt)
- SimulatorStartFail, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4300000", loging2.FailStatus, tt)
- SimulatorStartOk, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4300000", loging2.OkStatus, tt)
- NetworkCheckFail, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4400000", loging2.FailStatus, tt)
- NetworkCheckOk, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4400000", loging2.OkStatus, tt)
- GameStartFail, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4500000", loging2.FailStatus, tt)
- GameStartOk, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4500000", loging2.OkStatus, tt)
- xmyLoginFail, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4601000", loging2.FailStatus, tt)
- xmyLoginOk, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4601000", loging2.OkStatus, tt)
- wxLoginFail, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4602000", loging2.FailStatus, tt)
- wxLoginOk, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4602000", loging2.OkStatus, tt)
- mzLoginFail, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4603000", loging2.FailStatus, tt)
- mzLoginOk, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4603000", loging2.OkStatus, tt)
- LoginFail := xmyLoginFail + wxLoginFail + mzLoginFail
- LoginOk := xmyLoginOk + wxLoginOk + mzLoginOk
- EnterMainFail, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4700000", loging2.FailStatus, tt)
- EnterMainOk, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4700000", loging2.OkStatus, tt)
- FeeFail, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4800000", loging2.FailStatus, tt)
- FeeOk, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4800000", loging2.OkStatus, tt)
- ScriptStartFail, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4300000", loging2.FailStatus, tt)
- ScriptStartOk, _ := s.LogicalLog.NodeLogGetNum(ctx, date, gameIdInt, "4300000", loging2.OkStatus, tt)
- EnterGameFail, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4605000", loging2.FailStatus, tt)
- EnterGameOk, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4605000", loging2.OkStatus, tt)
- AuthenticationFail, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4607000", loging2.FailStatus, tt)
- AuthenticationOk, _ := s.LogicalLog.TypeLogGetNum(ctx, date, gameIdInt, "4607000", loging2.OkStatus, tt)
- EnterStartGame, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4501000", loging2.NoLogStatus, tt)
- EnterAuthentication, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4607000", loging2.NoLogStatus, tt)
- EnterConstituency, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4604000", loging2.NoLogStatus, tt)
- EnterGame, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4605000", loging2.NoLogStatus, tt)
- EnterMain, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4701000", loging2.NoLogStatus, tt)
- EnterFee, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4800000", loging2.NoLogStatus, tt)
- EnterXmyLogin, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4601000", loging2.NoLogStatus, tt)
- EnterWxLogin, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4602000", loging2.NoLogStatus, tt)
- EnterMzLogin, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4603000", loging2.NoLogStatus, tt)
- BanOff1, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4601006", loging2.FailStatus, tt) // 小绵羊登录封号
- BanOff2, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4602008", loging2.FailStatus, tt) // 微信登录封号
- BanOff3, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4603006", loging2.FailStatus, tt) // 魅族登录封号
- BanOff4, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4701003", loging2.FailStatus, tt) // 主线封号
- Freeze, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4809904", loging2.NoLogStatus, tt) // 冻结
- BanOff := BanOff1 + BanOff2 + BanOff3 + BanOff4
- EnterLogin := EnterXmyLogin + EnterMzLogin + EnterWxLogin
- EnterScanningCode, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4608000", loging2.NoLogStatus, tt)
- TranscodingFail, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4608001", loging2.FailStatus, tt)
- ThirdPartyFail, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4608002", loging2.FailStatus, tt)
- ScanningCodeSuccess, _ := s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4608099", loging2.OkStatus, tt)
- //statisticsLog.NewHaveRole, _ = s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4604004", loging2.NoLogStatus, tt) // 新增有角色
- //statisticsLog.RetainedNotRole, _ = s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4604003", loging2.NoLogStatus, tt) // 留存无角色
- statisticsLog.PullAccountOk = pullAccountOk
- statisticsLog.PullAccountFail = pullAccountFail
- statisticsLog.StartProxyFail = StartProxyFail
- statisticsLog.StartProxyOk = StartProxyOk
- statisticsLog.SimulatorStartFail = SimulatorStartFail
- statisticsLog.SimulatorStartOk = SimulatorStartOk
- statisticsLog.NetworkCheckFail = NetworkCheckFail
- statisticsLog.NetworkCheckOk = NetworkCheckOk
- statisticsLog.EnterMainFail = EnterMainFail
- statisticsLog.EnterMainOk = EnterMainOk
- statisticsLog.EnterGameFail = EnterGameFail
- statisticsLog.EnterGameOk = EnterGameOk
- statisticsLog.GameId = gameIdInt
- statisticsLog.ConstituencyFail = ConstituencyFail
- statisticsLog.ConstituencyOk = ConstituencyOk
- statisticsLog.FeeFail = FeeFail
- statisticsLog.FeeOk = FeeOk
- statisticsLog.GameStartFail = GameStartFail
- statisticsLog.GameStartOk = GameStartOk
- statisticsLog.LoginFail = LoginFail
- statisticsLog.LoginOk = LoginOk
- statisticsLog.XmyLoginFail = xmyLoginFail
- statisticsLog.XmyLoginOk = xmyLoginOk
- statisticsLog.WxLoginFail = wxLoginFail
- statisticsLog.WxLoginOk = wxLoginOk
- statisticsLog.MzLoginFail = mzLoginFail
- statisticsLog.MzLoginOk = mzLoginOk
- statisticsLog.ScriptStartFail = ScriptStartFail
- statisticsLog.ScriptStartOk = ScriptStartOk
- statisticsLog.AuthenticationFail = AuthenticationFail
- statisticsLog.AuthenticationOk = AuthenticationOk
- statisticsLog.EnterStartGame = EnterStartGame
- statisticsLog.EnterAuthentication = EnterAuthentication
- statisticsLog.EnterConstituency = EnterConstituency
- statisticsLog.EnterGame = EnterGame
- statisticsLog.EnterMain = EnterMain
- statisticsLog.EnterFee = EnterFee
- statisticsLog.EnterLogin = EnterLogin
- statisticsLog.BanOff = BanOff
- statisticsLog.Freeze = Freeze
- statisticsLog.Type = tt
- statisticsLog.CreateTime = time.Now().Format("2006-01-02 15:04:05")
- statisticsLog.CreateDate = date
- statisticsLog.EnterScanningCode = EnterScanningCode
- statisticsLog.ThirdPartyFail = ThirdPartyFail
- statisticsLog.TranscodingFail = TranscodingFail
- statisticsLog.ScanningCodeSuccess = ScanningCodeSuccess
- if tt == 1 {
- statisticsLog.NotRole, _ = s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4609901", loging2.NoLogStatus, tt)
- statisticsLog.HasRole = 0
- statisticsLog.IssuedAccount = taskStatistics.RetainedPullAccount
- statisticsLog.TargetNum = taskStatistics.RetainedTarget
- statisticsLog.TargetCompleteNum = taskStatistics.RetainedComplete
- //statisticsLog.ScanningSuccessRate = 0
- } else {
- statisticsLog.NotRole = 0
- statisticsLog.HasRole, _ = s.LogicalLog.CodeLogGetNum(ctx, date, gameIdInt, "4609902", loging2.NoLogStatus, tt)
- statisticsLog.IssuedAccount = taskStatistics.NewPullAccount
- statisticsLog.TargetCompleteNum = taskStatistics.NewComplete
- statisticsLog.TargetNum = taskStatistics.NewTarget
- statisticsLog.NewScanningCode = taskStatistics.NewScanningCode
- //if statisticsLog.NewScanningCode != 0 {
- // statisticsLog.ScanningSuccessRate = float64(statisticsLog.TargetNum) / float64(statisticsLog.NewScanningCode) * 100
- //}
- }
- if statisticsLog.ScanningCodeSuccess != 0 {
- statisticsLog.ScanningSuccessRate = float64(statisticsLog.ScanningCodeSuccess) / float64(statisticsLog.EnterScanningCode) * 100
- }
- statisticsLog.PayComplete = taskStatistics.PayComplete
- statisticsLog.PayTarget = taskStatistics.PayTarget
- statisticsLog.OrderCreate = taskStatistics.OrderCreate
- statisticsLog.OrderSuccess = taskStatistics.OrderSuccess
- statisticsLog.RetainedAccountNum = taskStatistics.RetainedAccountNum
- statisticsLog.FeeAccountNum = taskStatistics.FeeAccountNum
- statisticsLog.Operator = taskStatistics.Remark
- statisticsLog.GameName = taskStatistics.GameName
- if statisticsLog.IssuedAccount != 0 {
- statisticsLog.PullSuccessRate = float64(statisticsLog.PullAccountOk) / float64(statisticsLog.IssuedAccount) * 100
- }
- if statisticsLog.PullAccountOk != 0 {
- statisticsLog.StartSuccessRate = float64(statisticsLog.SimulatorStartOk) / float64(statisticsLog.PullAccountOk) * 100
- }
- if statisticsLog.GameStartOk != 0 {
- statisticsLog.MainSuccessRate = float64(statisticsLog.EnterMain) / float64(statisticsLog.GameStartOk) * 100
- }
- if statisticsLog.TargetNum != 0 {
- statisticsLog.TaskSuccessRate = float64(statisticsLog.EnterMain) / float64(statisticsLog.TargetNum) * 100
- }
- if statisticsLog.OrderCreate != 0 {
- statisticsLog.LocalOrderSuccessRate = float64(statisticsLog.FeeOk) / float64(statisticsLog.OrderCreate) * 100
- }
- return statisticsLog
- }
- func (s *ServiceStatisticsLog) OtherStatisticsLogList(ctx context.Context, api log.StatisticsLog, info request.PageInfo, order string, desc bool) (interface{}, int64, error) {
- date := api.CreateDate
- if date == "" {
- date = s.CurrentDate()
- }
- db := global.GVA_DB.Model(&log.StatisticsLog{})
- if api.GameId != 0 {
- db = db.Where("game_id = ?", api.GameId)
- }
- db = db.Where("create_date = ?", date)
- var total int64
- err := db.Count(&total).Error
- if err != nil {
- return nil, 0, err
- }
- limit := info.PageSize
- offset := info.PageSize * (info.Page - 1)
- var statisticsLogs []*log.StatisticsLog
- db = db.Limit(limit).Offset(offset)
- if order != "" {
- var OrderStr string
- // 设置有效排序key 防止sql注入
- // 感谢 Tom4t0 提交漏洞信息
- orderMap := make(map[string]bool, 7)
- orderMap["pull_success_rate"] = true
- orderMap["start_success_rate"] = true
- orderMap["main_success_rate"] = true
- orderMap["task_success_rate"] = true
- orderMap["scanning_success_rate"] = true
- orderMap["local_order_success_rate"] = true
- orderMap["game_id"] = true
- if orderMap[order] {
- if desc {
- OrderStr = order + " desc"
- } else {
- OrderStr = order
- }
- } else { // didn't matched any order key in `orderMap`
- global.GVA_LOG.Error("获取失败!", zap.Error(err))
- return statisticsLogs, total, err
- }
- err = db.Order(OrderStr).Find(&statisticsLogs).Error
- } else {
- err = db.Order("id").Find(&statisticsLogs).Error
- }
- if err != nil {
- return nil, 0, err
- }
- for _, statisticsLog := range statisticsLogs {
- statisticsLog.CreateDate = statisticsLog.CreateDate[:10]
- }
- return statisticsLogs, total, err
- }
- func (s *ServiceStatisticsLog) StatisticsNodeLogList(ctx context.Context, api log.StatisticsLog, info request.PageInfo, order string, desc bool) (interface{}, int64, error) {
- date := api.CreateDate
- if date == "" || date == s.CurrentDate() {
- apilist, total, err := s.TodayStatisticsLogList(ctx, api, info)
- return apilist, total, err
- }
- db := global.GVA_DB.Model(&log.StatisticsLog{})
- if api.GameId != 0 {
- db = db.Where("game_id = ?", api.GameId)
- }
- db = db.Where("create_date = ?", date)
- var total int64
- err := db.Count(&total).Error
- if err != nil {
- return nil, 0, err
- }
- limit := info.PageSize
- offset := info.PageSize * (info.Page - 1)
- var statisticsLogs []*log.StatisticsLog
- db = db.Limit(limit).Offset(offset)
- err = db.Order("id").Find(&statisticsLogs).Error
- if err != nil {
- return nil, 0, err
- }
- for _, statisticsLog := range statisticsLogs {
- statisticsLog.CreateDate = statisticsLog.CreateDate[:10]
- }
- return statisticsLogs, total, err
- }
- //func (s *ServiceStatisticsLog) ResetStatisticsLog(ctx context.Context, gameId int, date string) {
- // var total int64
- // key := date + ":" + strconv.Itoa(gameId) + ":reset"
- // global.GVA_REDIS.Set(ctx, key, 1, time.Minute*15)
- // db := global.GVA_DB.Table("loging")
- // db = db.Where("game_id = ?", gameId)
- // err := db.Count(&total).Error
- // if err != nil {
- // global.GVA_LOG.Error("重置统计数据总数报错", zap.Error(err))
- // return
- // }
- // limit := 100
- // num := int(math.Ceil(float64(total) / float64(limit)))
- // offset := 0
- // err = s.LogicalLog.DelStatisticsNumCache(ctx, date, gameId)
- // if err != nil {
- // global.GVA_LOG.Error("重置统计数据删除缓存报错", zap.Error(err))
- // return
- // }
- // err = s.LogicalLog.DelUuidCodeCache(ctx, date, gameId)
- // if err != nil {
- // global.GVA_LOG.Error("重置统计数据删除缓存报错2", zap.Error(err))
- // return
- // }
- // global.GVA_LOG.Info("num = " + strconv.Itoa(num))
- // for i := 0; i < num; i++ {
- // global.GVA_LOG.Info("offset = " + strconv.Itoa(offset))
- // var statisticsLogs []request.AddLogRequest
- // db2 := global.GVA_DB.Table("loging")
- // db2 = db2.Where("create_date = ?", date)
- // db2 = db2.Where("game_id = ?", gameId)
- // db2 = db2.Limit(limit).Offset(offset)
- // err = db2.Order("id").Find(&statisticsLogs).Error
- // for _, statisticsLog := range statisticsLogs {
- //
- // s.ResetStatisticsCache(ctx, statisticsLog, date)
- // }
- // offset += limit
- // }
- // global.GVA_LOG.Info("重置统计数据完成")
- //}
- //
- //func (s *ServiceStatisticsLog) ResetStatisticsCache(c context.Context, api request.AddLogRequest, date string) {
- // coding := strconv.Itoa(api.Coding)
- // nodeCoding := coding[:3]
- // status := coding[5:]
- // noLogStatus := coding[3:5]
- // var logical ServiceResetLoging
- // switch nodeCoding {
- // case "410":
- // logical = new(loging2.ResetLog)
- // break
- // case "430":
- // logical = new(loging2.ResetLog)
- // break
- // default:
- // logical = new(loging2.ResetOtherLog)
- // break
- // }
- // var err error
- // if status == "99" {
- // err = logical.SuccessLog(c, api, date)
- // } else if noLogStatus == "99" {
- // err = logical.NoLogStatusData(c, api, date)
- // } else {
- // err = logical.FailLog(c, api, date)
- // }
- // if err != nil {
- // global.GVA_LOG.Error("创建失败!", zap.Error(err))
- // }
- //}
- // 每天凌晨reset统计数据
- //func (s *ServiceStatisticsLog) EveryDayResetStatisticsCache() {
- // date := s.YesterdayDate()
- // ctx := context.Background()
- // gameMps, err := s.LogicalLog.GetGameCache(ctx, date)
- // if err != nil {
- // global.GVA_LOG.Error("获取redis game list失败!", zap.Error(err))
- // return
- // }
- // if len(gameMps) == 0 {
- // global.GVA_LOG.Info("获取redis game list没有数据!")
- // return
- // }
- // for gameId, _ := range gameMps {
- // id, _ := strconv.Atoi(gameId)
- // s.ResetStatisticsLog(ctx, id, date)
- // }
- // global.GVA_LOG.Info("游戏重置缓存完成!")
- //}
- // 添加和更新电脑指标数据
- func (s *ServiceStatisticsLog) CreateComputerStatisticsData() {
- ctx := context.Background()
- codeMps, err := s.LogicalLog.GetComputerCache(ctx, s.LogicalLog.CurrentDate())
- if err != nil {
- return
- }
- if len(codeMps) == 0 {
- return
- }
- key := fmt.Sprintf(taskStatistics, s.LogicalLog.CurrentDate())
- onlineComputerMpa, _ := s.LogicalLog.GetOnlineComputerNumCache(ctx, s.LogicalLog.CurrentDate())
- var computer log.Computer
- computerData, _ := computer.OnlinePcCodeCache()
- var csReplys []*log.LogComputer
- for code, r := range codeMps {
- accountMps, err := s.LogicalLog.GetComputerPullAccountNumCache(ctx, s.LogicalLog.CurrentDate(), code)
- if err != nil {
- continue
- }
- taskMps, err := s.LogicalLog.GetComputerTaskSuccessNumCache(ctx, s.LogicalLog.CurrentDate(), code)
- if err != nil {
- continue
- }
- enterMainMps, err := s.LogicalLog.GetComputerEnterMainNumCache(ctx, s.LogicalLog.CurrentDate(), code)
- if err != nil {
- continue
- }
- delete(computerData, code)
- for gameId, num := range accountMps {
- csReply := new(log.LogComputer)
- csReply.PcCode = code
- if _, ok := onlineComputerMpa[csReply.PcCode]; ok {
- delete(onlineComputerMpa, csReply.PcCode)
- }
- csReply.Operator = r
- data, err := global.GVA_REDIS.HGet(ctx, key, gameId).Result()
- if err != nil {
- if err == redis.Nil {
- global.GVA_LOG.Info("添加缓存数据失败TaskStatisticsDataCache", zap.Error(err))
- } else {
- global.GVA_LOG.Error("添加缓存数据失败TaskStatisticsDataCache", zap.Error(err))
- return
- }
- }
- var taskStatistics request.TaskStatistics
- _ = json.Unmarshal([]byte(data), &taskStatistics)
- csReply.GameId, _ = strconv.Atoi(gameId)
- csReply.PullAccountNum = num
- csReply.TaskSuccessNum = taskMps[gameId]
- csReply.EnterMain = enterMainMps[gameId]
- csReply.CreateDate = time.Now().Format("2006-01-02")
- csReply.TargetNum = taskStatistics.NewTarget + taskStatistics.RetainedTarget
- csReply.ComputerFeeRate = s.GetStatisticsPcFeeRate(ctx, csReply.PcCode, csReply.GameId)
- csReply.ComputerFreeTime = s.GetStatisticsComputerRate(ctx, csReply.PcCode)
- csReply.GameFeeRate = s.GetStatisticsFeeRate(ctx, csReply.GameId)
- runTime := time.Now().Hour() + 1 - csReply.ComputerFreeTime
- csReply.ComputerHourAverageRate = csReply.TaskSuccessNum / runTime
- csReply.Status = 2
- global.GVA_DB.Where("create_date = ?", csReply.CreateDate).Where("pc_code = ?", csReply.PcCode).Where("game_id = ?", 0).Delete(&log.LogComputer{})
- if !errors.Is(global.GVA_DB.Where("create_date = ?", csReply.CreateDate).Where("pc_code = ?", csReply.PcCode).First(&log.LogComputer{}).Error, gorm.ErrRecordNotFound) {
- // 已存在,更新
- mp := make(map[string]interface{})
- if csReply.Operator != "" {
- mp["operator"] = csReply.Operator
- }
- mp["target_num"] = taskStatistics.NewTarget + taskStatistics.RetainedTarget
- mp["pull_account_num"] = num
- mp["task_success_num"] = taskMps[gameId]
- mp["computer_fee_rate"] = csReply.ComputerFeeRate
- mp["computer_free_time"] = csReply.ComputerFreeTime
- mp["game_fee_rate"] = csReply.GameFeeRate
- mp["computer_hour_average_rate"] = csReply.ComputerHourAverageRate
- mp["enter_main"] = csReply.EnterMain
- err = global.GVA_DB.Table("log_computer").Where("create_date = ?", csReply.CreateDate).Where("pc_code = ?", csReply.PcCode).Updates(mp).Error
- if err != nil {
- global.GVA_LOG.Error("更新数据失败", zap.Error(err))
- }
- continue
- }
- csReplys = append(csReplys, csReply)
- }
- }
- if len(csReplys) != 0 {
- err = global.GVA_DB.Table("log_computer").Create(csReplys).Error
- if err != nil {
- global.GVA_LOG.Error("更新数据失败", zap.Error(err))
- }
- }
- // 在线电脑没有跑数据记录
- if len(onlineComputerMpa) != 0 {
- var onlineComputer []*log.LogComputer
- for pcCode, op := range onlineComputerMpa {
- delete(computerData, pcCode)
- csReply := new(log.LogComputer)
- csReply.PcCode = pcCode
- csReply.Operator = op
- csReply.CreateDate = time.Now().Format("2006-01-02")
- csReply.Status = 1
- if !errors.Is(global.GVA_DB.Where("create_date = ?", csReply.CreateDate).Where("pc_code = ?", csReply.PcCode).First(&log.LogComputer{}).Error, gorm.ErrRecordNotFound) {
- if !errors.Is(global.GVA_DB.Where("create_date = ?", csReply.CreateDate).Where("pc_code = ?", csReply.PcCode).Where("status = ?", -1).First(&log.LogComputer{}).Error, gorm.ErrRecordNotFound) {
- err = global.GVA_DB.Table("log_computer").Where("create_date = ?", csReply.CreateDate).Where("pc_code = ?", csReply.PcCode).Update("status", 1).Error
- if err != nil {
- global.GVA_LOG.Error("更新数据失败onlineComputerMpa", zap.Error(err))
- }
- }
- continue
- }
- onlineComputer = append(onlineComputer, csReply)
- }
- if len(onlineComputer) != 0 {
- err = global.GVA_DB.Table("log_computer").Create(onlineComputer).Error
- if err != nil {
- global.GVA_LOG.Error("更新数据失败", zap.Error(err))
- }
- }
- }
- // 没记录电脑数据
- if len(computerData) != 0 {
- var onlineComputer []*log.LogComputer
- for pcCode, op := range computerData {
- csReply := new(log.LogComputer)
- csReply.PcCode = pcCode
- csReply.Operator = op
- csReply.CreateDate = time.Now().Format("2006-01-02")
- csReply.Status = -1
- if !errors.Is(global.GVA_DB.Where("create_date = ?", csReply.CreateDate).Where("pc_code = ?", csReply.PcCode).First(&log.LogComputer{}).Error, gorm.ErrRecordNotFound) {
- continue
- }
- onlineComputer = append(onlineComputer, csReply)
- }
- if len(onlineComputer) != 0 {
- err = global.GVA_DB.Table("log_computer").Create(onlineComputer).Error
- if err != nil {
- global.GVA_LOG.Error("更新数据失败", zap.Error(err))
- }
- }
- }
- return
- }
- func (s *ServiceStatisticsLog) ComputerStatistics(ctx context.Context, api log.LogComputer, info request.PageInfo, order string, desc bool) (interface{}, int64, error) {
- date := api.CreateDate
- isCurrentDate := false
- if date == "" {
- date = s.CurrentDate()
- isCurrentDate = true
- }
- db := global.GVA_DB.Model(&log.LogComputer{})
- var total int64
- db = db.Where("create_date = ?", date)
- if api.Operator != "" {
- db = db.Where("operator = ?", api.Operator)
- }
- if api.PcCode != "" {
- db = db.Where("pc_code = ?", api.PcCode)
- }
- if api.GameId != 0 {
- db = db.Where("game_id = ?", api.GameId)
- }
- err := db.Count(&total).Error
- if err != nil {
- return nil, 0, err
- }
- limit := info.PageSize
- offset := info.PageSize * (info.Page - 1)
- var statisticsLogs []*log.LogComputer
- db = db.Limit(limit).Offset(offset)
- if order != "" {
- var OrderStr string
- // 设置有效排序key 防止sql注入
- // 感谢 Tom4t0 提交漏洞信息
- orderMap := make(map[string]bool, 3)
- orderMap["pc_code"] = true
- orderMap["game_id"] = true
- orderMap["operator"] = true
- if orderMap[order] {
- if desc {
- OrderStr = order + " desc"
- } else {
- OrderStr = order
- }
- } else { // didn't matched any order key in `orderMap`
- global.GVA_LOG.Error("获取失败!", zap.Error(err))
- return statisticsLogs, total, err
- }
- err = db.Order(OrderStr).Find(&statisticsLogs).Error
- } else {
- err = db.Order("id").Find(&statisticsLogs).Error
- }
- if err != nil {
- return nil, 0, err
- }
- var statisticsLogsComputer []*response.ComputerStatisticsReply1
- for _, statisticsLog := range statisticsLogs {
- /*var gameInfo []*response.GameInfo
- err = json.Unmarshal([]byte(statisticsLog.GameInfo), &gameInfo)
- for i, _ := range gameInfo {
- statisticsLogComputer := new(response.ComputerStatisticsReply1)
- statisticsLogComputer.GameInfo = gameInfo
- statisticsLogComputer.PcCode = statisticsLog.PcCode
- statisticsLogComputer.Operator = statisticsLog.Operator
- statisticsLogComputer.CreateDate = statisticsLog.CreateDate[:10]
- statisticsLogComputer.GameId = gameInfo[i].GameId
- statisticsLogComputer.PullAccountNum = gameInfo[i].PullAccountNum
- statisticsLogComputer.TaskSuccessNum = gameInfo[i].TaskSuccessNum
- statisticsLogsComputer = append(statisticsLogsComputer, statisticsLogComputer)
- }*/
- //gameIdStr:=strconv.Itoa(statisticsLog.GameId)
- //taskStatistics := s.GameTargetInfo(ctx,s.LogicalLog.CurrentDate(),gameIdStr)
- statisticsLogComputer := new(response.ComputerStatisticsReply1)
- statisticsLogComputer.PcCode = statisticsLog.PcCode
- statisticsLogComputer.Operator = statisticsLog.Operator
- statisticsLogComputer.CreateDate = statisticsLog.CreateDate[:10]
- statisticsLogComputer.GameId = statisticsLog.GameId
- statisticsLogComputer.PullAccountNum = statisticsLog.PullAccountNum
- statisticsLogComputer.TaskSuccessNum = statisticsLog.TaskSuccessNum
- statisticsLogComputer.TargetNum = statisticsLog.TargetNum
- statisticsLogComputer.ComputerFreeTime = statisticsLog.ComputerFreeTime
- statisticsLogComputer.ComputerFeeRate = statisticsLog.ComputerFeeRate
- statisticsLogComputer.EnterMain = statisticsLog.EnterMain
- if isCurrentDate {
- statisticsLogComputer.ComputerFeeRate = s.GetStatisticsPcFeeRate(ctx, statisticsLog.PcCode, statisticsLog.GameId)
- }
- statisticsLogComputer.ComputerHourAverageRate = statisticsLog.ComputerHourAverageRate
- statisticsLogsComputer = append(statisticsLogsComputer, statisticsLogComputer)
- }
- return statisticsLogsComputer, total, err
- }
- // 在线电脑
- func (s *ServiceStatisticsLog) OnlineComputerStatistics(ctx context.Context, api log.LogComputer, info request.PageInfo, order string, desc bool) ([]*response.ComputerUseLogReply, int64, error) {
- date := api.CreateDate
- if date == "" {
- date = s.CurrentDate()
- }
- db := global.GVA_DB.Model(&log.LogComputer{})
- var total int64
- db = db.Select("SUM(pull_account_num) pull_account_total,SUM(enter_main) enter_main_total,operator,pc_code,status,create_date,remarks")
- db = db.Where("create_date = ?", date)
- if api.Operator != "" {
- db = db.Where("operator = ?", api.Operator)
- }
- if api.PcCode != "" {
- db = db.Where("pc_code = ?", api.PcCode)
- }
- if api.Status != 0 {
- db = db.Where("status = ?", api.Status)
- }
- db = db.Group("pc_code")
- err := db.Count(&total).Error
- if err != nil {
- return nil, 0, err
- }
- limit := info.PageSize
- offset := info.PageSize * (info.Page - 1)
- var statisticsLogs []*response.ComputerUseLogReply
- db = db.Limit(limit).Offset(offset)
- if order != "" {
- var OrderStr string
- // 设置有效排序key 防止sql注入
- // 感谢 Tom4t0 提交漏洞信息
- orderMap := make(map[string]bool, 3)
- orderMap["pc_code"] = true
- orderMap["operator"] = true
- if orderMap[order] {
- if desc {
- OrderStr = order + " desc"
- } else {
- OrderStr = order
- }
- } else { // didn't matched any order key in `orderMap`
- global.GVA_LOG.Error("获取失败!", zap.Error(err))
- return statisticsLogs, total, err
- }
- err = db.Order(OrderStr).Find(&statisticsLogs).Error
- } else {
- err = db.Order("id").Find(&statisticsLogs).Error
- }
- if err != nil {
- return nil, 0, err
- }
- for _, statisticsLog := range statisticsLogs {
- statisticsLog.CreateDate = statisticsLog.CreateDate[:10]
- }
- return statisticsLogs, total, err
- }
- //根据游戏id查询数据
- func (s *ServiceStatisticsLog) GameStatistics(ctx context.Context, api log.LogComputer, info request.PageInfo) (interface{}, int64, error) {
- date := api.CreateDate
- isCurrentDate := false
- if date == "" {
- date = s.CurrentDate()
- isCurrentDate = true
- }
- db := global.GVA_DB.Model(&log.LogComputer{})
- var total int64
- db = db.Where("create_date = ?", date)
- if api.Operator != "" {
- db = db.Where("operator = ?", api.Operator)
- }
- if api.PcCode != "" {
- db = db.Where("pc_code = ?", api.PcCode)
- }
- if api.GameId != 0 {
- db = db.Where("game_id = ?", api.GameId)
- }
- db = db.Select("SUM(task_success_num) task_success_total,count(pc_code) pc_code_total,game_id,create_date,SUM(computer_free_time) computer_free_time_total,SUM(computer_hour_average_rate) computer_hour_average_total,SUM(enter_main) enter_main_total,game_fee_rate,target_num").Group("game_id")
- err := db.Count(&total).Error
- if err != nil {
- return nil, 0, err
- }
- limit := info.PageSize
- offset := info.PageSize * (info.Page - 1)
- var statisticsLogsByGameId []*response.GameIdStatisticsReply
- db = db.Limit(limit).Offset(offset)
- err = db.Order("id").Find(&statisticsLogsByGameId).Error
- if err != nil {
- return nil, 0, err
- }
- for _, statisticsLog := range statisticsLogsByGameId {
- statisticsLog.CreateDate = statisticsLog.CreateDate[:10]
- statisticsLog.OneComputerAverageNum = statisticsLog.TaskSuccessTotal / statisticsLog.PcCodeTotal
- if isCurrentDate {
- statisticsLog.GameFeeRate = s.GetStatisticsFeeRate(ctx, statisticsLog.GameId)
- }
- }
- return statisticsLogsByGameId, total, err
- }
- func (s *ServiceStatisticsLog) GameTargetInfo(ctx context.Context, date string, gameId string) (taskStatistics1 request.TaskStatistics) {
- key := fmt.Sprintf(taskStatistics, date)
- data, err := global.GVA_REDIS.HGet(ctx, key, gameId).Result()
- if err != nil {
- if err == redis.Nil {
- global.GVA_LOG.Info("TaskStatisticsDataCache"+key+gameId, zap.Error(err))
- } else {
- global.GVA_LOG.Error("添加缓存数据失败TaskStatisticsDataCache"+key, zap.Error(err))
- return
- }
- }
- _ = json.Unmarshal([]byte(data), &taskStatistics1)
- return
- }
- // 同步群控任务数据到缓存
- func (s *ServiceStatisticsLog) TaskStatisticsDataCache() {
- ctx := context.Background()
- key := fmt.Sprintf(taskStatistics, s.LogicalLog.CurrentDate())
- data, err := s.LogicalLog.RequestJfRoom()
- if err != nil {
- global.GVA_LOG.Error("获取机房数据失败TaskStatisticsDataCache", zap.Error(err))
- return
- }
- dataTask, err := s.LogicalLog.RequestTaskData()
- if err != nil {
- global.GVA_LOG.Error("RequestTaskData", zap.Error(err))
- return
- }
- var taskData []request.TaskData
- var taskStatistics []request.TaskStatistics
- _ = json.Unmarshal(data, &taskStatistics)
- _ = json.Unmarshal(dataTask, &taskData)
- mps := map[int]request.TaskData{}
- for _, td := range taskData {
- mps[td.GameId] = td
- }
- for _, data := range taskStatistics {
- var id int
- id = data.GameId
- if _, ok := mps[id]; ok {
- data.NewScanningCode = mps[id].NewScanningCode
- data.RetainedPullAccount = mps[id].RetainedPullAccount
- data.NewPullAccount = mps[id].NewPullAccount
- data.FeeAccountNum = mps[id].FeeAccountNum
- data.RetainedAccountNum = mps[id].RetainedAccountNum
- }
- bd, _ := json.Marshal(data)
- err = global.GVA_REDIS.HSet(ctx, key, id, bd).Err()
- if err != nil {
- global.GVA_LOG.Error("添加缓存数据失败TaskStatisticsDataCache", zap.Error(err))
- return
- }
- }
- }
- // 同步群控任务数据到缓存
- func (s *ServiceStatisticsLog) TaskStatisticsDataCache1() {
- ctx := context.Background()
- key := fmt.Sprintf(taskStatistics, s.LogicalLog.CurrentDate())
- data, err := s.LogicalLog.RequestJfRoom()
- if err != nil {
- global.GVA_LOG.Error("获取机房数据失败TaskStatisticsDataCache", zap.Error(err))
- return
- }
- dataTask, err := s.LogicalLog.RequestTaskData()
- if err != nil {
- global.GVA_LOG.Error("RequestTaskData", zap.Error(err))
- return
- }
- var taskData []request.TaskData
- var taskStatistics []request.TaskStatistics
- _ = json.Unmarshal(data, &taskStatistics)
- _ = json.Unmarshal(dataTask, &taskData)
- mps := map[int]request.TaskData{}
- for _, td := range taskData {
- mps[td.GameId] = td
- }
- for _, data := range taskStatistics {
- var id int
- if data.GameIdXmy != "" {
- if data.GameIdXmy == "0" {
- id = data.GameId
- } else {
- id, _ = strconv.Atoi(data.GameIdXmy)
- }
- } else {
- id = data.GameId
- }
- if _, ok := mps[id]; ok {
- data.NewScanningCode = mps[id].NewScanningCode
- data.RetainedPullAccount = mps[id].RetainedPullAccount
- data.NewPullAccount = mps[id].NewPullAccount
- data.FeeAccountNum = mps[id].FeeAccountNum
- data.RetainedAccountNum = mps[id].RetainedAccountNum
- }
- bd, _ := json.Marshal(data)
- err = global.GVA_REDIS.HSet(ctx, key, id, bd).Err()
- if err != nil {
- global.GVA_LOG.Error("添加缓存数据失败TaskStatisticsDataCache", zap.Error(err))
- return
- }
- }
- }
- // 同步群控任务数据到缓存
- func (s *ServiceStatisticsLog) GetComputerNum(date string) int64 {
- var total int64
- if date == "" {
- date = s.CurrentDate()
- }
- db := global.GVA_DB.Model(&log.LogComputer{})
- db = db.Distinct("pc_code").Where("create_date = ?", date)
- _ = db.Count(&total).Error
- return total
- }
- // 在线电脑接口
- func (s *ServiceStatisticsLog) ComputerHeartbeat(c context.Context, onlineComputer request.OnlineComputerRequest) error {
- err := s.LogicalLog.SetOnlineComputerNumCache(c, s.LogicalLog.CurrentDate(), onlineComputer.PcCode, onlineComputer.Operator)
- if err != nil {
- return err
- }
- s.LogicalLog.SetPcReportingLog(c, onlineComputer.PcCode, onlineComputer.Operator)
- return err
- }
- // 在线电脑接口测试
- func (s *ServiceStatisticsLog) ComputerTest(c context.Context) (interface{}, error) {
- mps, err := s.LogicalLog.GetOnlineComputerNumCache(c, s.LogicalLog.CurrentDate())
- if err != nil {
- return mps, err
- }
- return mps, err
- }
- // 定时检查电脑情况
- func (s *ServiceStatisticsLog) RegularCheckPc1() {
- ctx := context.Background()
- date := s.LogicalLog.CurrentDate()
- // 获取当天已上报的电脑数据
- onlineComputerMpa, _ := s.LogicalLog.GetOnlineComputerNumCache(ctx, date)
- // 获取数据库的数据
- var computer log.Computer
- computers, err := computer.OnlinePcCodeCache()
- if err != nil {
- global.GVA_LOG.Error("获取租机表数据失败", zap.Error(err))
- }
- // 查询两小时内上报的数据
- var noReportingPc []string
- for pc, _ := range onlineComputerMpa {
- num := s.LogicalLog.GetPcReportingLog(ctx, pc)
- delete(computers, pc)
- if num == 0 {
- noReportingPc = append(noReportingPc, pc)
- }
- }
- // 未上报逻辑
- var errReportingPc []string
- for pc, name := range computers {
- if name == "备用" {
- continue
- }
- errReportingPc = append(errReportingPc, pc)
- }
- var content string
- if len(errReportingPc) != 0 {
- // 发信息数据群里
- content += fmt.Sprintf("异常租机数据<font color=\"warning\">%d台</font>: %s", len(errReportingPc), errReportingPc)
- }
- if len(noReportingPc) != 0 {
- // 发信息数据群里
- content += "\n"
- content += fmt.Sprintf("两小时内未检测到中控数据<font color=\"warning\">%d台</font>: %s", len(noReportingPc), noReportingPc)
- }
- if content != "" {
- var sendMsg SendMsg
- sendMsg.MsgType = "markdown"
- sendMsg.Markdown.Content = content
- //c ,_ := json.Marshal(sendMsg)
- url := global.GVA_CONFIG.SendUrl.ComputerSendUrl
- //url := "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=7d095d5b-8240-45fd-a68c-baff3628d83b"
- _, err = s.SendMsgData(url, sendMsg)
- }
- }
- // 定时检查电脑情况
- func (s *ServiceStatisticsLog) RegularCheckPc() {
- ctx := context.Background()
- var computer log.Computer
- computers, err := computer.OnlinePcCodeCache()
- //computersF, err := computer.OnlinePcCodeCache()
- if err != nil {
- global.GVA_LOG.Error("获取租机表数据失败", zap.Error(err))
- }
- // 查询两小时内上报的数据
- var computersF = map[string]string{}
- var noReportingPc []string
- for pc, name := range computers {
- computersF[pc] = name
- if strings.Contains(name, "备用") {
- delete(computers, pc)
- continue
- }
- num := s.LogicalLog.GetPcReportingLog(ctx, pc)
- delete(computers, pc)
- if num == 0 {
- noReportingPc = append(noReportingPc, pc)
- }
- }
- var content string
- if len(noReportingPc) != 0 {
- content += fmt.Sprintf("两小时内未检测到中控数据<font color=\"warning\">%d台</font>:", len(noReportingPc))
- for _, pc := range noReportingPc {
- content += "\n"
- name := computersF[pc]
- content += name + " : " + pc
- }
- }
- if content != "" {
- var sendMsg SendMsg
- sendMsg.MsgType = "markdown"
- sendMsg.Markdown.Content = content
- //c ,_ := json.Marshal(sendMsg)
- url := global.GVA_CONFIG.SendUrl.ComputerSendUrl
- //url := "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=7d095d5b-8240-45fd-a68c-baff3628d83b"
- _, err = s.SendMsgData(url, sendMsg)
- }
- }
- type SendMsg struct {
- MsgType string `json:"msgtype"`
- Markdown struct {
- Content string `json:"content"`
- } `json:"markdown"`
- }
- func (s *ServiceStatisticsLog) SendMsgData(url string, params interface{}) (result []byte, err error) {
- result, err = utils.HttpPost(url, params)
- return
- }
- var statusMps = map[int]string{
- -1: "未上报",
- 1: "中控上报",
- 2: "任务上报",
- }
- func (exa *ServiceStatisticsLog) ParseInfoList2Excel(infoList []*response.ComputerUseLogReply, filePath string) error {
- excel := excelize.NewFile()
- excel.SetSheetRow("Sheet1", "A1", &[]string{"电脑编号", "使用者", "日期", "拉取账号", "进入主线", "主线成功率", "使用状态", "备注"})
- for i, statisticsLog := range infoList {
- axis := fmt.Sprintf("A%d", i+2)
- var r interface{}
- if statisticsLog.EnterMainTotal != 0 && statisticsLog.PullAccountTotal != 0 {
- r = fmt.Sprintf("%.2f", float64(statisticsLog.EnterMainTotal)/float64(statisticsLog.PullAccountTotal)*100)
- } else {
- r = "0.00"
- }
- excel.SetSheetRow("Sheet1", axis, &[]interface{}{
- statisticsLog.PcCode,
- statisticsLog.Operator,
- statisticsLog.CreateDate[:10],
- statisticsLog.PullAccountTotal,
- statisticsLog.EnterMainTotal,
- r,
- statusMps[statisticsLog.Status],
- statisticsLog.Remarks,
- })
- }
- err := excel.SaveAs(filePath)
- return err
- }
- // 删除两天前的缓存数据
- func (s *ServiceStatisticsLog) RegularDelCheckData() {
- ctx := context.Background()
- date := time.Now().Add(-time.Hour * 48).Format("2006-01-02")
- s.LogicalLog.DelHashUuidKey(ctx, date)
- s.LogicalLog.DelZSetKey(ctx, date)
- s.LogicalLog.DelHashKey(ctx, date)
- }
- //@author: [piexlmax](https://github.com/piexlmax)
- //@function: UpdatePc
- //@description: 根据id更新pc
- //@param: Computer log.Computer
- //@return: err error
- func (a *ServiceStatisticsLog) UpdateComputerUseLog(c log.ComputerUseRemarks) (err error) {
- if !errors.Is(global.GVA_DB.Where("create_date = ?", c.CreateDate).Where("pc_code = ?", c.PcCode).First(&log.LogComputer{}).Error, gorm.ErrRecordNotFound) {
- var updateInfo = make(map[string]interface{})
- updateInfo["remarks"] = c.Remarks
- updateInfo["remarks_update_time"] = time.Now().Format("2006-01-02 15:04:05")
- err = global.GVA_DB.Table("log_computer").Where("create_date = ?", c.CreateDate).Where("pc_code = ?", c.PcCode).Updates(updateInfo).Error
- }
- return
- }
- // 统计上报的订单
- //@function: GetScanningInfoList
- //@description: 分页获取数据,
- //@param: card card.Card, info request.PageInfo, order string, desc bool
- //@return: list interface{}, total int64, err error
- func (apiService *ServiceStatisticsLog) GetScanningInfoList(api request.LogScanningRequest, info request.PageInfo, order string, desc bool) (list interface{}, total int64, err error) {
- limit := info.PageSize
- offset := info.PageSize * (info.Page - 1)
- db := global.GVA_DB.Model(&log.LogScanningCode{})
- var apiList []log.LogScanningCode
- if api.CreateDate == "" {
- api.CreateDate = time.Now().Format("2006-01-02")
- }
- db = db.Where("create_date = ?", api.CreateDate)
- if api.GameId != 0 {
- db = db.Where("game_id = ?", api.GameId)
- }
- if api.Status != 0 {
- db = db.Where("status = ?", api.Status)
- }
- if api.TaskType != 0 {
- if api.TaskType == -1 {
- db = db.Where("task_type = ?", 0)
- } else {
- db = db.Where("task_type = ?", api.TaskType)
- }
- }
- err = db.Count(&total).Error
- if err != nil {
- return apiList, total, err
- } else {
- db = db.Limit(limit).Offset(offset)
- if order != "" {
- var OrderStr string
- // 设置有效排序key 防止sql注入
- // 感谢 Tom4t0 提交漏洞信息
- orderMap := make(map[string]bool, 4)
- orderMap["id"] = true
- orderMap["create_date"] = true
- orderMap["game_id"] = true
- orderMap["status"] = true
- if orderMap[order] {
- if desc {
- OrderStr = order + " desc"
- } else {
- OrderStr = order
- }
- } else { // didn't matched any order key in `orderMap`
- err = fmt.Errorf("非法的排序字段: %v", order)
- return apiList, total, err
- }
- err = db.Order(OrderStr).Find(&apiList).Error
- } else {
- err = db.Order("id desc").Find(&apiList).Error
- }
- }
- var apisReply []response.LogScanningReply
- if len(apiList) != 0 {
- for _, apiInfo := range apiList {
- var apiReply = response.LogScanningReply{}
- apiReply.Status = apiInfo.Status
- apiReply.TaskType = apiInfo.TaskType
- apiReply.GameId = apiInfo.GameId
- apiReply.Supplier = apiInfo.Supplier
- apiReply.OrderNum = apiInfo.OrderNum
- apiReply.CreateDate = apiInfo.CreateTime.Format("2006-01-02")
- apiReply.CreateTime = apiInfo.CreateTime.Format("2006-01-02 15:04:05")
- apisReply = append(apisReply, apiReply)
- }
- }
- return apisReply, total, err
- }
|