- 新增 ActivePull 实体、DAO、DTO 及 Service,支持主动拉取任务管理 - 新增 ComposeCallback、VideoCallback、HttpNodeCallback 多类型回调接口 - FlowExecution 增加 NodeGroupId 和 TotalTokens 字段,支持节点组追踪与 Token 统计 - ExecutedNodes 结构由字符串列表改为包含执行状态的节点对象列表 - 重构回调通知机制,统一 Notify 函数调用 - 优化输出项类型判断逻辑,新增文件类型标识
30 lines
677 B
Go
30 lines
677 B
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
|
|
commonHttp "gitea.com/red-future/common/http"
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
var UtilService = &utilService{}
|
|
|
|
type utilService struct{}
|
|
|
|
// IsAdmin 调用admin-go服务检查是否是管理员
|
|
func (s *utilService) IsAdmin(ctx context.Context) (res bool, err error) {
|
|
headers := make(map[string]string)
|
|
if r := g.RequestFromCtx(ctx); r != nil {
|
|
for k, v := range r.Request.Header {
|
|
if len(v) > 0 {
|
|
headers[k] = v[0]
|
|
}
|
|
}
|
|
}
|
|
var r = make(map[string]bool)
|
|
if err = commonHttp.Get(ctx, "admin-go/api/v1/system/user/checkIsSuperAdmin", headers, &r); err != nil {
|
|
return false, err
|
|
}
|
|
return r["isSuperAdmin"], err
|
|
}
|