-
Notifications
You must be signed in to change notification settings - Fork 6
/
store_value.go
64 lines (54 loc) · 1.32 KB
/
store_value.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
package revcatgo
import (
"errors"
"fmt"
"strings"
"gopkg.in/guregu/null.v4"
)
type store struct {
value null.String
}
const (
StoreAmazon = "AMAZON"
StorePlayStore = "PLAY_STORE"
StoreAppStore = "APP_STORE"
StoreStripe = "STRIPE"
StoreMacAppStore = "MAC_APP_STORE"
StorePromotional = "PROMOTIONAL"
)
var validStoreValues = []string{
StorePlayStore,
StoreAppStore,
StoreStripe,
StoreMacAppStore,
StorePromotional,
}
func newStore(s string) (*store, error) {
if !contains(validStoreValues, s) {
return &store{}, fmt.Errorf("store value should be one of the following: %v, got %v", strings.Join(validStoreValues, ", "), s)
}
return &store{value: null.StringFrom(s)}, nil
}
func (s *store) String() string {
return s.value.ValueOrZero()
}
func (s store) MarshalJSON() ([]byte, error) {
return s.value.MarshalJSON()
}
// UnmarshalJSON deserializes a store from JSON
func (s *store) UnmarshalJSON(b []byte) error {
v := &store{}
err := v.value.UnmarshalJSON(b)
if err != nil {
return fmt.Errorf("failed to unmarshal the value of store: %w", err)
}
if !v.value.Valid {
return errors.New("store is a required field")
}
_s, err := newStore(strings.ToUpper(v.value.ValueOrZero()))
if err != nil {
return fmt.Errorf("failed to unmarshal the value of store: %w", err)
}
s.value = _s.value
return nil
}