@@ -2,13 +2,40 @@ package scopes
2
2
3
3
import (
4
4
"fmt"
5
+ "slices"
5
6
"strings"
6
7
7
8
"github.com/spf13/cobra"
8
9
)
9
10
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
+
10
37
type CommandScopes struct {
11
- Required [] Scope
38
+ Required Scopes
12
39
}
13
40
14
41
func ValidateCommandScopes (cmd * cobra.Command , tokenScopes []string ) error {
@@ -17,12 +44,10 @@ func ValidateCommandScopes(cmd *cobra.Command, tokenScopes []string) error {
17
44
}
18
45
19
46
func GetCommandScopes (cmd * cobra.Command ) CommandScopes {
20
- required := [] Scope {}
47
+ required := Scopes {}
21
48
22
49
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 )
26
51
}
27
52
28
53
return CommandScopes {
@@ -34,14 +59,7 @@ func ValidateScopes(cmdScopes CommandScopes, tokenScopes []string) error {
34
59
missingRequired := []string {}
35
60
36
61
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 )) {
45
63
missingRequired = append (missingRequired , string (requiredScope ))
46
64
}
47
65
}
0 commit comments