forked from cidertool/asc-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apps_metadata_preview_sets.go
208 lines (178 loc) · 8.63 KB
/
apps_metadata_preview_sets.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
/**
Copyright (C) 2020 Aaron Sky.
This file is part of asc-go, a package for working with Apple's
App Store Connect API.
asc-go is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
asc-go is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with asc-go. If not, see <http://www.gnu.org/licenses/>.
*/
package asc
import (
"context"
"fmt"
)
// AppPreviewSet defines model for AppPreviewSet.
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreviewset
type AppPreviewSet struct {
Attributes *AppPreviewSetAttributes `json:"attributes,omitempty"`
ID string `json:"id"`
Links ResourceLinks `json:"links"`
Relationships *AppPreviewSetRelationships `json:"relationships,omitempty"`
Type string `json:"type"`
}
// AppPreviewSetAttributes defines model for AppPreviewSet.Attributes
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreviewset/attributes
type AppPreviewSetAttributes struct {
PreviewType *PreviewType `json:"previewType,omitempty"`
}
// AppPreviewSetRelationships defines model for AppPreviewSet.Relationships
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreviewset/relationships
type AppPreviewSetRelationships struct {
AppPreviews *PagedRelationship `json:"appPreviews,omitempty"`
AppStoreVersionLocalization *Relationship `json:"appStoreVersionLocalization,omitempty"`
}
// appPreviewSetCreateRequest defines model for AppPreviewSetCreateRequest.
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreviewsetcreaterequest/data
type appPreviewSetCreateRequest struct {
Attributes appPreviewSetCreateRequestAttributes `json:"attributes"`
Relationships appPreviewSetCreateRequestRelationships `json:"relationships"`
Type string `json:"type"`
}
// appPreviewSetCreateRequestAttributes are attributes for AppPreviewSetCreateRequest
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreviewsetcreaterequest/data/attributes
type appPreviewSetCreateRequestAttributes struct {
PreviewType PreviewType `json:"previewType"`
}
// appPreviewSetCreateRequestRelationships are relationships for AppPreviewSetCreateRequest
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreviewsetcreaterequest/data/relationships
type appPreviewSetCreateRequestRelationships struct {
AppStoreVersionLocalization relationshipDeclaration `json:"appStoreVersionLocalization"`
}
// AppPreviewSetResponse defines model for AppPreviewSetResponse.
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreviewsetresponse
type AppPreviewSetResponse struct {
Data AppPreviewSet `json:"data"`
Included []AppPreview `json:"included,omitempty"`
Links DocumentLinks `json:"links"`
}
// AppPreviewSetsResponse defines model for AppPreviewSetsResponse.
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreviewsetsresponse
type AppPreviewSetsResponse struct {
Data []AppPreviewSet `json:"data"`
Included []AppPreview `json:"included,omitempty"`
Links PagedDocumentLinks `json:"links"`
Meta *PagingInformation `json:"meta,omitempty"`
}
// AppPreviewSetAppPreviewsLinkagesResponse defines model for AppPreviewSetAppPreviewsLinkagesResponse.
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreviewsetapppreviewslinkagesresponse
type AppPreviewSetAppPreviewsLinkagesResponse struct {
Data []RelationshipData `json:"data"`
Links PagedDocumentLinks `json:"links"`
Meta *PagingInformation `json:"meta,omitempty"`
}
// GetAppPreviewSetQuery are query options for GetAppPreviewSet
//
// https://developer.apple.com/documentation/appstoreconnectapi/read_app_preview_set_information
type GetAppPreviewSetQuery struct {
FieldsAppPreviews []string `url:"fields[appPreviews],omitempty"`
FieldsAppPreviewSets []string `url:"fields[appPreviewSets],omitempty"`
Include []string `url:"include,omitempty"`
LimitAppPreviews int `url:"limit[appPreviews],omitempty"`
}
// ListAppPreviewsForSetQuery are query options for ListAppPreviewsForSet
//
// https://developer.apple.com/documentation/appstoreconnectapi/list_all_app_previews_for_an_app_preview_set
type ListAppPreviewsForSetQuery struct {
FieldsAppPreviewSets []string `url:"fields[appPreviewSets],omitempty"`
FieldsAppPreviews []string `url:"fields[appPreviews],omitempty"`
Limit int `url:"limit,omitempty"`
Include []string `url:"include,omitempty"`
Cursor string `url:"cursor,omitempty"`
}
// ListAppPreviewIDsForSetQuery are query options for ListAppPreviewIDsForSet
//
// https://developer.apple.com/documentation/appstoreconnectapi/get_all_app_preview_ids_for_an_app_preview_set
type ListAppPreviewIDsForSetQuery struct {
Limit int `url:"limit,omitempty"`
Cursor string `url:"cursor,omitempty"`
}
// GetAppPreviewSet gets an app preview set including its display target, language, and the preview it contains.
//
// https://developer.apple.com/documentation/appstoreconnectapi/read_app_preview_set_information
func (s *AppsService) GetAppPreviewSet(ctx context.Context, id string, params *GetAppPreviewSetQuery) (*AppPreviewSetResponse, *Response, error) {
url := fmt.Sprintf("appPreviewSets/%s", id)
res := new(AppPreviewSetResponse)
resp, err := s.client.get(ctx, url, params, res)
return res, resp, err
}
// CreateAppPreviewSet adds a new preview set to an App Store version localization for a specific preview type and display size.
//
// https://developer.apple.com/documentation/appstoreconnectapi/create_an_app_preview_set
func (s *AppsService) CreateAppPreviewSet(ctx context.Context, previewType PreviewType, appStoreVersionLocalizationID string) (*AppPreviewSetResponse, *Response, error) {
req := appPreviewSetCreateRequest{
Attributes: appPreviewSetCreateRequestAttributes{
PreviewType: previewType,
},
Relationships: appPreviewSetCreateRequestRelationships{
AppStoreVersionLocalization: relationshipDeclaration{
Data: RelationshipData{
ID: appStoreVersionLocalizationID,
Type: "appStoreVersionLocalizations",
},
},
},
Type: "appPreviewSets",
}
res := new(AppPreviewSetResponse)
resp, err := s.client.post(ctx, "appPreviewSets", newRequestBody(req), res)
return res, resp, err
}
// DeleteAppPreviewSet deletes an app preview set and all of its previews.
//
// https://developer.apple.com/documentation/appstoreconnectapi/delete_an_app_preview_set
func (s *AppsService) DeleteAppPreviewSet(ctx context.Context, id string) (*Response, error) {
url := fmt.Sprintf("appPreviewSets/%s", id)
return s.client.delete(ctx, url, nil)
}
// ListAppPreviewsForSet lists all ordered previews in a preview set.
//
// https://developer.apple.com/documentation/appstoreconnectapi/list_all_app_previews_for_an_app_preview_set
func (s *AppsService) ListAppPreviewsForSet(ctx context.Context, id string, params *ListAppPreviewsForSetQuery) (*AppPreviewsResponse, *Response, error) {
url := fmt.Sprintf("appPreviewSets/%s/appPreviews", id)
res := new(AppPreviewsResponse)
resp, err := s.client.get(ctx, url, params, res)
return res, resp, err
}
// ListAppPreviewIDsForSet gets the ordered preview IDs in a preview set.
//
// https://developer.apple.com/documentation/appstoreconnectapi/get_all_app_preview_ids_for_an_app_preview_set
func (s *AppsService) ListAppPreviewIDsForSet(ctx context.Context, id string, params *ListAppPreviewIDsForSetQuery) (*AppPreviewSetAppPreviewsLinkagesResponse, *Response, error) {
url := fmt.Sprintf("appPreviewSets/%s/relationships/appPreviews", id)
res := new(AppPreviewSetAppPreviewsLinkagesResponse)
resp, err := s.client.get(ctx, url, params, res)
return res, resp, err
}
// ReplaceAppPreviewsForSet changes the order of the previews in a preview set.
//
// https://developer.apple.com/documentation/appstoreconnectapi/replace_all_app_previews_for_an_app_preview_set
func (s *AppsService) ReplaceAppPreviewsForSet(ctx context.Context, id string, appPreviewIDs []string) (*Response, error) {
linkages := newPagedRelationshipDeclaration(appPreviewIDs, "appPreviews")
url := fmt.Sprintf("appPreviewSets/%s/relationships/appPreviews", id)
return s.client.patch(ctx, url, newRequestBody(linkages.Data), nil)
}