mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
1a576a15d6
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
105 lines
4.4 KiB
Swift
105 lines
4.4 KiB
Swift
/*
|
|
* Copyright (C) 2023 by Claudio Cambra <claudio.cambra@nextcloud.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*/
|
|
|
|
import Foundation
|
|
import FileProvider
|
|
import OSLog
|
|
|
|
class ClientCommunicationService: NSObject, NSFileProviderServiceSource, NSXPCListenerDelegate, ClientCommunicationProtocol {
|
|
let listener = NSXPCListener.anonymous()
|
|
let serviceName = NSFileProviderServiceName("com.nextcloud.desktopclient.ClientCommunicationService")
|
|
let fpExtension: FileProviderExtension
|
|
|
|
init(fpExtension: FileProviderExtension) {
|
|
Logger.desktopClientConnection.debug("Instantiating client communication service")
|
|
self.fpExtension = fpExtension
|
|
super.init()
|
|
}
|
|
|
|
func makeListenerEndpoint() throws -> NSXPCListenerEndpoint {
|
|
listener.delegate = self
|
|
listener.resume()
|
|
return listener.endpoint
|
|
}
|
|
|
|
func listener(_ listener: NSXPCListener, shouldAcceptNewConnection newConnection: NSXPCConnection) -> Bool {
|
|
newConnection.exportedInterface = NSXPCInterface(with: ClientCommunicationProtocol.self)
|
|
newConnection.exportedObject = self
|
|
newConnection.resume()
|
|
return true
|
|
}
|
|
|
|
//MARK: - Client Communication Protocol methods
|
|
|
|
func getExtensionAccountId(completionHandler: @escaping (String?, Error?) -> Void) {
|
|
let accountUserId = self.fpExtension.domain.identifier.rawValue
|
|
Logger.desktopClientConnection.info("Sending extension account ID \(accountUserId, privacy: .public)")
|
|
completionHandler(accountUserId, nil)
|
|
}
|
|
|
|
func configureAccount(withUser user: String,
|
|
serverUrl: String,
|
|
password: String) {
|
|
Logger.desktopClientConnection.info("Received configure account information over client communication service")
|
|
self.fpExtension.setupDomainAccount(user: user,
|
|
serverUrl: serverUrl,
|
|
password: password)
|
|
}
|
|
|
|
func removeAccountConfig() {
|
|
self.fpExtension.removeAccountConfig()
|
|
}
|
|
|
|
func createDebugLogString(completionHandler: ((String?, Error?) -> Void)!) {
|
|
if #available(macOSApplicationExtension 12.0, *) {
|
|
let (logs, error) = Logger.logEntries()
|
|
guard error == nil else {
|
|
Logger.logger.error("Cannot create debug archive, received error: \(error, privacy: .public)")
|
|
completionHandler(nil, error)
|
|
return
|
|
}
|
|
guard let logs = logs else {
|
|
Logger.logger.error("Canot create debug archive with nil logs.")
|
|
completionHandler(nil, nil)
|
|
return
|
|
}
|
|
completionHandler(logs.joined(separator: "\n"), nil)
|
|
}
|
|
}
|
|
|
|
func getFastEnumerationState(completionHandler: @escaping (Bool, Bool) -> Void) {
|
|
let enabled = fpExtension.config.fastEnumerationEnabled
|
|
let set = fpExtension.config.fastEnumerationSet
|
|
completionHandler(enabled, set)
|
|
}
|
|
|
|
func setFastEnumerationEnabled(_ enabled: Bool) {
|
|
fpExtension.config.fastEnumerationEnabled = enabled
|
|
Logger.fileProviderExtension.info("Fast enumeration setting changed to: \(enabled, privacy: .public)")
|
|
|
|
guard enabled else { return }
|
|
// If enabled, start full enumeration
|
|
guard let fpManager = NSFileProviderManager(for: fpExtension.domain) else {
|
|
let domainName = self.fpExtension.domain.displayName
|
|
Logger.fileProviderExtension.error("Could not get file provider manager for domain \(domainName, privacy: .public), cannot run enumeration after fast enumeration setting change")
|
|
return
|
|
}
|
|
|
|
fpManager.signalEnumerator(for: .workingSet) { error in
|
|
if error != nil {
|
|
Logger.fileProviderExtension.error("Error signalling enumerator for working set, received error: \(error!.localizedDescription, privacy: .public)")
|
|
}
|
|
}
|
|
}
|
|
}
|