-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
234 lines (204 loc) · 6.75 KB
/
main.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
package main
import (
appstore_jwt "appstore-connect-api/appstore-jwt"
"appstore-connect-api/config"
"appstore-connect-api/console"
"appstore-connect-api/models"
"appstore-connect-api/rpc"
"context"
"errors"
"net/http"
"os"
"strconv"
)
func main() {
console.Print("%s", "\n🚀 App Store Connect API").NL()
reader := console.New()
cfg := config.New()
console.PrintGray("%s", ">> генерируем токен для App Store Connect")
jwtToken, err := appstore_jwt.CreateToken(cfg)
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
console.PrintGreen(" - %s", "OK").NL()
head := http.Header{
"Authorization": []string{"Bearer " + jwtToken},
}
var (
appsInfo models.Apps
url = "https://api.appstoreconnect.apple.com/v1/apps"
)
{
console.PrintGray("%s", ">> получаем список всех доступных приложении в App Store Connect")
err = rpc.Do(context.Background(), "GET", url, head, &appsInfo)
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
if len(appsInfo.Data) == 0 {
err = errors.New("apps not found")
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
}
console.PrintGreen(" - %s", "OK").NL()
}
var appDir string
{
console.PrintGray("%s", ">> найденные приложения").NL()
for i := range appsInfo.Data {
console.PrintGreen("%d. %s (%s)", i+1, appsInfo.Data[i].Attributes.Name, appsInfo.Data[i].Attributes.BundleID).NL()
}
console.PrintGray("%s", "\n>> выберите приложение, введите номер\n: ")
number := reader.ReadInput()
n, _ := strconv.Atoi(number)
url = appsInfo.Data[n-1].Relationships.CiProduct.Links.Related
appDir = "./" + appsInfo.Data[n-1].Attributes.BundleID
if url == "" {
err = errors.New("ссылка `ciProduct` не найдена")
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
}
console.PrintGreen("\n>> выбран номер %d: %s", n, appsInfo.Data[n-1].Attributes.BundleID).NL()
}
var ciProduct models.CiProduct
{
console.PrintGray("[debug] этап %d. ссылка %s", 2, url)
err = rpc.Do(context.Background(), "GET", url, head, &ciProduct)
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
url = ciProduct.Data.Relationships.BuildRuns.Links.Related
if url == "" {
err = errors.New("ссылка `buildRuns` не найдена")
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
}
console.PrintGreen(" - %s", "OK").NL()
}
var buildRuns models.BuildRuns
{
url = url + "?limit=200"
console.PrintGray("[debug] этап %d. ссылка %s", 3, url)
err = rpc.Do(context.Background(), "GET", url, head, &buildRuns)
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
lastBuildId := 0
url = ""
for i := range buildRuns.Data {
if buildRuns.Data[i].Attributes.ExecutionProgress == "COMPLETE" && buildRuns.Data[i].Attributes.CompletionStatus == "SUCCEEDED" {
lastBuildId = buildRuns.Data[i].Attributes.Number
url = buildRuns.Data[i].Relationships.Actions.Links.Related
}
}
if url == "" {
err = errors.New("ссылка `actions` не найдена")
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
}
console.PrintGreen(" - %s", "OK").NL()
console.PrintGreen(">> последняя сборка: %d", lastBuildId).NL()
}
var actions models.Actions
{
console.PrintGray("[debug] этап %d. ссылка %s", 4, url)
err = rpc.Do(context.Background(), "GET", url, head, &actions)
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
url = ""
for i := range actions.Data {
if actions.Data[i].Attributes.ActionType == "ARCHIVE" && actions.Data[i].Attributes.ExecutionProgress == "COMPLETE" && actions.Data[i].Attributes.CompletionStatus == "SUCCEEDED" {
url = actions.Data[i].Relationships.Artifacts.Links.Related
}
}
if url == "" {
err = errors.New("ссылка `artifacts` не найдена")
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
}
console.PrintGreen(" - %s", "OK").NL()
}
var ciartifacts models.CIArtifacts
{
console.PrintGray("[debug] этап %d. ссылка %s", 5, url)
err = rpc.Do(context.Background(), "GET", url, head, &ciartifacts)
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
console.PrintGreen(" - %s", "OK").NL()
createDir:
console.PrintGreen(">> создание директории %s", appDir)
err = os.Mkdir(appDir, 0777)
if err != nil {
if errors.Is(err, os.ErrExist) {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintGreen("%s", ">> удалить папку? (y/n)\n: ")
answer := reader.ReadInput()
if answer == "y" {
os.RemoveAll(appDir)
goto createDir
}
}
console.PrintGreen(">> создание директории %s", appDir)
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
console.PrintGreen(" - %s", "OK").NL()
for i := range ciartifacts.Data {
var cifiles models.DownloadURL
url = ciartifacts.Data[i].Links.Self
console.PrintGray("[debug] этап %d. ссылка %s", 5, url)
err = rpc.Do(context.Background(), "GET", url, head, &cifiles)
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
if url == "" {
err = errors.New("ссылка `downloadUrl` не найдена")
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
}
console.PrintGreen(" - %s", "OK").NL()
console.PrintGray("[debug] этап %d. тип %s. имя %s", 5, cifiles.Data.Attributes.FileType, cifiles.Data.Attributes.FileName)
err = rpc.FileSave(appDir, cifiles.Data.Attributes.FileType+"-"+cifiles.Data.Attributes.FileName, cifiles.Data.Attributes.DownloadURL, head)
if err != nil {
console.PrintRed(" - %s", "FAIL").NL()
console.PrintRed("[error] %s", err.Error()).NL()
os.Exit(1)
}
console.PrintGreen(" - %s", "OK").NL()
}
}
}