forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validation.go
183 lines (145 loc) · 6.56 KB
/
validation.go
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package validation
import (
"fmt"
"net/url"
"strings"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api/validation"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/fielderrors"
oapi "github.com/openshift/origin/pkg/api"
"github.com/openshift/origin/pkg/oauth/api"
uservalidation "github.com/openshift/origin/pkg/user/api/validation"
)
const MinTokenLength = 32
func ValidateTokenName(name string, prefix bool) (bool, string) {
if ok, reason := oapi.MinimalNameRequirements(name, prefix); !ok {
return ok, reason
}
if len(name) < MinTokenLength {
return false, fmt.Sprintf("must be at least %d characters long", MinTokenLength)
}
return true, ""
}
func ValidateRedirectURI(redirect string) (bool, string) {
if len(redirect) == 0 {
return true, ""
}
u, err := url.Parse(redirect)
if err != nil {
return false, err.Error()
}
if len(u.Fragment) != 0 {
return false, "may not contain a fragment"
}
for _, s := range strings.Split(u.Path, "/") {
if s == "." {
return false, "may not contain a path segment of ."
}
if s == ".." {
return false, "may not contain a path segment of .."
}
}
return true, ""
}
func ValidateAccessToken(accessToken *api.OAuthAccessToken) fielderrors.ValidationErrorList {
allErrs := fielderrors.ValidationErrorList{}
allErrs = append(allErrs, validation.ValidateObjectMeta(&accessToken.ObjectMeta, false, ValidateTokenName).Prefix("metadata")...)
allErrs = append(allErrs, ValidateClientNameField(accessToken.ClientName, "clientName")...)
allErrs = append(allErrs, ValidateUserNameField(accessToken.UserName, "userName")...)
if len(accessToken.UserUID) == 0 {
allErrs = append(allErrs, fielderrors.NewFieldRequired("userUID"))
}
if ok, msg := ValidateRedirectURI(accessToken.RedirectURI); !ok {
allErrs = append(allErrs, fielderrors.NewFieldInvalid("redirectURI", accessToken.RedirectURI, msg))
}
return allErrs
}
func ValidateAuthorizeToken(authorizeToken *api.OAuthAuthorizeToken) fielderrors.ValidationErrorList {
allErrs := fielderrors.ValidationErrorList{}
allErrs = append(allErrs, validation.ValidateObjectMeta(&authorizeToken.ObjectMeta, false, ValidateTokenName).Prefix("metadata")...)
allErrs = append(allErrs, ValidateClientNameField(authorizeToken.ClientName, "clientName")...)
allErrs = append(allErrs, ValidateUserNameField(authorizeToken.UserName, "userName")...)
if len(authorizeToken.UserUID) == 0 {
allErrs = append(allErrs, fielderrors.NewFieldRequired("userUID"))
}
if ok, msg := ValidateRedirectURI(authorizeToken.RedirectURI); !ok {
allErrs = append(allErrs, fielderrors.NewFieldInvalid("redirectURI", authorizeToken.RedirectURI, msg))
}
return allErrs
}
func ValidateClient(client *api.OAuthClient) fielderrors.ValidationErrorList {
allErrs := fielderrors.ValidationErrorList{}
allErrs = append(allErrs, validation.ValidateObjectMeta(&client.ObjectMeta, false, validation.NameIsDNSSubdomain).Prefix("metadata")...)
for i, redirect := range client.RedirectURIs {
if ok, msg := ValidateRedirectURI(redirect); !ok {
allErrs = append(allErrs, fielderrors.NewFieldInvalid(fmt.Sprintf("redirectURIs[%d]", i), redirect, msg))
}
}
return allErrs
}
func ValidateClientUpdate(client *api.OAuthClient, oldClient *api.OAuthClient) fielderrors.ValidationErrorList {
allErrs := fielderrors.ValidationErrorList{}
allErrs = append(allErrs, ValidateClient(client)...)
allErrs = append(allErrs, validation.ValidateObjectMetaUpdate(&client.ObjectMeta, &oldClient.ObjectMeta).Prefix("metadata")...)
return allErrs
}
func ValidateClientAuthorizationName(name string, prefix bool) (bool, string) {
if ok, reason := oapi.MinimalNameRequirements(name, prefix); !ok {
return ok, reason
}
parts := strings.Split(name, ":")
if len(parts) != 2 {
return false, "must be in the format <userName>:<clientName>"
}
userName := parts[0]
clientName := parts[1]
if len(userName) == 0 || len(clientName) == 0 {
return false, "must be in the format <userName>:<clientName>"
}
return true, ""
}
func ValidateClientAuthorization(clientAuthorization *api.OAuthClientAuthorization) fielderrors.ValidationErrorList {
allErrs := fielderrors.ValidationErrorList{}
expectedName := fmt.Sprintf("%s:%s", clientAuthorization.UserName, clientAuthorization.ClientName)
metadataErrs := validation.ValidateObjectMeta(&clientAuthorization.ObjectMeta, false, ValidateClientAuthorizationName).Prefix("metadata")
if len(metadataErrs) > 0 {
allErrs = append(allErrs, metadataErrs...)
} else if clientAuthorization.Name != expectedName {
allErrs = append(allErrs, fielderrors.NewFieldInvalid("metadata.name", clientAuthorization.Name, "must be in the format <userName>:<clientName>"))
}
allErrs = append(allErrs, ValidateClientNameField(clientAuthorization.ClientName, "clientName")...)
allErrs = append(allErrs, ValidateUserNameField(clientAuthorization.UserName, "userName")...)
if len(clientAuthorization.UserUID) == 0 {
allErrs = append(allErrs, fielderrors.NewFieldRequired("useruid"))
}
return allErrs
}
func ValidateClientAuthorizationUpdate(newAuth *api.OAuthClientAuthorization, oldAuth *api.OAuthClientAuthorization) fielderrors.ValidationErrorList {
allErrs := ValidateClientAuthorization(newAuth)
allErrs = append(allErrs, validation.ValidateObjectMetaUpdate(&newAuth.ObjectMeta, &oldAuth.ObjectMeta).Prefix("metadata")...)
if oldAuth.ClientName != newAuth.ClientName {
allErrs = append(allErrs, fielderrors.NewFieldInvalid("clientName", newAuth.ClientName, "clientName is not a mutable field"))
}
if oldAuth.UserName != newAuth.UserName {
allErrs = append(allErrs, fielderrors.NewFieldInvalid("userName", newAuth.UserName, "userName is not a mutable field"))
}
if oldAuth.UserUID != newAuth.UserUID {
allErrs = append(allErrs, fielderrors.NewFieldInvalid("userUID", newAuth.UserUID, "userUID is not a mutable field"))
}
return allErrs
}
func ValidateClientNameField(value string, field string) fielderrors.ValidationErrorList {
if len(value) == 0 {
return fielderrors.ValidationErrorList{fielderrors.NewFieldRequired(field)}
} else if ok, msg := validation.NameIsDNSSubdomain(value, false); !ok {
return fielderrors.ValidationErrorList{fielderrors.NewFieldInvalid(field, value, msg)}
}
return fielderrors.ValidationErrorList{}
}
func ValidateUserNameField(value string, field string) fielderrors.ValidationErrorList {
if len(value) == 0 {
return fielderrors.ValidationErrorList{fielderrors.NewFieldRequired(field)}
} else if ok, msg := uservalidation.ValidateUserName(value, false); !ok {
return fielderrors.ValidationErrorList{fielderrors.NewFieldInvalid(field, value, msg)}
}
return fielderrors.ValidationErrorList{}
}