40 lines
863 B
Go
40 lines
863 B
Go
package clusters
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/httpdns/httpdnsutils"
|
|
)
|
|
|
|
type IndexAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *IndexAction) Init() {
|
|
this.Nav("httpdns", "cluster", "")
|
|
}
|
|
|
|
func (this *IndexAction) RunGet(params struct {
|
|
Keyword string
|
|
}) {
|
|
httpdnsutils.AddLeftMenu(this.Parent())
|
|
this.Data["keyword"] = params.Keyword
|
|
|
|
clusters, err := listClusterMaps(this.Parent(), params.Keyword)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
this.Data["clusters"] = clusters
|
|
|
|
hasErrorLogs := false
|
|
for _, cluster := range clusters {
|
|
if cluster.GetInt("countAllNodes") > cluster.GetInt("countActiveNodes") {
|
|
hasErrorLogs = true
|
|
break
|
|
}
|
|
}
|
|
this.Data["hasErrorLogs"] = hasErrorLogs
|
|
this.Data["page"] = ""
|
|
this.Show()
|
|
}
|