Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ghcr.io: List packages based on whether owner is an org or a user #180

Merged
merged 6 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
127 changes: 57 additions & 70 deletions pkg/client/ghcr/ghcr.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ package ghcr
import (
"context"
"fmt"
"net/http"
"net/url"
"strings"
"time"

"github.com/gofri/go-github-ratelimit/github_ratelimit"
"github.com/google/go-github/v58/github"
Expand All @@ -17,27 +16,12 @@ type Options struct {
}

type Client struct {
*http.Client
Options
client *github.Client
opts Options
ownerTypes map[string]string
}

func New(opts Options) *Client {
return &Client{
Options: opts,
Client: &http.Client{
Timeout: time.Second * 5,
},
}
}

func (c *Client) Name() string {
return "ghcr"
}

func (c *Client) Tags(ctx context.Context, host, owner, repo string) ([]api.ImageTag, error) {
var err error
var tags []api.ImageTag

rateLimitDetection := func(ctx *github_ratelimit.CallbackContext) {
fmt.Printf("Hit Github Rate Limit, sleeping for %v", ctx.TotalSleepTime)
}
Expand All @@ -47,42 +31,49 @@ func (c *Client) Tags(ctx context.Context, host, owner, repo string) ([]api.Imag
if err != nil {
panic(err)
}
client := github.NewClient(ghRateLimiter).WithAuthToken(c.Token)

if repoExist(client, owner, repo) {
tags, err = getTagsFromRelease(client, owner, repo)
if err != nil {
return nil, err
}
} else {
client := github.NewClient(ghRateLimiter).WithAuthToken(opts.Token)

tags, err = getTagsFromOrgPackage(client, owner, repo)
if err != nil {
return nil, err
}
return &Client{
client: client,
opts: opts,
ownerTypes: map[string]string{},
}
return tags, nil
}

func repoExist(client *github.Client, owner string, repo string) bool {
_, _, err := client.Repositories.Get(context.TODO(), owner, repo)
return err == nil
func (c *Client) Name() string {
return "ghcr"
}

func getTagsFromOrgPackage(client *github.Client, owner string, repo string) ([]api.ImageTag, error) {
var tags []api.ImageTag
packageType := "container"
packageState := "active"
func (c *Client) Tags(ctx context.Context, host, owner, repo string) ([]api.ImageTag, error) {
// Choose the correct list packages function based on whether the owner
// is a user or an organization
getAllVersions := c.client.Organizations.PackageGetAllVersions
ownerType, err := c.ownerType(ctx, owner)
if err != nil {
return nil, fmt.Errorf("fetching owner type: %w", err)
}
if ownerType == "user" {
getAllVersions = c.client.Users.PackageGetAllVersions
// The User implementation doesn't path escape this for you:
// - https://github.com/google/go-github/blob/v58.0.0/github/users_packages.go#L136
// - https://github.com/google/go-github/blob/v58.0.0/github/orgs_packages.go#L105
repo = url.PathEscape(repo)
}

opts := &github.PackageListOptions{
PackageType: &packageType,
State: &packageState,
ListOptions: github.ListOptions{PerPage: 100},
PackageType: github.String("container"),
State: github.String("active"),
ListOptions: github.ListOptions{
PerPage: 100,
},
}

var tags []api.ImageTag

for {
versions, resp, err := client.Organizations.PackageGetAllVersions(context.TODO(), owner, packageType, repo, opts)
versions, resp, err := getAllVersions(ctx, owner, "container", repo, opts)
if err != nil {
return nil, fmt.Errorf("failed to get Org Package Versions: %s", err)
return nil, fmt.Errorf("getting versions: %w", err)
}

for _, ver := range versions {
Expand All @@ -96,7 +87,14 @@ func getTagsFromOrgPackage(client *github.Client, owner string, repo string) ([]
}

for _, tag := range ver.Metadata.Container.Tags {
if strings.HasSuffix(tag, ".att") { // Skip tags that are attestations
// Exclude attestations, signatures and sboms
if strings.HasSuffix(tag, ".att") {
continue
}
if strings.HasSuffix(tag, ".sig") {
continue
}
if strings.HasSuffix(tag, ".sbom") {
continue
}

Expand All @@ -110,35 +108,24 @@ func getTagsFromOrgPackage(client *github.Client, owner string, repo string) ([]
if resp.NextPage == 0 {
break
}

opts.ListOptions.Page = resp.NextPage
}

return tags, nil
}

func getTagsFromRelease(client *github.Client, owner string, repo string) ([]api.ImageTag, error) {
var tags []api.ImageTag
opt := &github.ListOptions{PerPage: 50}
for {
releases, resp, err := client.Repositories.ListReleases(context.TODO(), owner, repo, opt)
if err != nil {
return nil, fmt.Errorf("failed to get github Releases: %s", err)
}
func (c *Client) ownerType(ctx context.Context, owner string) (string, error) {
if ownerType, ok := c.ownerTypes[owner]; ok {
return ownerType, nil
}
user, _, err := c.client.Users.Get(ctx, owner)
if err != nil {
return "", fmt.Errorf("fetching user: %w", err)
}
ownerType := strings.ToLower(user.GetType())

for _, rel := range releases {
if rel.TagName == nil {
continue
}
tags = append(tags, api.ImageTag{
Tag: *rel.TagName,
SHA: "",
Timestamp: rel.PublishedAt.Time,
})
}
c.ownerTypes[owner] = ownerType

if resp.NextPage == 0 {
break
}
opt.Page = resp.NextPage
}
return tags, nil
return ownerType, nil
}
19 changes: 10 additions & 9 deletions pkg/client/ghcr/path.go
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
package ghcr

import (
"regexp"
"strings"
)

var (
reg = regexp.MustCompile(`^ghcr.io$`)
)

func (c *Client) IsHost(host string) bool {
return reg.MatchString(host)
return host == "ghcr.io"
}

func (c *Client) RepoImageFromPath(path string) (string, string) {
lastIndex := strings.LastIndex(path, "/")

return path[:lastIndex], path[lastIndex+1:]
var owner, pkg string
parts := strings.SplitN(path, "/", 2)
if len(parts) > 0 {
owner = parts[0]
}
if len(parts) > 1 {
pkg = parts[1]
}
return owner, pkg
}
16 changes: 13 additions & 3 deletions pkg/client/ghcr/path_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,25 @@ func TestRepoImage(t *testing.T) {
path string
expRepo, expImage string
}{
"empty path should be interpreted as an empty repo and image": {
path: "",
expRepo: "",
expImage: "",
},
"one segement should be interpreted as 'repo'": {
path: "jetstack-cre",
expRepo: "jetstack-cre",
expImage: "",
},
"two segments to path should return both": {
path: "jetstack-cre/version-checker",
expRepo: "jetstack-cre",
expImage: "version-checker",
},
"multiple segments to path should return all in repo, last segment image": {
"multiple segments to path should return first segment in repo, rest in image": {
path: "k8s-artifacts-prod/ingress-nginx/nginx",
expRepo: "k8s-artifacts-prod/ingress-nginx",
expImage: "nginx",
expRepo: "k8s-artifacts-prod",
expImage: "ingress-nginx/nginx",
},
}

Expand Down
Loading