Skip to content

Commit 5ed7af8

Browse files
Inozumamcncl
andauthored
Fix build download command required scopes (#457)
Co-authored-by: Ben McNicholl <[email protected]>
1 parent 5ca2488 commit 5ed7af8

File tree

2 files changed

+32
-14
lines changed

2 files changed

+32
-14
lines changed

internal/validation/scopes/scopes.go

+31-13
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,40 @@ package scopes
22

33
import (
44
"fmt"
5+
"slices"
56
"strings"
67

78
"github.com/spf13/cobra"
89
)
910

11+
// Scopes is a helper class to manipulate a list of scopes.
12+
type Scopes []Scope
13+
14+
// NewScopes creates a new Scopes from the given list of scopes.
15+
func NewScopes(scopes ...Scope) Scopes {
16+
return scopes
17+
}
18+
19+
// NewScopesFromString a list of scopes separated by "," from string s.
20+
func NewScopesFromString(s string) Scopes {
21+
var scopes Scopes
22+
for _, scope := range strings.Split(s, ",") {
23+
scopes = append(scopes, Scope(strings.TrimSpace(scope)))
24+
}
25+
return scopes
26+
}
27+
28+
// String builds a string with the list of scopes joined by ",".
29+
func (scopes Scopes) String() string {
30+
var strs []string
31+
for _, scope := range scopes {
32+
strs = append(strs, string(scope))
33+
}
34+
return strings.Join(strs, ",")
35+
}
36+
1037
type CommandScopes struct {
11-
Required []Scope
38+
Required Scopes
1239
}
1340

1441
func ValidateCommandScopes(cmd *cobra.Command, tokenScopes []string) error {
@@ -17,12 +44,10 @@ func ValidateCommandScopes(cmd *cobra.Command, tokenScopes []string) error {
1744
}
1845

1946
func GetCommandScopes(cmd *cobra.Command) CommandScopes {
20-
required := []Scope{}
47+
required := Scopes{}
2148

2249
if reqScopes, ok := cmd.Annotations["requiredScopes"]; ok {
23-
for _, scope := range strings.Split(reqScopes, ",") {
24-
required = append(required, Scope(strings.TrimSpace(scope)))
25-
}
50+
required = NewScopesFromString(reqScopes)
2651
}
2752

2853
return CommandScopes{
@@ -34,14 +59,7 @@ func ValidateScopes(cmdScopes CommandScopes, tokenScopes []string) error {
3459
missingRequired := []string{}
3560

3661
for _, requiredScope := range cmdScopes.Required {
37-
found := false
38-
for _, tokenScope := range tokenScopes {
39-
if string(requiredScope) == tokenScope {
40-
found = true
41-
break
42-
}
43-
}
44-
if !found {
62+
if !slices.Contains(tokenScopes, string(requiredScope)) {
4563
missingRequired = append(missingRequired, string(requiredScope))
4664
}
4765
}

pkg/cmd/build/download.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func NewCmdBuildDownload(f *factory.Factory) *cobra.Command {
102102
}
103103

104104
cmd.Annotations = map[string]string{
105-
"requiredScopes": fmt.Sprint(string(scopes.ReadBuilds), string(scopes.ReadArtifacts), string(scopes.ReadBuildLogs)),
105+
"requiredScopes": scopes.NewScopes(scopes.ReadBuilds, scopes.ReadArtifacts, scopes.ReadBuildLogs).String(),
106106
}
107107

108108
cmd.Flags().BoolVarP(&mine, "mine", "m", false, "Filter builds to only my user.")

0 commit comments

Comments
 (0)