/internal/domain/uuid.go
https://bitbucket.org/kamilsk/passport · Go · 24 lines · 13 code · 6 blank · 5 comment · 3 complexity · b0a11aace52c7b7f056db8cc72ae03a5 MD5 · raw file
- package domain
- import "regexp"
- // [4] means that supported only v4.
- var uuid = regexp.MustCompile(`(?i:^[0-9A-F]{8}-[0-9A-F]{4}-[4][0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$)`)
- // UUID wraps built-in `string` type and provides useful methods above it.
- type UUID string
- // IsEmpty returns true if the UUID has empty value.
- func (s UUID) IsEmpty() bool {
- return s == ""
- }
- // IsValid returns true if the UUID is compatible with RFC 4122.
- func (s UUID) IsValid() bool {
- return !(s == "") && uuid.MatchString(string(s)) // IsEmpty and String were inlined manually
- }
- // String implements built-in `fmt.Stringer` interface and returns string representation of the UUID.
- func (s UUID) String() string {
- return string(s)
- }