mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-25 22:46:04 +03:00
Merge pull request #7323 from nextcloud/bugfix/mac-vfs-ci-swift6
Fix Swift 6-related CI errors with macOS VFS module
This commit is contained in:
commit
09e10b99d7
1 changed files with 40 additions and 39 deletions
|
@ -107,11 +107,10 @@ extension FileProviderExtension: NSFileProviderServicing, ChangeNotificationInte
|
||||||
@objc func setupDomainAccount(
|
@objc func setupDomainAccount(
|
||||||
user: String, userId: String, serverUrl: String, password: String
|
user: String, userId: String, serverUrl: String, password: String
|
||||||
) {
|
) {
|
||||||
let semaphore = DispatchSemaphore(value: 0)
|
|
||||||
var authAttemptState = AuthenticationAttemptResultState.connectionError // default
|
|
||||||
Task {
|
Task {
|
||||||
let authTestNcKit = NextcloudKit()
|
let authTestNcKit = NextcloudKit()
|
||||||
authTestNcKit.setup(user: user, userId: userId, password: password, urlBase: serverUrl)
|
authTestNcKit.setup(user: user, userId: userId, password: password, urlBase: serverUrl)
|
||||||
|
var authAttemptState = AuthenticationAttemptResultState.connectionError // default
|
||||||
|
|
||||||
// Retry a few times if we have a connection issue
|
// Retry a few times if we have a connection issue
|
||||||
for authTimeout in AuthenticationTimeouts {
|
for authTimeout in AuthenticationTimeouts {
|
||||||
|
@ -123,9 +122,6 @@ extension FileProviderExtension: NSFileProviderServicing, ChangeNotificationInte
|
||||||
)
|
)
|
||||||
try? await Task.sleep(nanoseconds: authTimeout)
|
try? await Task.sleep(nanoseconds: authTimeout)
|
||||||
}
|
}
|
||||||
semaphore.signal()
|
|
||||||
}
|
|
||||||
semaphore.wait()
|
|
||||||
|
|
||||||
switch (authAttemptState) {
|
switch (authAttemptState) {
|
||||||
case .authenticationError:
|
case .authenticationError:
|
||||||
|
@ -134,7 +130,8 @@ extension FileProviderExtension: NSFileProviderServicing, ChangeNotificationInte
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
case .connectionError:
|
case .connectionError:
|
||||||
// Despite multiple connection attempts we are still getting connection issues, so quit.
|
// Despite multiple connection attempts we are still getting connection issues.
|
||||||
|
// Connection error should be provided
|
||||||
Logger.fileProviderExtension.info(
|
Logger.fileProviderExtension.info(
|
||||||
"\(user, privacy: .public) authentication try failed, no connection."
|
"\(user, privacy: .public) authentication try failed, no connection."
|
||||||
)
|
)
|
||||||
|
@ -148,7 +145,9 @@ extension FileProviderExtension: NSFileProviderServicing, ChangeNotificationInte
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
let newNcAccount = Account(user: user, id: userId, serverUrl: serverUrl, password: password)
|
Task { @MainActor in
|
||||||
|
let newNcAccount =
|
||||||
|
Account(user: user, id: userId, serverUrl: serverUrl, password: password)
|
||||||
guard newNcAccount != ncAccount else { return }
|
guard newNcAccount != ncAccount else { return }
|
||||||
ncAccount = newNcAccount
|
ncAccount = newNcAccount
|
||||||
ncKit.setup(
|
ncKit.setup(
|
||||||
|
@ -167,6 +166,8 @@ extension FileProviderExtension: NSFileProviderServicing, ChangeNotificationInte
|
||||||
ncKit.setup(delegate: changeObserver)
|
ncKit.setup(delegate: changeObserver)
|
||||||
signalEnumeratorAfterAccountSetup()
|
signalEnumeratorAfterAccountSetup()
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@objc func removeAccountConfig() {
|
@objc func removeAccountConfig() {
|
||||||
Logger.fileProviderExtension.info(
|
Logger.fileProviderExtension.info(
|
||||||
|
|
Loading…
Reference in a new issue