NCNetworking+LivePhoto.swift 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. //
  2. // NCNetworking+LivePhoto.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 07/02/24.
  6. // Copyright © 2024 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import UIKit
  24. import JGProgressHUD
  25. import NextcloudKit
  26. import Alamofire
  27. import Queuer
  28. extension NCNetworking {
  29. func uploadLivePhoto(metadata: tableMetadata, userInfo aUserInfo: [AnyHashable: Any]) {
  30. guard let metadata1 = NCManageDatabase.shared.getMetadata(predicate: NSPredicate(format: "account == %@ AND urlBase == %@ AND path == %@ AND fileName == %@", metadata.account, metadata.urlBase, metadata.path, metadata.livePhotoFile)) else {
  31. metadata.livePhotoFile = ""
  32. NCManageDatabase.shared.addMetadata(metadata)
  33. return NotificationCenter.default.post(name: Notification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedLivePhoto),
  34. object: nil,
  35. userInfo: aUserInfo)
  36. }
  37. if metadata1.status != NCGlobal.shared.metadataStatusNormal { return }
  38. Task {
  39. let serverUrlfileNamePath = metadata.urlBase + metadata.path + metadata.fileName
  40. var livePhotoFile = metadata1.fileId
  41. let results = await setLivephoto(serverUrlfileNamePath: serverUrlfileNamePath, livePhotoFile: livePhotoFile, account: metadata.account)
  42. if results.error == .success {
  43. NCManageDatabase.shared.setMetadataLivePhotoByServer(account: metadata.account, ocId: metadata.ocId, livePhotoFile: livePhotoFile)
  44. } else {
  45. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Uplod set LivePhoto with error \(results.error.errorCode)")
  46. }
  47. let serverUrlfileNamePath1 = metadata1.urlBase + metadata1.path + metadata1.fileName
  48. livePhotoFile = metadata.fileId
  49. let results1 = await setLivephoto(serverUrlfileNamePath: serverUrlfileNamePath1, livePhotoFile: livePhotoFile, account: metadata1.account)
  50. if results1.error == .success {
  51. NCManageDatabase.shared.setMetadataLivePhotoByServer(account: metadata1.account, ocId: metadata1.ocId, livePhotoFile: livePhotoFile)
  52. } else {
  53. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Upload set LivePhoto with error \(results.error.errorCode)")
  54. }
  55. if results.error == .success, results1.error == .success {
  56. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Upload set LivePhoto for files " + (metadata.fileName as NSString).deletingPathExtension)
  57. }
  58. NotificationCenter.default.post(name: Notification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedLivePhoto),
  59. object: nil,
  60. userInfo: aUserInfo)
  61. }
  62. }
  63. func convertLivePhoto(metadata: tableMetadata) {
  64. guard metadata.status == NCGlobal.shared.metadataStatusNormal else { return }
  65. let account = metadata.account
  66. let livePhotoFile = metadata.livePhotoFile
  67. let serverUrlfileNamePath = metadata.urlBase + metadata.path + metadata.fileName
  68. let ocId = metadata.ocId
  69. DispatchQueue.global().async {
  70. if let result = NCManageDatabase.shared.getResultMetadata(predicate: NSPredicate(format: "account == %@ AND status == %d AND (fileName == %@ || fileId == %@)", account, NCGlobal.shared.metadataStatusNormal, livePhotoFile, livePhotoFile)) {
  71. if livePhotoFile == result.fileId { return }
  72. for case let operation as NCOperationConvertLivePhoto in self.convertLivePhotoQueue.operations where operation.serverUrlfileNamePath == serverUrlfileNamePath { continue }
  73. self.convertLivePhotoQueue.addOperation(NCOperationConvertLivePhoto(serverUrlfileNamePath: serverUrlfileNamePath, livePhotoFile: result.fileId, account: account, ocId: ocId))
  74. }
  75. }
  76. }
  77. }
  78. class NCOperationConvertLivePhoto: ConcurrentOperation {
  79. var serverUrlfileNamePath, livePhotoFile, account, ocId: String
  80. init(serverUrlfileNamePath: String, livePhotoFile: String, account: String, ocId: String) {
  81. self.serverUrlfileNamePath = serverUrlfileNamePath
  82. self.livePhotoFile = livePhotoFile
  83. self.account = account
  84. self.ocId = ocId
  85. }
  86. override func start() {
  87. guard !isCancelled else {
  88. return self.finish()
  89. }
  90. NextcloudKit.shared.setLivephoto(serverUrlfileNamePath: serverUrlfileNamePath, livePhotoFile: livePhotoFile, account: account, options: NKRequestOptions(queue: NextcloudKit.shared.nkCommonInstance.backgroundQueue)) { _, error in
  91. if error == .success {
  92. NCManageDatabase.shared.setMetadataLivePhotoByServer(account: self.account, ocId: self.ocId, livePhotoFile: self.livePhotoFile)
  93. } else {
  94. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Convert LivePhoto with error \(error.errorCode)")
  95. }
  96. self.finish()
  97. if NCNetworking.shared.convertLivePhotoQueue.operationCount == 0 {
  98. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterReloadDataSource, second: 0.1)
  99. }
  100. }
  101. }
  102. }