mirror of
https://github.com/goharbor/harbor.git
synced 2025-04-03 02:26:56 +02:00
Merge pull request #6689 from jkroepke/patch-1
Remove user agent check for docker notifications
This commit is contained in:
commit
f9c1a528cb
@ -173,12 +173,11 @@ func filterEvents(notification *models.Notification) ([]*models.Event, error) {
|
||||
}
|
||||
|
||||
func checkEvent(event *models.Event) bool {
|
||||
// pull and push manifest by docker-client or vic or jib
|
||||
if (strings.HasPrefix(event.Request.UserAgent, "docker") || strings.HasPrefix(event.Request.UserAgent, vicPrefix) || strings.HasPrefix(event.Request.UserAgent, "jib")) &&
|
||||
(event.Action == "pull" || event.Action == "push") {
|
||||
// pull and push manifest
|
||||
if strings.ToLower(strings.TrimSpace(event.Request.UserAgent)) != "harbor-registry-client" && (event.Action == "pull" || event.Action == "push") {
|
||||
return true
|
||||
}
|
||||
// push manifest by docker-client or job-service
|
||||
// push manifest by job-service
|
||||
if strings.ToLower(strings.TrimSpace(event.Request.UserAgent)) == "harbor-registry-client" && event.Action == "push" {
|
||||
return true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user