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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
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 {
private static let autoRefreshInterval: Duration = .seconds(5)
let jobId: Int
private let client: SRHTClient
private var autoRefreshTask: Task<Void, Never>?
private(set) var job: JobDetail?
private(set) var isLoading = false
private(set) var buildLogText: String?
private(set) var isLoadingBuildLog = false
private(set) var taskLogs: [String: String] = [:]
private(set) var loadingTaskLogs: Set<String> = []
private(set) var failedTaskLogs: Set<String> = []
private var taskLogRetryCounts: [String: Int] = [:]
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
)
var loadedJob = result.job
loadedJob.tasks = loadedJob.tasks.enumerated().map { index, task in
task.withOrdinal(index)
}
if job != loadedJob {
job = loadedJob
}
if loadedJob.status.isTerminal {
stopAutoRefresh()
}
} catch {
self.error = error.userFacingMessage
}
isLoading = false
}
func loadTaskLog(task: BuildTask) async {
let cacheKey = task.logCacheKey
let jobIsTerminal = job?.status.isTerminal ?? false
// Task-specific logs are only fetched after the job reaches a terminal
// state. While the build is active, the UI shows the shared live build log.
guard let log = task.log,
let logURL = URL(string: log.fullURL),
!loadingTaskLogs.contains(cacheKey) else { return }
guard jobIsTerminal else { return }
if jobIsTerminal, taskLogs[cacheKey] != nil { return }
failedTaskLogs.remove(cacheKey)
loadingTaskLogs.insert(cacheKey)
do {
taskLogs[cacheKey] = try await client.fetchText(url: logURL)
failedTaskLogs.remove(cacheKey)
} catch {
failedTaskLogs.insert(cacheKey)
self.error = error.userFacingMessage
}
loadingTaskLogs.remove(cacheKey)
}
func loadBuildLog() async {
guard let log = job?.log,
let logURL = URL(string: log.fullURL),
!isLoadingBuildLog else { return }
let jobIsTerminal = job?.status.isTerminal ?? false
if jobIsTerminal, buildLogText != nil { return }
isLoadingBuildLog = true
do {
buildLogText = try await client.fetchText(url: logURL)
} catch {
self.error = error.userFacingMessage
}
isLoadingBuildLog = false
}
func retryTaskLog(task: BuildTask) async {
let cacheKey = task.logCacheKey
failedTaskLogs.remove(cacheKey)
taskLogRetryCounts[cacheKey, default: 0] += 1
await loadTaskLog(task: task)
}
func displayedLogText(for task: BuildTask?) -> String? {
guard let task else { return nil }
guard let job else { return nil }
if !job.status.isTerminal {
return buildLogText
}
return taskLogs[task.logCacheKey] ?? buildLogText
}
func isShowingBuildLogFallback(for task: BuildTask?) -> Bool {
guard let task, let job else { return false }
if !job.status.isTerminal {
return buildLogText != nil
}
return taskLogs[task.logCacheKey] == nil && buildLogText != nil
}
func taskLogTrigger(for task: BuildTask?) -> String? {
guard let task, let logURL = task.log?.fullURL else { return nil }
let retryCount = taskLogRetryCounts[task.logCacheKey, default: 0]
let isTerminal = job?.status.isTerminal ?? false
return "\(logURL)#\(retryCount)#\(isTerminal)"
}
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.userFacingMessage
}
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.userFacingMessage
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.userFacingMessage)"
return nil
}
}
func startAutoRefresh() {
guard autoRefreshTask == nil else { return }
guard shouldAutoRefresh else { return }
autoRefreshTask = Task { [weak self] in
while !Task.isCancelled {
do {
try await Task.sleep(for: Self.autoRefreshInterval)
} catch {
break
}
guard let self else { return }
await self.performAutoRefreshTick()
}
}
}
func stopAutoRefresh() {
guard let autoRefreshTask else { return }
autoRefreshTask.cancel()
self.autoRefreshTask = nil
}
private var shouldAutoRefresh: Bool {
guard let job else { return true }
return !job.status.isTerminal
}
private func performAutoRefreshTick() async {
guard !Task.isCancelled, shouldAutoRefresh, !isLoading else {
if !shouldAutoRefresh {
stopAutoRefresh()
}
return
}
await loadJob()
await loadBuildLog()
}
}
|