-
Notifications
You must be signed in to change notification settings - Fork 55
/
server.go
249 lines (214 loc) · 6.39 KB
/
server.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
package scim
import (
"fmt"
"net/http"
"net/url"
"strconv"
"strings"
"github.com/elimity-com/scim/errors"
"github.com/elimity-com/scim/filter"
"github.com/elimity-com/scim/schema"
)
const (
defaultStartIndex = 1
fallbackCount = 100
)
// getFilter returns a validated filter if present in the url query, nil otherwise.
func getFilterValidator(r *http.Request, s schema.Schema, extensions ...schema.Schema) (*filter.Validator, error) {
f := strings.TrimSpace(r.URL.Query().Get("filter"))
if f == "" {
return nil, nil // No filter present.
}
validator, err := filter.NewValidator(f, s, extensions...)
if err != nil {
return nil, err
}
if err := validator.Validate(); err != nil {
return nil, err
}
return &validator, nil
}
func getIntQueryParam(r *http.Request, key string, def int) (int, error) {
strVal := r.URL.Query().Get(key)
if strVal == "" {
return def, nil
}
if intVal, err := strconv.Atoi(strVal); err == nil {
return intVal, nil
}
return 0, fmt.Errorf("invalid query parameter, \"%s\" must be an integer", key)
}
func parseIdentifier(path, endpoint string) (string, error) {
return url.PathUnescape(strings.TrimPrefix(path, endpoint+"/"))
}
// Server represents a SCIM server which implements the HTTP-based SCIM protocol
// that makes managing identities in multi-domain scenarios easier to support via a standardized service.
type Server struct {
config ServiceProviderConfig
resourceTypes []ResourceType
log Logger
}
func NewServer(args *ServerArgs, opts ...ServerOption) (Server, error) {
if args == nil {
return Server{}, fmt.Errorf("arguments not provided")
}
if args.ServiceProviderConfig == nil {
return Server{}, fmt.Errorf("service provider config not provided")
}
if args.ResourceTypes == nil {
return Server{}, fmt.Errorf("resource types not provided")
}
s := &Server{
config: *args.ServiceProviderConfig,
resourceTypes: args.ResourceTypes,
log: &noopLogger{},
}
for _, opt := range opts {
opt(s)
}
return *s, nil
}
// ServeHTTP dispatches the request to the handler whose pattern most closely matches the request URL.
func (s Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/scim+json")
path := strings.TrimPrefix(r.URL.Path, "/v2")
switch {
case path == "/Me":
s.errorHandler(w, &errors.ScimError{
Status: http.StatusNotImplemented,
})
return
case path == "/Schemas" && r.Method == http.MethodGet:
s.schemasHandler(w, r)
return
case strings.HasPrefix(path, "/Schemas/") && r.Method == http.MethodGet:
s.schemaHandler(w, r, strings.TrimPrefix(path, "/Schemas/"))
return
case path == "/ResourceTypes" && r.Method == http.MethodGet:
s.resourceTypesHandler(w, r)
return
case strings.HasPrefix(path, "/ResourceTypes/") && r.Method == http.MethodGet:
s.resourceTypeHandler(w, r, strings.TrimPrefix(path, "/ResourceTypes/"))
return
case path == "/ServiceProviderConfig":
s.serviceProviderConfigHandler(w, r)
return
}
for _, resourceType := range s.resourceTypes {
if path == resourceType.Endpoint {
switch r.Method {
case http.MethodPost:
s.resourcePostHandler(w, r, resourceType)
return
case http.MethodGet:
s.resourcesGetHandler(w, r, resourceType)
return
}
}
if strings.HasPrefix(path, resourceType.Endpoint+"/") {
id, err := parseIdentifier(path, resourceType.Endpoint)
if err != nil {
break
}
switch r.Method {
case http.MethodGet:
s.resourceGetHandler(w, r, id, resourceType)
return
case http.MethodPut:
s.resourcePutHandler(w, r, id, resourceType)
return
case http.MethodPatch:
s.resourcePatchHandler(w, r, id, resourceType)
return
case http.MethodDelete:
s.resourceDeleteHandler(w, r, id, resourceType)
return
}
}
}
s.errorHandler(w, &errors.ScimError{
Detail: "Specified endpoint does not exist.",
Status: http.StatusNotFound,
})
}
// getSchema extracts the schemas from the resources types defined in the server with given id.
func (s Server) getSchema(id string) schema.Schema {
for _, resourceType := range s.resourceTypes {
if resourceType.Schema.ID == id {
return resourceType.Schema
}
for _, extension := range resourceType.SchemaExtensions {
if extension.Schema.ID == id {
return extension.Schema
}
}
}
return schema.Schema{}
}
// getSchemas extracts all the schemas from the resources types defined in the server. Duplicate IDs will be ignored.
func (s Server) getSchemas() []schema.Schema {
ids := make([]string, 0)
schemas := make([]schema.Schema, 0)
for _, resourceType := range s.resourceTypes {
if !contains(ids, resourceType.Schema.ID) {
schemas = append(schemas, resourceType.Schema)
}
ids = append(ids, resourceType.Schema.ID)
for _, extension := range resourceType.SchemaExtensions {
if !contains(ids, extension.Schema.ID) {
schemas = append(schemas, extension.Schema)
}
ids = append(ids, extension.Schema.ID)
}
}
return schemas
}
func (s Server) parseRequestParams(r *http.Request, refSchema schema.Schema, refExtensions ...schema.Schema) (ListRequestParams, *errors.ScimError) {
invalidParams := make([]string, 0)
defaultCount := s.config.getItemsPerPage()
count, countErr := getIntQueryParam(r, "count", defaultCount)
if countErr != nil {
invalidParams = append(invalidParams, "count")
}
if count > defaultCount {
// Ensure the count isn't more then the allowable max.
count = defaultCount
}
if count < 0 {
// A negative value shall be interpreted as 0.
count = 0
}
startIndex, indexErr := getIntQueryParam(r, "startIndex", defaultStartIndex)
if indexErr != nil {
invalidParams = append(invalidParams, "startIndex")
}
if startIndex < 1 {
startIndex = defaultStartIndex
}
if len(invalidParams) > 0 {
scimErr := errors.ScimErrorBadParams(invalidParams)
return ListRequestParams{}, &scimErr
}
validator, err := getFilterValidator(r, refSchema, refExtensions...)
if err != nil {
return ListRequestParams{}, &errors.ScimErrorInvalidFilter
}
return ListRequestParams{
Count: count,
FilterValidator: validator,
StartIndex: startIndex,
}, nil
}
type ServerArgs struct {
ServiceProviderConfig *ServiceProviderConfig
ResourceTypes []ResourceType
}
type ServerOption func(*Server)
// WithLogger sets the logger for the server.
func WithLogger(logger Logger) ServerOption {
return func(s *Server) {
if logger != nil {
s.log = logger
}
}
}