-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvr.go
178 lines (151 loc) · 5.67 KB
/
dvr.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
package openxbl
import (
"errors"
"time"
)
const (
DVRCaptureTypeClip = DVRCaptureType("Clip")
DVRCaptureTypeScreenshot = DVRCaptureType("Screenshot")
DVRPrivacyBlocked = DVRPrivacy("Blocked")
DVRPrivacyEveryone = DVRPrivacy("Everyone")
DVRPrivacyPeopleOnMyList = DVRPrivacy("PeopleOnMyList")
)
type (
DVRCaptureType string
DVRPrivacy string
)
type DVRCapture struct {
ID string `json:"contentId"`
ContentLocators []struct {
Expiration time.Time `json:"expiration,omitempty"` // Only exists for screenshots
FileSize int `json:"fileSize,omitempty"`
LocatorType string `json:"locatorType"`
URI string `json:"uri"`
} `json:"contentLocators"`
CreationType string `json:"creationType"` // E.g. UserGenerated
GreatestMomentID string `json:"greatestMomentId"`
LocalID string `json:"localId"`
OwnerXUID int64 `json:"ownerXuid"`
ResolutionHeight int `json:"resolutionHeight"`
ResolutionWidth int `json:"resolutionWidth"`
SandboxID string `json:"sandboxId"`
SharedTo []interface{} `json:"sharedTo"`
TitleData string `json:"titleData"`
TitleID int `json:"titleId"` // Game's ID
TitleName string `json:"titleName"` // Game's name
UploadDate time.Time `json:"uploadDate"`
UploadLanguage string `json:"uploadLanguage"`
UploadRegion string `json:"uploadRegion"`
UploadTitleID int `json:"uploadTitleId"`
UploadDeviceType string `json:"uploadDeviceType"`
UserCaption string `json:"userCaption"`
CommentCount int `json:"commentCount"`
LikeCount int `json:"likeCount"`
ShareCount int `json:"shareCount"`
ViewCount int `json:"viewCount"`
ContentState string `json:"contentState"`
EnforcementState string `json:"enforcementState"`
SafetyThreshold string `json:"safetyThreshold"`
Sessions []interface{} `json:"sessions"`
Tournaments []interface{} `json:"tournaments"`
Type DVRCaptureType `json:"captureType"`
}
// GetDownloadLink iterates over the ContentLocators and looks for a valid Download type. If found, it returns the URI.
func (d *DVRCapture) GetDownloadLink() string {
for _, contentLocator := range d.ContentLocators {
if contentLocator.LocatorType == "Download" {
return contentLocator.URI
}
}
return ""
}
type Clip struct {
DVRCapture
ContentSegments []struct {
ID int `json:"segmentId"`
CreationType string `json:"creationType"`
CreatorChannelID interface{} `json:"creatorChannelId"`
CreatorXUID int64 `json:"creatorXuid"`
RecordDate time.Time `json:"recordDate"`
DurationInSeconds int `json:"durationInSeconds"`
Offset int `json:"offset"`
SecondaryTitleID interface{} `json:"secondaryTitleId"`
TitleID int `json:"titleId"`
} `json:"contentSegments"` // Only exists for clips
DurationInSeconds int `json:"durationInSeconds"` // Only exists for clips
FrameRate int `json:"frameRate"` // Only exists for clips
}
func (c *Client) DeleteDVRClip(id string) error {
if _, err := c.makeRequest("GET", "dvr/gameclips/delete/"+id, nil, nil); err != nil {
return err
}
return nil
}
func (c *Client) GetDVRClips(continuationToken string) ([]*Clip, string, error) {
response := struct {
ContinuationToken string `json:"continuationToken"`
Clips []*Clip `json:"values"`
}{}
// if a continuation token (their version of pagination) is supplied, pass it to the API
endpoint := "dvr/gameclips"
if continuationToken != "" {
endpoint += "?continuationToken=" + continuationToken
}
if _, err := c.makeRequest("GET", endpoint, nil, &response); err != nil {
return nil, "", err
}
if len(response.Clips) == 0 {
return nil, "", errors.New("failed to find clips")
}
for index := range response.Clips {
response.Clips[index].Type = DVRCaptureTypeClip
}
return response.Clips, response.ContinuationToken, nil
}
type Screenshot struct {
DVRCapture
}
func (c *Client) GetDVRScreenshots(continuationToken string) ([]*Screenshot, string, error) {
response := struct {
ContinuationToken string `json:"continuationToken"`
Screenshots []*struct {
DVRCapture
DateUploaded time.Time `json:"dateUploaded"`
} `json:"values"`
}{}
// if a continuation token (their version of pagination) is supplied, pass it to the API
endpoint := "dvr/screenshots"
if continuationToken != "" {
endpoint += "?continuationToken=" + continuationToken
}
if _, err := c.makeRequest("GET", endpoint, nil, &response); err != nil {
return nil, "", err
}
if len(response.Screenshots) == 0 {
return nil, "", errors.New("failed to find screenshots")
}
screenshots := make([]*Screenshot, 0, len(response.Screenshots))
for index := range response.Screenshots {
screenshot := Screenshot{DVRCapture: response.Screenshots[index].DVRCapture}
screenshot.DVRCapture.Type = DVRCaptureTypeScreenshot
screenshot.UploadDate = response.Screenshots[index].DateUploaded
screenshots = append(screenshots, &screenshot)
}
return screenshots, response.ContinuationToken, nil
}
func (c *Client) SetDVRPrivacy(privacy DVRPrivacy) error {
switch privacy {
case DVRPrivacyBlocked, DVRPrivacyEveryone, DVRPrivacyPeopleOnMyList:
default:
return errors.New("invalid privacy type")
}
request := struct {
Privacy string `json:"value"`
}{
Privacy: string(privacy),
}
if _, err := c.makeRequest("POST", "dvr/privacy", request, nil); err != nil {
return err
}
return nil
}