mirror of
https://github.com/goharbor/harbor
synced 2025-04-19 13:47:43 +00:00

Accept and recognize the signature of notation client Signed-off-by: wang yan <wangyan@vmware.com>
180 lines
3.9 KiB
Go
180 lines
3.9 KiB
Go
// 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 icon
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/base64"
|
|
"image"
|
|
|
|
// import the gif format
|
|
_ "image/gif"
|
|
// import the jpeg format
|
|
_ "image/jpeg"
|
|
"image/png"
|
|
"io"
|
|
"os"
|
|
"sync"
|
|
|
|
"github.com/nfnt/resize"
|
|
|
|
"github.com/goharbor/harbor/src/lib/errors"
|
|
"github.com/goharbor/harbor/src/lib/icon"
|
|
"github.com/goharbor/harbor/src/lib/q"
|
|
"github.com/goharbor/harbor/src/pkg"
|
|
"github.com/goharbor/harbor/src/pkg/artifact"
|
|
"github.com/goharbor/harbor/src/pkg/registry"
|
|
)
|
|
|
|
var (
|
|
builtInIcons = map[string]buildInIcon{
|
|
icon.DigestOfIconImage: {
|
|
path: "./icons/image.png",
|
|
resize: true,
|
|
},
|
|
icon.DigestOfIconChart: {
|
|
path: "./icons/chart.png",
|
|
resize: true,
|
|
},
|
|
icon.DigestOfIconCNAB: {
|
|
path: "./icons/cnab.png",
|
|
resize: true,
|
|
},
|
|
icon.DigestOfIconAccCosign: {
|
|
path: "./icons/cosign.png",
|
|
resize: false,
|
|
},
|
|
icon.DigestOfIconAccNotation: {
|
|
path: "./icons/notation.png",
|
|
resize: false,
|
|
},
|
|
icon.DigestOfIconAccNydus: {
|
|
path: "./icons/nydus.png",
|
|
resize: false,
|
|
},
|
|
icon.DigestOfIconWASM: {
|
|
path: "./icons/wasm.png",
|
|
resize: true,
|
|
},
|
|
icon.DigestOfIconDefault: {
|
|
path: "./icons/default.png",
|
|
resize: true,
|
|
},
|
|
}
|
|
// Ctl is a global icon controller instance
|
|
Ctl = NewController()
|
|
)
|
|
|
|
type buildInIcon struct {
|
|
path string
|
|
resize bool
|
|
}
|
|
|
|
// Icon model for artifact icon
|
|
type Icon struct {
|
|
ContentType string
|
|
Content string // base64 encoded
|
|
}
|
|
|
|
// Controller defines the operations related with icon
|
|
type Controller interface {
|
|
// Get the icon specified by digest
|
|
Get(ctx context.Context, digest string) (icon *Icon, err error)
|
|
}
|
|
|
|
// NewController creates a new instance of the icon controller
|
|
func NewController() Controller {
|
|
return &controller{
|
|
artMgr: pkg.ArtifactMgr,
|
|
regCli: registry.Cli,
|
|
cache: sync.Map{},
|
|
}
|
|
}
|
|
|
|
type controller struct {
|
|
artMgr artifact.Manager
|
|
regCli registry.Client
|
|
cache sync.Map
|
|
}
|
|
|
|
func (c *controller) Get(ctx context.Context, digest string) (*Icon, error) {
|
|
ic, exist := c.cache.Load(digest)
|
|
if exist {
|
|
return ic.(*Icon), nil
|
|
}
|
|
|
|
var (
|
|
iconFile io.ReadCloser
|
|
err error
|
|
)
|
|
|
|
if i, exist := builtInIcons[digest]; exist {
|
|
iconFile, err = os.Open(i.path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer iconFile.Close()
|
|
} else {
|
|
// read icon from blob
|
|
artifacts, err := c.artMgr.List(ctx, &q.Query{
|
|
Keywords: map[string]interface{}{
|
|
"Icon": digest,
|
|
},
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(artifacts) == 0 {
|
|
return nil, errors.New(nil).WithCode(errors.NotFoundCode).
|
|
WithMessage("the icon %s not found", digest)
|
|
}
|
|
_, iconFile, err = c.regCli.PullBlob(artifacts[0].RepositoryName, digest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer iconFile.Close()
|
|
}
|
|
|
|
img, _, err := image.Decode(iconFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// resize the icon to 50x50
|
|
if i, exist := builtInIcons[digest]; exist {
|
|
if i.resize {
|
|
img = resize.Thumbnail(50, 50, img, resize.NearestNeighbor)
|
|
}
|
|
} else {
|
|
img = resize.Thumbnail(50, 50, img, resize.NearestNeighbor)
|
|
}
|
|
|
|
// encode the resized icon to png
|
|
buf := &bytes.Buffer{}
|
|
if err = png.Encode(buf, img); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
icon := &Icon{
|
|
ContentType: "image/png",
|
|
Content: base64.StdEncoding.EncodeToString(buf.Bytes()),
|
|
}
|
|
|
|
c.cache.Store(digest, icon)
|
|
|
|
return icon, nil
|
|
}
|