2023-11-21 12:38:01 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2022 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fileproviderxpc.h"
|
|
|
|
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
|
2023-12-27 12:22:16 +03:00
|
|
|
#include "gui/accountmanager.h"
|
2023-12-27 13:58:07 +03:00
|
|
|
#include "gui/macOS/fileproviderxpc_mac_utils.h"
|
2023-11-22 14:45:48 +03:00
|
|
|
|
|
|
|
#import "ClientCommunicationProtocol.h"
|
|
|
|
|
2023-11-21 12:38:01 +03:00
|
|
|
namespace OCC {
|
|
|
|
|
|
|
|
namespace Mac {
|
|
|
|
|
|
|
|
Q_LOGGING_CATEGORY(lcFileProviderXPC, "nextcloud.gui.macos.fileprovider.xpc", QtInfoMsg)
|
|
|
|
|
2023-12-27 13:42:34 +03:00
|
|
|
FileProviderXPC::FileProviderXPC(QObject *parent)
|
|
|
|
: QObject{parent}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-12-27 14:10:37 +03:00
|
|
|
void FileProviderXPC::connectToExtensions()
|
2023-12-27 13:42:34 +03:00
|
|
|
{
|
|
|
|
qCInfo(lcFileProviderXPC) << "Starting file provider XPC";
|
|
|
|
|
2023-12-27 13:58:07 +03:00
|
|
|
const auto managers = FileProviderXPCUtils::getDomainManagers();
|
|
|
|
const auto domainUrls = FileProviderXPCUtils::getDomainUrlsForManagers(managers);
|
|
|
|
const auto fpServices = FileProviderXPCUtils::getFileProviderServicesAtUrls(domainUrls);
|
|
|
|
const auto connections = FileProviderXPCUtils::connectToFileProviderServices(fpServices);
|
2023-12-27 14:10:37 +03:00
|
|
|
processConnections(connections);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileProviderXPC::processConnections(NSArray *const connections)
|
|
|
|
{
|
2023-12-27 13:42:34 +03:00
|
|
|
dispatch_group_t group = dispatch_group_create();
|
|
|
|
|
2023-12-12 20:38:33 +03:00
|
|
|
NSMutableDictionary<NSString *, NSObject<ClientCommunicationProtocol>*> *const clientCommServices = NSMutableDictionary.dictionary;
|
|
|
|
|
2023-12-05 17:39:05 +03:00
|
|
|
for (NSXPCConnection * const connection in connections) {
|
|
|
|
Q_ASSERT(connection != nil);
|
|
|
|
connection.remoteObjectInterface = [NSXPCInterface interfaceWithProtocol:@protocol(ClientCommunicationProtocol)];
|
|
|
|
connection.interruptionHandler = ^{
|
|
|
|
qCInfo(lcFileProviderXPC) << "File provider connection interrupted";
|
|
|
|
};
|
|
|
|
connection.invalidationHandler = ^{
|
|
|
|
qCInfo(lcFileProviderXPC) << "File provider connection invalidated";
|
|
|
|
};
|
|
|
|
[connection resume];
|
|
|
|
|
|
|
|
const id remoteServiceObject = [connection remoteObjectProxyWithErrorHandler:^(NSError *const error){
|
|
|
|
qCWarning(lcFileProviderXPC) << "Error getting remote object proxy" << error;
|
|
|
|
}];
|
|
|
|
|
2023-12-11 15:37:29 +03:00
|
|
|
if (![remoteServiceObject conformsToProtocol:@protocol(ClientCommunicationProtocol)]) {
|
|
|
|
qCWarning(lcFileProviderXPC) << "Remote service object does not conform to protocol";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-12-05 17:39:05 +03:00
|
|
|
NSObject<ClientCommunicationProtocol> *const clientCommService = (NSObject<ClientCommunicationProtocol> *)remoteServiceObject;
|
|
|
|
if (clientCommService == nil) {
|
|
|
|
qCWarning(lcFileProviderXPC) << "Client communication service is nil";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
[clientCommService retain];
|
2023-12-12 20:38:33 +03:00
|
|
|
__block NSString *extensionNcAccount = @"";
|
|
|
|
dispatch_group_enter(group);
|
|
|
|
[clientCommService getExtensionAccountIdWithCompletionHandler:^(NSString *const extensionAccountId, NSError *const error){
|
|
|
|
if (error != nil) {
|
|
|
|
qCWarning(lcFileProviderXPC) << "Error getting extension account id" << error;
|
|
|
|
dispatch_group_leave(group);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
extensionNcAccount = [NSString stringWithString:extensionAccountId];
|
|
|
|
[extensionNcAccount retain];
|
|
|
|
dispatch_group_leave(group);
|
|
|
|
}];
|
|
|
|
|
|
|
|
dispatch_group_wait(group, DISPATCH_TIME_FOREVER); // Do not edit the NSDictionary concurrently
|
|
|
|
|
|
|
|
if (extensionNcAccount == nil) {
|
|
|
|
qCWarning(lcFileProviderXPC) << "Extension account id is nil";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
qCInfo(lcFileProviderXPC) << "Got extension account id" << extensionNcAccount.UTF8String;
|
|
|
|
[clientCommServices setObject:clientCommService forKey:extensionNcAccount];
|
|
|
|
}
|
2023-12-27 12:22:16 +03:00
|
|
|
|
2023-12-27 14:10:37 +03:00
|
|
|
_clientCommServices = clientCommServices.copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FileProviderXPC::configureExtensions()
|
|
|
|
{
|
|
|
|
for (NSString *const extensionNcAccount in _clientCommServices) {
|
2023-12-27 12:22:16 +03:00
|
|
|
qCInfo(lcFileProviderXPC) << "Sending message to client communication service";
|
|
|
|
|
|
|
|
const auto qExtensionNcAccount = QString::fromNSString(extensionNcAccount);
|
|
|
|
const auto accountManager = AccountManager::instance();
|
|
|
|
|
|
|
|
Q_ASSERT(accountManager);
|
|
|
|
|
|
|
|
const auto accountState = accountManager->accountFromUserId(qExtensionNcAccount);
|
|
|
|
if (!accountState) {
|
|
|
|
qCWarning(lcFileProviderXPC) << "Account state is null for received account"
|
|
|
|
<< qExtensionNcAccount;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto account = accountState->account();
|
|
|
|
const auto credentials = account->credentials();
|
|
|
|
NSString *const user = credentials->user().toNSString();
|
|
|
|
NSString *const serverUrl = account->url().toString().toNSString();
|
|
|
|
NSString *const password = credentials->password().toNSString();
|
|
|
|
|
2023-12-27 14:10:37 +03:00
|
|
|
NSObject<ClientCommunicationProtocol> *const clientCommService = [_clientCommServices objectForKey:extensionNcAccount];
|
2023-12-27 12:22:16 +03:00
|
|
|
[clientCommService configureAccountWithUser:user
|
|
|
|
serverUrl:serverUrl
|
|
|
|
password:password];
|
2023-12-05 17:39:05 +03:00
|
|
|
}
|
2023-11-22 14:45:48 +03:00
|
|
|
}
|
|
|
|
|
2023-11-21 12:38:01 +03:00
|
|
|
} // namespace OCC
|
|
|
|
|
|
|
|
} // namespace Mac
|