aboutsummaryrefslogtreecommitdiff
path: root/Hutch/Views/Repositories/HgRepositoryDetailViewModel.swift
blob: d8303e16c182d98f3d7141ee7b61abfe794fd8e3 (plain) (blame)
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
import Foundation

private struct HgRepositorySummaryResponse: Decodable, Sendable {
    let repository: HgRepositorySummaryPayload?
}

private struct HgRepositorySummaryPayload: Decodable, Sendable {
    let id: Int
    let rid: String
    let name: String
    let description: String?
    let visibility: Visibility
    let readme: String?
    let nonPublishing: Bool?
    let tip: HgSummaryTip?
    let branches: HgNamedRevisionPage?
    let tags: HgNamedRevisionPage?
    let bookmarks: HgNamedRevisionPage?
}

private struct HgSummaryTip: Decodable, Sendable {
    let id: String?
    let author: String?
    let description: String?
    let branch: String?
    let tags: [String]?

    var resolvedRevision: HgRevision? {
        guard
            let id,
            let author,
            let description
        else {
            return nil
        }

        return HgRevision(
            id: id,
            author: author,
            description: description,
            branch: branch,
            tags: tags
        )
    }
}

private struct HgRevisionLogResponse: Decodable, Sendable {
    let repository: HgRevisionLogRepository?
}

private struct HgRevisionLogRepository: Decodable, Sendable {
    let log: HgRevisionPage?
}

private struct HgReadmeFileResponse: Decodable, Sendable {
    let repository: HgReadmeFileRepository?
}

private struct HgReadmeFileRepository: Decodable, Sendable {
    let readme: String?
}

private struct HgFilesResponse: Decodable, Sendable {
    let repository: HgFilesRepository?
}

private struct HgFilesRepository: Decodable, Sendable {
    let files: HgFilePage?
}

private struct HgFilePage: Decodable, Sendable {
    let results: [HgFile]
    let cursor: String?
}

private struct HgNamedRevisionPage: Decodable, Sendable {
    let results: [HgNamedRevision]
    let cursor: String?

    private enum CodingKeys: String, CodingKey {
        case results
        case cursor
    }

    init(results: [HgNamedRevision], cursor: String?) {
        self.results = results
        self.cursor = cursor
    }

    init(from decoder: any Decoder) throws {
        let container = try decoder.container(keyedBy: CodingKeys.self)
        self.results = try container.decodeIfPresent([HgNamedRevision?].self, forKey: .results)?.compactMap { $0 } ?? []
        self.cursor = try container.decodeIfPresent(String.self, forKey: .cursor)
    }
}

private struct HgCatResponse: Decodable, Sendable {
    let repository: HgCatRepository?
}

private struct HgCatRepository: Decodable, Sendable {
    let cat: String?
}

struct HgRevisionPage: Decodable, Sendable {
    let results: [HgRevision]
    let cursor: String?
}

struct HgRevision: Decodable, Sendable, Identifiable, Hashable {
    let id: String
    let author: String
    let description: String
    let branch: String?
    let tags: [String]?

    var displayShortId: String {
        String(id.prefix(12))
    }

    var title: String {
        description.prefix(while: { $0 != "\n" }).trimmingCharacters(in: .whitespacesAndNewlines)
    }

    var body: String? {
        let body = description
            .split(separator: "\n", maxSplits: 1, omittingEmptySubsequences: false)
            .dropFirst()
            .first
            .map(String.init)?
            .trimmingCharacters(in: .whitespacesAndNewlines)
        return body?.isEmpty == false ? body : nil
    }

    var primaryName: String {
        if let tag = tags?.first, !tag.isEmpty {
            return tag
        }
        if let branch, !branch.isEmpty {
            return branch
        }
        return displayShortId
    }
}

struct HgFile: Decodable, Sendable, Hashable, Identifiable {
    let name: String

    var id: String { name }

    var isDirectory: Bool {
        name.hasSuffix("/")
    }
}

struct HgNamedRevision: Decodable, Sendable, Identifiable, Hashable {
    let name: String
    let id: String

    var displayShortId: String {
        String(id.prefix(12))
    }
}

@Observable
@MainActor
final class HgRepositoryDetailViewModel {
    enum Tab: String, CaseIterable {
        case summary = "Summary"
        case browse = "Browse"
        case log = "Log"
        case tags = "Tags"
        case branches = "Branches"
        case bookmarks = "Bookmarks"
    }

    enum ReadmeContent {
        case html(String)
        case markdown(String)
        case org(String)
        case plainText(String)
    }

    let repository: RepositorySummary
    private let client: SRHTClient

    private(set) var summaryLoaded = false
    private(set) var isLoadingSummary = false
    private(set) var readmeContent: ReadmeContent?
    private(set) var readmePath: String?
    private(set) var nonPublishing = false
    private(set) var tip: HgRevision?
    private(set) var branches: [HgNamedRevision] = []
    private(set) var tags: [HgNamedRevision] = []
    private(set) var bookmarks: [HgNamedRevision] = []

    private(set) var log: [HgRevision] = []
    private(set) var isLoadingLog = false
    private(set) var isLoadingMoreLog = false
    private var logCursor: String?
    private var hasMoreLog = true

    private(set) var currentBrowsePath = ""
    private(set) var pathStack: [String] = []
    private(set) var files: [HgFile] = []
    private(set) var fileContent: String?
    private(set) var selectedFilePath: String?
    private(set) var isLoadingBrowse = false
    private(set) var browseRevspec = "tip"

    var error: String?

    init(repository: RepositorySummary, client: SRHTClient) {
        self.repository = repository
        self.client = client
    }

    private static let summaryQuery = """
    query hgRepositorySummary($rid: ID!) {
        repository(rid: $rid) {
            id
            rid
            name
            description
            visibility
            readme
            nonPublishing
            tip {
                id
                author
                description
                branch
                tags
            }
            branches {
                results {
                    name
                    id
                }
                cursor
            }
            tags {
                results {
                    name
                    id
                }
                cursor
            }
            bookmarks {
                results {
                    name
                    id
                }
                cursor
            }
        }
    }
    """

    private static let logQuery = """
    query hgRepositoryLog($rid: ID!, $cursor: Cursor) {
        repository(rid: $rid) {
            log(cursor: $cursor) {
                results {
                    id
                    author
                    description
                    branch
                    tags
                }
                cursor
            }
        }
    }
    """

    private static func readmeFileQuery(filename: String) -> String {
        """
        query hgReadmeFile($rid: ID!) {
            repository(rid: $rid) {
                readme: cat(path: "\(filename)", revspec: "tip")
            }
        }
        """
    }

    private static let readmeFilenames = [
        "README.md", "README.org", "README.txt", "README",
        "readme.md", "readme.org"
    ]

    private static let filesQuery = """
    query hgFiles($rid: ID!, $path: String!, $revspec: String!) {
        repository(rid: $rid) {
            files(path: $path, revspec: $revspec) {
                results {
                    name
                }
                cursor
            }
        }
    }
    """

    private static let catQuery = """
    query hgCat($rid: ID!, $path: String!, $revspec: String!) {
        repository(rid: $rid) {
            cat(path: $path, revspec: $revspec)
        }
    }
    """

    func loadSummary() async {
        guard !isLoadingSummary, !summaryLoaded else { return }
        isLoadingSummary = true
        defer { isLoadingSummary = false }
        error = nil

        do {
            let result = try await client.execute(
                service: .hg,
                query: Self.summaryQuery,
                variables: ["rid": repository.rid],
                responseType: HgRepositorySummaryResponse.self
            )

            guard let repository = result.repository else {
                summaryLoaded = true
                return
            }

            tip = repository.tip?.resolvedRevision
            branches = repository.branches?.results ?? []
            tags = repository.tags?.results ?? []
            bookmarks = repository.bookmarks?.results ?? []
            nonPublishing = repository.nonPublishing ?? false

            if let html = repository.readme, !html.isEmpty {
                readmePath = nil
                readmeContent = .html(html)
            } else {
                await loadReadmeFile()
            }

            summaryLoaded = true
        } catch {
            self.error = error.userFacingMessage
        }
    }

    func loadLog() async {
        guard !isLoadingLog else { return }
        isLoadingLog = true
        defer { isLoadingLog = false }
        error = nil
        logCursor = nil
        hasMoreLog = true

        do {
            let page = try await fetchLogPage(cursor: nil)
            log = page.results
            logCursor = page.cursor
            hasMoreLog = page.cursor != nil
        } catch {
            if isEmptyRepositoryError(error) {
                log = []
                logCursor = nil
                hasMoreLog = false
            } else {
                self.error = error.userFacingMessage
            }
        }
    }

