|
@@ -44,14 +44,13 @@ func (l *GetChartsLogic) GetCharts(req *types.ChartsReq) (resp *types.ChartsResp
|
|
|
// 获取组织id
|
|
|
var organizationId uint64 = 0
|
|
|
isAdmin := l.ctx.Value("isAdmin").(bool)
|
|
|
- if isAdmin && req.OrganizationId != nil && *req.OrganizationId != 0 {
|
|
|
+ if isAdmin {
|
|
|
if req.OrganizationId != nil && *req.OrganizationId != 0 {
|
|
|
organizationId = *req.OrganizationId
|
|
|
}
|
|
|
} else {
|
|
|
organizationId = l.ctx.Value("organizationId").(uint64)
|
|
|
}
|
|
|
-
|
|
|
// 解析起始和截止时间
|
|
|
layouts := []string{
|
|
|
"2006-01", // 对应 "2024-01"
|
|
@@ -106,49 +105,60 @@ func (l *GetChartsLogic) GetCharts(req *types.ChartsReq) (resp *types.ChartsResp
|
|
|
activeUser := types.ChartsUint{}
|
|
|
newUser := types.ChartsInt{}
|
|
|
var labelDists []custom_types.LabelDist
|
|
|
- if isCurrentDay && layoutsType == 1 && *req.StartDate == *req.EndDate {
|
|
|
- // 返回当日每小时的数据
|
|
|
- startOfDay := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.UTC)
|
|
|
- startAddTimeString := startOfDay.Format("2006010200")
|
|
|
+ if layoutsType == 1 && *req.StartDate == *req.EndDate {
|
|
|
+ startAddTimeString := startTime.Format("2006010200")
|
|
|
startAddTime, err := strconv.ParseUint(startAddTimeString, 10, 64)
|
|
|
if err != nil {
|
|
|
fmt.Println("转换开始时间失败:", err)
|
|
|
return nil, err
|
|
|
}
|
|
|
|
|
|
+ nextDayMidnight := time.Date(startTime.Year(), startTime.Month(), startTime.Day()+1, 0, 0, 0, 0, startTime.Location())
|
|
|
+ nextDayMidnightString := nextDayMidnight.Format("2006010200")
|
|
|
+ nextDayAddTime, err := strconv.ParseUint(nextDayMidnightString, 10, 64)
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println("转换次日0点时间失败:", err)
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+
|
|
|
var predicates []predicate.UsageStatisticHour
|
|
|
predicates = append(predicates, usagestatistichour.OrganizationID(organizationId))
|
|
|
predicates = append(predicates, usagestatistichour.BotID(""))
|
|
|
predicates = append(predicates, usagestatistichour.AddtimeGTE(startAddTime))
|
|
|
+ predicates = append(predicates, usagestatistichour.AddtimeLTE(nextDayAddTime))
|
|
|
usageStatisticHour, err := l.svcCtx.DB.UsageStatisticHour.Query().Where(predicates...).All(l.ctx)
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
|
}
|
|
|
for _, hourData := range usageStatisticHour {
|
|
|
addtimeLastTwoDigits := hourData.Addtime % 100
|
|
|
-
|
|
|
aiResponse.Count += hourData.AiResponse
|
|
|
aiResponse.Val = append(aiResponse.Val, hourData.AiResponse)
|
|
|
+ aiResponse.Label = append(aiResponse.Label, fmt.Sprintf("%02d点", addtimeLastTwoDigits))
|
|
|
|
|
|
sopRun.Count += hourData.SopRun
|
|
|
sopRun.Val = append(sopRun.Val, hourData.SopRun)
|
|
|
+ sopRun.Label = append(sopRun.Label, fmt.Sprintf("%02d点", addtimeLastTwoDigits))
|
|
|
|
|
|
totalFriend.Count = hourData.TotalFriend
|
|
|
totalFriend.Val = append(totalFriend.Val, hourData.TotalFriend)
|
|
|
+ totalFriend.Label = append(totalFriend.Label, fmt.Sprintf("%02d点", addtimeLastTwoDigits))
|
|
|
|
|
|
totalGroup.Count = hourData.TotalGroup
|
|
|
totalGroup.Val = append(totalGroup.Val, hourData.TotalGroup)
|
|
|
+ totalGroup.Label = append(totalGroup.Label, fmt.Sprintf("%02d点", addtimeLastTwoDigits))
|
|
|
|
|
|
consumeToken.Count += hourData.ConsumeToken
|
|
|
consumeToken.Val = append(consumeToken.Val, hourData.ConsumeToken)
|
|
|
- consumeToken.Label = append(consumeToken.Label, fmt.Sprintf("%02d", addtimeLastTwoDigits))
|
|
|
+ consumeToken.Label = append(consumeToken.Label, fmt.Sprintf("%02d点", addtimeLastTwoDigits))
|
|
|
|
|
|
activeUser.Count = hourData.ActiveUser
|
|
|
activeUser.Val = append(activeUser.Val, hourData.ActiveUser)
|
|
|
+ activeUser.Label = append(activeUser.Label, fmt.Sprintf("%02d点", addtimeLastTwoDigits))
|
|
|
|
|
|
newUser.Count += hourData.NewUser
|
|
|
newUser.Val = append(newUser.Val, hourData.NewUser)
|
|
|
- newUser.Label = append(newUser.Label, fmt.Sprintf("%02d", addtimeLastTwoDigits))
|
|
|
+ newUser.Label = append(newUser.Label, fmt.Sprintf("%02d点", addtimeLastTwoDigits))
|
|
|
}
|
|
|
hourLen := len(usageStatisticHour)
|
|
|
if hourLen > 0 {
|
|
@@ -193,15 +203,19 @@ func (l *GetChartsLogic) GetCharts(req *types.ChartsReq) (resp *types.ChartsResp
|
|
|
for _, dayData := range usageStatisticDay {
|
|
|
aiResponse.Count = aiResponse.Count + dayData.AiResponse
|
|
|
aiResponse.Val = append(aiResponse.Val, dayData.AiResponse)
|
|
|
+ aiResponse.Label = append(aiResponse.Label, fmt.Sprintf("%d", dayData.Addtime))
|
|
|
|
|
|
sopRun.Count += dayData.SopRun
|
|
|
sopRun.Val = append(sopRun.Val, dayData.SopRun)
|
|
|
+ sopRun.Label = append(sopRun.Label, fmt.Sprintf("%d", dayData.Addtime))
|
|
|
|
|
|
totalFriend.Count = dayData.TotalFriend
|
|
|
totalFriend.Val = append(totalFriend.Val, dayData.TotalFriend)
|
|
|
+ totalFriend.Label = append(totalFriend.Label, fmt.Sprintf("%d", dayData.Addtime))
|
|
|
|
|
|
totalGroup.Count = dayData.TotalGroup
|
|
|
totalGroup.Val = append(totalGroup.Val, dayData.TotalGroup)
|
|
|
+ totalGroup.Label = append(totalGroup.Label, fmt.Sprintf("%d", dayData.Addtime))
|
|
|
|
|
|
consumeToken.Count += dayData.ConsumeToken
|
|
|
consumeToken.Val = append(consumeToken.Val, dayData.ConsumeToken)
|
|
@@ -209,6 +223,7 @@ func (l *GetChartsLogic) GetCharts(req *types.ChartsReq) (resp *types.ChartsResp
|
|
|
|
|
|
activeUser.Count = dayData.ActiveUser
|
|
|
activeUser.Val = append(activeUser.Val, dayData.ActiveUser)
|
|
|
+ activeUser.Label = append(activeUser.Label, fmt.Sprintf("%d", dayData.Addtime))
|
|
|
|
|
|
newUser.Count += dayData.NewUser
|
|
|
newUser.Val = append(newUser.Val, dayData.NewUser)
|
|
@@ -271,12 +286,15 @@ func (l *GetChartsLogic) GetCharts(req *types.ChartsReq) (resp *types.ChartsResp
|
|
|
|
|
|
aiResponse.Count = aiResponse.Count + aiResponseOfDay
|
|
|
aiResponse.Val = append(aiResponse.Val, aiResponseOfDay)
|
|
|
+ aiResponse.Label = append(aiResponse.Label, "今日")
|
|
|
|
|
|
sopRun.Count = sopRun.Count + sopRunOfDay
|
|
|
sopRun.Val = append(sopRun.Val, sopRunOfDay)
|
|
|
+ sopRun.Label = append(sopRun.Label, "今日")
|
|
|
|
|
|
totalFriend.Count = totalFriendOfDay
|
|
|
totalFriend.Val = append(totalFriend.Val, totalFriendOfDay)
|
|
|
+ totalFriend.Label = append(totalFriend.Label, "今日")
|
|
|
tfLen := len(totalFriend.Val)
|
|
|
if tfLen > 0 && totalFriend.Val[0] > 0 {
|
|
|
totalFriend.Rate = float32((totalFriend.Val[tfLen-1] - totalFriend.Val[0]) / totalFriend.Val[0])
|
|
@@ -284,6 +302,7 @@ func (l *GetChartsLogic) GetCharts(req *types.ChartsReq) (resp *types.ChartsResp
|
|
|
|
|
|
totalGroup.Count = totalGroupOfDay
|
|
|
totalGroup.Val = append(totalGroup.Val, totalGroupOfDay)
|
|
|
+ totalGroup.Label = append(totalGroup.Label, "今日")
|
|
|
tgLen := len(totalGroup.Val)
|
|
|
if tgLen > 0 && totalGroup.Val[0] > 0 {
|
|
|
totalGroup.Rate = float32((totalGroup.Val[tgLen-1] - totalGroup.Val[0]) / totalGroup.Val[0])
|
|
@@ -295,6 +314,7 @@ func (l *GetChartsLogic) GetCharts(req *types.ChartsReq) (resp *types.ChartsResp
|
|
|
|
|
|
activeUser.Count = activeUserOfDay
|
|
|
activeUser.Val = append(activeUser.Val, activeUserOfDay)
|
|
|
+ activeUser.Label = append(activeUser.Label, "今日")
|
|
|
auLen := len(activeUser.Val)
|
|
|
if auLen > 0 && activeUser.Val[0] > 0 {
|
|
|
activeUser.Rate = float32((activeUser.Val[auLen-1] - activeUser.Val[0]) / activeUser.Val[0])
|