summaryrefslogtreecommitdiff
path: root/vendor/github.com/leodido/go-urn/scim.go
blob: f6b7aefbad3eee4cd69503415fe81a1fdaa55b7b (plain)
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
package urn

import (
	"encoding/json"
	"fmt"

	scimschema "github.com/leodido/go-urn/scim/schema"
)

const errInvalidSCIMURN = "invalid SCIM URN: %s"

type SCIM struct {
	Type  scimschema.Type
	Name  string
	Other string
	pos   int
}

func (s SCIM) MarshalJSON() ([]byte, error) {
	return json.Marshal(s.String())
}

func (s *SCIM) UnmarshalJSON(bytes []byte) error {
	var str string
	if err := json.Unmarshal(bytes, &str); err != nil {
		return err
	}
	// Parse as SCIM
	value, ok := Parse([]byte(str), WithParsingMode(RFC7643Only))
	if !ok {
		return fmt.Errorf(errInvalidSCIMURN, str)
	}
	if value.RFC() != RFC7643 {
		return fmt.Errorf(errInvalidSCIMURN, str)
	}
	*s = *value.SCIM()

	return nil
}

func (s *SCIM) String() string {
	ret := fmt.Sprintf("urn:ietf:params:scim:%s:%s", s.Type.String(), s.Name)
	if s.Other != "" {
		ret += fmt.Sprintf(":%s", s.Other)
	}

	return ret
}