57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
/*
|
|
* Copyright 2024 the KubeSphere Authors.
|
|
* Please refer to the LICENSE file in the root directory of the project.
|
|
* https://github.com/kubesphere/kubesphere/blob/master/LICENSE
|
|
*/
|
|
|
|
package registries
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/docker/distribution/manifest/schema2"
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
// Digest returns the digest for an image.
|
|
func (r *Registry) ImageBlob(image Image, token string) (*ImageBlob, error) {
|
|
if image.Path == "" {
|
|
return nil, fmt.Errorf("image is required")
|
|
}
|
|
url := r.GetBlobUrl(image)
|
|
|
|
req, err := http.NewRequest("GET", url, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
req.Header.Add("Accept", schema2.MediaTypeManifest)
|
|
if token != "" {
|
|
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", token))
|
|
}
|
|
resp, err := r.Client.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
respBody, _ := GetRespBody(resp)
|
|
|
|
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusNotFound {
|
|
klog.Errorf("got response: statusCode is '%d', body is '%s'\n", resp.StatusCode, respBody)
|
|
return nil, fmt.Errorf("got image blob faild")
|
|
}
|
|
|
|
imageBlob := &ImageBlob{}
|
|
err = json.Unmarshal(respBody, imageBlob)
|
|
|
|
return imageBlob, err
|
|
}
|
|
|
|
func (r *Registry) GetBlobUrl(image Image) string {
|
|
url := r.url("/v2/%s/blobs/%s", image.Path, image.Digest)
|
|
return url
|
|
}
|