forked from use-go/onvif
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDevice.go
409 lines (343 loc) · 10.5 KB
/
Device.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
package onvif
import (
"context"
"errors"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"path"
"strconv"
"strings"
"time"
"github.com/beevik/etree"
"github.com/neirolis/onvif-go/device"
"github.com/neirolis/onvif-go/networking"
wsdiscovery "github.com/neirolis/onvif-go/ws-discovery"
)
//DeviceType alias for int
type DeviceType int
// Onvif Device Tyoe
const (
NVD DeviceType = iota
NVS
NVA
NVT
)
func (devType DeviceType) String() string {
stringRepresentation := []string{
"NetworkVideoDisplay",
"NetworkVideoStorage",
"NetworkVideoAnalytics",
"NetworkVideoTransmitter",
}
i := uint8(devType)
switch {
case i <= uint8(NVT):
return stringRepresentation[i]
default:
return strconv.Itoa(int(i))
}
}
//DeviceInfo struct contains general information about ONVIF device
type DeviceInfo struct {
Manufacturer string
Model string
FirmwareVersion string
SerialNumber string
HardwareId string
Location string
MAC string
}
func (info *DeviceInfo) Name() string {
if len(info.Manufacturer) > 0 && !strings.Contains(strings.ToLower(info.Model), strings.ToLower(info.Manufacturer)) {
return fmt.Sprintf("%s %s", info.Manufacturer, info.Model)
}
return info.Model
}
//Device for a new device of onvif and DeviceInfo
//struct represents an abstract ONVIF device.
//It contains methods, which helps to communicate with ONVIF device
type Device struct {
params DeviceParams
endpoints map[string]string
info DeviceInfo
deltaTime time.Duration
}
type DeviceParams struct {
Xaddr string
Username string
Password string
HttpClient *http.Client
}
//GetXaddr return IP address.
func (dev *Device) GetXaddr() string {
return dev.params.Xaddr
}
//DeltaTime return delta time between local time and device time (time.Now() - deviceTime).
func (dev *Device) DeltaTime() time.Duration {
return dev.deltaTime
}
//GetServices return available endpoints
func (dev *Device) GetServices() map[string]string {
return dev.endpoints
}
//GetServices return available endpoints
func (dev *Device) GetDeviceInfo() DeviceInfo {
return dev.info
}
func readResponse(resp *http.Response) string {
b, err := ioutil.ReadAll(resp.Body)
if err != nil {
panic(err)
}
return string(b)
}
//GetAvailableDevicesAtSpecificEthernetInterface ...
func GetAvailableDevicesAtSpecificEthernetInterface(interfaceName string) []Device {
/*
Call an ws-discovery Probe Message to Discover NVT type Devices
*/
devices := wsdiscovery.SendProbe(interfaceName, nil, []string{"dn:" + NVT.String()}, map[string]string{"dn": "http://www.onvif.org/ver10/network/wsdl"})
nvtDevices := make([]Device, 0)
existDevices := make(map[string]bool)
for _, j := range devices {
doc := etree.NewDocument()
if err := doc.ReadFromString(j); err != nil {
fmt.Errorf("%s", err.Error())
return nil
}
endpoints := doc.Root().FindElements("./Body/ProbeMatches/ProbeMatch/XAddrs")
for _, xaddr := range endpoints {
xaddr := strings.Split(strings.Split(xaddr.Text(), " ")[0], "/")[2]
fmt.Println(xaddr)
c := 0
for c = 0; c < len(nvtDevices); c++ {
if nvtDevices[c].params.Xaddr == xaddr {
fmt.Println(nvtDevices[c].params.Xaddr, "==", xaddr)
break
}
}
if c < len(nvtDevices) {
continue
}
dev := NewDevice(DeviceParams{Xaddr: strings.Split(xaddr, " ")[0]})
_, err := dev.Inspect()
if err != nil {
fmt.Println("Error", xaddr)
fmt.Println(err)
continue
} else {
dev.lookupScopes(doc)
nvtDevices = append(nvtDevices, *dev)
existDevices[xaddr] = true
}
}
}
for _, j := range wsdiscovery.SendProbeHikvision(interfaceName) {
dev := NewDevice(DeviceParams{})
doc := etree.NewDocument()
if err := doc.ReadFromString(j); err != nil {
fmt.Errorf("%s", err.Error())
continue
}
if dev.LookupHikvisionProbeMatch(doc) && existDevices[dev.params.Xaddr] == false {
nvtDevices = append(nvtDevices, *dev)
existDevices[dev.params.Xaddr] = true
}
}
return nvtDevices
}
func (dev *Device) getSupportedServices(data []byte) error {
doc := etree.NewDocument()
if err := doc.ReadFromBytes(data); err != nil {
return err
}
services := doc.FindElements("./Envelope/Body/GetCapabilitiesResponse/Capabilities/*/XAddr")
for _, j := range services {
dev.addEndpoint(j.Parent().Tag, j.Text())
}
extension_services := doc.FindElements("./Envelope/Body/GetCapabilitiesResponse/Capabilities/Extension/*/XAddr")
for _, j := range extension_services {
dev.addEndpoint(j.Parent().Tag, j.Text())
}
return nil
}
// lookup scopes by path ./Body/ProbeMatches/ProbeMatch/Scopes
// ex: <d:Scopes>onvif://www.onvif.org/type/video_encoder onvif://www.onvif.org/hardware/DS-2CD2042WD-I onvif://www.onvif.org/name/HIKVISION%20DS-2CD2042WD-I</d:Scopes>
func (dev *Device) lookupScopes(doc *etree.Document) {
elem := doc.Root().FindElement("./Body/ProbeMatches/ProbeMatch/Scopes")
if elem == nil {
return
}
for _, scope := range strings.Split(elem.Text(), " ") {
u, err := url.Parse(scope)
if err != nil {
continue
}
upath := strings.ToLower(u.Path)
switch {
case strings.Contains(upath, "hardware"):
_, dev.info.HardwareId = path.Split(u.Path)
case strings.Contains(upath, "name"):
_, dev.info.Model = path.Split(u.Path)
case strings.Contains(upath, "location"):
_, dev.info.Location = path.Split(u.Path)
case strings.Contains(upath, "mac"):
_, dev.info.MAC = path.Split(u.Path)
}
}
return
}
//LookupHikvisionProbeMatch get Hikvision info
func (dev *Device) LookupHikvisionProbeMatch(doc *etree.Document) bool {
probeMatch := doc.Root()
if probeMatch == nil {
return false
}
dev.info.Manufacturer = "HIKVISION"
for _, child := range probeMatch.ChildElements() {
switch {
case child.Tag == "DeviceDescription":
dev.info.Model = fmt.Sprintf("HIKVISION %s", child.Text())
case child.Tag == "DeviceSN":
dev.info.SerialNumber = child.Text()
case child.Tag == "MAC":
dev.info.MAC = strings.ReplaceAll(child.Text(), "-", ":")
case child.Tag == "SoftwareVersion":
dev.info.FirmwareVersion = child.Text()
case child.Tag == "IPv4Address":
dev.params.Xaddr = child.Text()
}
}
return len(dev.params.Xaddr) > 0
}
//NewDevice function construct a ONVIF Device entity
func NewDevice(params DeviceParams) *Device {
dev := Device{
params: params,
endpoints: make(map[string]string),
}
dev.addEndpoint("Device", "http://"+dev.params.Xaddr+"/onvif/device_service")
if dev.params.HttpClient == nil {
dev.params.HttpClient = new(http.Client)
}
return &dev
}
func (dev *Device) CreateRequest(method interface{}) *networking.Request {
return networking.NewRequest(dev, method).
WithHttpClient(dev.params.HttpClient).
WithUsernamePassword(dev.params.Username, dev.params.Password)
}
func (dev *Device) Inspect() (*device.GetCapabilitiesResponse, error) {
return dev.inspect(nil)
}
func (dev *Device) InspectWithCtx(ctx context.Context) (*device.GetCapabilitiesResponse, error) {
return dev.inspect(ctx)
}
func (dev *Device) inspect(ctx context.Context) (*device.GetCapabilitiesResponse, error) {
_, err := dev.updateDeltaTime(ctx)
if err != nil {
return nil, err
}
resp := dev.CreateRequest(device.GetCapabilities{Category: "All"}).WithContext(ctx).Do()
if resp.Error() != nil {
return nil, resp.Error()
}
if !resp.StatusOK() {
return nil, errors.New("camera is not available at " + dev.params.Xaddr + " or it does not support ONVIF services")
}
body, err := resp.Body()
if err != nil {
return nil, err
}
if err = dev.getSupportedServices(body); err != nil {
return nil, err
}
capabilitiesResponse := device.GetCapabilitiesResponse{}
if err = resp.Unmarshal(&capabilitiesResponse); err != nil {
return nil, err
}
return &capabilitiesResponse, nil
}
func (dev *Device) UpdateDeltaTime() (time.Duration, error) {
return dev.updateDeltaTime(nil)
}
func (dev *Device) UpdateDeltaTimeCtx(ctx context.Context) (time.Duration, error) {
return dev.updateDeltaTime(ctx)
}
func (dev *Device) updateDeltaTime(ctx context.Context) (time.Duration, error) {
resp := dev.CreateRequest(device.GetSystemDateAndTime{}).WithContext(ctx).Do()
if resp.Error() != nil {
return 0, resp.Error()
}
systemDateAndTime := device.GetSystemDateAndTimeResponse{}
if err := resp.Unmarshal(&systemDateAndTime); err != nil {
return 0, err
}
date := systemDateAndTime.SystemDateAndTime.UTCDateTime
deviceTime := time.Date(
int(date.Date.Year),
time.Month(date.Date.Month),
int(date.Date.Day),
int(date.Time.Hour),
int(date.Time.Minute),
int(date.Time.Second),
0,
time.UTC,
)
localTime := time.Now().UTC()
dev.deltaTime = localTime.Sub(deviceTime)
return dev.deltaTime, nil
}
func (dev *Device) UpdateDeviceInfo(ctx context.Context) (DeviceInfo, error) {
resp := dev.CreateRequest(device.GetDeviceInformation{}).WithContext(ctx).Do()
if resp.Error() != nil {
return dev.info, resp.Error()
}
deviceInformationResponse := device.GetDeviceInformationResponse{}
if err := resp.Unmarshal(&deviceInformationResponse); err != nil {
return dev.info, err
}
dev.info.Manufacturer = deviceInformationResponse.Manufacturer
dev.info.Model = deviceInformationResponse.Model
dev.info.FirmwareVersion = deviceInformationResponse.FirmwareVersion
dev.info.SerialNumber = deviceInformationResponse.SerialNumber
dev.info.HardwareId = deviceInformationResponse.HardwareId
return dev.info, nil
}
// ReplaceHostToXAddr replacing host:port on string to dev.params.Xaddr.
// NAT needed.
func (dev *Device) ReplaceHostToXAddr(u string) (string, error) {
url, err := url.Parse(u)
if err != nil {
return u, err
}
url.Host = dev.params.Xaddr
return url.String(), nil
}
func (dev *Device) addEndpoint(Key, Value string) {
//use lowCaseKey
//make key having ability to handle Mixed Case for Different vendor devcie (e.g. Events EVENTS, events)
lowCaseKey := strings.ToLower(Key)
Value, _ = dev.ReplaceHostToXAddr(Value)
dev.endpoints[lowCaseKey] = Value
}
//getEndpoint functions get the target service endpoint in a better way
func (dev Device) GetEndpoint(endpoint string) (string, error) {
// common condition, endpointMark in map we use this.
if endpointURL, bFound := dev.endpoints[endpoint]; bFound {
return endpointURL, nil
}
//but ,if we have endpoint like event、analytic
//and sametime the Targetkey like : events、analytics
//we use fuzzy way to find the best match url
var endpointURL string
for targetKey := range dev.endpoints {
if strings.Contains(targetKey, endpoint) {
endpointURL = dev.endpoints[targetKey]
return endpointURL, nil
}
}
return endpointURL, errors.New("target endpoint service not found")
}