NCCollectionCommon.swift 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  1. //
  2. // NCCollectionCommon.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 08/09/2020.
  6. // Copyright © 2020 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 NCCommunication
  25. class NCCollectionCommon: NSObject, NCSelectDelegate {
  26. @objc static let shared: NCCollectionCommon = {
  27. let instance = NCCollectionCommon()
  28. instance.createImagesThemingColor()
  29. return instance
  30. }()
  31. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  32. struct images {
  33. static var file = UIImage()
  34. static var shared = UIImage()
  35. static var canShare = UIImage()
  36. static var shareByLink = UIImage()
  37. static var favorite = UIImage()
  38. static var comment = UIImage()
  39. static var livePhoto = UIImage()
  40. static var offlineFlag = UIImage()
  41. static var local = UIImage()
  42. static var folderEncrypted = UIImage()
  43. static var folderSharedWithMe = UIImage()
  44. static var folderPublic = UIImage()
  45. static var folderGroup = UIImage()
  46. static var folderExternal = UIImage()
  47. static var folderAutomaticUpload = UIImage()
  48. static var folder = UIImage()
  49. static var checkedYes = UIImage()
  50. static var checkedNo = UIImage()
  51. static var buttonMore = UIImage()
  52. static var buttonStop = UIImage()
  53. }
  54. // MARK: -
  55. @objc func createImagesThemingColor() {
  56. images.file = UIImage.init(named: "file")!
  57. images.shared = UIImage(named: "share")!.image(color: NCBrandColor.shared.graySoft, size: 50)
  58. images.canShare = UIImage(named: "share")!.image(color: NCBrandColor.shared.graySoft, size: 50)
  59. images.shareByLink = UIImage(named: "sharebylink")!.image(color: NCBrandColor.shared.graySoft, size: 50)
  60. images.favorite = UIImage(named: "favorite")!.image(color: NCBrandColor.shared.yellowFavorite, size: 50)
  61. images.comment = UIImage(named: "comment")!.image(color: NCBrandColor.shared.graySoft, size: 50)
  62. images.livePhoto = UIImage(named: "livePhoto")!.image(color: NCBrandColor.shared.textView, size: 50)
  63. images.offlineFlag = UIImage.init(named: "offlineFlag")!
  64. images.local = UIImage.init(named: "local")!
  65. let folderWidth: CGFloat = UIScreen.main.bounds.width / 3
  66. images.folderEncrypted = UIImage(named: "folderEncrypted")!.image(color: NCBrandColor.shared.brandElement, size: folderWidth)
  67. images.folderSharedWithMe = UIImage(named: "folder_shared_with_me")!.image(color: NCBrandColor.shared.brandElement, size: folderWidth)
  68. images.folderPublic = UIImage(named: "folder_public")!.image(color: NCBrandColor.shared.brandElement, size: folderWidth)
  69. images.folderGroup = UIImage(named: "folder_group")!.image(color: NCBrandColor.shared.brandElement, size: folderWidth)
  70. images.folderExternal = UIImage(named: "folder_external")!.image(color: NCBrandColor.shared.brandElement, size: folderWidth)
  71. images.folderAutomaticUpload = UIImage(named: "folderAutomaticUpload")!.image(color: NCBrandColor.shared.brandElement, size: folderWidth)
  72. images.folder = UIImage(named: "folder")!.image(color: NCBrandColor.shared.brandElement, size: folderWidth)
  73. images.checkedYes = UIImage(named: "checkedYes")!.image(color: .darkGray, size: 50)
  74. images.checkedNo = UIImage(named: "checkedNo")!.image(color: NCBrandColor.shared.graySoft, size: 50)
  75. images.buttonMore = UIImage(named: "more")!.image(color: NCBrandColor.shared.graySoft, size: 50)
  76. images.buttonStop = UIImage(named: "stop")!.image(color: NCBrandColor.shared.graySoft, size: 50)
  77. }
  78. func loadImage(named: String, systemName: String, color: UIColor, size: CGFloat) -> UIImage {
  79. var image: UIImage?
  80. if #available(iOS 13.0, *) {
  81. image = UIImage(systemName: systemName)
  82. } else {
  83. image = UIImage(named: named)
  84. }
  85. if image != nil {
  86. return image!.image(color: color, size: size)
  87. }
  88. return UIImage(named: "file")!.image(color: color, size: size)
  89. }
  90. // MARK: - NCSelect + Delegate
  91. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], buttonType: String, overwrite: Bool) {
  92. if (serverUrl != nil && items.count > 0) {
  93. var move = true
  94. if buttonType == "done1" { move = false }
  95. for metadata in items as! [tableMetadata] {
  96. NCOperationQueue.shared.copyMove(metadata: metadata, serverUrl: serverUrl!, overwrite: overwrite, move: move)
  97. }
  98. }
  99. }
  100. func openSelectView(items: [Any], viewController: UIViewController) {
  101. let navigationController = UIStoryboard.init(name: "NCSelect", bundle: nil).instantiateInitialViewController() as! UINavigationController
  102. let topViewController = navigationController.topViewController as! NCSelect
  103. var listViewController = [NCSelect]()
  104. var copyItems: [Any] = []
  105. for item in items {
  106. copyItems.append(item)
  107. }
  108. let homeUrl = NCUtilityFileSystem.shared.getHomeServer(urlBase: appDelegate.urlBase, account: appDelegate.account)
  109. var serverUrl = (copyItems[0] as! Nextcloud.tableMetadata).serverUrl
  110. // Setup view controllers such that the current view is of the same directory the items to be copied are in
  111. while true {
  112. // If not in the topmost directory, create a new view controller and set correct title.
  113. // If in the topmost directory, use the default view controller as the base.
  114. var viewController: NCSelect?
  115. if serverUrl != homeUrl {
  116. viewController = UIStoryboard(name: "NCSelect", bundle: nil).instantiateViewController(withIdentifier: "NCSelect.storyboard") as? NCSelect
  117. if viewController == nil {
  118. return
  119. }
  120. viewController!.titleCurrentFolder = (serverUrl as NSString).lastPathComponent
  121. } else {
  122. viewController = topViewController
  123. }
  124. guard let vc = viewController else { return }
  125. vc.delegate = self
  126. vc.hideButtonCreateFolder = false
  127. vc.selectFile = false
  128. vc.includeDirectoryE2EEncryption = false
  129. vc.includeImages = false
  130. vc.type = ""
  131. vc.titleButtonDone = NSLocalizedString("_move_", comment: "")
  132. vc.titleButtonDone1 = NSLocalizedString("_copy_",comment: "")
  133. vc.isButtonDone1Hide = false
  134. vc.isOverwriteHide = false
  135. vc.items = copyItems
  136. vc.serverUrl = serverUrl
  137. vc.navigationItem.backButtonTitle = vc.titleCurrentFolder
  138. listViewController.insert(vc, at: 0)
  139. if serverUrl != homeUrl {
  140. serverUrl = NCUtilityFileSystem.shared.deletingLastPathComponent(serverUrl: serverUrl, urlBase: appDelegate.urlBase, account: appDelegate.account)
  141. } else {
  142. break
  143. }
  144. }
  145. navigationController.setViewControllers(listViewController, animated: false)
  146. navigationController.modalPresentationStyle = .formSheet
  147. viewController.present(navigationController, animated: true, completion: nil)
  148. }
  149. @objc func openFileViewInFolder(serverUrl: String, fileName: String) {
  150. let viewController = UIStoryboard(name: "NCFileViewInFolder", bundle: nil).instantiateInitialViewController() as! NCFileViewInFolder
  151. let navigationController = UINavigationController.init(rootViewController: viewController)
  152. let topViewController = viewController
  153. var listViewController = [NCFileViewInFolder]()
  154. var serverUrl = serverUrl
  155. let homeUrl = NCUtilityFileSystem.shared.getHomeServer(urlBase: appDelegate.urlBase, account: appDelegate.account)
  156. while true {
  157. var viewController: NCFileViewInFolder?
  158. if serverUrl != homeUrl {
  159. viewController = UIStoryboard(name: "NCFileViewInFolder", bundle: nil).instantiateInitialViewController() as? NCFileViewInFolder
  160. if viewController == nil {
  161. return
  162. }
  163. viewController!.titleCurrentFolder = (serverUrl as NSString).lastPathComponent
  164. } else {
  165. viewController = topViewController
  166. }
  167. guard let vc = viewController else { return }
  168. vc.serverUrl = serverUrl
  169. vc.fileName = fileName
  170. vc.navigationItem.backButtonTitle = vc.titleCurrentFolder
  171. listViewController.insert(vc, at: 0)
  172. if serverUrl != homeUrl {
  173. serverUrl = NCUtilityFileSystem.shared.deletingLastPathComponent(serverUrl: serverUrl, urlBase: appDelegate.urlBase, account: appDelegate.account)
  174. } else {
  175. break
  176. }
  177. }
  178. navigationController.setViewControllers(listViewController, animated: false)
  179. navigationController.modalPresentationStyle = .formSheet
  180. appDelegate.window?.rootViewController?.present(navigationController, animated: true, completion: nil)
  181. }
  182. // MARK: - Save Photo - Video - Live Photo
  183. func saveAlbum(metadata: tableMetadata) {
  184. let fileNamePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  185. let status = PHPhotoLibrary.authorizationStatus()
  186. if metadata.typeFile == NCGlobal.shared.metadataTypeFileImage && status == PHAuthorizationStatus.authorized {
  187. if let image = UIImage.init(contentsOfFile: fileNamePath) {
  188. UIImageWriteToSavedPhotosAlbum(image, self, #selector(SaveAlbum(_:didFinishSavingWithError:contextInfo:)), nil)
  189. } else {
  190. NCContentPresenter.shared.messageNotification("_save_selected_files_", description: "_file_not_saved_cameraroll_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.ErrorFileNotSaved)
  191. }
  192. } else if metadata.typeFile == NCGlobal.shared.metadataTypeFileVideo && status == PHAuthorizationStatus.authorized {
  193. if UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(fileNamePath) {
  194. UISaveVideoAtPathToSavedPhotosAlbum(fileNamePath, self, #selector(SaveAlbum(_:didFinishSavingWithError:contextInfo:)), nil)
  195. } else {
  196. NCContentPresenter.shared.messageNotification("_save_selected_files_", description: "_file_not_saved_cameraroll_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.ErrorFileNotSaved)
  197. }
  198. } else if status != PHAuthorizationStatus.authorized {
  199. NCContentPresenter.shared.messageNotification("_access_photo_not_enabled_", description: "_access_photo_not_enabled_msg_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.ErrorFileNotSaved)
  200. }
  201. }
  202. @objc private func SaveAlbum(_ image: UIImage, didFinishSavingWithError error: Error?, contextInfo: UnsafeRawPointer) {
  203. if error != nil {
  204. NCContentPresenter.shared.messageNotification("_save_selected_files_", description: "_file_not_saved_cameraroll_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.ErrorFileNotSaved)
  205. }
  206. }
  207. func saveLivePhoto(metadata: tableMetadata, metadataMOV: tableMetadata) {
  208. if !CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  209. NCOperationQueue.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorSaveAlbumLivePhotoIMG)
  210. }
  211. if !CCUtility.fileProviderStorageExists(metadataMOV.ocId, fileNameView: metadataMOV.fileNameView) {
  212. NCOperationQueue.shared.download(metadata: metadataMOV, selector: NCGlobal.shared.selectorSaveAlbumLivePhotoMOV)
  213. }
  214. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) && CCUtility.fileProviderStorageExists(metadataMOV.ocId, fileNameView: metadataMOV.fileNameView) {
  215. saveLivePhotoToDisk(metadata: metadata, metadataMov: metadataMOV, progressView: nil, viewActivity: self.appDelegate.window?.rootViewController?.view)
  216. }
  217. }
  218. func saveLivePhotoToDisk(metadata: tableMetadata, metadataMov: tableMetadata, progressView: UIProgressView?, viewActivity: UIView?) {
  219. let fileNameImage = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!)
  220. let fileNameMov = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadataMov.ocId, fileNameView: metadataMov.fileNameView)!)
  221. if let view = viewActivity {
  222. NCUtility.shared.startActivityIndicator(view: view)
  223. }
  224. NCLivePhoto.generate(from: fileNameImage, videoURL: fileNameMov, progress: { progress in
  225. DispatchQueue.main.async {
  226. progressView?.progress = Float(progress)
  227. }
  228. }, completion: { livePhoto, resources in
  229. NCUtility.shared.stopActivityIndicator()
  230. progressView?.progress = 0
  231. if resources != nil {
  232. NCLivePhoto.saveToLibrary(resources!) { (result) in
  233. if !result {
  234. NCContentPresenter.shared.messageNotification("_error_", description: "_livephoto_save_error_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.ErrorInternalError)
  235. }
  236. }
  237. } else {
  238. NCContentPresenter.shared.messageNotification("_error_", description: "_livephoto_save_error_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.ErrorInternalError)
  239. }
  240. })
  241. }
  242. // MARK: - Print
  243. func printDocument(metadata: tableMetadata) {
  244. let fileNameURL = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!)
  245. if UIPrintInteractionController.canPrint(fileNameURL) {
  246. let printInfo = UIPrintInfo(dictionary: nil)
  247. printInfo.jobName = fileNameURL.lastPathComponent
  248. printInfo.outputType = .photo
  249. let printController = UIPrintInteractionController.shared
  250. printController.printInfo = printInfo
  251. printController.showsNumberOfCopies = true
  252. printController.printingItem = fileNameURL
  253. printController.present(animated: true, completionHandler: nil)
  254. }
  255. }
  256. // MARK: - Context Menu COnfiguration
  257. @available(iOS 13.0, *)
  258. func contextMenuConfiguration(metadata: tableMetadata, viewController: UIViewController, enableDeleteLocal: Bool, enableViewInFolder: Bool) -> UIMenu {
  259. var titleDeleteConfirmFile = NSLocalizedString("_delete_file_", comment: "")
  260. if metadata.directory { titleDeleteConfirmFile = NSLocalizedString("_delete_folder_", comment: "") }
  261. var titleSave: String = NSLocalizedString("_save_selected_files_", comment: "")
  262. let metadataMOV = NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata)
  263. if metadataMOV != nil {
  264. titleSave = NSLocalizedString("_livephoto_save_", comment: "")
  265. }
  266. let copy = UIAction(title: NSLocalizedString("_copy_file_", comment: ""), image: UIImage(systemName: "doc.on.doc") ) { action in
  267. self.appDelegate.pasteboardOcIds = [metadata.ocId]
  268. self.copyPasteboard()
  269. }
  270. let detail = UIAction(title: NSLocalizedString("_details_", comment: ""), image: UIImage(systemName: "info") ) { action in
  271. NCNetworkingNotificationCenter.shared.openShare(ViewController: viewController, metadata: metadata, indexPage: 0)
  272. }
  273. let save = UIAction(title: titleSave, image: UIImage(systemName: "square.and.arrow.down")) { action in
  274. if metadataMOV != nil {
  275. NCCollectionCommon.shared.saveLivePhoto(metadata: metadata, metadataMOV: metadataMOV!)
  276. } else {
  277. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  278. self.saveAlbum(metadata: metadata)
  279. } else {
  280. NCOperationQueue.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorSaveAlbum)
  281. }
  282. }
  283. }
  284. let viewInFolder = UIAction(title: NSLocalizedString("_view_in_folder_", comment: ""), image: UIImage(systemName: "arrow.forward.square")) { action in
  285. NCCollectionCommon.shared.openFileViewInFolder(serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  286. }
  287. let openIn = UIAction(title: NSLocalizedString("_open_in_", comment: ""), image: UIImage(systemName: "square.and.arrow.up") ) { action in
  288. NCNetworkingNotificationCenter.shared.downloadOpen(metadata: metadata, selector: NCGlobal.shared.selectorOpenIn)
  289. }
  290. let openQuickLook = UIAction(title: NSLocalizedString("_open_quicklook_", comment: ""), image: UIImage(systemName: "eye")) { action in
  291. NCNetworkingNotificationCenter.shared.downloadOpen(metadata: metadata, selector: NCGlobal.shared.selectorLoadFileQuickLook)
  292. }
  293. let open = UIMenu(title: NSLocalizedString("_open_", comment: ""), image: UIImage(systemName: "square.and.arrow.up"), children: [openIn, openQuickLook])
  294. let moveCopy = UIAction(title: NSLocalizedString("_move_or_copy_", comment: ""), image: UIImage(systemName: "arrow.up.right.square")) { action in
  295. NCCollectionCommon.shared.openSelectView(items: [metadata], viewController: viewController)
  296. }
  297. let deleteConfirmFile = UIAction(title: titleDeleteConfirmFile, image: UIImage(systemName: "trash"), attributes: .destructive) { action in
  298. NCNetworking.shared.deleteMetadata(metadata, account: self.appDelegate.account, urlBase: self.appDelegate.urlBase, onlyLocal: false) { (errorCode, errorDescription) in
  299. if errorCode != 0 {
  300. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: errorCode)
  301. }
  302. }
  303. }
  304. let deleteConfirmLocal = UIAction(title: NSLocalizedString("_remove_local_file_", comment: ""), image: UIImage(systemName: "trash"), attributes: .destructive) { action in
  305. NCNetworking.shared.deleteMetadata(metadata, account: self.appDelegate.account, urlBase: self.appDelegate.urlBase, onlyLocal: true) { (errorCode, errorDescription) in
  306. }
  307. }
  308. var delete = UIMenu(title: NSLocalizedString("_delete_file_", comment: ""), image: UIImage(systemName: "trash"), options: .destructive, children: [deleteConfirmLocal, deleteConfirmFile])
  309. if !enableDeleteLocal {
  310. delete = UIMenu(title: NSLocalizedString("_delete_file_", comment: ""), image: UIImage(systemName: "trash"), options: .destructive, children: [deleteConfirmFile])
  311. }
  312. if metadata.directory {
  313. delete = UIMenu(title: NSLocalizedString("_delete_folder_", comment: ""), image: UIImage(systemName: "trash"), options: .destructive, children: [deleteConfirmFile])
  314. }
  315. // ------ MENU -----
  316. if metadata.directory {
  317. return UIMenu(title: "", children: [detail, moveCopy, delete])
  318. }
  319. var children: [UIMenuElement] = [detail, open, moveCopy, copy, delete]
  320. if metadata.typeFile == NCGlobal.shared.metadataTypeFileImage || metadata.typeFile == NCGlobal.shared.metadataTypeFileVideo {
  321. children.insert(save, at: 2)
  322. }
  323. if enableViewInFolder {
  324. children.insert(viewInFolder, at: 5)
  325. }
  326. return UIMenu(title: "", image: nil, identifier: nil, children: children)
  327. }
  328. // MARK: - Copy & Paste
  329. func copyPasteboard() {
  330. var metadatas: [tableMetadata] = []
  331. var items = [[String : Any]]()
  332. for ocId in appDelegate.pasteboardOcIds {
  333. if let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  334. metadatas.append(metadata)
  335. }
  336. }
  337. for metadata in metadatas {
  338. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  339. do {
  340. // Get Data
  341. let data = try Data.init(contentsOf: URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)))
  342. // Pasteboard item
  343. if let unmanagedFileUTI = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (metadata.fileNameView as NSString).pathExtension as CFString, nil) {
  344. let fileUTI = unmanagedFileUTI.takeRetainedValue() as String
  345. items.append([fileUTI:data])
  346. }
  347. } catch {
  348. print("error")
  349. }
  350. } else {
  351. NCNetworking.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorLoadCopy) { (_) in }
  352. }
  353. }
  354. UIPasteboard.general.setItems(items, options: [:])
  355. }
  356. func pastePasteboard(serverUrl: String) {
  357. for (index, items) in UIPasteboard.general.items.enumerated() {
  358. for item in items {
  359. let pasteboardType = item.key
  360. if let data = UIPasteboard.general.data(forPasteboardType: pasteboardType, inItemSet: IndexSet([index]))?.first {
  361. let results = NCCommunicationCommon.shared.getDescriptionFile(inUTI: pasteboardType as CFString)
  362. if results.resultTypeFile != NCCommunicationCommon.typeFile.unknow.rawValue {
  363. uploadPasteFile(fileName: results.resultFilename, ext: results.resultExtension, contentType: pasteboardType, serverUrl: serverUrl, data: data)
  364. }
  365. }
  366. }
  367. }
  368. }
  369. private func uploadPasteFile(fileName: String, ext: String, contentType: String, serverUrl: String, data: Data) {
  370. do {
  371. let fileNameView = fileName + "_" + CCUtility.getIncrementalNumber() + "." + ext
  372. let ocId = UUID().uuidString
  373. let filePath = CCUtility.getDirectoryProviderStorageOcId(ocId, fileNameView: fileNameView)!
  374. try data.write(to: URL(fileURLWithPath: filePath))
  375. let metadataForUpload = NCManageDatabase.shared.createMetadata(account: appDelegate.account, fileName: fileNameView, ocId: ocId, serverUrl: serverUrl, urlBase: appDelegate.urlBase, url: "", contentType: contentType, livePhoto: false)
  376. metadataForUpload.session = NCNetworking.shared.sessionIdentifierBackground
  377. metadataForUpload.sessionSelector = NCGlobal.shared.selectorUploadFile
  378. metadataForUpload.size = NCUtilityFileSystem.shared.getFileSize(filePath: filePath)
  379. metadataForUpload.status = NCGlobal.shared.metadataStatusWaitUpload
  380. NCManageDatabase.shared.addMetadata(metadataForUpload)
  381. } catch { }
  382. }
  383. }
  384. // MARK: - List Layout
  385. class NCListLayout: UICollectionViewFlowLayout {
  386. var itemHeight: CGFloat = 60
  387. override init() {
  388. super.init()
  389. sectionHeadersPinToVisibleBounds = false
  390. minimumInteritemSpacing = 0
  391. minimumLineSpacing = 1
  392. self.scrollDirection = .vertical
  393. self.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
  394. }
  395. required init?(coder aDecoder: NSCoder) {
  396. fatalError("init(coder:) has not been implemented")
  397. }
  398. override var itemSize: CGSize {
  399. get {
  400. if let collectionView = collectionView {
  401. let itemWidth: CGFloat = collectionView.frame.width
  402. return CGSize(width: itemWidth, height: self.itemHeight)
  403. }
  404. // Default fallback
  405. return CGSize(width: 100, height: 100)
  406. }
  407. set {
  408. super.itemSize = newValue
  409. }
  410. }
  411. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  412. return proposedContentOffset
  413. }
  414. }
  415. // MARK: - Grid Layout
  416. class NCGridLayout: UICollectionViewFlowLayout {
  417. var heightLabelPlusButton: CGFloat = 45
  418. var marginLeftRight: CGFloat = 6
  419. var itemForLine: CGFloat = 3
  420. var itemWidthDefault: CGFloat = 120
  421. override init() {
  422. super.init()
  423. sectionHeadersPinToVisibleBounds = false
  424. minimumInteritemSpacing = 1
  425. minimumLineSpacing = marginLeftRight
  426. self.scrollDirection = .vertical
  427. self.sectionInset = UIEdgeInsets(top: 10, left: marginLeftRight, bottom: 0, right: marginLeftRight)
  428. }
  429. required init?(coder aDecoder: NSCoder) {
  430. fatalError("init(coder:) has not been implemented")
  431. }
  432. override var itemSize: CGSize {
  433. get {
  434. if let collectionView = collectionView {
  435. if collectionView.frame.width < 400 {
  436. itemForLine = 3
  437. } else {
  438. itemForLine = collectionView.frame.width / itemWidthDefault
  439. }
  440. let itemWidth: CGFloat = (collectionView.frame.width - marginLeftRight * 2 - marginLeftRight * (itemForLine - 1)) / itemForLine
  441. let itemHeight: CGFloat = itemWidth + heightLabelPlusButton
  442. return CGSize(width: itemWidth, height: itemHeight)
  443. }
  444. // Default fallback
  445. return CGSize(width: itemWidthDefault, height: itemWidthDefault)
  446. }
  447. set {
  448. super.itemSize = newValue
  449. }
  450. }
  451. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  452. return proposedContentOffset
  453. }
  454. }