NCCollectionViewCommon.swift 57 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232
  1. //
  2. // NCCollectionViewCommon.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 12/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 NCCollectionViewCommon: UIViewController, UIGestureRecognizerDelegate, UISearchResultsUpdating, UISearchControllerDelegate, UISearchBarDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  26. @IBOutlet weak var collectionView: UICollectionView!
  27. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  28. internal let refreshControl = UIRefreshControl()
  29. internal var searchController: UISearchController?
  30. internal var serverUrl: String = ""
  31. internal var isRoot: Bool = true
  32. internal var isEncryptedFolder = false
  33. internal var isEditMode = false
  34. internal var selectOcId: [String] = []
  35. internal var metadatasSource: [tableMetadata] = []
  36. internal var metadataFolder: tableMetadata?
  37. internal var metadataTouch: tableMetadata?
  38. internal var dataSource: NCDataSource?
  39. internal var richWorkspaceText: String?
  40. internal var layout = ""
  41. internal var groupBy = ""
  42. internal var titleButton = ""
  43. internal var itemForLine = 0
  44. private var autoUploadFileName = ""
  45. private var autoUploadDirectory = ""
  46. private var listLayout: NCListLayout!
  47. private var gridLayout: NCGridLayout!
  48. private let headerHeight: CGFloat = 50
  49. private var headerRichWorkspaceHeight: CGFloat = 0
  50. private let footerHeight: CGFloat = 50
  51. private var timerInputSearch: Timer?
  52. internal var literalSearch: String?
  53. internal var isSearching: Bool = false
  54. internal var isReloadDataSourceNetworkInProgress: Bool = false
  55. // DECLARE
  56. internal var layoutKey = ""
  57. internal var titleCurrentFolder = ""
  58. internal var enableSearchBar: Bool = false
  59. internal var DZNimage: UIImage?
  60. internal var DZNtitle: String = ""
  61. internal var DZNdescription: String = ""
  62. required init?(coder aDecoder: NSCoder) {
  63. super.init(coder: aDecoder)
  64. }
  65. override func viewDidLoad() {
  66. super.viewDidLoad()
  67. self.navigationController?.navigationBar.prefersLargeTitles = true
  68. if enableSearchBar {
  69. searchController = UISearchController(searchResultsController: nil)
  70. searchController?.searchResultsUpdater = self
  71. searchController?.dimsBackgroundDuringPresentation = false
  72. searchController?.delegate = self
  73. searchController?.searchBar.delegate = self
  74. navigationItem.searchController = searchController
  75. navigationItem.hidesSearchBarWhenScrolling = false
  76. }
  77. // Cell
  78. collectionView.register(UINib.init(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  79. collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  80. // Header
  81. collectionView.register(UINib.init(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  82. // Footer
  83. collectionView.register(UINib.init(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  84. collectionView.alwaysBounceVertical = true
  85. listLayout = NCListLayout()
  86. gridLayout = NCGridLayout()
  87. // Refresh Control
  88. collectionView.addSubview(refreshControl)
  89. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  90. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brandElement
  91. refreshControl.addTarget(self, action: #selector(reloadDataSourceNetworkRefreshControl), for: .valueChanged)
  92. // empty Data Source
  93. self.collectionView.emptyDataSetDelegate = self
  94. self.collectionView.emptyDataSetSource = self
  95. // 3D Touch peek and pop
  96. if traitCollection.forceTouchCapability == .available {
  97. registerForPreviewing(with: self, sourceView: view)
  98. }
  99. // Long Press on CollectionView
  100. let longPressedGesture = UILongPressGestureRecognizer(target: self, action: #selector(longPressCollecationView(_:)))
  101. longPressedGesture.minimumPressDuration = 0.5
  102. longPressedGesture.delegate = self
  103. longPressedGesture.delaysTouchesBegan = true
  104. collectionView.addGestureRecognizer(longPressedGesture)
  105. // Notification
  106. NotificationCenter.default.addObserver(self, selector: #selector(initializeMain), name: NSNotification.Name(rawValue: k_notificationCenter_initializeMain), object: nil)
  107. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil)
  108. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_reloadDataSource), object: nil)
  109. NotificationCenter.default.addObserver(self, selector: #selector(changeStatusFolderE2EE(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_changeStatusFolderE2EE), object: nil)
  110. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_deleteFile), object: nil)
  111. NotificationCenter.default.addObserver(self, selector: #selector(moveFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_moveFile), object: nil)
  112. NotificationCenter.default.addObserver(self, selector: #selector(copyFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_copyFile), object: nil)
  113. NotificationCenter.default.addObserver(self, selector: #selector(renameFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_renameFile), object: nil)
  114. NotificationCenter.default.addObserver(self, selector: #selector(createFolder(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_createFolder), object: nil)
  115. NotificationCenter.default.addObserver(self, selector: #selector(favoriteFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_favoriteFile), object: nil)
  116. NotificationCenter.default.addObserver(self, selector: #selector(downloadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadStartFile), object: nil)
  117. NotificationCenter.default.addObserver(self, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadedFile), object: nil)
  118. NotificationCenter.default.addObserver(self, selector: #selector(downloadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadCancelFile), object: nil)
  119. NotificationCenter.default.addObserver(self, selector: #selector(uploadStartFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadStartFile), object: nil)
  120. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadedFile), object: nil)
  121. NotificationCenter.default.addObserver(self, selector: #selector(uploadCancelFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadCancelFile), object: nil)
  122. NotificationCenter.default.addObserver(self, selector: #selector(triggerProgressTask(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_progressTask), object:nil)
  123. changeTheming()
  124. }
  125. override func viewWillAppear(_ animated: Bool) {
  126. super.viewWillAppear(animated)
  127. if serverUrl == "" {
  128. appDelegate.activeServerUrl = NCUtility.shared.getHomeServer(urlBase: appDelegate.urlBase, account: appDelegate.account)
  129. } else {
  130. appDelegate.activeServerUrl = serverUrl
  131. }
  132. appDelegate.activeViewController = self
  133. self.navigationItem.title = titleCurrentFolder
  134. (layout, _, _, groupBy, _, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: layoutKey)
  135. gridLayout.itemForLine = CGFloat(itemForLine)
  136. if layout == k_layout_list {
  137. collectionView?.collectionViewLayout = listLayout
  138. } else {
  139. collectionView?.collectionViewLayout = gridLayout
  140. }
  141. setNavigationItem()
  142. reloadDataSource()
  143. }
  144. override func viewDidAppear(_ animated: Bool) {
  145. super.viewDidAppear(animated)
  146. reloadDataSourceNetwork()
  147. }
  148. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  149. super.viewWillTransition(to: size, with: coordinator)
  150. coordinator.animate(alongsideTransition: nil) { _ in
  151. self.collectionView?.collectionViewLayout.invalidateLayout()
  152. }
  153. }
  154. override var canBecomeFirstResponder: Bool {
  155. return true
  156. }
  157. func setNavigationItem() {
  158. if isEditMode {
  159. self.navigationItem.rightBarButtonItem = UIBarButtonItem(image: UIImage.init(named: "navigationMore"), style: .plain, target: self, action:#selector(tapSelectMenu(sender:)))
  160. self.navigationItem.leftBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_cancel_", comment: ""), style: .plain, target: self, action: #selector(tapSelect(sender:)))
  161. } else {
  162. self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_select_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(tapSelect(sender:)))
  163. self.navigationItem.leftBarButtonItem = nil
  164. }
  165. }
  166. // MARK: - NotificationCenter
  167. @objc func initializeMain() {
  168. if appDelegate.account.count == 0 { return }
  169. if searchController?.isActive ?? false {
  170. searchController?.isActive = false
  171. }
  172. // set active serverUrl
  173. if self.view?.window != nil {
  174. if serverUrl == "" {
  175. appDelegate.activeServerUrl = NCUtility.shared.getHomeServer(urlBase: appDelegate.urlBase, account: appDelegate.account)
  176. } else {
  177. appDelegate.activeServerUrl = serverUrl
  178. }
  179. }
  180. self.navigationController?.popToRootViewController(animated: false)
  181. appDelegate.listFilesVC.removeAllObjects()
  182. appDelegate.listFavoriteVC.removeAllObjects()
  183. appDelegate.listOfflineVC.removeAllObjects()
  184. reloadDataSource()
  185. }
  186. @objc func changeTheming() {
  187. appDelegate.changeTheming(self, tableView: nil, collectionView: collectionView, form: false)
  188. }
  189. @objc func changeStatusFolderE2EE(_ notification: NSNotification) {
  190. if self.view?.window == nil { return }
  191. reloadDataSource()
  192. }
  193. @objc func deleteFile(_ notification: NSNotification) {
  194. if self.view?.window == nil { return }
  195. if let userInfo = notification.userInfo as NSDictionary? {
  196. if let metadata = userInfo["metadata"] as? tableMetadata, let onlyLocal = userInfo["onlyLocal"] as? Bool {
  197. if onlyLocal {
  198. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  199. let indexPath = IndexPath(row: row, section: 0)
  200. collectionView?.reloadItems(at: [indexPath])
  201. }
  202. } else {
  203. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  204. let indexPath = IndexPath(row: row, section: 0)
  205. collectionView?.performBatchUpdates({
  206. collectionView?.deleteItems(at: [indexPath])
  207. }, completion: { (_) in
  208. self.collectionView?.reloadData()
  209. })
  210. }
  211. }
  212. }
  213. }
  214. }
  215. @objc func moveFile(_ notification: NSNotification) {
  216. if self.view?.window == nil { return }
  217. if let userInfo = notification.userInfo as NSDictionary? {
  218. if let metadata = userInfo["metadata"] as? tableMetadata, let metadataNew = userInfo["metadataNew"] as? tableMetadata {
  219. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  220. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  221. let indexPath = IndexPath(row: row, section: 0)
  222. collectionView?.performBatchUpdates({
  223. collectionView?.deleteItems(at: [indexPath])
  224. }, completion: { (_) in
  225. self.collectionView?.reloadData()
  226. })
  227. }
  228. } else if metadataNew.serverUrl == serverUrl && metadata.account == appDelegate.account {
  229. if let row = dataSource?.addMetadata(metadataNew) {
  230. let indexPath = IndexPath(row: row, section: 0)
  231. collectionView?.performBatchUpdates({
  232. collectionView?.insertItems(at: [indexPath])
  233. }, completion: { (_) in
  234. self.collectionView?.reloadData()
  235. })
  236. }
  237. }
  238. }
  239. }
  240. }
  241. @objc func copyFile(_ notification: NSNotification) {
  242. if self.view?.window == nil { return }
  243. if let userInfo = notification.userInfo as NSDictionary? {
  244. if let serverUrlTo = userInfo["serverUrlTo"] as? String {
  245. if serverUrlTo == self.serverUrl {
  246. self.reloadDataSource()
  247. }
  248. }
  249. }
  250. }
  251. @objc func renameFile(_ notification: NSNotification) {
  252. if self.view?.window == nil { return }
  253. if let userInfo = notification.userInfo as NSDictionary? {
  254. if let metadata = userInfo["metadata"] as? tableMetadata {
  255. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  256. let indexPath = IndexPath(row: row, section: 0)
  257. collectionView?.performBatchUpdates({
  258. collectionView?.reloadItems(at: [indexPath])
  259. }, completion: { (_) in
  260. self.collectionView?.reloadData()
  261. })
  262. }
  263. }
  264. }
  265. }
  266. @objc func createFolder(_ notification: NSNotification) {
  267. if self.view?.window == nil { return }
  268. if let userInfo = notification.userInfo as NSDictionary? {
  269. if let metadata = userInfo["metadata"] as? tableMetadata {
  270. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  271. if let row = dataSource?.addMetadata(metadata) {
  272. let indexPath = IndexPath(row: row, section: 0)
  273. collectionView?.performBatchUpdates({
  274. collectionView?.insertItems(at: [indexPath])
  275. }, completion: { (_) in
  276. self.collectionView?.reloadData()
  277. })
  278. }
  279. }
  280. }
  281. } else {
  282. self.reloadDataSourceNetwork()
  283. }
  284. }
  285. @objc func favoriteFile(_ notification: NSNotification) {
  286. if self.view?.window == nil { return }
  287. if let userInfo = notification.userInfo as NSDictionary? {
  288. if let metadata = userInfo["metadata"] as? tableMetadata {
  289. if dataSource?.getIndexMetadata(ocId: metadata.ocId) != nil {
  290. self.reloadDataSource()
  291. }
  292. }
  293. }
  294. }
  295. @objc func downloadStartFile(_ notification: NSNotification) {
  296. if self.view?.window == nil { return }
  297. if let userInfo = notification.userInfo as NSDictionary? {
  298. if let metadata = userInfo["metadata"] as? tableMetadata {
  299. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  300. let indexPath = IndexPath(row: row, section: 0)
  301. collectionView?.reloadItems(at: [indexPath])
  302. }
  303. }
  304. }
  305. }
  306. @objc func downloadedFile(_ notification: NSNotification) {
  307. if self.view?.window == nil { return }
  308. if let userInfo = notification.userInfo as NSDictionary? {
  309. if let metadata = userInfo["metadata"] as? tableMetadata, let _ = userInfo["errorCode"] as? Int {
  310. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  311. let indexPath = IndexPath(row: row, section: 0)
  312. collectionView?.reloadItems(at: [indexPath])
  313. }
  314. }
  315. }
  316. }
  317. @objc func downloadCancelFile(_ notification: NSNotification) {
  318. if self.view?.window == nil { return }
  319. if let userInfo = notification.userInfo as NSDictionary? {
  320. if let metadata = userInfo["metadata"] as? tableMetadata {
  321. if let row = dataSource?.reloadMetadata(ocId: metadata.ocId) {
  322. let indexPath = IndexPath(row: row, section: 0)
  323. collectionView?.reloadItems(at: [indexPath])
  324. }
  325. }
  326. }
  327. }
  328. @objc func uploadStartFile(_ notification: NSNotification) {
  329. if self.view?.window == nil { return }
  330. if let userInfo = notification.userInfo as NSDictionary? {
  331. if let metadata = userInfo["metadata"] as? tableMetadata {
  332. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  333. if let row = dataSource?.addMetadata(metadata) {
  334. let indexPath = IndexPath(row: row, section: 0)
  335. collectionView?.performBatchUpdates({
  336. collectionView?.insertItems(at: [indexPath])
  337. }, completion: { (_) in
  338. self.collectionView?.reloadData()
  339. })
  340. }
  341. }
  342. }
  343. }
  344. }
  345. @objc func uploadedFile(_ notification: NSNotification) {
  346. if self.view?.window == nil { return }
  347. if let userInfo = notification.userInfo as NSDictionary? {
  348. if let metadata = userInfo["metadata"] as? tableMetadata, let ocIdTemp = userInfo["ocIdTemp"] as? String, let _ = userInfo["errorCode"] as? Int {
  349. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  350. dataSource?.reloadMetadata(ocId: metadata.ocId, ocIdTemp: ocIdTemp)
  351. collectionView?.reloadData()
  352. }
  353. }
  354. }
  355. }
  356. @objc func uploadCancelFile(_ notification: NSNotification) {
  357. if self.view?.window == nil { return }
  358. if let userInfo = notification.userInfo as NSDictionary? {
  359. if let metadata = userInfo["metadata"] as? tableMetadata {
  360. if metadata.serverUrl == serverUrl && metadata.account == appDelegate.account {
  361. if let row = dataSource?.deleteMetadata(ocId: metadata.ocId) {
  362. let indexPath = IndexPath(row: row, section: 0)
  363. collectionView?.performBatchUpdates({
  364. collectionView?.deleteItems(at: [indexPath])
  365. }, completion: { (_) in
  366. self.collectionView?.reloadData()
  367. })
  368. } else {
  369. self.reloadDataSource()
  370. }
  371. }
  372. }
  373. }
  374. }
  375. @objc func triggerProgressTask(_ notification: NSNotification) {
  376. if self.view?.window == nil { return }
  377. if let userInfo = notification.userInfo as NSDictionary? {
  378. if let ocId = userInfo["ocId"] as? String {
  379. let _ = userInfo["account"] as? String ?? ""
  380. let _ = userInfo["serverUrl"] as? String ?? ""
  381. let progressNumber = userInfo["progress"] as? NSNumber ?? 0
  382. let progress = progressNumber.floatValue
  383. let status = userInfo["status"] as? Int ?? Int(k_metadataStatusNormal)
  384. let totalBytes = userInfo["totalBytes"] as? Double ?? 0
  385. let totalBytesExpected = userInfo["totalBytesExpected"] as? Double ?? 0
  386. appDelegate.listProgressMetadata.setObject([progress as NSNumber, totalBytes as NSNumber, totalBytesExpected as NSNumber], forKey: userInfo["ocId"] as? NSString ?? "")
  387. if let index = dataSource?.getIndexMetadata(ocId: ocId) {
  388. if let cell = collectionView?.cellForItem(at: IndexPath(row: index, section: 0)) {
  389. if cell is NCListCell {
  390. let cell = cell as! NCListCell
  391. if progress > 0 {
  392. cell.progressView?.isHidden = false
  393. cell.progressView?.progress = progress
  394. cell.setButtonMore(named: "stop")
  395. if status == k_metadataStatusInDownload {
  396. cell.labelInfo.text = CCUtility.transformedSize(totalBytesExpected) + " - ↓ " + CCUtility.transformedSize(totalBytes)
  397. } else if status == k_metadataStatusInUpload {
  398. cell.labelInfo.text = CCUtility.transformedSize(totalBytesExpected) + " - ↑ " + CCUtility.transformedSize(totalBytes)
  399. }
  400. }
  401. } else if cell is NCGridCell {
  402. let cell = cell as! NCGridCell
  403. if progress > 0 {
  404. cell.progressView.isHidden = false
  405. cell.progressView.progress = progress
  406. cell.setButtonMore(named: "stop")
  407. }
  408. }
  409. }
  410. }
  411. }
  412. }
  413. }
  414. // MARK: - DZNEmpty
  415. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  416. return NCBrandColor.sharedInstance.backgroundView
  417. }
  418. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  419. if searchController?.isActive ?? false {
  420. return CCGraphics.changeThemingColorImage(UIImage.init(named: "search"), width: 300, height: 300, color: .gray)
  421. }
  422. return DZNimage
  423. }
  424. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  425. var text = "\n"+NSLocalizedString(DZNtitle, comment: "")
  426. if searchController?.isActive ?? false {
  427. if isReloadDataSourceNetworkInProgress {
  428. text = "\n"+NSLocalizedString("_search_in_progress_", comment: "")
  429. } else {
  430. text = "\n"+NSLocalizedString("_search_no_record_found_", comment: "")
  431. }
  432. }
  433. let attributes = [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: 20), NSAttributedString.Key.foregroundColor: UIColor.gray]
  434. return NSAttributedString.init(string: text, attributes: attributes)
  435. }
  436. func description(forEmptyDataSet scrollView: UIScrollView!) -> NSAttributedString! {
  437. var text = "\n"+NSLocalizedString(DZNdescription, comment: "")
  438. if searchController?.isActive ?? false {
  439. text = "\n"+NSLocalizedString("_search_instruction_", comment: "")
  440. }
  441. let attributes = [NSAttributedString.Key.font: UIFont.systemFont(ofSize: 14), NSAttributedString.Key.foregroundColor: UIColor.lightGray]
  442. return NSAttributedString.init(string: text, attributes: attributes)
  443. }
  444. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  445. return true
  446. }
  447. // MARK: - SEARCH
  448. func updateSearchResults(for searchController: UISearchController) {
  449. timerInputSearch?.invalidate()
  450. timerInputSearch = Timer.scheduledTimer(timeInterval: 1.5, target: self, selector: #selector(reloadDataSourceNetwork), userInfo: nil, repeats: false)
  451. literalSearch = searchController.searchBar.text
  452. collectionView?.reloadData()
  453. }
  454. func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
  455. isSearching = true
  456. metadatasSource.removeAll()
  457. reloadDataSource()
  458. }
  459. func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
  460. isSearching = false
  461. literalSearch = ""
  462. reloadDataSource()
  463. }
  464. // MARK: - TAP EVENT
  465. @objc func tapSelect(sender: Any) {
  466. isEditMode = !isEditMode
  467. selectOcId.removeAll()
  468. setNavigationItem()
  469. self.collectionView.reloadData()
  470. }
  471. func tapSwitchHeader(sender: Any) {
  472. if collectionView.collectionViewLayout == gridLayout {
  473. // list layout
  474. UIView.animate(withDuration: 0.0, animations: {
  475. self.collectionView.collectionViewLayout.invalidateLayout()
  476. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  477. self.collectionView.reloadData()
  478. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  479. })
  480. })
  481. layout = k_layout_list
  482. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  483. } else {
  484. // grid layout
  485. UIView.animate(withDuration: 0.0, animations: {
  486. self.collectionView.collectionViewLayout.invalidateLayout()
  487. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  488. self.collectionView.reloadData()
  489. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  490. })
  491. })
  492. layout = k_layout_grid
  493. NCUtility.shared.setLayoutForView(key: layoutKey, layout: layout)
  494. }
  495. }
  496. func tapOrderHeader(sender: Any) {
  497. let sortMenu = NCSortMenu()
  498. sortMenu.toggleMenu(viewController: self, key: layoutKey, sortButton: sender as? UIButton, serverUrl: serverUrl)
  499. }
  500. @objc func tapSelectMenu(sender: Any) {
  501. guard let tabBarController = self.tabBarController else { return }
  502. toggleMoreSelect(viewController: tabBarController, selectOcId: selectOcId)
  503. }
  504. func tapMoreHeader(sender: Any) { }
  505. func tapMoreListItem(with objectId: String, namedButtonMore: String, sender: Any) {
  506. tapMoreGridItem(with: objectId, namedButtonMore: namedButtonMore, sender: sender)
  507. }
  508. func tapShareListItem(with objectId: String, sender: Any) {
  509. guard let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(objectId) else { return }
  510. NCNetworkingNotificationCenter.shared.openShare(ViewController: self, metadata: metadata, indexPage: 2)
  511. }
  512. func tapMoreGridItem(with objectId: String, namedButtonMore: String, sender: Any) {
  513. guard let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(objectId) else { return }
  514. guard let tabBarController = self.tabBarController else { return }
  515. if namedButtonMore == "more" {
  516. toggleMoreMenu(viewController: tabBarController, metadata: metadata)
  517. } else if namedButtonMore == "stop" {
  518. NCNetworking.shared.cancelTransferMetadata(metadata) { }
  519. }
  520. }
  521. func tapRichWorkspace(sender: Any) {
  522. if let navigationController = UIStoryboard(name: "NCViewerRichWorkspace", bundle: nil).instantiateInitialViewController() as? UINavigationController {
  523. if let viewerRichWorkspace = navigationController.topViewController as? NCViewerRichWorkspace {
  524. viewerRichWorkspace.richWorkspaceText = richWorkspaceText ?? ""
  525. viewerRichWorkspace.serverUrl = serverUrl
  526. navigationController.modalPresentationStyle = .fullScreen
  527. self.present(navigationController, animated: true, completion: nil)
  528. }
  529. }
  530. }
  531. func longPressListItem(with objectId: String, gestureRecognizer: UILongPressGestureRecognizer) {
  532. if let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(objectId) {
  533. metadataTouch = metadata
  534. longPressCollecationView(gestureRecognizer)
  535. }
  536. }
  537. func longPressGridItem(with objectId: String, gestureRecognizer: UILongPressGestureRecognizer) {
  538. if let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(objectId) {
  539. metadataTouch = metadata
  540. longPressCollecationView(gestureRecognizer)
  541. }
  542. }
  543. func longPressMoreListItem(with objectId: String, namedButtonMore: String, gestureRecognizer: UILongPressGestureRecognizer) {
  544. }
  545. func longPressMoreGridItem(with objectId: String, namedButtonMore: String, gestureRecognizer: UILongPressGestureRecognizer) {
  546. }
  547. @objc func longPressCollecationView(_ gestureRecognizer: UILongPressGestureRecognizer) {
  548. if gestureRecognizer.state != .began { return }
  549. if serverUrl == "" { return }
  550. var listMenuItems: [UIMenuItem] = []
  551. let touchPoint = gestureRecognizer.location(in: collectionView)
  552. becomeFirstResponder()
  553. if metadataTouch != nil {
  554. listMenuItems.append(UIMenuItem.init(title: NSLocalizedString("_copy_file_", comment: ""), action: #selector(copyFileMenu(_:))))
  555. }
  556. listMenuItems.append(UIMenuItem.init(title: NSLocalizedString("_paste_file_", comment: ""), action: #selector(pasteFilesMenu(_:))))
  557. if metadataTouch != nil {
  558. listMenuItems.append(UIMenuItem.init(title: NSLocalizedString("_open_quicklook_", comment: ""), action: #selector(openQuickLookMenu(_:))))
  559. if !NCBrandOptions.sharedInstance.disable_openin_file {
  560. listMenuItems.append(UIMenuItem.init(title: NSLocalizedString("_open_in_", comment: ""), action: #selector(openInMenu(_:))))
  561. }
  562. }
  563. if listMenuItems.count > 0 {
  564. UIMenuController.shared.menuItems = listMenuItems
  565. UIMenuController.shared.setTargetRect(CGRect(x: touchPoint.x, y: touchPoint.y, width: 0, height: 0), in: collectionView)
  566. UIMenuController.shared.setMenuVisible(true, animated: true)
  567. }
  568. }
  569. // MARK: - Menu Item
  570. override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
  571. if (#selector(pasteFilesMenu(_:)) == action) {
  572. if UIPasteboard.general.items.count > 0 {
  573. return true
  574. }
  575. }
  576. if (#selector(openQuickLookMenu(_:)) == action || #selector(openInMenu(_:)) == action || #selector(copyFileMenu(_:)) == action) {
  577. guard let metadata = metadataTouch else { return false }
  578. if !metadata.directory && metadata.status == k_metadataStatusNormal {
  579. return true
  580. }
  581. }
  582. return false
  583. }
  584. @objc func copyFileMenu(_ notification: Any) {
  585. var metadatas: [tableMetadata] = []
  586. var items = [[String : Any]]()
  587. if isEditMode {
  588. for ocId in selectOcId {
  589. if let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(ocId) {
  590. metadatas.append(metadata)
  591. }
  592. }
  593. } else {
  594. guard let metadata = metadataTouch else { return }
  595. metadatas.append(metadata)
  596. }
  597. for metadata in metadatas {
  598. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  599. do {
  600. let etagPasteboard = try NSKeyedArchiver.archivedData(withRootObject: metadata.ocId, requiringSecureCoding: false)
  601. items.append([k_metadataKeyedUnarchiver:etagPasteboard])
  602. } catch {
  603. print("error")
  604. }
  605. } else {
  606. NCNetworking.shared.download(metadata: metadata, selector: selectorLoadCopy, setFavorite: false) { (_) in }
  607. }
  608. }
  609. UIPasteboard.general.setItems(items, options: [:])
  610. if isEditMode {
  611. tapSelect(sender: self)
  612. }
  613. }
  614. @objc func pasteFilesMenu(_ notification: Any) {
  615. var listData: [String] = []
  616. for item in UIPasteboard.general.items {
  617. for object in item {
  618. let contentType = object.key
  619. let data = object.value
  620. if contentType == k_metadataKeyedUnarchiver {
  621. do {
  622. if let ocId = try NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(data as! Data) as? String{
  623. uploadPasteOcId(ocId)
  624. }
  625. } catch {
  626. print("error")
  627. }
  628. continue
  629. }
  630. if data is String {
  631. if listData.contains(data as! String) {
  632. continue
  633. } else {
  634. listData.append(data as! String)
  635. }
  636. }
  637. let type = NCCommunicationCommon.shared.convertUTItoResultType(fileUTI: contentType as CFString)
  638. if type.resultTypeFile != NCCommunicationCommon.typeFile.unknow.rawValue && type.resultExtension != "" {
  639. uploadPasteFile(fileName: type.resultFilename, ext: type.resultExtension, contentType: contentType, data: data)
  640. }
  641. }
  642. }
  643. }
  644. private func uploadPasteFile(fileName: String, ext: String, contentType: String, data: Any) {
  645. do {
  646. let fileNameView = fileName + "_" + CCUtility.getIncrementalNumber() + "." + ext
  647. let ocId = UUID().uuidString
  648. let filePath = CCUtility.getDirectoryProviderStorageOcId(ocId, fileNameView: fileNameView)!
  649. if data is UIImage {
  650. try (data as? UIImage)?.jpegData(compressionQuality: 1)?.write(to: URL(fileURLWithPath: filePath))
  651. } else if data is Data {
  652. try (data as? Data)?.write(to: URL(fileURLWithPath: filePath))
  653. } else if data is String {
  654. try (data as? String)?.write(to: URL(fileURLWithPath: filePath), atomically: true, encoding: .utf8)
  655. } else {
  656. return
  657. }
  658. let metadataForUpload = NCManageDatabase.sharedInstance.createMetadata(account: appDelegate.account, fileName: fileNameView, ocId: ocId, serverUrl: serverUrl, urlBase: appDelegate.urlBase, url: "", contentType: contentType, livePhoto: false)
  659. metadataForUpload.session = NCNetworking.shared.sessionIdentifierBackground
  660. metadataForUpload.sessionSelector = selectorUploadFile
  661. metadataForUpload.size = Double(NCUtilityFileSystem.shared.getFileSize(filePath: filePath))
  662. metadataForUpload.status = Int(k_metadataStatusWaitUpload)
  663. NCManageDatabase.sharedInstance.addMetadata(metadataForUpload)
  664. } catch { }
  665. }
  666. private func uploadPasteOcId(_ ocId: String) {
  667. if let metadata = NCManageDatabase.sharedInstance.getMetadataFromOcId(ocId) {
  668. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  669. let fileNameView = NCUtility.shared.createFileName(metadata.fileNameView, serverUrl: serverUrl, account: appDelegate.account)
  670. let ocId = NSUUID().uuidString
  671. CCUtility.copyFile(atPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView), toPath: CCUtility.getDirectoryProviderStorageOcId(ocId, fileNameView: fileNameView))
  672. let metadataForUpload = NCManageDatabase.sharedInstance.createMetadata(account: appDelegate.account, fileName: fileNameView, ocId: ocId, serverUrl: serverUrl, urlBase: appDelegate.urlBase, url: "", contentType: "", livePhoto: false)
  673. metadataForUpload.session = NCNetworking.shared.sessionIdentifierBackground
  674. metadataForUpload.sessionSelector = selectorUploadFile
  675. metadataForUpload.size = metadata.size
  676. metadataForUpload.status = Int(k_metadataStatusWaitUpload)
  677. NCManageDatabase.sharedInstance.addMetadata(metadataForUpload)
  678. }
  679. }
  680. }
  681. @objc func openQuickLookMenu(_ notification: Any) {
  682. guard let metadata = metadataTouch else { return }
  683. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  684. NotificationCenter.default.postOnMainThread(name: k_notificationCenter_downloadedFile, userInfo: ["metadata": metadata, "selector": selectorLoadFileQuickLook, "errorCode": 0, "errorDescription": "" ])
  685. } else {
  686. NCNetworking.shared.download(metadata: metadata, selector: selectorLoadFileQuickLook) { (_) in }
  687. }
  688. }
  689. @objc func openInMenu(_ notification: Any) {
  690. guard let metadata = metadataTouch else { return }
  691. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  692. NotificationCenter.default.postOnMainThread(name: k_notificationCenter_downloadedFile, userInfo: ["metadata": metadata, "selector": selectorOpenIn, "errorCode": 0, "errorDescription": "" ])
  693. } else {
  694. NCNetworking.shared.download(metadata: metadata, selector: selectorOpenIn) { (_) in }
  695. }
  696. }
  697. // MARK: - SEGUE
  698. @objc func segue(metadata: tableMetadata) {
  699. self.metadataTouch = metadata
  700. performSegue(withIdentifier: "segueDetail", sender: self)
  701. }
  702. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  703. let photoDataSource: NSMutableArray = []
  704. for metadata in (dataSource?.metadatas ?? [tableMetadata]()) {
  705. if metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video {
  706. photoDataSource.add(metadata)
  707. }
  708. }
  709. if let segueNavigationController = segue.destination as? UINavigationController {
  710. if let segueViewController = segueNavigationController.topViewController as? NCDetailViewController {
  711. segueViewController.metadata = metadataTouch
  712. }
  713. }
  714. }
  715. // MARK: - DataSource + NC Endpoint
  716. @objc func reloadDataSource() {
  717. if appDelegate.account.count == 0 { return }
  718. let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, serverUrl))
  719. richWorkspaceText = directory?.richWorkspace
  720. // E2EE
  721. isEncryptedFolder = CCUtility.isFolderEncrypted(serverUrl, e2eEncrypted: metadataFolder?.e2eEncrypted ?? false, account: appDelegate.account, urlBase: appDelegate.urlBase)
  722. // get auto upload folder
  723. autoUploadFileName = NCManageDatabase.sharedInstance.getAccountAutoUploadFileName()
  724. autoUploadDirectory = NCManageDatabase.sharedInstance.getAccountAutoUploadDirectory(urlBase: appDelegate.urlBase, account: appDelegate.account)
  725. }
  726. @objc func reloadDataSource(_ notification: NSNotification) { }
  727. @objc func reloadDataSourceNetwork(forced: Bool = false) { }
  728. @objc func reloadDataSourceNetworkRefreshControl() {
  729. reloadDataSourceNetwork(forced: true)
  730. }
  731. @objc func networkSearch() {
  732. if appDelegate.account.count == 0 { return }
  733. if literalSearch?.count ?? 0 > 1 {
  734. isReloadDataSourceNetworkInProgress = true
  735. collectionView?.reloadData()
  736. NCNetworking.shared.searchFiles(urlBase: appDelegate.urlBase, user: appDelegate.user, literal: literalSearch!) { (account, metadatas, errorCode, errorDescription) in
  737. if self.searchController?.isActive ?? false && errorCode == 0 {
  738. self.metadatasSource = metadatas!
  739. }
  740. self.isReloadDataSourceNetworkInProgress = false
  741. self.reloadDataSource()
  742. }
  743. }
  744. }
  745. @objc func networkReadFolder(forced: Bool, completion: @escaping(_ metadatas: [tableMetadata]?, _ metadatasUpdate: [tableMetadata]?, _ errorCode: Int, _ errorDescription: String)->()) {
  746. NCNetworking.shared.readFile(serverUrlFileName: serverUrl, account: appDelegate.account) { (account, metadata, errorCode, errorDescription) in
  747. if errorCode == 0 {
  748. let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", self.appDelegate.account, self.serverUrl))
  749. if forced || directory?.etag != metadata?.etag {
  750. NCNetworking.shared.readFolder(serverUrl: self.serverUrl, account: self.appDelegate.account) { (account, metadataFolder, metadatas, metadatasUpdate, metadatasLocalUpdate, errorCode, errorDescription) in
  751. if errorCode == 0 {
  752. self.metadataFolder = metadataFolder
  753. // E2EE
  754. if let metadataFolder = metadataFolder {
  755. if metadataFolder.e2eEncrypted && CCUtility.isEnd(toEndEnabled: self.appDelegate.account) {
  756. NCCommunication.shared.getE2EEMetadata(fileId: metadataFolder.ocId, e2eToken: nil) { (account, e2eMetadata, errorCode, errorDescription) in
  757. if errorCode == 0 && e2eMetadata != nil {
  758. if !NCEndToEndMetadata.sharedInstance.decoderMetadata(e2eMetadata!, privateKey: CCUtility.getEndToEndPrivateKey(account), serverUrl: self.serverUrl, account: account, urlBase: self.appDelegate.urlBase) {
  759. NCContentPresenter.shared.messageNotification("_error_e2ee_", description: "_e2e_error_decode_metadata_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: Int(k_CCErrorDecodeMetadata), forced: true)
  760. }
  761. } else if errorCode != 404 {
  762. NCContentPresenter.shared.messageNotification("_error_e2ee_", description: "_e2e_error_decode_metadata_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: Int(k_CCErrorDecodeMetadata), forced: true)
  763. }
  764. }
  765. }
  766. }
  767. }
  768. completion(metadatas, metadatasUpdate, errorCode, errorDescription)
  769. }
  770. } else {
  771. completion(nil, nil, 0, "")
  772. }
  773. } else {
  774. completion(nil, nil, errorCode, errorDescription)
  775. }
  776. }
  777. }
  778. }
  779. // MARK: - 3D Touch peek and pop
  780. extension NCCollectionViewCommon: UIViewControllerPreviewingDelegate {
  781. func previewingContext(_ previewingContext: UIViewControllerPreviewing, viewControllerForLocation location: CGPoint) -> UIViewController? {
  782. guard let point = collectionView?.convert(location, from: collectionView?.superview) else { return nil }
  783. guard let indexPath = collectionView?.indexPathForItem(at: point) else { return nil }
  784. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return nil }
  785. guard let viewController = UIStoryboard(name: "CCPeekPop", bundle: nil).instantiateViewController(withIdentifier: "PeekPopImagePreview") as? CCPeekPop else { return nil }
  786. viewController.metadata = metadata
  787. if layout == k_layout_grid {
  788. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCGridCell else { return nil }
  789. previewingContext.sourceRect = cell.frame
  790. viewController.imageFile = cell.imageItem.image
  791. } else {
  792. guard let cell = collectionView?.cellForItem(at: indexPath) as? NCListCell else { return nil }
  793. previewingContext.sourceRect = cell.frame
  794. viewController.imageFile = cell.imageItem.image
  795. }
  796. viewController.showOpenIn = true
  797. viewController.showOpenQuickLook = NCUtility.shared.isQuickLookDisplayable(metadata: metadata)
  798. viewController.showShare = false
  799. return viewController
  800. }
  801. func previewingContext(_ previewingContext: UIViewControllerPreviewing, commit viewControllerToCommit: UIViewController) {
  802. guard let indexPath = collectionView?.indexPathForItem(at: previewingContext.sourceRect.origin) else { return }
  803. collectionView(collectionView, didSelectItemAt: indexPath)
  804. }
  805. }
  806. // MARK: - Collection View
  807. extension NCCollectionViewCommon: UICollectionViewDelegate {
  808. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  809. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else { return }
  810. metadataTouch = metadata
  811. if isEditMode {
  812. if let index = selectOcId.firstIndex(of: metadata.ocId) {
  813. selectOcId.remove(at: index)
  814. } else {
  815. selectOcId.append(metadata.ocId)
  816. }
  817. collectionView.reloadItems(at: [indexPath])
  818. return
  819. }
  820. if metadata.e2eEncrypted && !CCUtility.isEnd(toEndEnabled: appDelegate.account) {
  821. NCContentPresenter.shared.messageNotification("_info_", description: "_e2e_goto_settings_for_enable_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.info, errorCode: Int(k_CCErrorE2EENotEnabled), forced: true)
  822. return
  823. }
  824. if metadata.directory {
  825. guard let serverUrlPush = CCUtility.stringAppendServerUrl(metadataTouch!.serverUrl, addFileName: metadataTouch!.fileName) else { return }
  826. // FILES
  827. if layoutKey == k_layout_view_files {
  828. if let viewController = appDelegate.listFilesVC.value(forKey: serverUrlPush) {
  829. guard let vcFiles = (viewController as? NCFiles) else { return }
  830. if vcFiles.isViewLoaded {
  831. self.navigationController?.pushViewController(vcFiles, animated: true)
  832. }
  833. } else {
  834. let vcFiles:NCFiles = UIStoryboard(name: "NCFiles", bundle: nil).instantiateInitialViewController() as! NCFiles
  835. vcFiles.isRoot = false
  836. vcFiles.serverUrl = serverUrlPush
  837. vcFiles.titleCurrentFolder = metadataTouch!.fileNameView
  838. appDelegate.listFilesVC.setValue(vcFiles, forKey: serverUrlPush)
  839. self.navigationController?.pushViewController(vcFiles, animated: true)
  840. }
  841. }
  842. // FAVORITE
  843. if layoutKey == k_layout_view_favorite {
  844. if let viewController = appDelegate.listFavoriteVC.value(forKey: serverUrlPush) {
  845. guard let vcFavorite = (viewController as? NCFavorite) else { return }
  846. if vcFavorite.isViewLoaded {
  847. self.navigationController?.pushViewController(vcFavorite, animated: true)
  848. }
  849. } else {
  850. let vcFavorite:NCFavorite = UIStoryboard(name: "NCFavorite", bundle: nil).instantiateInitialViewController() as! NCFavorite
  851. vcFavorite.isRoot = false
  852. vcFavorite.serverUrl = serverUrlPush
  853. vcFavorite.titleCurrentFolder = metadataTouch!.fileNameView
  854. appDelegate.listFavoriteVC.setValue(vcFavorite, forKey: serverUrlPush)
  855. self.navigationController?.pushViewController(vcFavorite, animated: true)
  856. }
  857. }
  858. // OFFLINE
  859. if layoutKey == k_layout_view_offline {
  860. if let viewController = appDelegate.listOfflineVC.value(forKey: serverUrlPush) {
  861. guard let vcOffline = (viewController as? NCOffline) else { return }
  862. if vcOffline.isViewLoaded {
  863. self.navigationController?.pushViewController(vcOffline, animated: true)
  864. }
  865. } else {
  866. let vcOffline:NCOffline = UIStoryboard(name: "NCOffline", bundle: nil).instantiateInitialViewController() as! NCOffline
  867. vcOffline.isRoot = false
  868. vcOffline.serverUrl = serverUrlPush
  869. vcOffline.titleCurrentFolder = metadataTouch!.fileNameView
  870. appDelegate.listOfflineVC.setValue(vcOffline, forKey: serverUrlPush)
  871. self.navigationController?.pushViewController(vcOffline, animated: true)
  872. }
  873. }
  874. } else {
  875. if metadata.typeFile == k_metadataTypeFile_document && NCUtility.shared.isDirectEditing(account: metadata.account, contentType: metadata.contentType) != nil {
  876. if NCCommunication.shared.isNetworkReachable() {
  877. performSegue(withIdentifier: "segueDetail", sender: self)
  878. } else {
  879. NCContentPresenter.shared.messageNotification("_info_", description: "_go_online_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.info, errorCode: Int(k_CCErrorOffline), forced: true)
  880. }
  881. return
  882. }
  883. if metadata.typeFile == k_metadataTypeFile_document && NCUtility.shared.isRichDocument(metadata) {
  884. if NCCommunication.shared.isNetworkReachable() {
  885. performSegue(withIdentifier: "segueDetail", sender: self)
  886. } else {
  887. NCContentPresenter.shared.messageNotification("_info_", description: "_go_online_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.info, errorCode: Int(k_CCErrorOffline), forced: true)
  888. }
  889. return
  890. }
  891. if CCUtility.fileProviderStorageExists(metadataTouch?.ocId, fileNameView: metadataTouch?.fileNameView) {
  892. performSegue(withIdentifier: "segueDetail", sender: self)
  893. } else {
  894. NCNetworking.shared.download(metadata: metadataTouch!, selector: selectorLoadFileView) { (_) in }
  895. }
  896. }
  897. }
  898. func collectionViewSelectAll() {
  899. selectOcId.removeAll()
  900. for metadata in metadatasSource {
  901. selectOcId.append(metadata.ocId)
  902. }
  903. collectionView.reloadData()
  904. }
  905. }
  906. extension NCCollectionViewCommon: UICollectionViewDataSource {
  907. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  908. if kind == UICollectionView.elementKindSectionHeader {
  909. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
  910. if collectionView.collectionViewLayout == gridLayout {
  911. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), width: 100, height: 100, color: NCBrandColor.sharedInstance.icon), for: .normal)
  912. } else {
  913. header.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), width: 100, height: 100, color: NCBrandColor.sharedInstance.icon), for: .normal)
  914. }
  915. header.delegate = self
  916. header.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  917. header.separator.backgroundColor = NCBrandColor.sharedInstance.separator
  918. header.setStatusButton(count: dataSource?.metadatas.count ?? 0)
  919. header.setTitleSorted(datasourceTitleButton: titleButton)
  920. header.viewRichWorkspaceHeightConstraint.constant = headerRichWorkspaceHeight
  921. header.setRichWorkspaceText(richWorkspaceText: richWorkspaceText)
  922. return header
  923. } else {
  924. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  925. let info = dataSource?.getFilesInformation()
  926. footer.setTitleLabel(directories: info?.directories ?? 0, files: info?.files ?? 0, size: info?.size ?? 0)
  927. return footer
  928. }
  929. }
  930. func numberOfSections(in collectionView: UICollectionView) -> Int {
  931. return 1
  932. }
  933. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  934. return dataSource?.numberOfItems() ?? 0
  935. }
  936. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  937. let cell: UICollectionViewCell
  938. guard let metadata = dataSource?.cellForItemAt(indexPath: indexPath) else {
  939. return collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  940. }
  941. if layout == k_layout_grid {
  942. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  943. } else {
  944. cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCListCell
  945. }
  946. let shares = NCManageDatabase.sharedInstance.getTableShares(account: metadata.account, serverUrl: metadata.serverUrl, fileName: metadata.fileName)
  947. NCCollectionCommon.shared.cellForItemAt(indexPath: indexPath, collectionView: collectionView, cell: cell, metadata: metadata, metadataFolder: metadataFolder, serverUrl: metadata.serverUrl, isEditMode: isEditMode, isEncryptedFolder: isEncryptedFolder, selectocId: selectOcId, autoUploadFileName: autoUploadFileName, autoUploadDirectory: autoUploadDirectory, hideButtonMore: false, downloadThumbnail: true, shares: shares, source: self, dataSource: dataSource)
  948. return cell
  949. }
  950. }
  951. extension NCCollectionViewCommon: UICollectionViewDelegateFlowLayout {
  952. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  953. if richWorkspaceText?.count ?? 0 == 0 {
  954. headerRichWorkspaceHeight = 0
  955. } else {
  956. headerRichWorkspaceHeight = UIScreen.main.bounds.size.height / 4
  957. }
  958. return CGSize(width: collectionView.frame.width, height: headerHeight + headerRichWorkspaceHeight)
  959. }
  960. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  961. return CGSize(width: collectionView.frame.width, height: footerHeight)
  962. }
  963. }