-
Notifications
You must be signed in to change notification settings - Fork 377
/
audit.go
104 lines (98 loc) · 2.68 KB
/
audit.go
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Copyright (c) 2021 Terminus, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package common
import (
"context"
"strconv"
"strings"
"time"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"github.com/erda-project/erda/apistructs"
"github.com/erda-project/erda/modules/hepa/bundle"
"github.com/erda-project/erda/pkg/common/apis"
)
type ScopeInfo struct {
ProjectId string
Workspace string
AppId string
ServiceName string
RuntimeName string
}
func MakeAuditInfo(reqCtx context.Context, scopeInfo ScopeInfo, name apistructs.TemplateName, errInfo error, ctx map[string]interface{}) *apistructs.Audit {
if reqCtx == nil {
return nil
}
orgId := apis.GetOrgID(reqCtx)
if orgId == "" {
return nil
}
userId := apis.GetUserID(reqCtx)
if userId == "" {
return nil
}
id, err := strconv.ParseUint(scopeInfo.ProjectId, 10, 64)
if err != nil {
log.Errorf("parse failed, err:%+v", errors.WithStack(err))
return nil
}
projectInfo, err := bundle.Bundle.GetProject(id)
if err != nil {
log.Errorf("get project failed, err:%+v", errors.WithStack(err))
return nil
}
ctx["projectId"] = scopeInfo.ProjectId
ctx["project"] = projectInfo.Name
audit := &apistructs.Audit{
UserID: userId,
ScopeType: "project",
ScopeID: id,
TemplateName: name,
// TODO: get start time from reqCtx
StartTime: strconv.FormatInt(time.Now().Unix(), 10),
}
audit.ProjectID = id
id, err = strconv.ParseUint(orgId, 10, 64)
if err != nil {
return nil
}
audit.OrgID = id
if scopeInfo.AppId != "" {
ctx["appId"] = scopeInfo.AppId
id, _ = strconv.ParseUint(scopeInfo.AppId, 10, 64)
appInfo, err := bundle.Bundle.GetApp(id)
if err != nil {
log.Errorf("get app fialed, err:%+v", err)
}
ctx["app"] = appInfo.Name
audit.AppID = id
}
if scopeInfo.Workspace != "" {
ctx["workspace"] = strings.ToUpper(scopeInfo.Workspace)
}
if scopeInfo.ServiceName != "" {
ctx["service"] = scopeInfo.ServiceName
}
if scopeInfo.RuntimeName != "" {
ctx["runtime"] = scopeInfo.RuntimeName
}
if errInfo == nil {
audit.Result = apistructs.SuccessfulResult
} else {
return nil
}
audit.Context = ctx
audit.EndTime = strconv.FormatInt(time.Now().Unix(), 10)
return audit
}