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
235
|
import Foundation
// MARK: - Response types
private struct JobDetailResponse: Decodable, Sendable {
let job: JobDetail
}
private struct CancelResponse: Decodable, Sendable {
let cancel: CancelResult
}
private struct CancelResult: Decodable, Sendable {
let id: Int
}
private struct SubmitJobResponse: Decodable, Sendable {
let submit: SubmittedJob
}
private struct SubmittedJob: Decodable, Sendable {
let id: Int
}
// MARK: - View Model
@Observable
@MainActor
final class BuildDetailViewModel {
let jobId: Int
private let client: SRHTClient
private(set) var job: JobDetail?
private(set) var isLoading = false
private(set) var taskLogs: [String: String] = [:]
private(set) var loadingTaskLogs: Set<String> = []
private(set) var isCancelling = false
private(set) var isRebuilding = false
private(set) var isSubmittingEditedBuild = false
var error: String?
init(jobId: Int, client: SRHTClient) {
self.jobId = jobId
self.client = client
}
// MARK: - Queries
private static let detailQuery = """
query job($id: Int!) {
job(id: $id) {
id
created
updated
status
note
tags
visibility
image
manifest
tasks { name status log { fullURL } }
log { fullURL }
owner { canonicalName }
}
}
"""
private static let cancelMutation = """
mutation cancel($id: Int!) {
cancel(jobId: $id) {
id
}
}
"""
private static let submitMutation = """
mutation submit($manifest: String!, $tags: [String!], $note: String, $visibility: Visibility) {
submit(manifest: $manifest, tags: $tags, note: $note, visibility: $visibility) {
id
}
}
"""
private static let editableSubmitMutation = """
mutation submit($manifest: String!, $tags: [String!], $note: String, $secrets: Boolean, $execute: Boolean, $visibility: Visibility) {
submit(manifest: $manifest, tags: $tags, note: $note, secrets: $secrets, execute: $execute, visibility: $visibility) {
id
}
}
"""
// MARK: - Public API
func loadJob() async {
guard !isLoading else { return }
isLoading = true
error = nil
do {
let result = try await client.execute(
service: .builds,
query: Self.detailQuery,
variables: ["id": jobId],
responseType: JobDetailResponse.self
)
job = result.job
} catch {
self.error = error.localizedDescription
}
isLoading = false
}
func loadTaskLog(task: BuildTask) async {
guard let log = task.log,
let logURL = URL(string: log.fullURL),
!loadingTaskLogs.contains(task.name),
taskLogs[task.name] == nil else { return }
loadingTaskLogs.insert(task.name)
do {
taskLogs[task.name] = try await client.fetchText(url: logURL)
} catch {
self.error = error.localizedDescription
}
loadingTaskLogs.remove(task.name)
}
func cancelJob() async {
guard let job, job.status.isCancellable, !isCancelling else { return }
isCancelling = true
error = nil
do {
_ = try await client.execute(
service: .builds,
query: Self.cancelMutation,
variables: ["id": jobId],
responseType: CancelResponse.self
)
// Reload job to get updated status.
await loadJob()
} catch {
self.error = error.localizedDescription
}
isCancelling = false
}
func rebuildJob() async -> Int? {
guard let job, let manifest = job.manifest, !manifest.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty, !isRebuilding else {
return nil
}
isRebuilding = true
error = nil
defer { isRebuilding = false }
var variables: [String: any Sendable] = [
"manifest": manifest.trimmingCharacters(in: .whitespacesAndNewlines)
]
if !job.tags.isEmpty {
variables["tags"] = job.tags
}
if let note = job.note, !note.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
variables["note"] = note.trimmingCharacters(in: .whitespacesAndNewlines)
}
if let visibility = job.visibility {
variables["visibility"] = visibility.rawValue
}
do {
let result = try await client.execute(
service: .builds,
query: Self.submitMutation,
variables: variables,
responseType: SubmitJobResponse.self
)
return result.submit.id
} catch {
self.error = error.localizedDescription
return nil
}
}
func submitBuild(
manifest: String,
tags: [String],
note: String,
secrets: Bool,
execute: Bool,
visibility: Visibility
) async -> Int? {
guard !isSubmittingEditedBuild else { return nil }
let trimmedManifest = manifest.trimmingCharacters(in: .whitespacesAndNewlines)
guard !trimmedManifest.isEmpty else {
error = "Paste a build manifest."
return nil
}
isSubmittingEditedBuild = true
error = nil
defer { isSubmittingEditedBuild = false }
var variables: [String: any Sendable] = [
"manifest": trimmedManifest,
"secrets": secrets,
"execute": execute,
"visibility": visibility.rawValue
]
if !tags.isEmpty {
variables["tags"] = tags
}
let trimmedNote = note.trimmingCharacters(in: .whitespacesAndNewlines)
if !trimmedNote.isEmpty {
variables["note"] = trimmedNote
}
do {
let result = try await client.execute(
service: .builds,
query: Self.editableSubmitMutation,
variables: variables,
responseType: SubmitJobResponse.self
)
return result.submit.id
} catch {
self.error = "Couldn’t submit the build. \(error.localizedDescription)"
return nil
}
}
}
|