-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
apps_metadata_routing.go
214 lines (184 loc) · 8.95 KB
/
apps_metadata_routing.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
209
210
211
212
213
214
/**
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"
)
// RoutingAppCoverage defines model for RoutingAppCoverage.
//
// https://developer.apple.com/documentation/appstoreconnectapi/routingappcoverage
type RoutingAppCoverage struct {
Attributes *RoutingAppCoverageAttributes `json:"attributes,omitempty"`
ID string `json:"id"`
Links ResourceLinks `json:"links"`
Relationships *RoutingAppCoverageRelationships `json:"relationships,omitempty"`
Type string `json:"type"`
}
// RoutingAppCoverageAttributes defines model for RoutingAppCoverage.Attributes
//
// https://developer.apple.com/documentation/appstoreconnectapi/routingappcoverage/attributes
type RoutingAppCoverageAttributes struct {
AssetDeliveryState *AppMediaAssetState `json:"assetDeliveryState,omitempty"`
FileName *string `json:"fileName,omitempty"`
FileSize *int64 `json:"fileSize,omitempty"`
SourceFileChecksum *string `json:"sourceFileChecksum,omitempty"`
UploadOperations []UploadOperation `json:"uploadOperations,omitempty"`
}
// RoutingAppCoverageRelationships defines model for RoutingAppCoverage.Relationships
//
// https://developer.apple.com/documentation/appstoreconnectapi/routingappcoverage/relationships
type RoutingAppCoverageRelationships struct {
AppStoreVersion *Relationship `json:"appStoreVersion,omitempty"`
}
// RoutingAppCoverageCreateRequest defines model for RoutingAppCoverageCreateRequest.
//
// https://developer.apple.com/documentation/appstoreconnectapi/routingappcoveragecreaterequest/data
type routingAppCoverageCreateRequest struct {
Attributes routingAppCoverageCreateRequestAttributes `json:"attributes"`
Relationships routingAppCoverageCreateRequestRelationships `json:"relationships"`
Type string `json:"type"`
}
// RoutingAppCoverageCreateRequestAttributes are attributes for RoutingAppCoverageCreateRequest
//
// https://developer.apple.com/documentation/appstoreconnectapi/routingappcoveragecreaterequest/data/attributes
type routingAppCoverageCreateRequestAttributes struct {
FileName string `json:"fileName"`
FileSize int64 `json:"fileSize"`
}
// RoutingAppCoverageCreateRequestRelationships are relationships for RoutingAppCoverageCreateRequest
//
// https://developer.apple.com/documentation/appstoreconnectapi/routingappcoveragecreaterequest/data/relationships
type routingAppCoverageCreateRequestRelationships struct {
AppStoreVersion relationshipDeclaration `json:"appStoreVersion"`
}
// RoutingAppCoverageResponse defines model for RoutingAppCoverageResponse.
//
// https://developer.apple.com/documentation/appstoreconnectapi/routingappcoverageresponse
type RoutingAppCoverageResponse struct {
Data RoutingAppCoverage `json:"data"`
Links DocumentLinks `json:"links"`
}
// RoutingAppCoverageUpdateRequest defines model for RoutingAppCoverageUpdateRequest.
//
// https://developer.apple.com/documentation/appstoreconnectapi/routingappcoverageupdaterequest/data
type routingAppCoverageUpdateRequest struct {
Attributes *routingAppCoverageUpdateRequestAttributes `json:"attributes,omitempty"`
ID string `json:"id"`
Type string `json:"type"`
}
// RoutingAppCoverageUpdateRequestAttributes are attributes for RoutingAppCoverageCreateRequest
//
// https://developer.apple.com/documentation/appstoreconnectapi/routingappcoverageupdaterequest/data/attributes
type routingAppCoverageUpdateRequestAttributes struct {
SourceFileChecksum *string `json:"sourceFileChecksum,omitempty"`
Uploaded *bool `json:"uploaded,omitempty"`
}
// AppMediaAssetState defines model for AppMediaAssetState.
//
// https://developer.apple.com/documentation/appstoreconnectapi/appmediastateerror
type AppMediaAssetState struct {
Errors []AppMediaStateError `json:"errors,omitempty"`
State *string `json:"state,omitempty"`
Warnings []AppMediaStateError `json:"warnings,omitempty"`
}
// AppMediaStateError defines model for AppMediaStateError.
//
// https://developer.apple.com/documentation/appstoreconnectapi/appmediaassetstate
type AppMediaStateError struct {
Code *string `json:"code,omitempty"`
Description *string `json:"description,omitempty"`
}
// GetRoutingAppCoverageForVersionQuery are query options for GetRoutingAppCoverageForVersion
//
// https://developer.apple.com/documentation/appstoreconnectapi/read_the_routing_app_coverage_information_of_an_app_store_version
type GetRoutingAppCoverageForVersionQuery struct {
FieldsRoutingAppCoverages []string `url:"fields[routingAppCoverages],omitempty"`
}
// GetRoutingAppCoverageQuery are query options for GetRoutingAppCoverage
//
// https://developer.apple.com/documentation/appstoreconnectapi/read_routing_app_coverage_information
type GetRoutingAppCoverageQuery struct {
FieldsRoutingAppCoverages []string `url:"fields[routingAppCoverages],omitempty"`
Include []string `url:"include,omitempty"`
}
// GetRoutingAppCoverageForAppStoreVersion gets the routing app coverage file that is associated with a specific App Store version
//
// https://developer.apple.com/documentation/appstoreconnectapi/read_the_routing_app_coverage_information_of_an_app_store_version
func (s *AppsService) GetRoutingAppCoverageForAppStoreVersion(ctx context.Context, id string, params *GetRoutingAppCoverageForVersionQuery) (*RoutingAppCoverageResponse, *Response, error) {
url := fmt.Sprintf("appStoreVersions/%s/routingAppCoverage", id)
res := new(RoutingAppCoverageResponse)
resp, err := s.client.get(ctx, url, params, res)
return res, resp, err
}
// GetRoutingAppCoverage gets information about the routing app coverage file and its upload and processing status.
//
// https://developer.apple.com/documentation/appstoreconnectapi/read_routing_app_coverage_information
func (s *AppsService) GetRoutingAppCoverage(ctx context.Context, id string, params *GetRoutingAppCoverageQuery) (*RoutingAppCoverageResponse, *Response, error) {
url := fmt.Sprintf("routingAppCoverages/%s", id)
res := new(RoutingAppCoverageResponse)
resp, err := s.client.get(ctx, url, params, res)
return res, resp, err
}
// CreateRoutingAppCoverage attaches a routing app coverage file to an App Store version.
//
// https://developer.apple.com/documentation/appstoreconnectapi/create_a_routing_app_coverage
func (s *AppsService) CreateRoutingAppCoverage(ctx context.Context, fileName string, fileSize int64, appStoreVersionID string) (*RoutingAppCoverageResponse, *Response, error) {
req := routingAppCoverageCreateRequest{
Attributes: routingAppCoverageCreateRequestAttributes{
FileName: fileName,
FileSize: fileSize,
},
Relationships: routingAppCoverageCreateRequestRelationships{
AppStoreVersion: relationshipDeclaration{
Data: RelationshipData{
ID: appStoreVersionID,
Type: "appStoreVersions",
},
},
},
Type: "routingAppCoverages",
}
res := new(RoutingAppCoverageResponse)
resp, err := s.client.post(ctx, "routingAppCoverages", newRequestBody(req), res)
return res, resp, err
}
// CommitRoutingAppCoverage commits a routing app coverage file after uploading it.
//
// https://developer.apple.com/documentation/appstoreconnectapi/modify_a_routing_app_coverage
func (s *AppsService) CommitRoutingAppCoverage(ctx context.Context, id string, uploaded *bool, sourceFileChecksum *string) (*RoutingAppCoverageResponse, *Response, error) {
req := routingAppCoverageUpdateRequest{
ID: id,
Type: "routingAppCoverages",
}
if uploaded != nil || sourceFileChecksum != nil {
req.Attributes = &routingAppCoverageUpdateRequestAttributes{
Uploaded: uploaded,
SourceFileChecksum: sourceFileChecksum,
}
}
url := fmt.Sprintf("routingAppCoverages/%s", id)
res := new(RoutingAppCoverageResponse)
resp, err := s.client.patch(ctx, url, newRequestBody(req), res)
return res, resp, err
}
// DeleteRoutingAppCoverage deletes the routing app coverage file that is associated with a version.
//
// https://developer.apple.com/documentation/appstoreconnectapi/delete_a_routing_app_coverage
func (s *AppsService) DeleteRoutingAppCoverage(ctx context.Context, id string) (*Response, error) {
url := fmt.Sprintf("routingAppCoverages/%s", id)
return s.client.delete(ctx, url, nil)
}