mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 04:55:48 +03:00
Keep pointer to FileProviderExtension around in ClientCommunicationService
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
22c176af8a
commit
a2d69fcf7c
4 changed files with 12 additions and 4 deletions
|
@ -19,7 +19,7 @@ import NextcloudKit
|
||||||
import OSLog
|
import OSLog
|
||||||
|
|
||||||
extension FileProviderExtension {
|
extension FileProviderExtension {
|
||||||
func sendFileProviderDomainIdentifier() {
|
@objc func sendFileProviderDomainIdentifier() {
|
||||||
let command = "FILE_PROVIDER_DOMAIN_IDENTIFIER_REQUEST_REPLY"
|
let command = "FILE_PROVIDER_DOMAIN_IDENTIFIER_REQUEST_REPLY"
|
||||||
let argument = domain.identifier.rawValue
|
let argument = domain.identifier.rawValue
|
||||||
let message = command + ":" + argument + "\n"
|
let message = command + ":" + argument + "\n"
|
||||||
|
@ -75,7 +75,7 @@ extension FileProviderExtension {
|
||||||
signalEnumeratorAfterAccountSetup()
|
signalEnumeratorAfterAccountSetup()
|
||||||
}
|
}
|
||||||
|
|
||||||
func removeAccountConfig() {
|
@objc func removeAccountConfig() {
|
||||||
Logger.fileProviderExtension.info(
|
Logger.fileProviderExtension.info(
|
||||||
"Received instruction to remove account data for user \(self.ncAccount!.username, privacy: .public) at server \(self.ncAccount!.serverUrl, privacy: .public)"
|
"Received instruction to remove account data for user \(self.ncAccount!.username, privacy: .public) at server \(self.ncAccount!.serverUrl, privacy: .public)"
|
||||||
)
|
)
|
||||||
|
|
|
@ -17,7 +17,7 @@ import NCDesktopClientSocketKit
|
||||||
import NextcloudKit
|
import NextcloudKit
|
||||||
import OSLog
|
import OSLog
|
||||||
|
|
||||||
class FileProviderExtension: NSObject, NSFileProviderReplicatedExtension, NKCommonDelegate {
|
@objc class FileProviderExtension: NSObject, NSFileProviderReplicatedExtension, NKCommonDelegate {
|
||||||
let domain: NSFileProviderDomain
|
let domain: NSFileProviderDomain
|
||||||
let ncKit = NextcloudKit()
|
let ncKit = NextcloudKit()
|
||||||
let appGroupIdentifier = Bundle.main.object(forInfoDictionaryKey: "SocketApiPrefix") as? String
|
let appGroupIdentifier = Bundle.main.object(forInfoDictionaryKey: "SocketApiPrefix") as? String
|
||||||
|
|
|
@ -17,9 +17,14 @@
|
||||||
|
|
||||||
NS_ASSUME_NONNULL_BEGIN
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
@class FileProviderExtension;
|
||||||
|
|
||||||
@interface ClientCommunicationService : NSObject<NSFileProviderServiceSource>
|
@interface ClientCommunicationService : NSObject<NSFileProviderServiceSource>
|
||||||
|
|
||||||
@property (readonly) NSXPCListener *listener;
|
@property (readonly) NSXPCListener *listener;
|
||||||
|
@property (readonly) FileProviderExtension *extension;
|
||||||
|
|
||||||
|
- (instancetype)initWithFileProviderExtension:(FileProviderExtension *)extension;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|
|
@ -14,16 +14,19 @@
|
||||||
|
|
||||||
#import "ClientCommunicationService.h"
|
#import "ClientCommunicationService.h"
|
||||||
|
|
||||||
|
#import "FileProviderExt-Swift.h"
|
||||||
|
|
||||||
@implementation ClientCommunicationService
|
@implementation ClientCommunicationService
|
||||||
|
|
||||||
@synthesize serviceName = _serviceName;
|
@synthesize serviceName = _serviceName;
|
||||||
|
|
||||||
- (instancetype)init
|
- (instancetype)initWithFileProviderExtension:(FileProviderExtension *)extension
|
||||||
{
|
{
|
||||||
self = [super init];
|
self = [super init];
|
||||||
if (self) {
|
if (self) {
|
||||||
_serviceName = @"com.nextcloud.desktopclient.ClientCommunicationService";
|
_serviceName = @"com.nextcloud.desktopclient.ClientCommunicationService";
|
||||||
_listener = NSXPCListener.anonymousListener;
|
_listener = NSXPCListener.anonymousListener;
|
||||||
|
_extension = extension;
|
||||||
}
|
}
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue