-
Notifications
You must be signed in to change notification settings - Fork 480
/
UserAuditService.go
124 lines (110 loc) · 3.41 KB
/
UserAuditService.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
* Copyright (c) 2020 Devtron Labs
*
* 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 user
import (
repository2 "github.com/devtron-labs/devtron/pkg/user/repository"
"github.com/go-pg/pg"
"go.uber.org/zap"
"time"
)
type UserAudit struct {
UserId int32
ClientIp string
CreatedOn time.Time
UpdatedOn time.Time
}
type UserAuditService interface {
Save(userAudit *UserAudit) error
GetLatestByUserId(userId int32) (*UserAudit, error)
GetLatestUser() (*UserAudit, error)
Update(userAudit *UserAudit) error
}
type UserAuditServiceImpl struct {
logger *zap.SugaredLogger
userAuditRepository repository2.UserAuditRepository
}
func NewUserAuditServiceImpl(logger *zap.SugaredLogger, userAuditRepository repository2.UserAuditRepository) *UserAuditServiceImpl {
return &UserAuditServiceImpl{
logger: logger,
userAuditRepository: userAuditRepository,
}
}
func (impl UserAuditServiceImpl) Update(userAudit *UserAudit) error {
userId := userAudit.UserId
impl.logger.Infow("Saving user audit", "userId", userId)
userAuditDb := &repository2.UserAudit{
UserId: userId,
ClientIp: userAudit.ClientIp,
}
err := impl.userAuditRepository.Update(userAuditDb)
if err != nil {
impl.logger.Errorw("error while updating user audit log", "userId", userId, "error", err)
return err
}
return nil
}
func (impl UserAuditServiceImpl) Save(userAudit *UserAudit) error {
userId := userAudit.UserId
impl.logger.Infow("Saving user audit", "userId", userId)
userAuditDb := &repository2.UserAudit{
UserId: userId,
ClientIp: userAudit.ClientIp,
CreatedOn: userAudit.CreatedOn,
}
err := impl.userAuditRepository.Save(userAuditDb)
if err != nil {
impl.logger.Errorw("error while saving user audit log", "userId", userId, "error", err)
return err
}
return nil
}
func (impl UserAuditServiceImpl) GetLatestByUserId(userId int32) (*UserAudit, error) {
impl.logger.Infow("Getting latest user audit", "userId", userId)
userAuditDb, err := impl.userAuditRepository.GetLatestByUserId(userId)
if err != nil {
if err == pg.ErrNoRows {
return nil, nil
} else {
impl.logger.Errorw("error while getting latest audit log", "userId", userId, "error", err)
return nil, err
}
}
return &UserAudit{
UserId: userId,
ClientIp: userAuditDb.ClientIp,
CreatedOn: userAuditDb.CreatedOn,
UpdatedOn: userAuditDb.UpdatedOn,
}, nil
}
func (impl UserAuditServiceImpl) GetLatestUser() (*UserAudit, error) {
impl.logger.Info("Getting latest user audit")
userAuditDb, err := impl.userAuditRepository.GetLatestUser()
if err != nil {
if err == pg.ErrNoRows {
impl.logger.Errorw("no user audits found", "err", err)
} else {
impl.logger.Errorw("error while getting latest user audit log", "err", err)
}
return nil, err
}
return &UserAudit{
UserId: userAuditDb.UserId,
ClientIp: userAuditDb.ClientIp,
CreatedOn: userAuditDb.CreatedOn,
UpdatedOn: userAuditDb.UpdatedOn,
}, nil
}