arlo-go/library.go

117 lines
3.6 KiB
Go
Raw Normal View History

package arlo
2017-12-10 19:17:09 +00:00
import (
"time"
"github.com/pkg/errors"
)
2017-12-09 03:55:38 +00:00
// LibraryMetaData is the library meta data.
type LibraryMetaData struct {
DateTo string `json:"dateTo"`
DateFrom string `json:"dateFrom"`
Meta map[string]map[string]Favorite `json:"meta"`
}
// presignedContentUrl is a link to the actual video in Amazon AWS.
// presignedThumbnailUrl is a link to the thumbnail .jpg of the actual video in Amazon AWS.
type Recording struct {
MediaDurationSecond int `json:"mediaDurationSecond"`
ContentType string `json:"contentType"`
Name string `json:"name"`
PresignedContentUrl string `json:"presignedContentUrl"`
LastModified int64 `json:"lastModified"`
LocalCreatedDate int64 `json:"localCreatedDate"`
PresignedThumbnailUrl string `json:"presignedThumbnailUrl"`
Reason string `json:"reason"`
DeviceId string `json:"deviceId"`
CreatedBy string `json:"createdBy"`
CreatedDate string `json:"createdDate"`
TimeZone string `json:"timeZone"`
OwnerId string `json:"ownerId"`
UtcCreatedDate int64 `json:"utcCreatedDate"`
CurrentState string `json:"currentState"`
MediaDuration string `json:"mediaDuration"`
}
type Library []Recording
2017-12-10 19:17:09 +00:00
func (a *Arlo) GetLibraryMetaData(fromDate, toDate time.Time) (*LibraryMetaDataResponse, error) {
body := map[string]string{"dateFrom": fromDate.Format("20060102"), "dateTo": toDate.Format("20060102")}
2018-09-19 21:41:00 +00:00
resp, err := a.post(LibraryMetadataUri, "", body, nil)
2017-12-10 19:17:09 +00:00
if err != nil {
return nil, errors.WithMessage(err, "failed to get library metadata")
}
var libraryMetaDataResponse LibraryMetaDataResponse
if err := resp.Decode(&libraryMetaDataResponse); err != nil {
return nil, err
}
return &libraryMetaDataResponse, nil
}
func (a *Arlo) GetLibrary(fromDate, toDate time.Time) (*LibraryResponse, error) {
body := map[string]string{"dateFrom": fromDate.Format("20060102"), "dateTo": toDate.Format("20060102")}
2018-09-19 21:41:00 +00:00
resp, err := a.post(LibraryUri, "", body, nil)
2017-12-10 19:17:09 +00:00
if err != nil {
return nil, errors.WithMessage(err, "failed to get library")
}
var libraryResponse LibraryResponse
if err := resp.Decode(&libraryResponse); err != nil {
return nil, err
}
return &libraryResponse, nil
}
/*
Delete a single video recording from arlo.
2017-12-10 19:17:09 +00:00
All of the date info and device id you need to pass into this method are given in the results of the GetLibrary() call.
NOTE: {"data": [{"createdDate": r.CreatedDate, "utcCreatedDate": r.UtcCreatedDate, "deviceId": r.DeviceId}]} is all that's really required.
*/
func (a *Arlo) DeleteRecording(r Recording) (*Error, error) {
2017-12-10 19:17:09 +00:00
body := map[string]Library{"data": {r}}
2018-09-19 21:41:00 +00:00
resp, err := a.post(LibraryRecycleUri, "", body, nil)
2017-12-10 19:17:09 +00:00
if err != nil {
return nil, errors.WithMessage(err, "failed to delete recording")
}
var status Error
2017-12-10 19:17:09 +00:00
if err := resp.Decode(&status); err != nil {
return nil, err
}
return &status, nil
}
/*
Delete a batch of video recordings from arlo.
2017-12-10 19:17:09 +00:00
The GetLibrary() call response json can be passed directly to this method if you'd like to delete the same list of videos you queried for.
NOTE: {"data": [{"createdDate": r.CreatedDate, "utcCreatedDate": r.UtcCreatedDate, "deviceId": r.DeviceId}]} is all that's really required.
*/
func (a *Arlo) BatchDeleteRecordings(l Library) (*Error, error) {
2017-12-10 19:17:09 +00:00
body := map[string]Library{"data": l}
2018-09-19 21:41:00 +00:00
resp, err := a.post(LibraryRecycleUri, "", body, nil)
2017-12-10 19:17:09 +00:00
if err != nil {
return nil, errors.WithMessage(err, "failed to delete recordings")
}
var status Error
2017-12-10 19:17:09 +00:00
if err := resp.Decode(&status); err != nil {
return nil, err
}
return &status, nil
}