NCAutoUpload.swift 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. //
  2. // NCAutoUpload.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 27/01/21.
  6. // Copyright © 2021 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 CoreLocation
  25. import NCCommunication
  26. import Photos
  27. class NCAutoUpload: NSObject {
  28. @objc static let shared: NCAutoUpload = {
  29. let instance = NCAutoUpload()
  30. return instance
  31. }()
  32. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  33. private var endForAssetToUpload: Bool = false
  34. // MARK: -
  35. @objc func initAutoUpload(viewController: UIViewController?, completion: @escaping (_ items: Int) -> Void) {
  36. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  37. if activeAccount.autoUpload {
  38. NCAskAuthorization.shared.askAuthorizationPhotoLibrary(viewController: viewController) { hasPermission in
  39. if hasPermission {
  40. self.uploadAssetsNewAndFull(viewController: viewController, selector: NCGlobal.shared.selectorUploadAutoUpload, log: "Init Auto Upload") { items in
  41. if items > 0 {
  42. self.appDelegate.networkingProcessUpload?.startProcess()
  43. }
  44. completion(items)
  45. }
  46. } else {
  47. NCManageDatabase.shared.setAccountAutoUploadProperty("autoUpload", state: false)
  48. completion(0)
  49. }
  50. }
  51. } else {
  52. completion(0)
  53. }
  54. } else {
  55. completion(0)
  56. }
  57. }
  58. @objc func autoUploadFullPhotos(viewController: UIViewController?, log: String) {
  59. NCAskAuthorization.shared.askAuthorizationPhotoLibrary(viewController: appDelegate.window?.rootViewController) { hasPermission in
  60. if hasPermission {
  61. NCContentPresenter.shared.messageNotification("_attention_", description: "_create_full_upload_", delay: NCGlobal.shared.dismissAfterSecondLong, type: .info, errorCode: NCGlobal.shared.errorNoError, priority: .max)
  62. NCUtility.shared.startActivityIndicator(backgroundView: nil, blurEffect: true)
  63. self.uploadAssetsNewAndFull(viewController: viewController, selector: NCGlobal.shared.selectorUploadAutoUploadAll, log: log) { _ in
  64. NCUtility.shared.stopActivityIndicator()
  65. }
  66. }
  67. }
  68. }
  69. private func uploadAssetsNewAndFull(viewController: UIViewController?, selector: String, log: String, completion: @escaping (_ items: Int) -> Void) {
  70. guard !appDelegate.account.isEmpty else {
  71. completion(0)
  72. return
  73. }
  74. guard let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", appDelegate.account)) else { return }
  75. let autoUploadPath = NCManageDatabase.shared.getAccountAutoUploadPath(urlBase: account.urlBase, account: account.account)
  76. let chunckSize = CCUtility.getChunkSize() * 1000000
  77. var counterLivePhoto: Int = 0
  78. var metadataFull: [tableMetadata] = []
  79. var counterItemsUpload: Int = 0
  80. DispatchQueue.global(qos: .background).async {
  81. self.getCameraRollAssets(viewController: viewController, account: account, selector: selector, alignPhotoLibrary: false) { assets in
  82. if assets == nil || assets?.count == 0 {
  83. NCCommunicationCommon.shared.writeLog("Automatic upload, no new assets found [" + log + "]")
  84. DispatchQueue.main.async {
  85. completion(counterItemsUpload)
  86. }
  87. return
  88. } else {
  89. NCCommunicationCommon.shared.writeLog("Automatic upload, new \(assets?.count ?? 0) assets found [" + log + "]")
  90. }
  91. guard let assets = assets else { return }
  92. // Create the folder for auto upload & if request the subfolders
  93. if !NCNetworking.shared.createFolder(assets: assets, selector: selector, useSubFolder: account.autoUploadCreateSubfolder, account: account.account, urlBase: account.urlBase) {
  94. DispatchQueue.main.async {
  95. if selector == NCGlobal.shared.selectorUploadAutoUploadAll {
  96. NCContentPresenter.shared.messageNotification("_error_", description: "_error_createsubfolders_upload_", delay: NCGlobal.shared.dismissAfterSecond, type: .error, errorCode: NCGlobal.shared.errorInternalError, priority: .max)
  97. }
  98. return completion(counterItemsUpload)
  99. }
  100. }
  101. self.endForAssetToUpload = false
  102. for asset in assets {
  103. var livePhoto = false
  104. var session: String = ""
  105. guard let assetDate = asset.creationDate else { continue }
  106. let assetMediaType = asset.mediaType
  107. let formatter = DateFormatter()
  108. var serverUrl: String = ""
  109. let fileName = CCUtility.createFileName(asset.value(forKey: "filename") as? String, fileDate: assetDate, fileType: assetMediaType, keyFileName: NCGlobal.shared.keyFileNameAutoUploadMask, keyFileNameType: NCGlobal.shared.keyFileNameAutoUploadType, keyFileNameOriginal: NCGlobal.shared.keyFileNameOriginalAutoUpload, forcedNewFileName: false)!
  110. if asset.mediaSubtypes.contains(.photoLive) && CCUtility.getLivePhoto() {
  111. livePhoto = true
  112. }
  113. if selector == NCGlobal.shared.selectorUploadAutoUploadAll {
  114. session = NCCommunicationCommon.shared.sessionIdentifierUpload
  115. } else {
  116. if assetMediaType == PHAssetMediaType.image && account.autoUploadWWAnPhoto == false {
  117. session = NCNetworking.shared.sessionIdentifierBackground
  118. } else if assetMediaType == PHAssetMediaType.video && account.autoUploadWWAnVideo == false {
  119. session = NCNetworking.shared.sessionIdentifierBackground
  120. } else if assetMediaType == PHAssetMediaType.image && account.autoUploadWWAnPhoto {
  121. session = NCNetworking.shared.sessionIdentifierBackgroundWWan
  122. } else if assetMediaType == PHAssetMediaType.video && account.autoUploadWWAnVideo {
  123. session = NCNetworking.shared.sessionIdentifierBackgroundWWan
  124. } else { session = NCNetworking.shared.sessionIdentifierBackground }
  125. }
  126. formatter.dateFormat = "yyyy"
  127. let yearString = formatter.string(from: assetDate)
  128. formatter.dateFormat = "MM"
  129. let monthString = formatter.string(from: assetDate)
  130. if account.autoUploadCreateSubfolder {
  131. serverUrl = autoUploadPath + "/" + yearString + "/" + monthString
  132. } else {
  133. serverUrl = autoUploadPath
  134. }
  135. // MOST COMPATIBLE SEARCH --> HEIC --> JPG
  136. var fileNameSearchMetadata = fileName
  137. let ext = (fileNameSearchMetadata as NSString).pathExtension.uppercased()
  138. if ext == "HEIC" && CCUtility.getFormatCompatibility() {
  139. fileNameSearchMetadata = (fileNameSearchMetadata as NSString).deletingPathExtension + ".jpg"
  140. }
  141. if NCManageDatabase.shared.getMetadata(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND fileNameView == %@", account.account, serverUrl, fileNameSearchMetadata)) != nil {
  142. if selector == NCGlobal.shared.selectorUploadAutoUpload {
  143. NCManageDatabase.shared.addPhotoLibrary([asset], account: account.account)
  144. }
  145. } else {
  146. /* INSERT METADATA FOR UPLOAD */
  147. let metadataForUpload = NCManageDatabase.shared.createMetadata(account: account.account, user: account.user, userId: account.userId, fileName: fileName, fileNameView: fileName, ocId: NSUUID().uuidString, serverUrl: serverUrl, urlBase: account.urlBase, url: "", contentType: "", isLivePhoto: livePhoto)
  148. metadataForUpload.assetLocalIdentifier = asset.localIdentifier
  149. metadataForUpload.session = session
  150. metadataForUpload.sessionSelector = selector
  151. if selector != NCGlobal.shared.selectorUploadAutoUploadAll {
  152. metadataForUpload.isAutoupload = true
  153. }
  154. if chunckSize > 0 && metadataForUpload.size > chunckSize {
  155. metadataForUpload.chunk = true
  156. }
  157. metadataForUpload.status = NCGlobal.shared.metadataStatusWaitUpload
  158. if assetMediaType == PHAssetMediaType.video {
  159. metadataForUpload.classFile = NCCommunicationCommon.typeClassFile.video.rawValue
  160. } else if assetMediaType == PHAssetMediaType.image {
  161. metadataForUpload.classFile = NCCommunicationCommon.typeClassFile.image.rawValue
  162. }
  163. if selector == NCGlobal.shared.selectorUploadAutoUpload {
  164. NCCommunicationCommon.shared.writeLog("Automatic upload added \(metadataForUpload.fileNameView) with Identifier \(metadataForUpload.assetLocalIdentifier)")
  165. self.appDelegate.networkingProcessUpload?.createProcessUploads(metadatas: [metadataForUpload], verifyAlreadyExists: true)
  166. NCManageDatabase.shared.addPhotoLibrary([asset], account: account.account)
  167. } else if selector == NCGlobal.shared.selectorUploadAutoUploadAll {
  168. metadataFull.append(metadataForUpload)
  169. }
  170. counterItemsUpload += 1
  171. /* INSERT METADATA MOV LIVE PHOTO FOR UPLOAD */
  172. if livePhoto {
  173. counterLivePhoto += 1
  174. let fileName = (fileName as NSString).deletingPathExtension + ".mov"
  175. let ocId = NSUUID().uuidString
  176. let filePath = CCUtility.getDirectoryProviderStorageOcId(ocId, fileNameView: fileName)!
  177. CCUtility.extractLivePhotoAsset(asset, filePath: filePath) { url in
  178. if url != nil {
  179. let metadataForUpload = NCManageDatabase.shared.createMetadata(account: account.account, user: account.user, userId: account.userId, fileName: fileName, fileNameView: fileName, ocId: ocId, serverUrl: serverUrl, urlBase: account.urlBase, url: "", contentType: "", isLivePhoto: livePhoto)
  180. metadataForUpload.session = session
  181. metadataForUpload.sessionSelector = selector
  182. if selector != NCGlobal.shared.selectorUploadAutoUploadAll {
  183. metadataForUpload.isAutoupload = true
  184. }
  185. metadataForUpload.size = NCUtilityFileSystem.shared.getFileSize(filePath: filePath)
  186. metadataForUpload.status = NCGlobal.shared.metadataStatusWaitUpload
  187. metadataForUpload.classFile = NCCommunicationCommon.typeClassFile.video.rawValue
  188. if chunckSize > 0 && metadataForUpload.size > chunckSize {
  189. metadataForUpload.chunk = true
  190. }
  191. if selector == NCGlobal.shared.selectorUploadAutoUpload {
  192. NCCommunicationCommon.shared.writeLog("Automatic upload added Live Photo \(metadataForUpload.fileNameView) with Identifier \(metadataForUpload.assetLocalIdentifier)")
  193. self.appDelegate.networkingProcessUpload?.createProcessUploads(metadatas: [metadataForUpload], verifyAlreadyExists: true)
  194. } else if selector == NCGlobal.shared.selectorUploadAutoUploadAll {
  195. metadataFull.append(metadataForUpload)
  196. }
  197. counterItemsUpload += 1
  198. }
  199. counterLivePhoto -= 1
  200. if counterLivePhoto == 0 && self.endForAssetToUpload {
  201. DispatchQueue.main.async {
  202. if selector == NCGlobal.shared.selectorUploadAutoUploadAll {
  203. self.appDelegate.networkingProcessUpload?.createProcessUploads(metadatas: metadataFull)
  204. }
  205. completion(counterItemsUpload)
  206. }
  207. }
  208. }
  209. }
  210. }
  211. }
  212. self.endForAssetToUpload = true
  213. if counterLivePhoto == 0 {
  214. DispatchQueue.main.async {
  215. if selector == NCGlobal.shared.selectorUploadAutoUploadAll {
  216. self.appDelegate.networkingProcessUpload?.createProcessUploads(metadatas: metadataFull)
  217. }
  218. completion(counterItemsUpload)
  219. }
  220. }
  221. }
  222. }
  223. }
  224. // MARK: -
  225. @objc func alignPhotoLibrary(viewController: UIViewController?) {
  226. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  227. getCameraRollAssets(viewController: viewController, account: activeAccount, selector: NCGlobal.shared.selectorUploadAutoUploadAll, alignPhotoLibrary: true) { assets in
  228. NCManageDatabase.shared.clearTable(tablePhotoLibrary.self, account: activeAccount.account)
  229. if let assets = assets {
  230. NCManageDatabase.shared.addPhotoLibrary(assets, account: activeAccount.account)
  231. NCCommunicationCommon.shared.writeLog("Align Photo Library \(assets.count)")
  232. }
  233. }
  234. }
  235. }
  236. private func getCameraRollAssets(viewController: UIViewController?, account: tableAccount, selector: String, alignPhotoLibrary: Bool, completion: @escaping (_ assets: [PHAsset]?) -> Void) {
  237. NCAskAuthorization.shared.askAuthorizationPhotoLibrary(viewController: viewController) { hasPermission in
  238. if hasPermission {
  239. let assetCollection = PHAssetCollection.fetchAssetCollections(with: PHAssetCollectionType.smartAlbum, subtype: PHAssetCollectionSubtype.smartAlbumUserLibrary, options: nil)
  240. if assetCollection.count > 0 {
  241. let predicateImage = NSPredicate(format: "mediaType == %i", PHAssetMediaType.image.rawValue)
  242. let predicateVideo = NSPredicate(format: "mediaType == %i", PHAssetMediaType.video.rawValue)
  243. var predicate: NSPredicate?
  244. let fetchOptions = PHFetchOptions()
  245. var newAssets: [PHAsset] = []
  246. if alignPhotoLibrary || (account.autoUploadImage && account.autoUploadVideo) {
  247. predicate = NSCompoundPredicate(orPredicateWithSubpredicates: [predicateImage, predicateVideo])
  248. } else if account.autoUploadImage {
  249. predicate = predicateImage
  250. } else if account.autoUploadVideo {
  251. predicate = predicateVideo
  252. } else {
  253. return completion(nil)
  254. }
  255. fetchOptions.predicate = predicate
  256. let assets: PHFetchResult<PHAsset> = PHAsset.fetchAssets(in: assetCollection.firstObject!, options: fetchOptions)
  257. if selector == NCGlobal.shared.selectorUploadAutoUpload {
  258. var creationDate = ""
  259. var idAsset = ""
  260. let idsAsset = NCManageDatabase.shared.getPhotoLibraryIdAsset(image: account.autoUploadImage, video: account.autoUploadVideo, account: account.account)
  261. assets.enumerateObjects { asset, _, _ in
  262. if asset.creationDate != nil { creationDate = String(describing: asset.creationDate!) }
  263. idAsset = account.account + asset.localIdentifier + creationDate
  264. if !(idsAsset?.contains(idAsset) ?? false) {
  265. newAssets.append(asset)
  266. }
  267. }
  268. } else {
  269. assets.enumerateObjects { asset, _, _ in
  270. newAssets.append(asset)
  271. }
  272. }
  273. completion(newAssets)
  274. } else {
  275. completion(nil)
  276. }
  277. } else {
  278. completion(nil)
  279. }
  280. }
  281. }
  282. }