forked from oras-project/oras
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: command to list repositories in a remote registry (oras-project…
…#525) Signed-off-by: Juncheng Zhu <[email protected]>
- Loading branch information
Showing
3 changed files
with
76 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ func Cmd() *cobra.Command { | |
} | ||
|
||
cmd.AddCommand( | ||
listCmd(), | ||
showTagsCmd(), | ||
) | ||
return cmd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
Copyright The ORAS Authors. | ||
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 repository | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/spf13/cobra" | ||
"oras.land/oras/cmd/oras/internal/option" | ||
) | ||
|
||
type repositoryOptions struct { | ||
option.Remote | ||
option.Common | ||
hostname string | ||
last string | ||
} | ||
|
||
func listCmd() *cobra.Command { | ||
var opts repositoryOptions | ||
cmd := &cobra.Command{ | ||
Use: "list [flags] REGISTRY", | ||
Short: "[Preview] List the repositories under the registry", | ||
Long: `[Preview] List the repositories under the registry | ||
** This command is in preview and under development. ** | ||
Example - List the repositories under the registry: | ||
oras repository list localhost:5000 | ||
Example - List the repositories under the registry that include values lexically after last: | ||
oras repository list localhost:5000 --last "last_repo" | ||
`, | ||
Args: cobra.ExactArgs(1), | ||
Aliases: []string{"ls"}, | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
opts.hostname = args[0] | ||
return listRepository(opts) | ||
}, | ||
} | ||
|
||
cmd.Flags().StringVar(&opts.last, "last", "", "start after the repository specified by `last`") | ||
option.ApplyFlags(&opts, cmd.Flags()) | ||
return cmd | ||
} | ||
|
||
func listRepository(opts repositoryOptions) error { | ||
ctx, _ := opts.SetLoggerLevel() | ||
reg, err := opts.Remote.NewRegistry(opts.hostname, opts.Common) | ||
if err != nil { | ||
return err | ||
} | ||
return reg.Repositories(ctx, opts.last, func(repos []string) error { | ||
for _, repo := range repos { | ||
fmt.Println(repo) | ||
} | ||
return nil | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters