|
@@ -38,34 +38,39 @@ extension NCNetworking {
|
|
|
|
|
|
func setLivephoto(serverUrlfileNamePath: String,
|
|
|
livePhotoFile: String,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.setLivephoto(serverUrlfileNamePath: serverUrlfileNamePath, livePhotoFile: livePhotoFile, options: options) { account, error in
|
|
|
+ NextcloudKit.shared.setLivephoto(serverUrlfileNamePath: serverUrlfileNamePath, livePhotoFile: livePhotoFile, account: account, options: options) { account, error in
|
|
|
continuation.resume(returning: (account: account, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- func getUserProfile(options: NKRequestOptions = NKRequestOptions()) async -> (account: String, userProfile: NKUserProfile?, data: Data?, error: NKError) {
|
|
|
+ func getUserProfile(account: String,
|
|
|
+ options: NKRequestOptions = NKRequestOptions()) async -> (account: String, userProfile: NKUserProfile?, data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.getUserProfile(options: options) { account, userProfile, data, error in
|
|
|
+ NextcloudKit.shared.getUserProfile(account: account, options: options) { account, userProfile, data, error in
|
|
|
continuation.resume(returning: (account: account, userProfile: userProfile, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
func sendClientDiagnosticsRemoteOperation(data: Data,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.sendClientDiagnosticsRemoteOperation(data: data, options: options) { account, error in
|
|
|
+ NextcloudKit.shared.sendClientDiagnosticsRemoteOperation(data: data, account: account, options: options) { account, error in
|
|
|
continuation.resume(returning: (account: account, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- func downloadPreview(url: URL, options: NKRequestOptions = NKRequestOptions()) async -> (account: String, data: Data?, error: NKError) {
|
|
|
+ func downloadPreview(url: URL,
|
|
|
+ account: String,
|
|
|
+ options: NKRequestOptions = NKRequestOptions()) async -> (account: String, data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.downloadPreview(url: url, options: options) { account, data, error in
|
|
|
+ NextcloudKit.shared.downloadPreview(url: url, account: account, options: options) { account, data, error in
|
|
|
continuation.resume(returning: (account: account, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
@@ -78,18 +83,20 @@ extension NCNetworking {
|
|
|
heightPreview: Int = 512,
|
|
|
sizeIcon: Int = 512,
|
|
|
etag: String? = nil,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, imagePreview: UIImage?, imageIcon: UIImage?, imageOriginal: UIImage?, etag: String?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.downloadPreview(fileId: fileId, fileNamePreviewLocalPath: fileNamePreviewLocalPath, fileNameIconLocalPath: fileNameIconLocalPath, widthPreview: widthPreview, heightPreview: heightPreview, sizeIcon: sizeIcon, etag: etag, options: options) { account, imagePreview, imageIcon, imageOriginal, etag, error in
|
|
|
+ NextcloudKit.shared.downloadPreview(fileId: fileId, fileNamePreviewLocalPath: fileNamePreviewLocalPath, fileNameIconLocalPath: fileNameIconLocalPath, widthPreview: widthPreview, heightPreview: heightPreview, sizeIcon: sizeIcon, etag: etag, account: account, options: options) { account, imagePreview, imageIcon, imageOriginal, etag, error in
|
|
|
continuation.resume(returning: (account: account, imagePreview: imagePreview, imageIcon: imageIcon, imageOriginal: imageOriginal, etag: etag, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
func deleteFileOrFolder(serverUrlFileName: String,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.deleteFileOrFolder(serverUrlFileName: serverUrlFileName, options: options) { account, error in
|
|
|
+ NextcloudKit.shared.deleteFileOrFolder(serverUrlFileName: serverUrlFileName, account: account, options: options) { account, error in
|
|
|
continuation.resume(returning: (account: account, error: error))
|
|
|
}
|
|
|
})
|
|
@@ -98,9 +105,10 @@ extension NCNetworking {
|
|
|
func moveFileOrFolder(serverUrlFileNameSource: String,
|
|
|
serverUrlFileNameDestination: String,
|
|
|
overwrite: Bool,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.moveFileOrFolder(serverUrlFileNameSource: serverUrlFileNameSource, serverUrlFileNameDestination: serverUrlFileNameDestination, overwrite: overwrite, options: options) { account, error in
|
|
|
+ NextcloudKit.shared.moveFileOrFolder(serverUrlFileNameSource: serverUrlFileNameSource, serverUrlFileNameDestination: serverUrlFileNameDestination, overwrite: overwrite, account: account, options: options) { account, error in
|
|
|
continuation.resume(returning: (account: account, error: error))
|
|
|
}
|
|
|
})
|
|
@@ -109,18 +117,20 @@ extension NCNetworking {
|
|
|
func copyFileOrFolder(serverUrlFileNameSource: String,
|
|
|
serverUrlFileNameDestination: String,
|
|
|
overwrite: Bool,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.copyFileOrFolder(serverUrlFileNameSource: serverUrlFileNameSource, serverUrlFileNameDestination: serverUrlFileNameDestination, overwrite: overwrite, options: options) { account, error in
|
|
|
+ NextcloudKit.shared.copyFileOrFolder(serverUrlFileNameSource: serverUrlFileNameSource, serverUrlFileNameDestination: serverUrlFileNameDestination, overwrite: overwrite, account: account, options: options) { account, error in
|
|
|
continuation.resume(returning: (account: account, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
func createFolder(serverUrlFileName: String,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, ocId: String?, date: Date?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.createFolder(serverUrlFileName: serverUrlFileName, options: options) { account, ocId, date, error in
|
|
|
+ NextcloudKit.shared.createFolder(serverUrlFileName: serverUrlFileName, account: account, options: options) { account, ocId, date, error in
|
|
|
continuation.resume(returning: (account: account, ocId: ocId, date: date, error: error))
|
|
|
}
|
|
|
})
|
|
@@ -130,9 +140,10 @@ extension NCNetworking {
|
|
|
depth: String,
|
|
|
showHiddenFiles: Bool = true,
|
|
|
requestBody: Data? = nil,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, files: [NKFile], data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.readFileOrFolder(serverUrlFileName: serverUrlFileName, depth: depth, showHiddenFiles: showHiddenFiles, requestBody: requestBody, options: options) { account, files, data, error in
|
|
|
+ NextcloudKit.shared.readFileOrFolder(serverUrlFileName: serverUrlFileName, depth: depth, showHiddenFiles: showHiddenFiles, requestBody: requestBody, account: account, options: options) { account, files, data, error in
|
|
|
continuation.resume(returning: (account: account, files: files, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
@@ -145,9 +156,10 @@ extension NCNetworking {
|
|
|
limit: Int,
|
|
|
showHiddenFiles: Bool,
|
|
|
includeHiddenFiles: [String] = [],
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, files: [NKFile], data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.searchMedia(path: path, lessDate: lessDate, greaterDate: greaterDate, elementDate: elementDate, limit: limit, showHiddenFiles: showHiddenFiles, includeHiddenFiles: includeHiddenFiles, options: options) { account, files, data, error in
|
|
|
+ NextcloudKit.shared.searchMedia(path: path, lessDate: lessDate, greaterDate: greaterDate, elementDate: elementDate, limit: limit, showHiddenFiles: showHiddenFiles, includeHiddenFiles: includeHiddenFiles, account: account, options: options) { account, files, data, error in
|
|
|
continuation.resume(returning: (account, files, data, error))
|
|
|
}
|
|
|
})
|
|
@@ -155,9 +167,10 @@ extension NCNetworking {
|
|
|
|
|
|
func markE2EEFolder(fileId: String,
|
|
|
delete: Bool,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.markE2EEFolder(fileId: fileId, delete: delete, options: options) { account, error in
|
|
|
+ NextcloudKit.shared.markE2EEFolder(fileId: fileId, delete: delete, account: account, options: options) { account, error in
|
|
|
continuation.resume(returning: (account: account, error: error))
|
|
|
}
|
|
|
})
|
|
@@ -167,9 +180,10 @@ extension NCNetworking {
|
|
|
e2eToken: String?,
|
|
|
e2eCounter: String?,
|
|
|
method: String,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, e2eToken: String?, data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.lockE2EEFolder(fileId: fileId, e2eToken: e2eToken, e2eCounter: e2eCounter, method: method, options: options) { account, e2eToken, data, error in
|
|
|
+ NextcloudKit.shared.lockE2EEFolder(fileId: fileId, e2eToken: e2eToken, e2eCounter: e2eCounter, method: method, account: account, options: options) { account, e2eToken, data, error in
|
|
|
continuation.resume(returning: (account: account, e2eToken: e2eToken, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
@@ -177,9 +191,10 @@ extension NCNetworking {
|
|
|
|
|
|
func getE2EEMetadata(fileId: String,
|
|
|
e2eToken: String?,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, e2eMetadata: String?, signature: String?, data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.getE2EEMetadata(fileId: fileId, e2eToken: e2eToken, options: options) { account, e2eMetadata, signature, data, error in
|
|
|
+ NextcloudKit.shared.getE2EEMetadata(fileId: fileId, e2eToken: e2eToken, account: account, options: options) { account, e2eMetadata, signature, data, error in
|
|
|
continuation.resume(returning: (account: account, e2eMetadata: e2eMetadata, signature: signature, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
@@ -190,68 +205,76 @@ extension NCNetworking {
|
|
|
e2eMetadata: String?,
|
|
|
signature: String?,
|
|
|
method: String,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, metadata: String?, data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.putE2EEMetadata(fileId: fileId, e2eToken: e2eToken, e2eMetadata: e2eMetadata, signature: signature, method: method, options: options) { account, metadata, data, error in
|
|
|
+ NextcloudKit.shared.putE2EEMetadata(fileId: fileId, e2eToken: e2eToken, e2eMetadata: e2eMetadata, signature: signature, method: method, account: account, options: options) { account, metadata, data, error in
|
|
|
continuation.resume(returning: (account: account, metadata: metadata, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
func getE2EECertificate(user: String? = nil,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, certificate: String?, certificateUser: String?, data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.getE2EECertificate(user: user, options: options) { account, certificate, certificateUser, data, error in
|
|
|
+ NextcloudKit.shared.getE2EECertificate(user: user, account: account, options: options) { account, certificate, certificateUser, data, error in
|
|
|
continuation.resume(returning: (account: account, certificate: certificate, certificateUser: certificateUser, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- func getE2EEPrivateKey(options: NKRequestOptions = NKRequestOptions()) async -> (account: String, privateKey: String?, data: Data?, error: NKError) {
|
|
|
+ func getE2EEPrivateKey(account: String,
|
|
|
+ options: NKRequestOptions = NKRequestOptions()) async -> (account: String, privateKey: String?, data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.getE2EEPrivateKey(options: options) { account, privateKey, data, error in
|
|
|
+ NextcloudKit.shared.getE2EEPrivateKey(account: account, options: options) { account, privateKey, data, error in
|
|
|
continuation.resume(returning: (account: account, privateKey: privateKey, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- func getE2EEPublicKey(options: NKRequestOptions = NKRequestOptions()) async -> (account: String, publicKey: String?, data: Data?, error: NKError) {
|
|
|
+ func getE2EEPublicKey(account: String,
|
|
|
+ options: NKRequestOptions = NKRequestOptions()) async -> (account: String, publicKey: String?, data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.getE2EEPublicKey(options: options) { account, publicKey, data, error in
|
|
|
+ NextcloudKit.shared.getE2EEPublicKey(account: account, options: options) { account, publicKey, data, error in
|
|
|
continuation.resume(returning: (account: account, publicKey: publicKey, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
func signE2EECertificate(certificate: String,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, certificate: String?, data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.signE2EECertificate(certificate: certificate, options: options) { account, certificate, data, error in
|
|
|
+ NextcloudKit.shared.signE2EECertificate(certificate: certificate, account: account, options: options) { account, certificate, data, error in
|
|
|
continuation.resume(returning: (account: account, certificate: certificate, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
func storeE2EEPrivateKey(privateKey: String,
|
|
|
+ account: String,
|
|
|
options: NKRequestOptions = NKRequestOptions()) async -> (account: String, privateKey: String?, data: Data?, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.storeE2EEPrivateKey(privateKey: privateKey, options: options) { account, privateKey, data, error in
|
|
|
+ NextcloudKit.shared.storeE2EEPrivateKey(privateKey: privateKey, account: account, options: options) { account, privateKey, data, error in
|
|
|
continuation.resume(returning: (account: account, privateKey: privateKey, data: data, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- func deleteE2EECertificate(options: NKRequestOptions = NKRequestOptions()) async -> (account: String, error: NKError) {
|
|
|
+ func deleteE2EECertificate(account: String,
|
|
|
+ options: NKRequestOptions = NKRequestOptions()) async -> (account: String, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.deleteE2EECertificate(options: options) { account, error in
|
|
|
+ NextcloudKit.shared.deleteE2EECertificate(account: account, options: options) { account, error in
|
|
|
continuation.resume(returning: (account: account, error: error))
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- func deleteE2EEPrivateKey(options: NKRequestOptions = NKRequestOptions()) async -> (account: String, error: NKError) {
|
|
|
+ func deleteE2EEPrivateKey(account: String,
|
|
|
+ options: NKRequestOptions = NKRequestOptions()) async -> (account: String, error: NKError) {
|
|
|
await withUnsafeContinuation({ continuation in
|
|
|
- NextcloudKit.shared.deleteE2EEPrivateKey(options: options) { account, error in
|
|
|
+ NextcloudKit.shared.deleteE2EEPrivateKey(account: account, options: options) { account, error in
|
|
|
continuation.resume(returning: (account: account, error: error))
|
|
|
}
|
|
|
})
|