2022-03-29 16:00:59 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import FileProvider
|
2022-12-27 02:18:00 +03:00
|
|
|
import OSLog
|
|
|
|
import NCDesktopClientSocketKit
|
2023-01-04 23:09:48 +03:00
|
|
|
import NextcloudKit
|
2022-03-29 16:00:59 +03:00
|
|
|
|
|
|
|
class FileProviderExtension: NSObject, NSFileProviderReplicatedExtension {
|
2022-05-13 14:50:17 +03:00
|
|
|
let domain: NSFileProviderDomain
|
2023-01-04 23:09:48 +03:00
|
|
|
|
|
|
|
let appGroupIdentifier: String? = Bundle.main.object(forInfoDictionaryKey: "SocketApiPrefix") as? String
|
2023-01-04 23:40:30 +03:00
|
|
|
var ncAccount: NextcloudAccount?
|
2023-01-04 23:18:21 +03:00
|
|
|
lazy var socketClient: LocalSocketClient? = {
|
2023-01-12 18:38:57 +03:00
|
|
|
guard let containerUrl = pathForAppGroupContainer() else {
|
|
|
|
NSLog("Could not start file provider socket client properly as could not get container url")
|
2023-01-04 23:18:21 +03:00
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2023-01-12 18:38:57 +03:00
|
|
|
let socketPath = containerUrl.appendingPathComponent(".fileprovidersocket", conformingTo: .archive)
|
2023-01-04 23:18:21 +03:00
|
|
|
let lineProcessor = FileProviderSocketLineProcessor(delegate: self)
|
|
|
|
|
2023-01-12 18:38:57 +03:00
|
|
|
return LocalSocketClient(socketPath: socketPath.path, lineProcessor: lineProcessor)
|
2023-01-04 23:18:21 +03:00
|
|
|
}()
|
2022-12-29 02:21:33 +03:00
|
|
|
|
2023-01-04 23:09:48 +03:00
|
|
|
let urlSessionIdentifier: String = "com.nextcloud.session.upload.fileproviderext"
|
|
|
|
let urlSessionMaximumConnectionsPerHost = 5
|
|
|
|
lazy var urlSession: URLSession = {
|
|
|
|
let configuration = URLSessionConfiguration.background(withIdentifier: urlSessionIdentifier)
|
|
|
|
configuration.allowsCellularAccess = true
|
|
|
|
configuration.sessionSendsLaunchEvents = true
|
|
|
|
configuration.isDiscretionary = false
|
|
|
|
configuration.httpMaximumConnectionsPerHost = urlSessionMaximumConnectionsPerHost
|
|
|
|
configuration.requestCachePolicy = NSURLRequest.CachePolicy.reloadIgnoringLocalCacheData
|
|
|
|
configuration.sharedContainerIdentifier = appGroupIdentifier
|
|
|
|
let session = URLSession(configuration: configuration, delegate: NKBackground.shared, delegateQueue: OperationQueue.main)
|
|
|
|
return session
|
|
|
|
}()
|
|
|
|
|
2022-03-29 16:00:59 +03:00
|
|
|
required init(domain: NSFileProviderDomain) {
|
2022-05-13 14:50:17 +03:00
|
|
|
self.domain = domain
|
2022-05-11 19:52:14 +03:00
|
|
|
// The containing application must create a domain using `NSFileProviderManager.add(_:, completionHandler:)`. The system will then launch the application extension process, call `FileProviderExtension.init(domain:)` to instantiate the extension for that domain, and call methods on the instance.
|
2022-12-27 02:18:00 +03:00
|
|
|
|
2022-03-29 16:00:59 +03:00
|
|
|
super.init()
|
2023-01-04 23:18:21 +03:00
|
|
|
self.socketClient?.start()
|
2022-03-29 16:00:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func invalidate() {
|
|
|
|
// TODO: cleanup any resources
|
|
|
|
}
|
2022-12-29 02:21:33 +03:00
|
|
|
|
|
|
|
// MARK: NSFileProviderReplicatedExtension protocol methods
|
2022-03-29 16:00:59 +03:00
|
|
|
|
|
|
|
func item(for identifier: NSFileProviderItemIdentifier, request: NSFileProviderRequest, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) -> Progress {
|
|
|
|
// resolve the given identifier to a record in the model
|
2023-01-27 03:54:32 +03:00
|
|
|
|
|
|
|
NSLog("Received item request for item with identifier: %@", identifier.rawValue)
|
2023-01-26 22:51:23 +03:00
|
|
|
if identifier == .rootContainer {
|
2023-01-27 01:01:31 +03:00
|
|
|
guard let ncAccount = ncAccount else {
|
2023-01-26 22:51:23 +03:00
|
|
|
completionHandler(nil, NSFileProviderError(.notAuthenticated))
|
|
|
|
return Progress()
|
|
|
|
}
|
2022-03-29 16:00:59 +03:00
|
|
|
|
2023-01-26 22:51:23 +03:00
|
|
|
let metadata = NextcloudItemMetadataTable()
|
|
|
|
|
2023-01-27 01:01:31 +03:00
|
|
|
metadata.account = ncAccount.ncKitAccount
|
2023-01-26 22:51:23 +03:00
|
|
|
metadata.directory = true
|
|
|
|
metadata.ocId = NSFileProviderItemIdentifier.rootContainer.rawValue
|
|
|
|
metadata.fileName = "root"
|
|
|
|
metadata.fileNameView = "root"
|
2023-01-27 01:01:31 +03:00
|
|
|
metadata.serverUrl = ncAccount.serverUrl
|
2023-01-26 22:51:23 +03:00
|
|
|
metadata.classFile = NKCommon.typeClassFile.directory.rawValue
|
|
|
|
|
|
|
|
completionHandler(FileProviderItem(metadata: metadata, parentItemIdentifier: NSFileProviderItemIdentifier.rootContainer), nil)
|
|
|
|
return Progress()
|
|
|
|
}
|
|
|
|
|
|
|
|
let dbManager = NextcloudFilesDatabaseManager.shared
|
|
|
|
guard let metadata = dbManager.itemMetadataFromFileProviderItemIdentifier(identifier),
|
|
|
|
let parentItemIdentifier = parentItemIdentifierFromMetadata(metadata) else {
|
|
|
|
completionHandler(nil, NSFileProviderError(.noSuchItem))
|
|
|
|
return Progress()
|
|
|
|
}
|
|
|
|
|
|
|
|
completionHandler(FileProviderItem(metadata: metadata, parentItemIdentifier: parentItemIdentifier), nil)
|
2022-03-29 16:00:59 +03:00
|
|
|
return Progress()
|
|
|
|
}
|
|
|
|
|
|
|
|
func fetchContents(for itemIdentifier: NSFileProviderItemIdentifier, version requestedVersion: NSFileProviderItemVersion?, request: NSFileProviderRequest, completionHandler: @escaping (URL?, NSFileProviderItem?, Error?) -> Void) -> Progress {
|
|
|
|
// TODO: implement fetching of the contents for the itemIdentifier at the specified version
|
|
|
|
|
|
|
|
completionHandler(nil, nil, NSError(domain: NSCocoaErrorDomain, code: NSFeatureUnsupportedError, userInfo:[:]))
|
|
|
|
return Progress()
|
|
|
|
}
|
|
|
|
|
|
|
|
func createItem(basedOn itemTemplate: NSFileProviderItem, fields: NSFileProviderItemFields, contents url: URL?, options: NSFileProviderCreateItemOptions = [], request: NSFileProviderRequest, completionHandler: @escaping (NSFileProviderItem?, NSFileProviderItemFields, Bool, Error?) -> Void) -> Progress {
|
|
|
|
// TODO: a new item was created on disk, process the item's creation
|
|
|
|
|
|
|
|
completionHandler(itemTemplate, [], false, nil)
|
|
|
|
return Progress()
|
|
|
|
}
|
|
|
|
|
|
|
|
func modifyItem(_ item: NSFileProviderItem, baseVersion version: NSFileProviderItemVersion, changedFields: NSFileProviderItemFields, contents newContents: URL?, options: NSFileProviderModifyItemOptions = [], request: NSFileProviderRequest, completionHandler: @escaping (NSFileProviderItem?, NSFileProviderItemFields, Bool, Error?) -> Void) -> Progress {
|
|
|
|
// TODO: an item was modified on disk, process the item's modification
|
|
|
|
|
|
|
|
completionHandler(nil, [], false, NSError(domain: NSCocoaErrorDomain, code: NSFeatureUnsupportedError, userInfo:[:]))
|
|
|
|
return Progress()
|
|
|
|
}
|
|
|
|
|
|
|
|
func deleteItem(identifier: NSFileProviderItemIdentifier, baseVersion version: NSFileProviderItemVersion, options: NSFileProviderDeleteItemOptions = [], request: NSFileProviderRequest, completionHandler: @escaping (Error?) -> Void) -> Progress {
|
|
|
|
// TODO: an item was deleted on disk, process the item's deletion
|
|
|
|
|
|
|
|
completionHandler(NSError(domain: NSCocoaErrorDomain, code: NSFeatureUnsupportedError, userInfo:[:]))
|
|
|
|
return Progress()
|
|
|
|
}
|
|
|
|
|
|
|
|
func enumerator(for containerItemIdentifier: NSFileProviderItemIdentifier, request: NSFileProviderRequest) throws -> NSFileProviderEnumerator {
|
2023-01-10 22:25:26 +03:00
|
|
|
return FileProviderEnumerator(enumeratedItemIdentifier: containerItemIdentifier, ncAccount: ncAccount)
|
2022-03-29 16:00:59 +03:00
|
|
|
}
|
2022-12-29 02:21:33 +03:00
|
|
|
|
|
|
|
// MARK: Nextcloud desktop client communication
|
2022-12-30 21:52:51 +03:00
|
|
|
func sendFileProviderDomainIdentifier() {
|
2022-12-29 02:21:33 +03:00
|
|
|
let command = "FILE_PROVIDER_DOMAIN_IDENTIFIER_REQUEST_REPLY"
|
|
|
|
let argument = domain.identifier.rawValue
|
|
|
|
let message = command + ":" + argument + "\n"
|
2023-01-04 23:18:21 +03:00
|
|
|
socketClient?.sendMessage(message)
|
2022-12-29 02:21:33 +03:00
|
|
|
}
|
2022-12-30 21:52:51 +03:00
|
|
|
|
2023-01-27 01:01:31 +03:00
|
|
|
func setupDomainAccount(user: String, serverUrl: String, password: String) {
|
|
|
|
ncAccount = NextcloudAccount(user: user, serverUrl: serverUrl, password: password)
|
2022-12-30 21:52:51 +03:00
|
|
|
}
|
2022-03-29 16:00:59 +03:00
|
|
|
}
|