summaryrefslogtreecommitdiff
path: root/Hutch/Views/Repositories/HgRepositorySettingsViewModel.swift
blob: 6df40db53b8faac714543580aaacb14316fd4ec9 (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
import Foundation

private struct HgUpdateRepositoryResponse: Decodable, Sendable {
    let updateRepository: HgUpdatedRepository
}

private struct HgUpdatedRepository: Decodable, Sendable {
    let id: Int
}

private struct HgRepositoryInfoResponse: Decodable, Sendable {
    let repository: HgRepositoryInfo?
}

private struct HgRepositoryInfo: Decodable, Sendable {
    let description: String?
    let visibility: Visibility
    let nonPublishing: Bool?
}

private struct HgACLResponse: Decodable, Sendable {
    let repository: HgACLRepository?
}

private struct HgACLRepository: Decodable, Sendable {
    let accessControlList: HgACLPage
}

private struct HgACLPage: Decodable, Sendable {
    let results: [HgACLEntry]
    let cursor: String?
}

private struct HgUpdateACLResponse: Decodable, Sendable {
    let updateACL: HgACLEntry
}

private struct HgDeleteACLResponse: Decodable, Sendable {
    let deleteACL: HgDeletedACL
}

private struct HgDeletedACL: Decodable, Sendable {
    let id: Int
}

private struct HgDeleteRepositoryResponse: Decodable, Sendable {
    let deleteRepository: HgDeletedRepository
}

private struct HgDeletedRepository: Decodable, Sendable {
    let id: Int
}

struct HgACLEntry: Decodable, Sendable, Identifiable {
    let id: Int
    let mode: String
    let entity: Entity
}

@Observable
@MainActor
final class HgRepositorySettingsViewModel {
    let repositoryId: Int
    let repositoryRid: String
    let repositoryName: String
    private let client: SRHTClient
    private var initialDescription: String
    private var initialVisibility: Visibility

    var editedDescription: String
    var editedVisibility: Visibility
    var editedNonPublishing: Bool
    var isSavingInfo = false
    private(set) var loadedNonPublishing = false

    private(set) var acls: [HgACLEntry] = []
    private(set) var isLoadingACLs = false
    var newACLEntity = ""
    var newACLMode = "RO"
    var isAddingACL = false
    var isDeletingACL = false

    var histeditRevision = ""
    var isDeleting = false
    var didDelete = false
    var error: String?

    var normalizedEditedDescription: String {
        editedDescription.trimmingCharacters(in: .whitespacesAndNewlines)
    }

    var isInfoDirty: Bool {
        normalizedEditedDescription != initialDescription ||
        editedVisibility != initialVisibility ||
        editedNonPublishing != loadedNonPublishing
    }

    init(repository: RepositorySummary, client: SRHTClient) {
        self.repositoryId = repository.id
        self.repositoryRid = repository.rid
        self.repositoryName = repository.name
        self.client = client
        let description = repository.description ?? ""
        self.initialDescription = description
        self.initialVisibility = repository.visibility
        self.editedDescription = description
        self.editedVisibility = repository.visibility
        self.editedNonPublishing = false
    }

    private static let updateRepositoryMutation = """
    mutation updateRepository($id: Int!, $input: RepoInput!) {
        updateRepository(id: $id, input: $input) {
            id
        }
    }
    """

    private static let accessControlListQuery = """
    query hgAccessControlList($rid: ID!) {
        repository(rid: $rid) {
            accessControlList {
                results {
                    id
                    mode
                    entity { canonicalName }
                }
                cursor
            }
        }
    }
    """

    private static let updateACLMutation = """
    mutation updateACL($repoId: Int!, $mode: AccessMode!, $entity: String!) {
        updateACL(repoId: $repoId, mode: $mode, entity: $entity) {
            id
            mode
            entity { canonicalName }
        }
    }
    """

    private static let deleteACLMutation = """
    mutation deleteACL($id: Int!) {
        deleteACL(id: $id) { id }
    }
    """

    private static let deleteRepositoryMutation = """
    mutation deleteRepository($id: Int!) {
        deleteRepository(id: $id) { id }
    }
    """

    private static let repositoryInfoQuery = """
    query hgRepositoryInfo($rid: ID!) {
        repository(rid: $rid) {
            description
            visibility
            nonPublishing
        }
    }
    """

    func loadRepositoryInfo() async {
        error = nil

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

            if let repository = result.repository {
                let description = repository.description ?? ""
                initialDescription = description
                initialVisibility = repository.visibility
                editedDescription = description
                editedVisibility = repository.visibility
                let nonPublishing = repository.nonPublishing ?? false
                editedNonPublishing = nonPublishing
                loadedNonPublishing = nonPublishing
            }
        } catch {
            self.error = error.userFacingMessage
        }
    }

    func saveInfo() async -> Bool {
        isSavingInfo = true
        defer { isSavingInfo = false }
        error = nil

        do {
            let input: [String: any Sendable] = [
                "description": normalizedEditedDescription,
                "visibility": editedVisibility.rawValue,
                "nonPublishing": editedNonPublishing
            ]
            _ = try await client.execute(
                service: .hg,
                query: Self.updateRepositoryMutation,
                variables: ["id": repositoryId, "input": input],
                responseType: HgUpdateRepositoryResponse.self
            )
            initialDescription = normalizedEditedDescription
            initialVisibility = editedVisibility
            loadedNonPublishing = editedNonPublishing
            return true
        } catch {
            self.error = error.userFacingMessage
            return false
        }
    }

    func loadACLs() async {
        guard !isLoadingACLs else { return }
        isLoadingACLs = true
        defer { isLoadingACLs = false }
        error = nil

        do {
            let result = try await client.execute(
                service: .hg,
                query: Self.accessControlListQuery,
                variables: ["rid": repositoryRid],
                responseType: HgACLResponse.self
            )
            acls = result.repository?.accessControlList.results ?? []
        } catch {
            self.error = error.userFacingMessage
        }
    }

    func addACL() async {
        let rawEntity = newACLEntity.trimmingCharacters(in: .whitespacesAndNewlines)
        guard !rawEntity.isEmpty else { return }
        let entity = hgCanonicalEntity(from: rawEntity)
        isAddingACL = true
        defer { isAddingACL = false }
        error = nil

        do {
            let result = try await client.execute(
                service: .hg,
                query: Self.updateACLMutation,
                variables: [
                    "repoId": repositoryId,
                    "mode": newACLMode,
                    "entity": entity
                ],
                responseType: HgUpdateACLResponse.self
            )
            if let index = acls.firstIndex(where: { $0.id == result.updateACL.id }) {
                acls[index] = result.updateACL
            } else {
                acls.append(result.updateACL)
            }
            newACLEntity = ""
        } catch {
            self.error = error.userFacingMessage
        }
    }

    private func hgCanonicalEntity(from input: String) -> String {
        let username = input.hasPrefix("~") ? String(input.dropFirst()) : input
        return "~\(username)"
    }

    func deleteACL(_ entry: HgACLEntry) async {
        isDeletingACL = true
        defer { isDeletingACL = false }
        error = nil

        do {
            _ = try await client.execute(
                service: .hg,
                query: Self.deleteACLMutation,
                variables: ["id": entry.id],
                responseType: HgDeleteACLResponse.self
            )
            acls.removeAll { $0.id == entry.id }
        } catch {
            self.error = error.userFacingMessage
        }
    }

    func deleteRepository() async {
        isDeleting = true
        defer { isDeleting = false }
        error = nil

        do {
            _ = try await client.execute(
                service: .hg,
                query: Self.deleteRepositoryMutation,
                variables: ["id": repositoryId],
                responseType: HgDeleteRepositoryResponse.self
            )
            didDelete = true
        } catch {
            self.error = error.userFacingMessage
        }
    }
}