forked from intitni/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGeneral.swift
More file actions
293 lines (262 loc) · 10.6 KB
/
General.swift
File metadata and controls
293 lines (262 loc) · 10.6 KB
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
import Client
import ComposableArchitecture
import Foundation
import LaunchAgentManager
import SwiftUI
import XPCShared
@Reducer
struct General {
@ObservableState
struct State: Equatable {
var xpcServiceVersion: String?
var isAccessibilityPermissionGranted: Bool?
var isReloading = false
@Presents var alert: AlertState<Action.Alert>?
}
enum Action {
case appear
case setupLaunchAgentIfNeeded
case setupLaunchAgentClicked
case removeLaunchAgentClicked
case reloadLaunchAgentClicked
case openExtensionManager
case reloadStatus
case finishReloading(xpcServiceVersion: String, permissionGranted: Bool)
case failedReloading
case alert(PresentationAction<Alert>)
case setupLaunchAgent
case finishSetupLaunchAgent
case finishRemoveLaunchAgent
case finishReloadLaunchAgent
@CasePathable
enum Alert: Equatable {
case moveToApplications
case moveTo(URL)
case install
}
}
@Dependency(\.toast) var toast
struct ReloadStatusCancellableId: Hashable {}
static var didWarnInstallationPosition: Bool {
get { UserDefaults.standard.bool(forKey: "didWarnInstallationPosition") }
set { UserDefaults.standard.set(newValue, forKey: "didWarnInstallationPosition") }
}
static var bundleIsInApplicationsFolder: Bool {
Bundle.main.bundleURL.path.hasPrefix("/Applications")
}
var body: some ReducerOf<Self> {
Reduce { state, action in
switch action {
case .appear:
if Self.bundleIsInApplicationsFolder {
return .run { send in
await send(.setupLaunchAgentIfNeeded)
}
}
if !Self.didWarnInstallationPosition {
Self.didWarnInstallationPosition = true
state.alert = .init {
TextState("Move to Applications Folder?")
} actions: {
ButtonState(action: .moveToApplications) {
TextState("Move")
}
ButtonState(role: .cancel) {
TextState("Not Now")
}
} message: {
TextState(
"To ensure the best experience, please move the app to the Applications folder. If the app is not inside the Applications folder, please set up the launch agent manually by clicking the button."
)
}
}
return .none
case .setupLaunchAgentIfNeeded:
return .run { send in
#if DEBUG
// do not auto install on debug build
#else
do {
try await LaunchAgentManager()
.setupLaunchAgentForTheFirstTimeIfNeeded()
} catch {
toast(error.localizedDescription, .error)
}
#endif
await send(.reloadStatus)
}
case .setupLaunchAgentClicked:
if Self.bundleIsInApplicationsFolder {
return .run { send in
await send(.setupLaunchAgent)
}
}
state.alert = .init {
TextState("Setup Launch Agent")
} actions: {
ButtonState(action: .install) {
TextState("Setup")
}
ButtonState(action: .moveToApplications) {
TextState("Move to Applications Folder")
}
ButtonState(role: .cancel) {
TextState("Cancel")
}
} message: {
TextState(
"It's recommended to move the app into the Applications folder. But you can still keep it in the current folder and install the launch agent to ~/Library/LaunchAgents."
)
}
return .none
case .removeLaunchAgentClicked:
return .run { send in
do {
try await LaunchAgentManager().removeLaunchAgent()
await send(.finishRemoveLaunchAgent)
} catch {
toast(error.localizedDescription, .error)
}
await send(.reloadStatus)
}
case .reloadLaunchAgentClicked:
return .run { send in
do {
try await LaunchAgentManager().reloadLaunchAgent()
await send(.finishReloadLaunchAgent)
} catch {
toast(error.localizedDescription, .error)
}
await send(.reloadStatus)
}
case .setupLaunchAgent:
return .run { send in
do {
try await LaunchAgentManager().setupLaunchAgent()
await send(.finishSetupLaunchAgent)
} catch {
toast(error.localizedDescription, .error)
}
await send(.reloadStatus)
}
case .finishSetupLaunchAgent:
state.alert = .init {
TextState("Launch Agent Installed")
} actions: {
ButtonState {
TextState("OK")
}
} message: {
TextState(
"The launch agent has been installed. Please restart the app."
)
}
return .none
case .finishRemoveLaunchAgent:
state.alert = .init {
TextState("Launch Agent Removed")
} actions: {
ButtonState {
TextState("OK")
}
} message: {
TextState(
"The launch agent has been removed."
)
}
return .none
case .finishReloadLaunchAgent:
state.alert = .init {
TextState("Launch Agent Reloaded")
} actions: {
ButtonState {
TextState("OK")
}
} message: {
TextState(
"The launch agent has been reloaded."
)
}
return .none
case .openExtensionManager:
return .run { send in
let service = try getService()
do {
_ = try await service
.send(requestBody: ExtensionServiceRequests.OpenExtensionManager())
} catch {
toast(error.localizedDescription, .error)
await send(.failedReloading)
}
}
case .reloadStatus:
state.isReloading = true
return .run { send in
let service = try getService()
do {
let isCommunicationReady = try await service.launchIfNeeded()
if isCommunicationReady {
let xpcServiceVersion = try await service.getXPCServiceVersion().version
let isAccessibilityPermissionGranted = try await service
.getXPCServiceAccessibilityPermission()
await send(.finishReloading(
xpcServiceVersion: xpcServiceVersion,
permissionGranted: isAccessibilityPermissionGranted
))
} else {
toast("Launching service app.", .info)
try await Task.sleep(nanoseconds: 5_000_000_000)
await send(.reloadStatus)
}
} catch let error as XPCCommunicationBridgeError {
toast(
"Failed to reach communication bridge. \(error.localizedDescription)",
.error
)
await send(.failedReloading)
} catch {
toast(error.localizedDescription, .error)
await send(.failedReloading)
}
}.cancellable(id: ReloadStatusCancellableId(), cancelInFlight: true)
case let .finishReloading(version, granted):
state.xpcServiceVersion = version
state.isAccessibilityPermissionGranted = granted
state.isReloading = false
return .none
case .failedReloading:
state.isReloading = false
return .none
case let .alert(.presented(action)):
switch action {
case .moveToApplications:
return .run { send in
let appURL = URL(fileURLWithPath: "/Applications")
await send(.alert(.presented(.moveTo(appURL))))
}
case let .moveTo(url):
return .run { _ in
do {
try FileManager.default.moveItem(
at: Bundle.main.bundleURL,
to: url.appendingPathComponent(
Bundle.main.bundleURL.lastPathComponent
)
)
await NSApplication.shared.terminate(nil)
} catch {
toast(error.localizedDescription, .error)
}
}
case .install:
return .run { send in
await send(.setupLaunchAgent)
}
}
case .alert(.dismiss):
state.alert = nil
return .none
}
}
}
}