3
0
corteza/system/scim/patch_payloads.go
Vivek Patel 1fd9bdfa7c Extends SCIM implementation to support role membership management
- Updates request payload for patching group
- Updates tests
2021-05-11 17:01:03 +05:30

51 lines
1.1 KiB
Go

package scim
import (
"encoding/json"
"fmt"
"io"
"regexp"
)
const (
urnPatchOp = "urn:ietf:params:scim:schemas:core:2.0:PatchOp"
patchOpAdd = "add"
patchOpRemove = "remove"
)
type (
// very crud operations support
operationsRequest struct {
Schemas []string `json:"schemas"`
Operations []operationRequest `json:"Operations"`
}
operationRequest struct {
Operation string `json:"op"`
Path string `json:"path"`
Value map[string]string
}
)
func (req *operationsRequest) decodeJSON(r io.Reader) error {
if err := json.NewDecoder(r).Decode(req); err != nil {
return fmt.Errorf("could not decode operations payload: %w", err)
}
// Compiles req.Path and updates req.Value
for i, op := range req.Operations {
r := regexp.MustCompile(`([a-z]\w+)\[value eq \"([\w]{8}-[\w]{4}-[\w]{4}-[\w]{4}-[\w]{12})\"\]`)
strings := r.FindStringSubmatch(op.Path)
if len(strings) == 3 {
key := strings[1]
if op.Value == nil {
op.Value = make(map[string]string)
}
op.Value[key] = strings[2]
req.Operations[i].Value = op.Value
}
}
return nil
}