68 lines
1.5 KiB
Go
68 lines
1.5 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"log"
|
||
|
"net/http"
|
||
|
|
||
|
goonvif "git.pyer.club/kingecg/goonvif/onvif"
|
||
|
"git.pyer.club/kingecg/goonvif/onvif/device"
|
||
|
sdk "git.pyer.club/kingecg/goonvif/onvif/sdk/device"
|
||
|
"git.pyer.club/kingecg/goonvif/onvif/xsd/onvif"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
login = "admin"
|
||
|
password = "Supervisor"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
ctx := context.Background()
|
||
|
|
||
|
//Getting an camera instance
|
||
|
dev, err := goonvif.NewDevice(goonvif.DeviceParams{
|
||
|
Xaddr: "192.168.13.14:80",
|
||
|
Username: login,
|
||
|
Password: password,
|
||
|
HttpClient: new(http.Client),
|
||
|
})
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
//Preparing commands
|
||
|
systemDateAndTyme := device.GetSystemDateAndTime{}
|
||
|
getCapabilities := device.GetCapabilities{Category: "All"}
|
||
|
createUser := device.CreateUsers{
|
||
|
User: onvif.User{
|
||
|
Username: "TestUser",
|
||
|
Password: "TestPassword",
|
||
|
UserLevel: "User",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
//Commands execution
|
||
|
systemDateAndTymeResponse, err := sdk.Call_GetSystemDateAndTime(ctx, dev, systemDateAndTyme)
|
||
|
if err != nil {
|
||
|
log.Println(err)
|
||
|
} else {
|
||
|
fmt.Println(systemDateAndTymeResponse)
|
||
|
}
|
||
|
getCapabilitiesResponse, err := sdk.Call_GetCapabilities(ctx, dev, getCapabilities)
|
||
|
if err != nil {
|
||
|
log.Println(err)
|
||
|
} else {
|
||
|
fmt.Println(getCapabilitiesResponse)
|
||
|
}
|
||
|
|
||
|
createUserResponse, err := sdk.Call_CreateUsers(ctx, dev, createUser)
|
||
|
if err != nil {
|
||
|
log.Println(err)
|
||
|
} else {
|
||
|
// You could use https://git.pyer.club/kingecg/goonvif/onvif/gosoap for pretty printing response
|
||
|
fmt.Println(createUserResponse)
|
||
|
}
|
||
|
|
||
|
}
|