mirror of
https://github.com/goharbor/harbor.git
synced 2025-04-06 12:06:55 +02:00
enable auto scan in notification handler
This commit is contained in:
parent
ad7990b07c
commit
80edade6a7
@ -16,6 +16,7 @@ package service
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"os"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
@ -25,6 +26,8 @@ import (
|
|||||||
"github.com/vmware/harbor/src/common/utils"
|
"github.com/vmware/harbor/src/common/utils"
|
||||||
"github.com/vmware/harbor/src/common/utils/log"
|
"github.com/vmware/harbor/src/common/utils/log"
|
||||||
"github.com/vmware/harbor/src/ui/api"
|
"github.com/vmware/harbor/src/ui/api"
|
||||||
|
"github.com/vmware/harbor/src/ui/config"
|
||||||
|
"github.com/vmware/harbor/src/ui/projectmanager/pms"
|
||||||
|
|
||||||
"github.com/astaxie/beego"
|
"github.com/astaxie/beego"
|
||||||
)
|
)
|
||||||
@ -103,6 +106,11 @@ func (n *NotificationHandler) Post() {
|
|||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
go api.TriggerReplicationByRepository(repository, []string{tag}, models.RepOpTransfer)
|
go api.TriggerReplicationByRepository(repository, []string{tag}, models.RepOpTransfer)
|
||||||
|
if autoScanEnabled(project) {
|
||||||
|
if err := api.TriggerImageScan(repository, tag); err != nil {
|
||||||
|
log.Warningf("Failed to scan image, repository: %s, tag: %s, error: %v", repository, tag, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if action == "pull" {
|
if action == "pull" {
|
||||||
go func() {
|
go func() {
|
||||||
@ -151,6 +159,27 @@ func filterEvents(notification *models.Notification) ([]*models.Event, error) {
|
|||||||
return events, nil
|
return events, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func autoScanEnabled(projectName string) bool {
|
||||||
|
if !config.WithClair() {
|
||||||
|
log.Debugf("Auto Scan disabled because Harbor is not deployed with Clair")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
if config.WithAdmiral() {
|
||||||
|
//TODO get a project manager based on service account.
|
||||||
|
var pm *pms.ProjectManager = pms.NewProjectManager("", "")
|
||||||
|
p, err := pm.Get(projectName)
|
||||||
|
if err != nil {
|
||||||
|
log.Warningf("failed to get project, error: %v", err)
|
||||||
|
return false
|
||||||
|
} else if p == nil {
|
||||||
|
log.Warningf("project with name: %s not found.", projectName)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return p.AutomaticallyScanImagesOnPush
|
||||||
|
}
|
||||||
|
return os.Getenv("ENABLE_HARBOR_SCAN_ON_PUSH") == "1"
|
||||||
|
}
|
||||||
|
|
||||||
// Render returns nil as it won't render any template.
|
// Render returns nil as it won't render any template.
|
||||||
func (n *NotificationHandler) Render() error {
|
func (n *NotificationHandler) Render() error {
|
||||||
return nil
|
return nil
|
||||||
|
Loading…
Reference in New Issue
Block a user