6c9628cdb1
* Rename 'vendor/src' -> 'vendor' * Ignore vendor/ instead of vendor/src/ for lint * Rename 'cmd/client' -> 'cmd/ocic' to make it 'go install'able * Rename 'cmd/server' -> 'cmd/ocid' to make it 'go install'able * Update Makefile to build and install from GOPATH * Update tests to locate ocid/ocic in GOPATH/bin * Search for binaries in GOPATH/bin instead of PATH * Install tools using `go get -u`, so they are updated on each run Signed-off-by: Jonathan Yu <jawnsy@redhat.com>
59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
package docker
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/containers/image/image"
|
|
"github.com/containers/image/types"
|
|
)
|
|
|
|
// Image is a Docker-specific implementation of types.Image with a few extra methods
|
|
// which are specific to Docker.
|
|
type Image struct {
|
|
types.Image
|
|
src *dockerImageSource
|
|
}
|
|
|
|
// newImage returns a new Image interface type after setting up
|
|
// a client to the registry hosting the given image.
|
|
// The caller must call .Close() on the returned Image.
|
|
func newImage(ctx *types.SystemContext, ref dockerReference) (types.Image, error) {
|
|
s, err := newImageSource(ctx, ref, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
img, err := image.FromSource(s)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &Image{Image: img, src: s}, nil
|
|
}
|
|
|
|
// SourceRefFullName returns a fully expanded name for the repository this image is in.
|
|
func (i *Image) SourceRefFullName() string {
|
|
return i.src.ref.ref.FullName()
|
|
}
|
|
|
|
// GetRepositoryTags list all tags available in the repository. Note that this has no connection with the tag(s) used for this specific image, if any.
|
|
func (i *Image) GetRepositoryTags() ([]string, error) {
|
|
url := fmt.Sprintf(tagsURL, i.src.ref.ref.RemoteName())
|
|
res, err := i.src.c.makeRequest("GET", url, nil, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer res.Body.Close()
|
|
if res.StatusCode != http.StatusOK {
|
|
// print url also
|
|
return nil, fmt.Errorf("Invalid status code returned when fetching tags list %d", res.StatusCode)
|
|
}
|
|
type tagsRes struct {
|
|
Tags []string
|
|
}
|
|
tags := &tagsRes{}
|
|
if err := json.NewDecoder(res.Body).Decode(tags); err != nil {
|
|
return nil, err
|
|
}
|
|
return tags.Tags, nil
|
|
}
|