-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1, add creation audit log for robot account 2, add deletion audit log for robot account Signed-off-by: wang yan <[email protected]>
- Loading branch information
1 parent
8107f47
commit 8ad8827
Showing
7 changed files
with
238 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// Copyright Project Harbor Authors | ||
// | ||
// 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 metadata | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"time" | ||
|
||
"github.com/goharbor/harbor/src/common/security" | ||
event2 "github.com/goharbor/harbor/src/controller/event" | ||
"github.com/goharbor/harbor/src/lib/config" | ||
"github.com/goharbor/harbor/src/pkg/notifier/event" | ||
"github.com/goharbor/harbor/src/pkg/robot/model" | ||
) | ||
|
||
// CreateRobotEventMetadata is the metadata from which the create robot event can be resolved | ||
type CreateRobotEventMetadata struct { | ||
Ctx context.Context | ||
Robot *model.Robot | ||
} | ||
|
||
// Resolve to the event from the metadata | ||
func (c *CreateRobotEventMetadata) Resolve(event *event.Event) error { | ||
data := &event2.CreateRobotEvent{ | ||
EventType: event2.TopicCreateRobot, | ||
Robot: c.Robot, | ||
OccurAt: time.Now(), | ||
} | ||
cx, exist := security.FromContext(c.Ctx) | ||
if exist { | ||
data.Operator = cx.GetUsername() | ||
} | ||
data.Robot.Name = fmt.Sprintf("%s%s", config.RobotPrefix(c.Ctx), data.Robot.Name) | ||
event.Topic = event2.TopicCreateRobot | ||
event.Data = data | ||
return nil | ||
} | ||
|
||
// DeleteRobotEventMetadata is the metadata from which the delete robot event can be resolved | ||
type DeleteRobotEventMetadata struct { | ||
Ctx context.Context | ||
Robot *model.Robot | ||
} | ||
|
||
// Resolve to the event from the metadata | ||
func (d *DeleteRobotEventMetadata) Resolve(event *event.Event) error { | ||
data := &event2.DeleteRobotEvent{ | ||
EventType: event2.TopicDeleteRobot, | ||
Robot: d.Robot, | ||
OccurAt: time.Now(), | ||
} | ||
cx, exist := security.FromContext(d.Ctx) | ||
if exist { | ||
data.Operator = cx.GetUsername() | ||
} | ||
data.Robot.Name = fmt.Sprintf("%s%s", config.RobotPrefix(d.Ctx), data.Robot.Name) | ||
event.Topic = event2.TopicDeleteRobot | ||
event.Data = data | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// Copyright Project Harbor Authors | ||
// | ||
// 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 metadata | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/suite" | ||
|
||
"github.com/goharbor/harbor/src/common" | ||
event2 "github.com/goharbor/harbor/src/controller/event" | ||
"github.com/goharbor/harbor/src/lib/config" | ||
_ "github.com/goharbor/harbor/src/pkg/config/inmemory" | ||
"github.com/goharbor/harbor/src/pkg/notifier/event" | ||
"github.com/goharbor/harbor/src/pkg/robot/model" | ||
) | ||
|
||
type robotEventTestSuite struct { | ||
suite.Suite | ||
} | ||
|
||
func (t *tagEventTestSuite) TestResolveOfCreateRobotEventMetadata() { | ||
cfg := map[string]interface{}{ | ||
common.RobotPrefix: "robot$", | ||
} | ||
config.InitWithSettings(cfg) | ||
|
||
e := &event.Event{} | ||
metadata := &CreateRobotEventMetadata{ | ||
Ctx: context.Background(), | ||
Robot: &model.Robot{ | ||
ID: 1, | ||
Name: "test", | ||
}, | ||
} | ||
err := metadata.Resolve(e) | ||
t.Require().Nil(err) | ||
t.Equal(event2.TopicCreateRobot, e.Topic) | ||
t.Require().NotNil(e.Data) | ||
data, ok := e.Data.(*event2.CreateRobotEvent) | ||
t.Require().True(ok) | ||
t.Equal(int64(1), data.Robot.ID) | ||
t.Equal("robot$test", data.Robot.Name) | ||
} | ||
|
||
func (t *tagEventTestSuite) TestResolveOfDeleteRobotEventMetadata() { | ||
cfg := map[string]interface{}{ | ||
common.RobotPrefix: "robot$", | ||
} | ||
config.InitWithSettings(cfg) | ||
|
||
e := &event.Event{} | ||
metadata := &DeleteRobotEventMetadata{ | ||
Ctx: context.Background(), | ||
Robot: &model.Robot{ | ||
ID: 1, | ||
}, | ||
} | ||
err := metadata.Resolve(e) | ||
t.Require().Nil(err) | ||
t.Equal(event2.TopicDeleteRobot, e.Topic) | ||
t.Require().NotNil(e.Data) | ||
data, ok := e.Data.(*event2.DeleteRobotEvent) | ||
t.Require().True(ok) | ||
t.Equal(int64(1), data.Robot.ID) | ||
} | ||
|
||
func TestRobotEventTestSuite(t *testing.T) { | ||
suite.Run(t, &robotEventTestSuite{}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters