-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenums.go
192 lines (170 loc) · 2.75 KB
/
enums.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
package mistclient
import (
"encoding/json"
"fmt"
)
type TicketStatus int
const (
Open TicketStatus = iota + 1
Pending
Solved
Closed
Hold
)
func (ts TicketStatus) String() string {
switch ts {
case Open:
return "open"
case Pending:
return "pending"
case Solved:
return "solved"
case Closed:
return "closed"
case Hold:
return "hold"
default:
return "unknown"
}
}
func TicketStatusFromString(status string) TicketStatus {
switch status {
case "open":
return Open
case "pendng":
return Pending
case "solved":
return Solved
case "closed":
return Closed
case "hold":
return Hold
default:
return 0
}
}
type DeviceType int
const (
AP DeviceType = iota + 1
Switch
Gateway
)
func (dt DeviceType) String() string {
switch dt {
case AP:
return "ap"
case Switch:
return "switch"
case Gateway:
return "gateway"
default:
return "unknown"
}
}
func DeviceTypeFromString(dt string) DeviceType {
switch dt {
case "ap":
return AP
case "switch":
return Switch
case "gateway":
return Gateway
default:
return 0
}
}
func (dt *DeviceType) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return err
}
*dt = DeviceTypeFromString(s)
return nil
}
type DeviceStatus int
const (
Connected DeviceStatus = iota + 1
Disconnected
Restarting
Upgrading
)
func (ds DeviceStatus) String() string {
switch ds {
case Connected:
return "connected"
case Disconnected:
return "disconnected"
case Restarting:
return "restarting"
case Upgrading:
return "upgrading"
default:
return "unknown"
}
}
func DeviceStatusFromString(ds string) DeviceStatus {
switch ds {
case "connected":
return Connected
case "disconnected":
return Disconnected
case "restarting":
return Restarting
case "upgrading":
return Upgrading
default:
return 0
}
}
func (ds *DeviceStatus) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return err
}
*ds = DeviceStatusFromString(s)
return nil
}
type Radio int
const (
Band6 Radio = iota + 1
Band5
Band24
)
func (r Radio) String() string {
switch r {
case Band6:
return "band_6"
case Band5:
return "band_5"
case Band24:
return "band_24"
default:
return "unknown"
}
}
func RadioFromString(r string) Radio {
switch r {
case "band_6":
return Band6
case "band_5":
return Band5
case "band_24":
return Band24
default:
return 0
}
}
func (r *Radio) unmarshal(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return fmt.Errorf("JSON error: %+q", data)
}
*r = RadioFromString(s)
return nil
}
func (r *Radio) UnmarshalText(b []byte) error {
return r.unmarshal(b)
}
func (r *Radio) UnmarshalJSON(b []byte) error {
return r.unmarshal(b)
}