This repository was archived by the owner on Nov 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsecurity_requirement.go
More file actions
85 lines (72 loc) · 2.17 KB
/
security_requirement.go
File metadata and controls
85 lines (72 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package spec3
import (
"fmt"
jlexer "github.com/mailru/easyjson/jlexer"
jwriter "github.com/mailru/easyjson/jwriter"
)
// SecurityRequirement lists the required security schemes to execute this operation. The name used for each property MUST correspond to a security scheme declared in the Security Schemes under the Components Object.
type SecurityRequirement struct {
data OrderedMap
}
// Get gets the security requirement by key
func (s *SecurityRequirement) Get(key string) []string {
v, ok := s.data.GetOK(key)
if !ok {
return nil
}
sr, ok := v.([]string)
if !ok {
return nil
}
return sr
}
// GetOK checks if the key exists in the security requirement
func (s *SecurityRequirement) GetOK(key string) ([]string, bool) {
v, ok := s.data.GetOK(key)
if !ok {
return nil, ok
}
sr, ok := v.([]string)
return sr, ok
}
// Set sets the value to the security requirement
func (s *SecurityRequirement) Set(key string, scopes ...string) bool {
return s.data.Set(key, scopes)
}
// ForEach executes the function for each security requirement
func (s *SecurityRequirement) ForEach(fn func(string, []string) error) error {
for _, k := range s.data.Keys() {
scopes, ok := s.data.Get(k).([]string)
if !ok {
return fmt.Errorf("security requirement scopes not a []string but %T", s.data.Get(k))
}
if err := fn(k, scopes); err != nil {
return err
}
}
return nil
}
// Keys gets the list of keys
func (s *SecurityRequirement) Keys() []string {
return s.data.Keys()
}
// MarshalJSON supports json.Marshaler interface
func (s SecurityRequirement) MarshalJSON() ([]byte, error) {
w := jwriter.Writer{}
encodeSortedMap(&w, s.data)
return w.Buffer.BuildBytes(), w.Error
}
// MarshalEasyJSON supports easyjson.Marshaler interface
func (s SecurityRequirement) MarshalEasyJSON(w *jwriter.Writer) {
encodeSortedMap(w, s.data)
}
// UnmarshalJSON supports json.Unmarshaler interface
func (s *SecurityRequirement) UnmarshalJSON(data []byte) error {
r := jlexer.Lexer{Data: data}
decodeSortedMap(&r, &s.data)
return r.Error()
}
// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (s *SecurityRequirement) UnmarshalEasyJSON(l *jlexer.Lexer) {
decodeSortedMap(l, &s.data)
}