arlo-go/library.go

94 lines
3.2 KiB
Go
Raw Normal View History

package arlo
2017-12-10 19:17:09 +00:00
import (
"time"
)
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) (response *LibraryMetaDataResponse, err error) {
2017-12-10 19:17:09 +00:00
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)
if err := checkHttpRequest(resp, err, "failed to get library metadata"); err != nil {
return nil, err
2017-12-10 19:17:09 +00:00
}
if err := resp.Decode(response); err != nil {
2017-12-10 19:17:09 +00:00
return nil, err
}
return response, nil
2017-12-10 19:17:09 +00:00
}
func (a *Arlo) GetLibrary(fromDate, toDate time.Time) (response *LibraryResponse, err error) {
2017-12-10 19:17:09 +00:00
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)
if err := checkHttpRequest(resp, err, "failed to get library"); err != nil {
return nil, err
2017-12-10 19:17:09 +00:00
}
if err := resp.Decode(response); err != nil {
2017-12-10 19:17:09 +00:00
return nil, err
}
return response, nil
2017-12-10 19:17:09 +00:00
}
/*
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 {
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)
return checkRequest(resp, err, "failed to delete recording")
2017-12-10 19:17:09 +00:00
}
/*
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 {
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)
return checkRequest(resp, err, "failed to delete recordings")
2017-12-10 19:17:09 +00:00
}