NCOperationSaveLivePhoto.swift 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. //
  2. // NCOperationSaveLivePhoto.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 19/10/23.
  6. // Copyright © 2023 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 Queuer
  25. import JGProgressHUD
  26. import NextcloudKit
  27. class NCOperationSaveLivePhoto: ConcurrentOperation {
  28. var metadata: tableMetadata
  29. var metadataMOV: tableMetadata
  30. let hud = JGProgressHUD()
  31. let appDelegate = UIApplication.shared.delegate as? AppDelegate
  32. let utilityFileSystem = NCUtilityFileSystem()
  33. init(metadata: tableMetadata, metadataMOV: tableMetadata) {
  34. self.metadata = tableMetadata.init(value: metadata)
  35. self.metadataMOV = tableMetadata.init(value: metadataMOV)
  36. }
  37. override func start() {
  38. guard !isCancelled,
  39. let metadata = NCManageDatabase.shared.setMetadatasSessionInWaitDownload(metadatas: [metadata],
  40. session: NextcloudKit.shared.nkCommonInstance.sessionIdentifierDownload,
  41. selector: ""),
  42. let metadataLive = NCManageDatabase.shared.setMetadatasSessionInWaitDownload(metadatas: [metadataMOV],
  43. session: NextcloudKit.shared.nkCommonInstance.sessionIdentifierDownload,
  44. selector: "") else { return self.finish() }
  45. DispatchQueue.main.async {
  46. self.hud.indicatorView = JGProgressHUDRingIndicatorView()
  47. if let indicatorView = self.hud.indicatorView as? JGProgressHUDRingIndicatorView {
  48. indicatorView.ringWidth = 1.5
  49. }
  50. self.hud.textLabel.text = NSLocalizedString("_download_image_", comment: "")
  51. self.hud.detailTextLabel.text = self.metadata.fileName
  52. self.hud.show(in: (self.appDelegate?.window?.rootViewController?.view)!)
  53. }
  54. NCNetworking.shared.download(metadata: metadata, withNotificationProgressTask: false) {
  55. } requestHandler: { _ in
  56. } progressHandler: { progress in
  57. self.hud.progress = Float(progress.fractionCompleted)
  58. } completion: { _, error in
  59. guard error == .success else {
  60. DispatchQueue.main.async {
  61. self.hud.indicatorView = JGProgressHUDErrorIndicatorView()
  62. self.hud.textLabel.text = NSLocalizedString("_livephoto_save_error_", comment: "")
  63. self.hud.dismiss()
  64. }
  65. return self.finish()
  66. }
  67. NCNetworking.shared.download(metadata: metadataLive, withNotificationProgressTask: false) {
  68. DispatchQueue.main.async {
  69. self.hud.textLabel.text = NSLocalizedString("_download_video_", comment: "")
  70. self.hud.detailTextLabel.text = self.metadataMOV.fileName
  71. }
  72. } progressHandler: { progress in
  73. self.hud.progress = Float(progress.fractionCompleted)
  74. } completion: { _, error in
  75. guard error == .success else {
  76. DispatchQueue.main.async {
  77. self.hud.indicatorView = JGProgressHUDErrorIndicatorView()
  78. self.hud.textLabel.text = NSLocalizedString("_livephoto_save_error_", comment: "")
  79. self.hud.dismiss()
  80. }
  81. return self.finish()
  82. }
  83. self.saveLivePhotoToDisk(metadata: self.metadata, metadataMov: self.metadataMOV)
  84. }
  85. }
  86. }
  87. func saveLivePhotoToDisk(metadata: tableMetadata, metadataMov: tableMetadata) {
  88. let fileNameImage = URL(fileURLWithPath: utilityFileSystem.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView))
  89. let fileNameMov = URL(fileURLWithPath: utilityFileSystem.getDirectoryProviderStorageOcId(metadataMov.ocId, fileNameView: metadataMov.fileNameView))
  90. DispatchQueue.main.async {
  91. self.hud.textLabel.text = NSLocalizedString("_livephoto_save_", comment: "")
  92. self.hud.detailTextLabel.text = ""
  93. }
  94. NCLivePhoto.generate(from: fileNameImage, videoURL: fileNameMov, progress: { progress in
  95. self.hud.progress = Float(progress)
  96. }, completion: { _, resources in
  97. if let resources {
  98. NCLivePhoto.saveToLibrary(resources) { result in
  99. DispatchQueue.main.async {
  100. if !result {
  101. self.hud.indicatorView = JGProgressHUDErrorIndicatorView()
  102. self.hud.textLabel.text = NSLocalizedString("_livephoto_save_error_", comment: "")
  103. } else {
  104. self.hud.indicatorView = JGProgressHUDSuccessIndicatorView()
  105. self.hud.textLabel.text = NSLocalizedString("_success_", comment: "")
  106. }
  107. self.hud.dismiss()
  108. }
  109. return self.finish()
  110. }
  111. } else {
  112. DispatchQueue.main.async {
  113. self.hud.indicatorView = JGProgressHUDErrorIndicatorView()
  114. self.hud.textLabel.text = NSLocalizedString("_livephoto_save_error_", comment: "")
  115. self.hud.dismiss()
  116. }
  117. return self.finish()
  118. }
  119. })
  120. }
  121. }