-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
publishing_preorder.go
192 lines (162 loc) · 6.91 KB
/
publishing_preorder.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
/**
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"
)
// AppPreOrder defines model for AppPreOrder.
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreorder
type AppPreOrder struct {
Attributes *AppPreOrderAttributes `json:"attributes,omitempty"`
ID string `json:"id"`
Links ResourceLinks `json:"links"`
Relationships *AppPreOrderRelationships `json:"relationships,omitempty"`
Type string `json:"type"`
}
// AppPreOrderAttributes defines model for AppPreOrder.Attributes
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreorder/attributes
type AppPreOrderAttributes struct {
AppReleaseDate *Date `json:"appReleaseDate,omitempty"`
PreOrderAvailableDate *Date `json:"preOrderAvailableDate,omitempty"`
}
// AppPreOrderRelationships defines model for AppPreOrder.Relationships
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreorder/relationships
type AppPreOrderRelationships struct {
App *Relationship `json:"app,omitempty"`
}
// AppPreOrderCreateRequest defines model for AppPreOrderCreateRequest.
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreordercreaterequest/data
type appPreOrderCreateRequest struct {
Attributes *appPreOrderCreateRequestAttributes `json:"attributes,omitempty"`
Relationships appPreOrderCreateRequestRelationships `json:"relationships"`
Type string `json:"type"`
}
// AppPreOrderCreateRequestAttributes are attributes for AppPreOrderCreateRequest
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreordercreaterequest/data/attributes
type appPreOrderCreateRequestAttributes struct {
AppReleaseDate *Date `json:"appReleaseDate,omitempty"`
}
// AppPreOrderCreateRequestRelationships are relationships for AppPreOrderCreateRequest.
type appPreOrderCreateRequestRelationships struct {
App relationshipDeclaration `json:"app"`
}
// AppPreOrderUpdateRequest defines model for AppPreOrderUpdateRequest.
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreorderupdaterequest/data
type appPreOrderUpdateRequest struct {
Attributes *appPreOrderUpdateRequestAttributes `json:"attributes,omitempty"`
ID string `json:"id"`
Type string `json:"type"`
}
// AppPreOrderUpdateRequestAttributes are attributes for AppPreOrderUpdateRequest
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreorderupdaterequest/data/attributes
type appPreOrderUpdateRequestAttributes struct {
AppReleaseDate *Date `json:"appReleaseDate,omitempty"`
}
// AppPreOrderResponse defines model for AppPreOrderResponse.
//
// https://developer.apple.com/documentation/appstoreconnectapi/apppreorderresponse
type AppPreOrderResponse struct {
Data AppPreOrder `json:"data"`
Links DocumentLinks `json:"links"`
}
// GetPreOrderQuery are query options for GetPreOrder
//
// https://developer.apple.com/documentation/appstoreconnectapi/read_app_pre-order_information
type GetPreOrderQuery struct {
FieldsAppPreOrders []string `url:"fields[appPreOrders],omitempty"`
Include []string `url:"include,omitempty"`
}
// GetPreOrderForAppQuery are query options for GetPreOrderForApp
//
// https://developer.apple.com/documentation/appstoreconnectapi/read_the_pre-order_information_of_an_app
type GetPreOrderForAppQuery struct {
FieldsAppPreOrders []string `url:"fields[appPreOrders],omitempty"`
}
// GetPreOrder gets information about your app's pre-order configuration.
//
// https://developer.apple.com/documentation/appstoreconnectapi/read_app_pre-order_information
func (s *PublishingService) GetPreOrder(ctx context.Context, id string, params *GetPreOrderQuery) (*AppPreOrderResponse, *Response, error) {
url := fmt.Sprintf("appPreOrders/%s", id)
res := new(AppPreOrderResponse)
resp, err := s.client.get(ctx, url, params, res)
return res, resp, err
}
// GetPreOrderForApp gets available date and release date of an app that is available for pre-order.
//
// https://developer.apple.com/documentation/appstoreconnectapi/read_the_pre-order_information_of_an_app
func (s *PublishingService) GetPreOrderForApp(ctx context.Context, id string, params *GetPreOrderForAppQuery) (*AppPreOrderResponse, *Response, error) {
url := fmt.Sprintf("apps/%s/preOrder", id)
res := new(AppPreOrderResponse)
resp, err := s.client.get(ctx, url, params, res)
return res, resp, err
}
// CreatePreOrder turns on pre-order and set the expected app release date.
//
// https://developer.apple.com/documentation/appstoreconnectapi/create_an_app_pre-order
func (s *PublishingService) CreatePreOrder(ctx context.Context, appReleaseDate *Date, appID string) (*AppPreOrderResponse, *Response, error) {
req := appPreOrderCreateRequest{
Relationships: appPreOrderCreateRequestRelationships{
App: relationshipDeclaration{
Data: RelationshipData{
ID: appID,
Type: "apps",
},
},
},
Type: "appPreOrders",
}
if appReleaseDate != nil {
req.Attributes = &appPreOrderCreateRequestAttributes{
AppReleaseDate: appReleaseDate,
}
}
res := new(AppPreOrderResponse)
resp, err := s.client.post(ctx, "appPreOrders", newRequestBody(req), res)
return res, resp, err
}
// UpdatePreOrder updates the release date for your app pre-order.
//
// https://developer.apple.com/documentation/appstoreconnectapi/modify_an_app_pre-order
func (s *PublishingService) UpdatePreOrder(ctx context.Context, id string, appReleaseDate *Date) (*AppPreOrderResponse, *Response, error) {
req := appPreOrderUpdateRequest{
ID: id,
Type: "appPreOrders",
}
if appReleaseDate != nil {
req.Attributes = &appPreOrderUpdateRequestAttributes{
AppReleaseDate: appReleaseDate,
}
}
url := fmt.Sprintf("appPreOrders/%s", id)
res := new(AppPreOrderResponse)
resp, err := s.client.patch(ctx, url, newRequestBody(req), res)
return res, resp, err
}
// DeletePreOrder cancels a planned app pre-order that has not begun.
//
// https://developer.apple.com/documentation/appstoreconnectapi/delete_an_app_pre-order
func (s *PublishingService) DeletePreOrder(ctx context.Context, id string) (*Response, error) {
url := fmt.Sprintf("appPreOrders/%s", id)
return s.client.delete(ctx, url, nil)
}