[网站服务]可以审核域名、查看审核结果

This commit is contained in:
刘祥超
2020-12-19 19:08:39 +08:00
parent dafdff9d9a
commit eced5f9417
8 changed files with 145 additions and 23 deletions

View File

@@ -0,0 +1,39 @@
package serverNames
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
)
// 审核域名
type AuditAction struct {
actionutils.ParentAction
}
func (this *AuditAction) RunPost(params struct {
ServerId int64
AuditingOK bool
AuditingReason string
CSRF *actionutils.CSRF
}) {
defer this.CreateLogInfo("提交服务 %d 域名审核", params.ServerId)
if !params.AuditingOK && len(params.AuditingReason) == 0 {
this.FailField("auditingReason", "请输入审核不通过原因")
}
_, err := this.RPC().ServerRPC().UpdateServerNamesAuditing(this.AdminContext(), &pb.UpdateServerNamesAuditingRequest{
ServerId: params.ServerId,
AuditingResult: &pb.ServerNameAuditingResult{
IsOk: params.AuditingOK,
Reason: params.AuditingReason,
},
})
if err != nil {
this.ErrorPage(err)
return
}
this.Success()
}

View File

@@ -4,10 +4,11 @@ import (
"encoding/json"
"github.com/TeaOSLab/EdgeAdmin/internal/oplogs"
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/serverutils"
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
"github.com/iwind/TeaGo/actions"
"github.com/iwind/TeaGo/maps"
timeutil "github.com/iwind/TeaGo/utils/time"
)
// 域名管理
@@ -22,14 +23,32 @@ func (this *IndexAction) Init() {
func (this *IndexAction) RunGet(params struct {
ServerId int64
}) {
server, _, isOk := serverutils.FindServer(this.Parent(), params.ServerId)
if !isOk {
serverNamesResp, err := this.RPC().ServerRPC().FindServerNames(this.AdminContext(), &pb.FindServerNamesRequest{ServerId: params.ServerId})
if err != nil {
this.ErrorPage(err)
return
}
serverNamesConfig := []*serverconfigs.ServerNameConfig{}
if len(server.ServerNamesJSON) > 0 {
err := json.Unmarshal(server.ServerNamesJSON, &serverNamesConfig)
this.Data["isAuditing"] = serverNamesResp.IsAuditing
this.Data["auditingResult"] = maps.Map{
"isOk": true,
}
if serverNamesResp.IsAuditing {
serverNamesResp.ServerNamesJSON = serverNamesResp.AuditingServerNamesJSON
} else if serverNamesResp.AuditingResult != nil {
if !serverNamesResp.AuditingResult.IsOk {
serverNamesResp.ServerNamesJSON = serverNamesResp.AuditingServerNamesJSON
}
this.Data["auditingResult"] = maps.Map{
"isOk": serverNamesResp.AuditingResult.IsOk,
"reason": serverNamesResp.AuditingResult.Reason,
"createdTime": timeutil.FormatTime("Y-m-d H:i:s", serverNamesResp.AuditingResult.CreatedAt),
}
}
if len(serverNamesResp.ServerNamesJSON) > 0 {
err := json.Unmarshal(serverNamesResp.ServerNamesJSON, &serverNamesConfig)
if err != nil {
this.ErrorPage(err)
return
@@ -37,9 +56,6 @@ func (this *IndexAction) RunGet(params struct {
}
this.Data["serverNames"] = serverNamesConfig
// DNS
this.Data["dnsName"] = server.DnsName
this.Show()
}
@@ -47,6 +63,7 @@ func (this *IndexAction) RunPost(params struct {
ServerId int64
ServerNames string
Must *actions.Must
CSRF *actionutils.CSRF
}) {
// 记录日志
defer this.CreateLog(oplogs.LevelInfo, "修改代理服务 %d 域名", params.ServerId)

View File

@@ -16,6 +16,7 @@ func init() {
Data("secondMenuItem", "serverName").
Prefix("/servers/server/settings/serverNames").
GetPost("", new(IndexAction)).
Post("/audit", new(AuditAction)).
EndAll()
})
}