NCPickerViewController.swift 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. //
  2. // NCPickerViewController.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 11/11/2018.
  6. // Copyright (c) 2018 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 Foundation
  24. import TLPhotoPicker
  25. import MobileCoreServices
  26. //MARK: - Photo Picker
  27. class NCPhotosPickerViewController: NSObject {
  28. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  29. var sourceViewController: UIViewController
  30. var maxSelectedAssets = 1
  31. var singleSelectedMode = false
  32. @discardableResult
  33. init (viewController: UIViewController, maxSelectedAssets: Int, singleSelectedMode: Bool) {
  34. sourceViewController = viewController
  35. super.init()
  36. self.maxSelectedAssets = maxSelectedAssets
  37. self.singleSelectedMode = singleSelectedMode
  38. self.openPhotosPickerViewController { (assets) in
  39. guard let assets = assets else { return }
  40. if assets.count > 0 {
  41. let form = NCCreateFormUploadAssets.init(serverUrl: self.appDelegate.activeServerUrl, assets: assets, cryptated: false, session: NCNetworking.shared.sessionIdentifierBackground, delegate: nil)
  42. let navigationController = UINavigationController.init(rootViewController: form)
  43. DispatchQueue.main.asyncAfter(deadline: .now() + 0.4) {
  44. viewController.present(navigationController, animated: true, completion: nil)
  45. }
  46. }
  47. }
  48. }
  49. private func openPhotosPickerViewController(completition: @escaping ([PHAsset]?) -> ()) {
  50. var selectedAssets: [PHAsset] = []
  51. var configure = TLPhotosPickerConfigure()
  52. configure.cancelTitle = NSLocalizedString("_cancel_", comment: "")
  53. configure.doneTitle = NSLocalizedString("_done_", comment: "")
  54. configure.emptyMessage = NSLocalizedString("_no_albums_", comment: "")
  55. configure.tapHereToChange = NSLocalizedString("_tap_here_to_change_", comment: "")
  56. configure.maxSelectedAssets = self.maxSelectedAssets
  57. configure.selectedColor = NCBrandColor.sharedInstance.brandElement
  58. configure.singleSelectedMode = singleSelectedMode
  59. let viewController = customPhotoPickerViewController(withTLPHAssets: { (assets) in
  60. for asset: TLPHAsset in assets {
  61. if asset.phAsset != nil {
  62. selectedAssets.append(asset.phAsset!)
  63. }
  64. }
  65. completition(selectedAssets)
  66. }, didCancel: nil)
  67. viewController.didExceedMaximumNumberOfSelection = { (picker) in
  68. NCContentPresenter.shared.messageNotification("_info_", description: "_limited_dimension_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: Int(k_CCErrorInternalError))
  69. }
  70. viewController.handleNoAlbumPermissions = { (picker) in
  71. NCContentPresenter.shared.messageNotification("_info_", description: "_denied_album_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: Int(k_CCErrorInternalError))
  72. }
  73. viewController.handleNoCameraPermissions = { (picker) in
  74. NCContentPresenter.shared.messageNotification("_info_", description: "_denied_camera_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: Int(k_CCErrorInternalError))
  75. }
  76. viewController.configure = configure
  77. sourceViewController.present(viewController, animated: true, completion: nil)
  78. }
  79. }
  80. class customPhotoPickerViewController: TLPhotosPickerViewController {
  81. override var preferredStatusBarStyle: UIStatusBarStyle {
  82. return .lightContent
  83. }
  84. override func makeUI() {
  85. super.makeUI()
  86. self.customNavItem.leftBarButtonItem?.tintColor = NCBrandColor.sharedInstance.brandElement
  87. self.customNavItem.rightBarButtonItem?.tintColor = NCBrandColor.sharedInstance.brandElement
  88. }
  89. }
  90. //MARK: - Document Picker
  91. class NCDocumentPickerViewController: NSObject, UIDocumentPickerDelegate {
  92. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  93. @discardableResult
  94. init (tabBarController: UITabBarController) {
  95. super.init()
  96. let documentProviderMenu = UIDocumentPickerViewController(documentTypes: ["public.data"], in: .import)
  97. documentProviderMenu.modalPresentationStyle = .formSheet
  98. documentProviderMenu.popoverPresentationController?.sourceView = tabBarController.tabBar
  99. documentProviderMenu.popoverPresentationController?.sourceRect = tabBarController.tabBar.bounds
  100. documentProviderMenu.delegate = self
  101. appDelegate.window.rootViewController?.present(documentProviderMenu, animated: true, completion: nil)
  102. }
  103. func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentAt url: URL) {
  104. if controller.documentPickerMode == .import {
  105. let coordinator = NSFileCoordinator.init(filePresenter: nil)
  106. coordinator.coordinate(readingItemAt: url, options: NSFileCoordinator.ReadingOptions.forUploading, error: nil) { (url) in
  107. let fileName = url.lastPathComponent
  108. let serverUrl = appDelegate.activeServerUrl!
  109. let ocId = NSUUID().uuidString
  110. let data = try? Data.init(contentsOf: url)
  111. let path = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(ocId, fileNameView: fileName)!)
  112. if data != nil {
  113. do {
  114. try data?.write(to: path)
  115. let metadataForUpload = NCManageDatabase.sharedInstance.createMetadata(account: appDelegate.account, fileName: fileName, ocId: ocId, serverUrl: serverUrl, urlBase: appDelegate.urlBase, url: "", contentType: "", livePhoto: false)
  116. metadataForUpload.session = NCNetworking.shared.sessionIdentifierBackground
  117. metadataForUpload.sessionSelector = selectorUploadFile
  118. metadataForUpload.size = Double(data?.count ?? 0)
  119. metadataForUpload.status = Int(k_metadataStatusWaitUpload)
  120. if NCUtility.shared.getMetadataConflict(account: appDelegate.account, serverUrl: serverUrl, fileName: fileName) != nil {
  121. if let conflict = UIStoryboard.init(name: "NCCreateFormUploadConflict", bundle: nil).instantiateInitialViewController() as? NCCreateFormUploadConflict {
  122. conflict.serverUrl = serverUrl
  123. conflict.metadatasUploadInConflict = [metadataForUpload]
  124. appDelegate.window.rootViewController?.present(conflict, animated: true, completion: nil)
  125. }
  126. } else {
  127. NCManageDatabase.sharedInstance.addMetadata(metadataForUpload)
  128. appDelegate.networkingAutoUpload.startProcess()
  129. }
  130. } catch {
  131. NCContentPresenter.shared.messageNotification("_error_", description: "_write_file_error_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: Int(k_CCErrorInternalError))
  132. }
  133. } else {
  134. NCContentPresenter.shared.messageNotification("_error_", description: "_read_file_error_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: Int(k_CCErrorInternalError))
  135. }
  136. }
  137. }
  138. }
  139. }