-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.go
More file actions
72 lines (63 loc) · 2.31 KB
/
dashboard.go
File metadata and controls
72 lines (63 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
Nging is a toolbox for webmasters
Copyright (C) 2018-present Wenhui Shen <swh@admpub.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package servermanager
import (
"strings"
"github.com/webx-top/db"
"github.com/webx-top/echo"
"github.com/webx-top/echo/param"
"github.com/coscms/webcore/library/backend"
"github.com/coscms/webcore/library/dashboard"
"github.com/coscms/webcore/library/httpserver"
"github.com/coscms/webcore/library/role"
"github.com/coscms/webcore/library/role/roleutils"
"github.com/nging-plugins/servermanager/application/library/system"
"github.com/nging-plugins/servermanager/application/model"
)
func init() {
httpserver.Backend.Dashboard.Blocks.Register((&dashboard.Block{
Tmpl: `server/chart/cpu`,
Footer: `server/chart/cpu.js`,
}).SetContentGenerator(func(ctx echo.Context) error {
ctx.Set(`systemRealtimeStatusIsListening`, system.RealTimeStatusIsListening())
return nil
}))
httpserver.Backend.Dashboard.Blocks.Register((&dashboard.Block{
Tmpl: `server/dashbord/cmd_list`,
}).SetContentGenerator(func(ctx echo.Context) error {
user := backend.User(ctx)
//快捷命令
cmdMdl := model.NewCommand(ctx)
if user.Id == 1 {
cmdMdl.ListByOffset(nil, nil, 0, -1)
} else {
roleList := roleutils.UserRoles(ctx)
cmdIds := []string{}
for _, row := range roleList {
for _, p := range row.Permissions {
if p.Type == role.RolePermissionTypeCommand {
cmdIds = append(cmdIds, strings.Split(p.Permission, `,`)...)
}
}
}
if len(cmdIds) > 0 {
cmdIds = param.StringSlice(cmdIds).Unique().String()
cmdMdl.ListByOffset(nil, nil, 0, -1, db.Cond{`id`: db.In(cmdIds)})
}
}
ctx.Set(`cmdList`, cmdMdl.Objects())
return nil
}))
}