    func loadMoreLogIfNeeded(currentItem: HgRevision) async {
        guard let last = log.last,
              last.id == currentItem.id,
              hasMoreLog,
              !isLoadingMoreLog else {
            return
        }

        isLoadingMoreLog = true
        defer { isLoadingMoreLog = false }

        do {
            let page = try await fetchLogPage(cursor: logCursor)
            log.append(contentsOf: page.results)
            logCursor = page.cursor
            hasMoreLog = page.cursor != nil
        } catch {
            self.error = error.userFacingMessage
        }
    }

    private func fetchLogPage(cursor: String?) async throws -> HgRevisionPage {
        var variables: [String: any Sendable] = ["rid": repository.rid]
        if let cursor {
            variables["cursor"] = cursor
        }

        let result = try await client.execute(
            service: .hg,
            query: Self.logQuery,
            variables: variables,
            responseType: HgRevisionLogResponse.self
        )
        return result.repository?.log ?? HgRevisionPage(results: [], cursor: nil)
    }

    private func loadReadmeFile() async {
        for filename in Self.readmeFilenames {
            do {
                let result = try await client.execute(
                    service: .hg,
                    query: Self.readmeFileQuery(filename: filename),
                    variables: ["rid": repository.rid],
                    responseType: HgReadmeFileResponse.self
                )

                if let text = result.repository?.readme, !text.isEmpty {
                    readmePath = filename
                    if filename.hasSuffix(".md") {
                        readmeContent = .markdown(text)
                    } else if filename.hasSuffix(".org") {
                        readmeContent = .org(text)
                    } else {
                        readmeContent = .plainText(text)
                    }
                    return
                }
            } catch {
                if isEmptyRepositoryError(error) {
                    readmeContent = nil
                    readmePath = nil
                    return
                }
                continue
            }
        }
    }

    func loadBrowseRoot() async {
        await loadFiles(at: "")
    }

    func openFile(_ file: HgFile) async {
        let path = joinedPath(for: file.name)
        if file.isDirectory {
            await loadFiles(at: path)
            return
        }

        isLoadingBrowse = true
        defer { isLoadingBrowse = false }
        error = nil

        do {
            let result = try await client.execute(
                service: .hg,
                query: Self.catQuery,
                variables: ["rid": repository.rid, "path": path, "revspec": browseRevspec],
                responseType: HgCatResponse.self
            )

            if let text = result.repository?.cat {
                selectedFilePath = path
                fileContent = text
            } else {
                await loadFiles(at: path)
            }
        } catch {
            self.error = error.userFacingMessage
        }
    }

    func navigateToPath(index: Int) async {
        guard index >= 0, index <= pathStack.count else { return }
        let targetPath = Array(pathStack.prefix(index)).joined(separator: "/")
        await loadFiles(at: targetPath)
    }

    func dismissFileView() {
        selectedFilePath = nil
        fileContent = nil
    }

    func changeBrowseRevspec(_ newRevspec: String) async {
        guard browseRevspec != newRevspec else { return }
        browseRevspec = newRevspec
        await loadBrowseRoot()
    }

    private func loadFiles(at path: String) async {
        isLoadingBrowse = true
        defer { isLoadingBrowse = false }
        error = nil
        selectedFilePath = nil
        fileContent = nil

        do {
            let result = try await client.execute(
                service: .hg,
                query: Self.filesQuery,
                variables: ["rid": repository.rid, "path": path, "revspec": browseRevspec],
                responseType: HgFilesResponse.self
            )

            currentBrowsePath = path
            pathStack = path.isEmpty ? [] : path.split(separator: "/").map(String.init)
            files = result.repository?.files?.results ?? []
        } catch {
            if isEmptyRepositoryError(error) {
                currentBrowsePath = path
                pathStack = path.isEmpty ? [] : path.split(separator: "/").map(String.init)
                files = []
            } else {
                self.error = error.userFacingMessage
            }
        }
    }

    private func joinedPath(for name: String) -> String {
        let cleanedName = name.hasSuffix("/") ? String(name.dropLast()) : name
        return currentBrowsePath.isEmpty ? cleanedName : "\(currentBrowsePath)/\(cleanedName)"
    }

    private func isEmptyRepositoryError(_ error: Error) -> Bool {
        error.matchesGraphQLErrorClassification(.notFound)
            || error.matchesGraphQLErrorClassification(.unknownRevision)
            || error.matchesGraphQLErrorClassification(.noRows)
            || error.containsGraphQLErrorMessage("missing")
    }
}