Remove jobs from registry.Service
This makes `registry.Service` a first class type and does not use jobs to interact with this type. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
parent
5fa2d814f8
commit
638ccff564
2 changed files with 19 additions and 183 deletions
|
@ -230,7 +230,6 @@ func Login(authConfig *AuthConfig, registryEndpoint *Endpoint, factory *requestd
|
||||||
if registryEndpoint.Version == APIVersion2 {
|
if registryEndpoint.Version == APIVersion2 {
|
||||||
return loginV2(authConfig, registryEndpoint, factory)
|
return loginV2(authConfig, registryEndpoint, factory)
|
||||||
}
|
}
|
||||||
|
|
||||||
return loginV1(authConfig, registryEndpoint, factory)
|
return loginV1(authConfig, registryEndpoint, factory)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
201
docs/service.go
201
docs/service.go
|
@ -1,20 +1,5 @@
|
||||||
package registry
|
package registry
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/Sirupsen/logrus"
|
|
||||||
"github.com/docker/docker/engine"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Service exposes registry capabilities in the standard Engine
|
|
||||||
// interface. Once installed, it extends the engine with the
|
|
||||||
// following calls:
|
|
||||||
//
|
|
||||||
// 'auth': Authenticate against the public registry
|
|
||||||
// 'search': Search for images on the public registry
|
|
||||||
// 'pull': Download images from any registry (TODO)
|
|
||||||
// 'push': Upload images to any registry (TODO)
|
|
||||||
type Service struct {
|
type Service struct {
|
||||||
Config *ServiceConfig
|
Config *ServiceConfig
|
||||||
}
|
}
|
||||||
|
@ -27,201 +12,53 @@ func NewService(options *Options) *Service {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Install installs registry capabilities to eng.
|
|
||||||
func (s *Service) Install(eng *engine.Engine) error {
|
|
||||||
eng.Register("auth", s.Auth)
|
|
||||||
eng.Register("search", s.Search)
|
|
||||||
eng.Register("resolve_repository", s.ResolveRepository)
|
|
||||||
eng.Register("resolve_index", s.ResolveIndex)
|
|
||||||
eng.Register("registry_config", s.GetRegistryConfig)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Auth contacts the public registry with the provided credentials,
|
// Auth contacts the public registry with the provided credentials,
|
||||||
// and returns OK if authentication was sucessful.
|
// and returns OK if authentication was sucessful.
|
||||||
// It can be used to verify the validity of a client's credentials.
|
// It can be used to verify the validity of a client's credentials.
|
||||||
func (s *Service) Auth(job *engine.Job) error {
|
func (s *Service) Auth(authConfig *AuthConfig) (string, error) {
|
||||||
var (
|
|
||||||
authConfig = new(AuthConfig)
|
|
||||||
endpoint *Endpoint
|
|
||||||
index *IndexInfo
|
|
||||||
status string
|
|
||||||
err error
|
|
||||||
)
|
|
||||||
|
|
||||||
job.GetenvJson("authConfig", authConfig)
|
|
||||||
|
|
||||||
addr := authConfig.ServerAddress
|
addr := authConfig.ServerAddress
|
||||||
if addr == "" {
|
if addr == "" {
|
||||||
// Use the official registry address if not specified.
|
// Use the official registry address if not specified.
|
||||||
addr = IndexServerAddress()
|
addr = IndexServerAddress()
|
||||||
}
|
}
|
||||||
|
index, err := s.ResolveIndex(addr)
|
||||||
if index, err = ResolveIndexInfo(job, addr); err != nil {
|
if err != nil {
|
||||||
return err
|
return "", err
|
||||||
}
|
}
|
||||||
|
endpoint, err := NewEndpoint(index)
|
||||||
if endpoint, err = NewEndpoint(index); err != nil {
|
if err != nil {
|
||||||
logrus.Errorf("unable to get new registry endpoint: %s", err)
|
return "", err
|
||||||
return err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
authConfig.ServerAddress = endpoint.String()
|
authConfig.ServerAddress = endpoint.String()
|
||||||
|
return Login(authConfig, endpoint, HTTPRequestFactory(nil))
|
||||||
if status, err = Login(authConfig, endpoint, HTTPRequestFactory(nil)); err != nil {
|
|
||||||
logrus.Errorf("unable to login against registry endpoint %s: %s", endpoint, err)
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
logrus.Infof("successful registry login for endpoint %s: %s", endpoint, status)
|
|
||||||
job.Printf("%s\n", status)
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Search queries the public registry for images matching the specified
|
// Search queries the public registry for images matching the specified
|
||||||
// search terms, and returns the results.
|
// search terms, and returns the results.
|
||||||
//
|
func (s *Service) Search(term string, authConfig *AuthConfig, headers map[string][]string) (*SearchResults, error) {
|
||||||
// Argument syntax: search TERM
|
repoInfo, err := s.ResolveRepository(term)
|
||||||
//
|
|
||||||
// Option environment:
|
|
||||||
// 'authConfig': json-encoded credentials to authenticate against the registry.
|
|
||||||
// The search extends to images only accessible via the credentials.
|
|
||||||
//
|
|
||||||
// 'metaHeaders': extra HTTP headers to include in the request to the registry.
|
|
||||||
// The headers should be passed as a json-encoded dictionary.
|
|
||||||
//
|
|
||||||
// Output:
|
|
||||||
// Results are sent as a collection of structured messages (using engine.Table).
|
|
||||||
// Each result is sent as a separate message.
|
|
||||||
// Results are ordered by number of stars on the public registry.
|
|
||||||
func (s *Service) Search(job *engine.Job) error {
|
|
||||||
if n := len(job.Args); n != 1 {
|
|
||||||
return fmt.Errorf("Usage: %s TERM", job.Name)
|
|
||||||
}
|
|
||||||
var (
|
|
||||||
term = job.Args[0]
|
|
||||||
metaHeaders = map[string][]string{}
|
|
||||||
authConfig = &AuthConfig{}
|
|
||||||
)
|
|
||||||
job.GetenvJson("authConfig", authConfig)
|
|
||||||
job.GetenvJson("metaHeaders", metaHeaders)
|
|
||||||
|
|
||||||
repoInfo, err := ResolveRepositoryInfo(job, term)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return nil, err
|
||||||
}
|
}
|
||||||
// *TODO: Search multiple indexes.
|
// *TODO: Search multiple indexes.
|
||||||
endpoint, err := repoInfo.GetEndpoint()
|
endpoint, err := repoInfo.GetEndpoint()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return nil, err
|
||||||
}
|
}
|
||||||
r, err := NewSession(authConfig, HTTPRequestFactory(metaHeaders), endpoint, true)
|
r, err := NewSession(authConfig, HTTPRequestFactory(headers), endpoint, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return nil, err
|
||||||
}
|
}
|
||||||
results, err := r.SearchRepositories(repoInfo.GetSearchTerm())
|
return r.SearchRepositories(repoInfo.GetSearchTerm())
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
outs := engine.NewTable("star_count", 0)
|
|
||||||
for _, result := range results.Results {
|
|
||||||
out := &engine.Env{}
|
|
||||||
out.Import(result)
|
|
||||||
outs.Add(out)
|
|
||||||
}
|
|
||||||
outs.ReverseSort()
|
|
||||||
if _, err := outs.WriteListTo(job.Stdout); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResolveRepository splits a repository name into its components
|
// ResolveRepository splits a repository name into its components
|
||||||
// and configuration of the associated registry.
|
// and configuration of the associated registry.
|
||||||
func (s *Service) ResolveRepository(job *engine.Job) error {
|
func (s *Service) ResolveRepository(name string) (*RepositoryInfo, error) {
|
||||||
var (
|
return s.Config.NewRepositoryInfo(name)
|
||||||
reposName = job.Args[0]
|
|
||||||
)
|
|
||||||
|
|
||||||
repoInfo, err := s.Config.NewRepositoryInfo(reposName)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
out := engine.Env{}
|
|
||||||
err = out.SetJson("repository", repoInfo)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
out.WriteTo(job.Stdout)
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Convenience wrapper for calling resolve_repository Job from a running job.
|
|
||||||
func ResolveRepositoryInfo(jobContext *engine.Job, reposName string) (*RepositoryInfo, error) {
|
|
||||||
job := jobContext.Eng.Job("resolve_repository", reposName)
|
|
||||||
env, err := job.Stdout.AddEnv()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if err := job.Run(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
info := RepositoryInfo{}
|
|
||||||
if err := env.GetJson("repository", &info); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return &info, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResolveIndex takes indexName and returns index info
|
// ResolveIndex takes indexName and returns index info
|
||||||
func (s *Service) ResolveIndex(job *engine.Job) error {
|
func (s *Service) ResolveIndex(name string) (*IndexInfo, error) {
|
||||||
var (
|
return s.Config.NewIndexInfo(name)
|
||||||
indexName = job.Args[0]
|
|
||||||
)
|
|
||||||
|
|
||||||
index, err := s.Config.NewIndexInfo(indexName)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
out := engine.Env{}
|
|
||||||
err = out.SetJson("index", index)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
out.WriteTo(job.Stdout)
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Convenience wrapper for calling resolve_index Job from a running job.
|
|
||||||
func ResolveIndexInfo(jobContext *engine.Job, indexName string) (*IndexInfo, error) {
|
|
||||||
job := jobContext.Eng.Job("resolve_index", indexName)
|
|
||||||
env, err := job.Stdout.AddEnv()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if err := job.Run(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
info := IndexInfo{}
|
|
||||||
if err := env.GetJson("index", &info); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return &info, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetRegistryConfig returns current registry configuration.
|
|
||||||
func (s *Service) GetRegistryConfig(job *engine.Job) error {
|
|
||||||
out := engine.Env{}
|
|
||||||
err := out.SetJson("config", s.Config)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
out.WriteTo(job.Stdout)
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue