mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 20:40:26 +08:00
138 lines
2.8 KiB
Go
138 lines
2.8 KiB
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package cache
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
"github.com/iwind/TeaGo/maps"
|
|
timeutil "github.com/iwind/TeaGo/utils/time"
|
|
"sort"
|
|
)
|
|
|
|
type TaskAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *TaskAction) Init() {
|
|
this.Nav("", "", "task")
|
|
}
|
|
|
|
func (this *TaskAction) RunGet(params struct {
|
|
TaskId int64
|
|
}) {
|
|
// 初始化菜单数据
|
|
err := InitMenu(this.Parent())
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
if !this.readTask(params.TaskId) {
|
|
return
|
|
}
|
|
|
|
this.Show()
|
|
}
|
|
|
|
func (this *TaskAction) RunPost(params struct {
|
|
TaskId int64
|
|
}) {
|
|
if !this.readTask(params.TaskId) {
|
|
return
|
|
}
|
|
this.Success()
|
|
}
|
|
|
|
// 读取任务信息
|
|
func (this *TaskAction) readTask(taskId int64) (ok bool) {
|
|
taskResp, err := this.RPC().HTTPCacheTaskRPC().FindEnabledHTTPCacheTask(this.AdminContext(), &pb.FindEnabledHTTPCacheTaskRequest{HttpCacheTaskId: taskId})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
var task = taskResp.HttpCacheTask
|
|
if task == nil {
|
|
this.NotFound("HTTPCacheTask", taskId)
|
|
return
|
|
}
|
|
|
|
// 用户
|
|
var userMap = maps.Map{"id": 0, "username": "", "fullname": ""}
|
|
if task.User != nil {
|
|
userMap = maps.Map{
|
|
"id": task.User.Id,
|
|
"username": task.User.Username,
|
|
"fullname": task.User.Fullname,
|
|
}
|
|
}
|
|
|
|
// keys
|
|
var keyMaps = []maps.Map{}
|
|
for _, key := range task.HttpCacheTaskKeys {
|
|
// 错误信息
|
|
var errorMaps = []maps.Map{}
|
|
|
|
if len(key.ErrorsJSON) > 0 {
|
|
var m = map[int64]string{}
|
|
err = json.Unmarshal(key.ErrorsJSON, &m)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
for nodeId, errString := range m {
|
|
errorMaps = append(errorMaps, maps.Map{
|
|
"nodeId": nodeId,
|
|
"error": errString,
|
|
})
|
|
}
|
|
}
|
|
|
|
// 错误信息排序
|
|
if len(errorMaps) > 0 {
|
|
sort.Slice(errorMaps, func(i, j int) bool {
|
|
var m1 = errorMaps[i]
|
|
var m2 = errorMaps[j]
|
|
|
|
return m1.GetInt64("nodeId") < m2.GetInt64("nodeId")
|
|
})
|
|
}
|
|
|
|
// 集群信息
|
|
var clusterMap = maps.Map{
|
|
"id": 0,
|
|
"name": "",
|
|
}
|
|
if key.NodeCluster != nil {
|
|
clusterMap = maps.Map{
|
|
"id": key.NodeCluster.Id,
|
|
"name": key.NodeCluster.Name,
|
|
}
|
|
}
|
|
|
|
keyMaps = append(keyMaps, maps.Map{
|
|
"key": key.Key,
|
|
"isDone": key.IsDone,
|
|
"isDoing": key.IsDoing,
|
|
"errors": errorMaps,
|
|
"cluster": clusterMap,
|
|
})
|
|
}
|
|
|
|
this.Data["task"] = maps.Map{
|
|
"id": task.Id,
|
|
"type": task.Type,
|
|
"keyType": task.KeyType,
|
|
"createdTime": timeutil.FormatTime("Y-m-d H:i:s", task.CreatedAt),
|
|
"doneTime": timeutil.FormatTime("Y-m-d H:i:s", task.DoneAt),
|
|
"isDone": task.IsDone,
|
|
"isOk": task.IsOk,
|
|
"keys": keyMaps,
|
|
"user": userMap,
|
|
}
|
|
|
|
ok = true
|
|
return
|
|
}
|