harbor/utils/registry/repository.go

535 lines
12 KiB
Go
Raw Normal View History

2016-04-27 09:59:43 +00:00
/*
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
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 registry
import (
"bytes"
"encoding/json"
"fmt"
2016-05-17 10:23:45 +00:00
"io"
2016-04-27 09:59:43 +00:00
"io/ioutil"
"net/http"
"net/url"
"strconv"
"strings"
"github.com/docker/distribution/manifest/schema1"
"github.com/docker/distribution/manifest/schema2"
"github.com/vmware/harbor/utils/log"
"github.com/vmware/harbor/utils/registry/auth"
2016-05-24 06:59:36 +00:00
registry_error "github.com/vmware/harbor/utils/registry/error"
2016-04-27 09:59:43 +00:00
)
// Repository holds information of a repository entity
type Repository struct {
Name string
Endpoint *url.URL
client *http.Client
}
// TODO add agent to header of request, notifications need it
// NewRepository returns an instance of Repository
func NewRepository(name, endpoint string, client *http.Client) (*Repository, error) {
name = strings.TrimSpace(name)
endpoint = strings.TrimRight(endpoint, "/")
u, err := url.Parse(endpoint)
if err != nil {
return nil, err
}
repository := &Repository{
Name: name,
Endpoint: u,
client: client,
}
return repository, nil
}
// NewRepositoryWithCredential returns a Repository instance which will authorize the request
// according to the credenttial
func NewRepositoryWithCredential(name, endpoint string, credential auth.Credential) (*Repository, error) {
name = strings.TrimSpace(name)
endpoint = strings.TrimRight(endpoint, "/")
u, err := url.Parse(endpoint)
if err != nil {
return nil, err
}
2016-04-28 10:49:59 +00:00
client, err := newClient(endpoint, "", credential, "repository", name, "pull", "push")
2016-05-10 14:01:38 +00:00
if err != nil {
return nil, err
}
2016-04-27 09:59:43 +00:00
repository := &Repository{
Name: name,
Endpoint: u,
2016-04-28 10:49:59 +00:00
client: client,
2016-04-27 09:59:43 +00:00
}
log.Debugf("initialized a repository client with credential: %s %s", endpoint, name)
return repository, nil
}
// NewRepositoryWithUsername returns a Repository instance which will authorize the request
// according to the privileges of user
func NewRepositoryWithUsername(name, endpoint, username string) (*Repository, error) {
name = strings.TrimSpace(name)
endpoint = strings.TrimRight(endpoint, "/")
u, err := url.Parse(endpoint)
if err != nil {
return nil, err
}
2016-04-28 10:49:59 +00:00
client, err := newClient(endpoint, username, nil, "repository", name, "pull", "push")
2016-04-27 09:59:43 +00:00
repository := &Repository{
Name: name,
Endpoint: u,
2016-04-28 10:49:59 +00:00
client: client,
2016-04-27 09:59:43 +00:00
}
2016-05-10 02:59:59 +00:00
log.Debugf("initialized a repository client with username: %s %s %s", endpoint, name, username)
2016-04-27 09:59:43 +00:00
return repository, nil
}
// ListTag ...
func (r *Repository) ListTag() ([]string, error) {
tags := []string{}
req, err := http.NewRequest("GET", buildTagListURL(r.Endpoint.String(), r.Name), nil)
if err != nil {
return tags, err
}
resp, err := r.client.Do(req)
if err != nil {
2016-05-24 06:59:36 +00:00
if regErr, ok := err.(*registry_error.Error); ok {
return tags, regErr
2016-05-10 14:01:38 +00:00
}
2016-05-24 06:59:36 +00:00
2016-04-27 09:59:43 +00:00
return tags, err
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return tags, err
}
if resp.StatusCode == http.StatusOK {
tagsResp := struct {
Tags []string `json:"tags"`
}{}
if err := json.Unmarshal(b, &tagsResp); err != nil {
return tags, err
}
tags = tagsResp.Tags
return tags, nil
}
2016-05-24 06:59:36 +00:00
return tags, &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: resp.StatusCode,
2016-05-24 06:59:36 +00:00
Detail: string(b),
2016-04-27 09:59:43 +00:00
}
}
// ManifestExist ...
func (r *Repository) ManifestExist(reference string) (digest string, exist bool, err error) {
req, err := http.NewRequest("HEAD", buildManifestURL(r.Endpoint.String(), r.Name, reference), nil)
if err != nil {
return
}
req.Header.Add(http.CanonicalHeaderKey("Accept"), schema1.MediaTypeManifest)
req.Header.Add(http.CanonicalHeaderKey("Accept"), schema2.MediaTypeManifest)
resp, err := r.client.Do(req)
if err != nil {
2016-05-24 06:59:36 +00:00
if regErr, ok := err.(*registry_error.Error); ok {
err = regErr
2016-05-10 14:01:38 +00:00
return
}
2016-04-27 09:59:43 +00:00
return
}
if resp.StatusCode == http.StatusOK {
exist = true
digest = resp.Header.Get(http.CanonicalHeaderKey("Docker-Content-Digest"))
return
}
if resp.StatusCode == http.StatusNotFound {
return
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return
}
2016-05-24 06:59:36 +00:00
err = &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: resp.StatusCode,
2016-05-24 06:59:36 +00:00
Detail: string(b),
2016-04-27 09:59:43 +00:00
}
return
}
// PullManifest ...
func (r *Repository) PullManifest(reference string, acceptMediaTypes []string) (digest, mediaType string, payload []byte, err error) {
req, err := http.NewRequest("GET", buildManifestURL(r.Endpoint.String(), r.Name, reference), nil)
if err != nil {
return
}
for _, mediaType := range acceptMediaTypes {
req.Header.Add(http.CanonicalHeaderKey("Accept"), mediaType)
}
resp, err := r.client.Do(req)
if err != nil {
2016-05-24 06:59:36 +00:00
if regErr, ok := err.(*registry_error.Error); ok {
err = regErr
2016-05-10 14:01:38 +00:00
return
}
2016-04-27 09:59:43 +00:00
return
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return
}
if resp.StatusCode == http.StatusOK {
digest = resp.Header.Get(http.CanonicalHeaderKey("Docker-Content-Digest"))
mediaType = resp.Header.Get(http.CanonicalHeaderKey("Content-Type"))
payload = b
return
}
2016-05-24 06:59:36 +00:00
err = &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: resp.StatusCode,
2016-05-24 06:59:36 +00:00
Detail: string(b),
2016-04-27 09:59:43 +00:00
}
return
}
// PushManifest ...
func (r *Repository) PushManifest(reference, mediaType string, payload []byte) (digest string, err error) {
req, err := http.NewRequest("PUT", buildManifestURL(r.Endpoint.String(), r.Name, reference),
bytes.NewReader(payload))
if err != nil {
return
}
req.Header.Set(http.CanonicalHeaderKey("Content-Type"), mediaType)
resp, err := r.client.Do(req)
if err != nil {
2016-05-24 06:59:36 +00:00
if regErr, ok := err.(*registry_error.Error); ok {
err = regErr
2016-05-10 14:01:38 +00:00
return
}
2016-04-27 09:59:43 +00:00
return
}
if resp.StatusCode == http.StatusCreated {
digest = resp.Header.Get(http.CanonicalHeaderKey("Docker-Content-Digest"))
return
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return
}
2016-05-24 06:59:36 +00:00
err = &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: resp.StatusCode,
2016-05-24 06:59:36 +00:00
Detail: string(b),
2016-04-27 09:59:43 +00:00
}
return
}
// DeleteManifest ...
func (r *Repository) DeleteManifest(digest string) error {
req, err := http.NewRequest("DELETE", buildManifestURL(r.Endpoint.String(), r.Name, digest), nil)
if err != nil {
return err
}
resp, err := r.client.Do(req)
if err != nil {
2016-05-24 06:59:36 +00:00
if regErr, ok := err.(*registry_error.Error); ok {
return regErr
2016-05-10 14:01:38 +00:00
}
2016-04-27 09:59:43 +00:00
return err
}
if resp.StatusCode == http.StatusAccepted {
return nil
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
2016-05-24 06:59:36 +00:00
return &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: resp.StatusCode,
2016-05-24 06:59:36 +00:00
Detail: string(b),
2016-04-27 09:59:43 +00:00
}
}
// DeleteTag ...
func (r *Repository) DeleteTag(tag string) error {
digest, exist, err := r.ManifestExist(tag)
if err != nil {
return err
}
if !exist {
2016-05-24 06:59:36 +00:00
return &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: http.StatusNotFound,
}
}
return r.DeleteManifest(digest)
}
// BlobExist ...
func (r *Repository) BlobExist(digest string) (bool, error) {
req, err := http.NewRequest("HEAD", buildBlobURL(r.Endpoint.String(), r.Name, digest), nil)
if err != nil {
return false, err
}
resp, err := r.client.Do(req)
if err != nil {
2016-05-24 06:59:36 +00:00
if regErr, ok := err.(*registry_error.Error); ok {
return false, regErr
2016-05-10 14:01:38 +00:00
}
2016-04-27 09:59:43 +00:00
return false, err
}
if resp.StatusCode == http.StatusOK {
return true, nil
}
if resp.StatusCode == http.StatusNotFound {
return false, nil
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return false, err
}
2016-05-24 06:59:36 +00:00
return false, &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: resp.StatusCode,
2016-05-24 06:59:36 +00:00
Detail: string(b),
2016-04-27 09:59:43 +00:00
}
}
// PullBlob ...
2016-05-17 10:23:45 +00:00
func (r *Repository) PullBlob(digest string) (size int64, data io.ReadCloser, err error) {
2016-04-27 09:59:43 +00:00
req, err := http.NewRequest("GET", buildBlobURL(r.Endpoint.String(), r.Name, digest), nil)
if err != nil {
return
}
resp, err := r.client.Do(req)
if err != nil {
2016-05-24 06:59:36 +00:00
if regErr, ok := err.(*registry_error.Error); ok {
err = regErr
2016-05-10 14:01:38 +00:00
return
}
2016-04-27 09:59:43 +00:00
return
}
if resp.StatusCode == http.StatusOK {
contengLength := resp.Header.Get(http.CanonicalHeaderKey("Content-Length"))
size, err = strconv.ParseInt(contengLength, 10, 64)
if err != nil {
return
}
2016-05-17 10:23:45 +00:00
data = resp.Body
return
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
2016-04-27 09:59:43 +00:00
return
}
2016-05-24 06:59:36 +00:00
err = &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: resp.StatusCode,
2016-05-24 06:59:36 +00:00
Detail: string(b),
2016-04-27 09:59:43 +00:00
}
return
}
func (r *Repository) initiateBlobUpload(name string) (location, uploadUUID string, err error) {
req, err := http.NewRequest("POST", buildInitiateBlobUploadURL(r.Endpoint.String(), r.Name), nil)
req.Header.Set(http.CanonicalHeaderKey("Content-Length"), "0")
resp, err := r.client.Do(req)
if err != nil {
2016-05-24 06:59:36 +00:00
if regErr, ok := err.(*registry_error.Error); ok {
err = regErr
2016-05-10 14:01:38 +00:00
return
}
2016-04-27 09:59:43 +00:00
return
}
if resp.StatusCode == http.StatusAccepted {
location = resp.Header.Get(http.CanonicalHeaderKey("Location"))
uploadUUID = resp.Header.Get(http.CanonicalHeaderKey("Docker-Upload-UUID"))
return
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return
}
2016-05-24 06:59:36 +00:00
err = &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: resp.StatusCode,
2016-05-24 06:59:36 +00:00
Detail: string(b),
2016-04-27 09:59:43 +00:00
}
return
}
2016-05-17 10:23:45 +00:00
func (r *Repository) monolithicBlobUpload(location, digest string, size int64, data io.Reader) error {
req, err := http.NewRequest("PUT", buildMonolithicBlobUploadURL(location, digest), data)
2016-04-27 09:59:43 +00:00
if err != nil {
return err
}
resp, err := r.client.Do(req)
if err != nil {
2016-05-24 06:59:36 +00:00
if regErr, ok := err.(*registry_error.Error); ok {
return regErr
2016-05-10 14:01:38 +00:00
}
2016-04-27 09:59:43 +00:00
return err
}
if resp.StatusCode == http.StatusCreated {
return nil
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
2016-05-24 06:59:36 +00:00
return &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: resp.StatusCode,
2016-05-24 06:59:36 +00:00
Detail: string(b),
2016-04-27 09:59:43 +00:00
}
}
// PushBlob ...
2016-05-17 10:23:45 +00:00
func (r *Repository) PushBlob(digest string, size int64, data io.Reader) error {
2016-04-27 09:59:43 +00:00
location, _, err := r.initiateBlobUpload(r.Name)
if err != nil {
return err
}
return r.monolithicBlobUpload(location, digest, size, data)
}
// DeleteBlob ...
func (r *Repository) DeleteBlob(digest string) error {
req, err := http.NewRequest("DELETE", buildBlobURL(r.Endpoint.String(), r.Name, digest), nil)
if err != nil {
return err
}
resp, err := r.client.Do(req)
if err != nil {
2016-05-24 06:59:36 +00:00
if regErr, ok := err.(*registry_error.Error); ok {
return regErr
2016-05-10 14:01:38 +00:00
}
2016-04-27 09:59:43 +00:00
return err
}
if resp.StatusCode == http.StatusAccepted {
return nil
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
2016-05-24 06:59:36 +00:00
return &registry_error.Error{
2016-04-27 09:59:43 +00:00
StatusCode: resp.StatusCode,
2016-05-24 06:59:36 +00:00
Detail: string(b),
2016-04-27 09:59:43 +00:00
}
}
func buildPingURL(endpoint string) string {
return fmt.Sprintf("%s/v2/", endpoint)
}
func buildTagListURL(endpoint, repoName string) string {
return fmt.Sprintf("%s/v2/%s/tags/list", endpoint, repoName)
}
func buildManifestURL(endpoint, repoName, reference string) string {
return fmt.Sprintf("%s/v2/%s/manifests/%s", endpoint, repoName, reference)
}
func buildBlobURL(endpoint, repoName, reference string) string {
return fmt.Sprintf("%s/v2/%s/blobs/%s", endpoint, repoName, reference)
}
func buildInitiateBlobUploadURL(endpoint, repoName string) string {
return fmt.Sprintf("%s/v2/%s/blobs/uploads/", endpoint, repoName)
}
func buildMonolithicBlobUploadURL(location, digest string) string {
return fmt.Sprintf("%s&digest=%s", location, digest)
}