|
| 1 | +package jsonapi |
| 2 | + |
| 3 | +import ( |
| 4 | + "errors" |
| 5 | +) |
| 6 | + |
| 7 | +// NullableAttr is a generic type, which implements a field that can be one of three states: |
| 8 | +// |
| 9 | +// - field is not set in the request |
| 10 | +// - field is explicitly set to `null` in the request |
| 11 | +// - field is explicitly set to a valid value in the request |
| 12 | +// |
| 13 | +// NullableAttr is intended to be used with JSON marshalling and unmarshalling. |
| 14 | +// This is generally useful for PATCH requests, where attributes with zero |
| 15 | +// values are intentionally not marshaled into the request payload so that |
| 16 | +// existing attribute values are not overwritten. |
| 17 | +// |
| 18 | +// Internal implementation details: |
| 19 | +// |
| 20 | +// - map[true]T means a value was provided |
| 21 | +// - map[false]T means an explicit null was provided |
| 22 | +// - nil or zero map means the field was not provided |
| 23 | +// |
| 24 | +// If the field is expected to be optional, add the `omitempty` JSON tags. Do NOT use `*NullableAttr`! |
| 25 | +// |
| 26 | +// Adapted from https://www.jvt.me/posts/2024/01/09/go-json-nullable/ |
| 27 | +type NullableAttr[T any] map[bool]T |
| 28 | + |
| 29 | +// NewNullableAttrWithValue is a convenience helper to allow constructing a |
| 30 | +// NullableAttr with a given value, for instance to construct a field inside a |
| 31 | +// struct without introducing an intermediate variable. |
| 32 | +func NewNullableAttrWithValue[T any](t T) NullableAttr[T] { |
| 33 | + var n NullableAttr[T] |
| 34 | + n.Set(t) |
| 35 | + return n |
| 36 | +} |
| 37 | + |
| 38 | +// NewNullNullableAttr is a convenience helper to allow constructing a NullableAttr with |
| 39 | +// an explicit `null`, for instance to construct a field inside a struct |
| 40 | +// without introducing an intermediate variable |
| 41 | +func NewNullNullableAttr[T any]() NullableAttr[T] { |
| 42 | + var n NullableAttr[T] |
| 43 | + n.SetNull() |
| 44 | + return n |
| 45 | +} |
| 46 | + |
| 47 | +// Get retrieves the underlying value, if present, and returns an error if the value was not present |
| 48 | +func (t NullableAttr[T]) Get() (T, error) { |
| 49 | + var empty T |
| 50 | + if t.IsNull() { |
| 51 | + return empty, errors.New("value is null") |
| 52 | + } |
| 53 | + if !t.IsSpecified() { |
| 54 | + return empty, errors.New("value is not specified") |
| 55 | + } |
| 56 | + return t[true], nil |
| 57 | +} |
| 58 | + |
| 59 | +// Set sets the underlying value to a given value |
| 60 | +func (t *NullableAttr[T]) Set(value T) { |
| 61 | + *t = map[bool]T{true: value} |
| 62 | +} |
| 63 | + |
| 64 | +// Set sets the underlying value to a given value |
| 65 | +func (t *NullableAttr[T]) SetInterface(value interface{}) { |
| 66 | + t.Set(value.(T)) |
| 67 | +} |
| 68 | + |
| 69 | +// IsNull indicate whether the field was sent, and had a value of `null` |
| 70 | +func (t NullableAttr[T]) IsNull() bool { |
| 71 | + _, foundNull := t[false] |
| 72 | + return foundNull |
| 73 | +} |
| 74 | + |
| 75 | +// SetNull sets the value to an explicit `null` |
| 76 | +func (t *NullableAttr[T]) SetNull() { |
| 77 | + var empty T |
| 78 | + *t = map[bool]T{false: empty} |
| 79 | +} |
| 80 | + |
| 81 | +// IsSpecified indicates whether the field was sent |
| 82 | +func (t NullableAttr[T]) IsSpecified() bool { |
| 83 | + return len(t) != 0 |
| 84 | +} |
| 85 | + |
| 86 | +// SetUnspecified sets the value to be absent from the serialized payload |
| 87 | +func (t *NullableAttr[T]) SetUnspecified() { |
| 88 | + *t = map[bool]T{} |
| 89 | +} |
0 commit comments