-
Notifications
You must be signed in to change notification settings - Fork 26
/
structs.go
276 lines (249 loc) · 8.08 KB
/
structs.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
package main
import "bufio"
type track struct {
Success bool `json:"success"`
Result struct {
AppToken string `json:"app_token"`
TrackID int `json:"track_id"`
} `json:"result"`
}
type grant struct {
Success bool `json:"success"`
Result struct {
Status string `json:"status"`
Challenge string `json:"challenge"`
} `json:"result"`
}
type challenge struct {
Success bool `json:"success"`
Result struct {
LoggedIN bool `json:"logged_in,omitempty"`
Challenge string `json:"challenge"`
} `json:"result"`
}
type session struct {
AppID string `json:"app_id"`
Password string `json:"password"`
}
type sessionToken struct {
Msg string `json:"msg,omitempty"`
Success bool `json:"success"`
UID string `json:"uid,omitempty"`
ErrorCode string `json:"error_code,omitempty"`
Result struct {
SessionToken string `json:"session_token,omitempty"`
Challenge string `json:"challenge"`
Permissions struct {
Settings bool `json:"settings,omitempty"`
Contacts bool `json:"contacts,omitempty"`
Calls bool `json:"calls,omitempty"`
Explorer bool `json:"explorer,omitempty"`
Downloader bool `json:"downloader,omitempty"`
Parental bool `json:"parental,omitempty"`
Pvr bool `json:"pvr,omitempty"`
Home bool `json:"home,omitempty"`
Camera bool `json:"camera,omitempty"`
} `json:"permissions,omitempty"`
} `json:"result"`
}
type rrd struct {
UID string `json:"uid,omitempty"`
Success bool `json:"success"`
Msg string `json:"msg,omitempty"`
Result struct {
DateStart int `json:"date_start,omitempty"`
DateEnd int `json:"date_end,omitempty"`
Data []map[string]int64 `json:"data,omitempty"`
} `json:"result"`
ErrorCode string `json:"error_code"`
}
// https://dev.freebox.fr/sdk/os/connection/
type connectionXdsl struct {
Success bool `json:"success"`
Result struct {
Status struct {
Status string `json:"status"`
Modulation string `json:"modulation"`
Protocol string `json:"protocol"`
Uptime int `json:"uptime"`
} `json:"status"`
Down struct {
Attn int `json:"attn"`
Attn10 int `json:"attn_10"`
Crc int `json:"crc"`
Es int `json:"es"`
Fec int `json:"fec"`
Ginp bool `json:"ginp"`
Hec int `json:"hec"`
Maxrate uint64 `json:"maxrate"`
Nitro bool `json:"nitro"`
Phyr bool `json:"phyr"`
Rate int `json:"rate"`
RtxC int `json:"rtx_c,omitempty"`
RtxTx int `json:"rtx_tx,omitempty"`
RtxUc int `json:"rtx_uc,omitempty"`
Rxmt int `json:"rxmt"`
RxmtCorr int `json:"rxmt_corr"`
RxmtUncorr int `json:"rxmt_uncorr"`
Ses int `json:"ses"`
Snr int `json:"snr"`
Snr10 int `json:"snr_10"`
} `json:"down"`
Up struct {
Attn int `json:"attn"`
Attn10 int `json:"attn_10"`
Crc int `json:"crc"`
Es int `json:"es"`
Fec int `json:"fec"`
Ginp bool `json:"ginp"`
Hec int `json:"hec"`
Maxrate uint64 `json:"maxrate"`
Nitro bool `json:"nitro"`
Phyr bool `json:"phyr"`
Rate uint64 `json:"rate"`
RtxC int `json:"rtx_c,omitempty"`
RtxTx int `json:"rtx_tx,omitempty"`
RtxUc int `json:"rtx_uc,omitempty"`
Rxmt int `json:"rxmt"`
RxmtCorr int `json:"rxmt_corr"`
RxmtUncorr int `json:"rxmt_uncorr"`
Ses int `json:"ses"`
Snr int `json:"snr"`
Snr10 int `json:"snr_10"`
} `json:"up"`
}
}
type database struct {
DB string `json:"db"`
DateStart int `json:"date_start,omitempty"`
DateEnd int `json:"date_end,omitempty"`
Precision int `json:"precision,omitempty"`
Fields []string `json:"fields"`
}
// https://dev.freebox.fr/sdk/os/freeplug/
type freeplug struct {
Success bool `json:"success"`
Result []freeplugNetwork `json:"result"`
}
type freeplugNetwork struct {
ID string `json:"id"`
Members []freeplugMember `json:"members"`
}
type freeplugMember struct {
ID string `json:"id"`
Local bool `json:"local"`
NetRole string `json:"net_role"`
EthPortStatus string `json:"eth_port_status"`
EthFullDuplex bool `json:"eth_full_duplex"`
HasNetwork bool `json:"has_network"`
EthSpeed int `json:"eth_speed"`
Inative int `json:"inactive"`
NetID string `json:"net_id"`
RxRate int64 `json:"rx_rate"`
TxRate int64 `json:"tx_rate"`
Model string `json:"model"`
}
// https://dev.freebox.fr/sdk/os/lan/
type l3c struct {
Addr string `json:"addr,omitempty"`
}
type lanHost struct {
Reachable bool `json:"reachable,omitempty"`
PrimaryName string `json:"primary_name,omitempty"`
Vendor_name string `json:"vendor_name,omitempty"`
L3c []l3c `json:"l3connectivities,omitempty"`
}
type lan struct {
Success bool `json:"success"`
Result []lanHost `json:"result"`
ErrorCode string `json:"error_code"`
}
type idNameValue struct {
ID string `json:"id,omitempty"`
Name string `json:"name,omitempty"`
Value int `json:"value,omitempty"`
}
// https://dev.freebox.fr/sdk/os/system/
type system struct {
Success bool `json:"success"`
Result struct {
Mac string `json:"mac,omitempty"`
FanRPM int `json:"fan_rpm,omitempty"`
BoxFlavor string `json:"box_flavor,omitempty"`
TempCpub int `json:"temp_cpub,omitempty"`
TempCpum int `json:"temp_cpum,omitempty"`
DiskStatus string `json:"disk_status,omitempty"`
TempHDD int `json:"temp_hdd,omitempty"`
BoardName string `json:"board_name,omitempty"`
TempSW int `json:"temp_sw,omitempty"`
Uptime string `json:"uptime,omitempty"`
UptimeVal int `json:"uptime_val,omitempty"`
UserMainStorage string `json:"user_main_storage,omitempty"`
BoxAuthenticated bool `json:"box_authenticated,omitempty"`
Serial string `json:"serial,omitempty"`
FirmwareVersion string `json:"firmware_version,omitempty"`
}
}
// https://dev.freebox.fr/sdk/os/wifi/
type wifiAccessPoint struct {
Name string `json:"name,omitempty"`
ID int `json:"id,omitempty"`
}
type wifi struct {
Success bool `json:"success"`
Result []wifiAccessPoint `json:"result,omitempty"`
}
type wifiStation struct {
Hostname string `json:"hostname,omitempty"`
MAC string `json:"mac,omitempty"`
State string `json:"state,omitempty"`
Inactive int `json:"inactive,omitempty"`
RXBytes int64 `json:"rx_bytes,omitempty"`
TXBytes int64 `json:"tx_bytes,omitempty"`
ConnectionDuration int `json:"conn_duration,omitempty"`
TXRate int64 `json:"tx_rate,omitempty"`
RXRate int64 `json:"rx_rate,omitempty"`
Signal int `json:"signal,omitempty"`
}
type wifiStations struct {
Success bool `json:"success"`
Result []wifiStation `json:"result,omitempty"`
}
type app struct {
AppID string `json:"app_id"`
AppName string `json:"app_name"`
AppVersion string `json:"app_version"`
DeviceName string `json:"device_name"`
}
type api struct {
authz string
login string
loginSession string
}
type store struct {
location string
}
type authInfo struct {
myApp app
myAPI api
myStore store
myReader *bufio.Reader
}
type postRequest struct {
method, url, header string
}
// https://dev.freebox.fr/sdk/os/vpn/
type vpnServer struct {
Success bool `json:"success"`
Result []struct {
RxBytes int64 `json:"rx_bytes,omitempty"`
Authenticated bool `json:"authenticated,omitempty"`
TxBytes int64 `json:"tx_bytes,omitempty"`
User string `json:"user,omitempty"`
ID string `json:"id,omitempty"`
Vpn string `json:"vpn,omitempty"`
SrcIP string `json:"src_ip,omitempty"`
AuthTime int32 `json:"auth_time,omitempty"`
LocalIP string `json:"local_ip,omitempty"`
} `json:"result,omitempty"`
}