summaryrefslogtreecommitdiff
path: root/registry/service.go
diff options
context:
space:
mode:
authorYong Tang <yong.tang.github@outlook.com>2016-06-01 13:38:14 -0700
committerYong Tang <yong.tang.github@outlook.com>2016-06-02 19:12:20 -0700
commit92f10fe228c1b4b527b87ac47401132322283ea3 (patch)
tree90ad546bea82893ab79b1ae4713937ad4c80012d /registry/service.go
parent98c245c9e63793cf8ca03c5500e0820447c1861c (diff)
downloaddocker-92f10fe228c1b4b527b87ac47401132322283ea3.tar.gz
Add `--limit` option to `docker search`
This fix tries to address the issue raised in #23055. Currently `docker search` result caps at 25 and there is no way to allow getting more results (if exist). This fix adds the flag `--limit` so that it is possible to return more results from the `docker search`. Related documentation has been updated. Additional tests have been added to cover the changes. This fix fixes #23055. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to 'registry/service.go')
-rw-r--r--registry/service.go13
1 files changed, 9 insertions, 4 deletions
diff --git a/registry/service.go b/registry/service.go
index d48063cd78..25b4990e80 100644
--- a/registry/service.go
+++ b/registry/service.go
@@ -15,6 +15,11 @@ import (
registrytypes "github.com/docker/engine-api/types/registry"
)
+const (
+ // DefaultSearchLimit is the default value for maximum number of returned search results.
+ DefaultSearchLimit = 25
+)
+
// Service is the interface defining what a registry service should implement.
type Service interface {
Auth(ctx context.Context, authConfig *types.AuthConfig, userAgent string) (status, token string, err error)
@@ -22,7 +27,7 @@ type Service interface {
LookupPushEndpoints(hostname string) (endpoints []APIEndpoint, err error)
ResolveRepository(name reference.Named) (*RepositoryInfo, error)
ResolveIndex(name string) (*registrytypes.IndexInfo, error)
- Search(ctx context.Context, term string, authConfig *types.AuthConfig, userAgent string, headers map[string][]string) (*registrytypes.SearchResults, error)
+ Search(ctx context.Context, term string, limit int, authConfig *types.AuthConfig, userAgent string, headers map[string][]string) (*registrytypes.SearchResults, error)
ServiceConfig() *registrytypes.ServiceConfig
TLSConfig(hostname string) (*tls.Config, error)
}
@@ -108,7 +113,7 @@ func splitReposSearchTerm(reposName string) (string, string) {
// Search queries the public registry for images matching the specified
// search terms, and returns the results.
-func (s *DefaultService) Search(ctx context.Context, term string, authConfig *types.AuthConfig, userAgent string, headers map[string][]string) (*registrytypes.SearchResults, error) {
+func (s *DefaultService) Search(ctx context.Context, term string, limit int, authConfig *types.AuthConfig, userAgent string, headers map[string][]string) (*registrytypes.SearchResults, error) {
// TODO Use ctx when searching for repositories
if err := validateNoScheme(term); err != nil {
return nil, err
@@ -139,9 +144,9 @@ func (s *DefaultService) Search(ctx context.Context, term string, authConfig *ty
localName = strings.SplitN(localName, "/", 2)[1]
}
- return r.SearchRepositories(localName)
+ return r.SearchRepositories(localName, limit)
}
- return r.SearchRepositories(remoteName)
+ return r.SearchRepositories(remoteName, limit)
}
// ResolveRepository splits a repository name into its components