NCCollectionViewCommon.swift 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914
  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 UIKit
  24. import Realm
  25. import NCCommunication
  26. class NCCollectionViewCommon: UIViewController, UIGestureRecognizerDelegate, UISearchResultsUpdating, UISearchControllerDelegate, UISearchBarDelegate, NCListCellDelegate, NCGridCellDelegate, NCSectionHeaderMenuDelegate, NCSectionFooterDelegate, UIAdaptivePresentationControllerDelegate, NCEmptyDataSetDelegate, UIContextMenuInteractionDelegate, NCAccountRequestDelegate, NCBackgroundImageColorDelegate, NCSelectableNavigationView {
  27. @IBOutlet weak var collectionView: UICollectionView!
  28. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  29. internal let refreshControl = UIRefreshControl()
  30. internal var searchController: UISearchController?
  31. internal var emptyDataSet: NCEmptyDataSet?
  32. internal var backgroundImageView = UIImageView()
  33. internal var serverUrl: String = ""
  34. internal var isEncryptedFolder = false
  35. internal var isEditMode = false
  36. internal var selectOcId: [String] = []
  37. internal var metadatasSource: [tableMetadata] = []
  38. internal var metadataFolder: tableMetadata?
  39. internal var dataSource = NCDataSource()
  40. internal var richWorkspaceText: String?
  41. internal var headerMenu: NCSectionHeaderMenu?
  42. internal var layoutForView: NCGlobal.layoutForViewType?
  43. internal var selectableDataSource: [RealmSwiftObject] { dataSource.metadatasSource }
  44. private var autoUploadFileName = ""
  45. private var autoUploadDirectory = ""
  46. internal var groupByField = "name"
  47. internal var providers: [NCCSearchProvider]?
  48. internal var searchResults: [NCCSearchResult]?
  49. internal var timerUnifiedSearch: Timer?
  50. internal var listLayout: NCListLayout!
  51. internal var gridLayout: NCGridLayout!
  52. internal var literalSearch: String?
  53. internal var isSearching: Bool = false
  54. internal var isReloadDataSourceNetworkInProgress: Bool = false
  55. private var pushed: Bool = false
  56. // DECLARE
  57. internal var layoutKey = ""
  58. internal var titleCurrentFolder = ""
  59. internal var enableSearchBar: Bool = false
  60. internal var headerMenuButtonsCommand: Bool = true
  61. internal var headerMenuButtonsView: Bool = true
  62. internal var headerRichWorkspaceDisable:Bool = false
  63. internal var emptyImage: UIImage?
  64. internal var emptyTitle: String = ""
  65. internal var emptyDescription: String = ""
  66. // MARK: - View Life Cycle
  67. required init?(coder aDecoder: NSCoder) {
  68. super.init(coder: aDecoder)
  69. }
  70. override func viewDidLoad() {
  71. super.viewDidLoad()
  72. self.navigationController?.presentationController?.delegate = self
  73. collectionView.alwaysBounceVertical = true
  74. if enableSearchBar {
  75. searchController = UISearchController(searchResultsController: nil)
  76. searchController?.searchResultsUpdater = self
  77. searchController?.obscuresBackgroundDuringPresentation = false
  78. searchController?.delegate = self
  79. searchController?.searchBar.delegate = self
  80. searchController?.searchBar.autocapitalizationType = .none
  81. navigationItem.searchController = searchController
  82. navigationItem.hidesSearchBarWhenScrolling = false
  83. }
  84. // Cell
  85. collectionView.register(UINib(nibName: "NCListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  86. collectionView.register(UINib(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  87. collectionView.register(UINib(nibName: "NCTransferCell", bundle: nil), forCellWithReuseIdentifier: "transferCell")
  88. // Header
  89. collectionView.register(UINib(nibName: "NCSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  90. collectionView.register(UINib(nibName: "NCSectionHeader", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeader")
  91. // Footer
  92. collectionView.register(UINib(nibName: "NCSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  93. listLayout = NCListLayout()
  94. gridLayout = NCGridLayout()
  95. // Refresh Control
  96. collectionView.addSubview(refreshControl)
  97. refreshControl.action(for: .valueChanged) { _ in
  98. self.reloadDataSourceNetwork(forced: true)
  99. }
  100. // Empty
  101. emptyDataSet = NCEmptyDataSet(view: collectionView, offset: getHeaderHeight(), delegate: self)
  102. // Long Press on CollectionView
  103. let longPressedGesture = UILongPressGestureRecognizer(target: self, action: #selector(longPressCollecationView(_:)))
  104. longPressedGesture.minimumPressDuration = 0.5
  105. longPressedGesture.delegate = self
  106. longPressedGesture.delaysTouchesBegan = true
  107. collectionView.addGestureRecognizer(longPressedGesture)
  108. // Notification
  109. NotificationCenter.default.addObserver(self, selector: #selector(initialize), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterInitialize), object: nil)
  110. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterChangeTheming), object: nil)
  111. changeTheming()
  112. }
  113. override func viewWillAppear(_ animated: Bool) {
  114. super.viewWillAppear(animated)
  115. // ACTIVE
  116. appDelegate.activeViewController = self
  117. //
  118. NotificationCenter.default.addObserver(self, selector: #selector(closeRichWorkspaceWebView), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCloseRichWorkspaceWebView), object: nil)
  119. NotificationCenter.default.addObserver(self, selector: #selector(changeStatusFolderE2EE(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterChangeStatusFolderE2EE), object: nil)
  120. NotificationCenter.default.addObserver(self, selector: #selector(setNavigationItem), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadAvatar), object: nil)
  121. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadDataSource), object: nil)
  122. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSourceNetworkForced(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadDataSourceNetworkForced), object: nil)
  123. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
  124. NotificationCenter.default.addObserver(self, selector: #selector(moveFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
  125. NotificationCenter.default.addObserver(self, selector: #selector(copyFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCopyFile), object: nil)
  126. NotificationCenter.default.addObserver(self, selector: #selector(renameFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
  127. NotificationCenter.default.addObserver(self, selector: #selector(createFolder(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCreateFolder), object: nil)
  128. NotificationCenter.default.addObserver(self, selector: #selector(favoriteFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterFavoriteFile), object: nil)
  129. NotificationCenter.default.addObserver(self, selector: #selector(downloadStartFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadStartFile), object: nil)
  130. NotificationCenter.default.addObserver(self, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile), object: nil)
  131. NotificationCenter.default.addObserver(self, selector: #selector(downloadCancelFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadCancelFile), object: nil)
  132. NotificationCenter.default.addObserver(self, selector: #selector(uploadStartFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadStartFile), object: nil)
  133. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
  134. NotificationCenter.default.addObserver(self, selector: #selector(uploadCancelFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadCancelFile), object: nil)
  135. NotificationCenter.default.addObserver(self, selector: #selector(triggerProgressTask(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterProgressTask), object: nil)
  136. if serverUrl == "" {
  137. appDelegate.activeServerUrl = NCUtilityFileSystem.shared.getHomeServer(account: appDelegate.account)
  138. } else {
  139. appDelegate.activeServerUrl = serverUrl
  140. }
  141. navigationController?.navigationBar.prefersLargeTitles = true
  142. navigationController?.setNavigationBarHidden(false, animated: true)
  143. setNavigationItem()
  144. changeTheming()
  145. reloadDataSource()
  146. }
  147. override func viewDidAppear(_ animated: Bool) {
  148. super.viewDidAppear(animated)
  149. if !isSearching {
  150. reloadDataSourceNetwork()
  151. }
  152. }
  153. override func viewWillDisappear(_ animated: Bool) {
  154. super.viewWillDisappear(animated)
  155. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCloseRichWorkspaceWebView), object: nil)
  156. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterChangeStatusFolderE2EE), object: nil)
  157. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadAvatar), object: nil)
  158. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadDataSource), object: nil)
  159. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadDataSourceNetworkForced), object: nil)
  160. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
  161. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
  162. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCopyFile), object: nil)
  163. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
  164. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCreateFolder), object: nil)
  165. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterFavoriteFile), object: nil)
  166. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadStartFile), object: nil)
  167. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile), object: nil)
  168. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadCancelFile), object: nil)
  169. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadStartFile), object: nil)
  170. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
  171. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadCancelFile), object: nil)
  172. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterProgressTask), object: nil)
  173. pushed = false
  174. // REQUEST
  175. NCNetworking.shared.cancelUnifiedSearchFiles()
  176. }
  177. func presentationControllerDidDismiss( _ presentationController: UIPresentationController) {
  178. let viewController = presentationController.presentedViewController
  179. if viewController is NCViewerRichWorkspaceWebView {
  180. closeRichWorkspaceWebView()
  181. }
  182. }
  183. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  184. super.viewWillTransition(to: size, with: coordinator)
  185. coordinator.animate(alongsideTransition: nil) { _ in
  186. self.collectionView?.collectionViewLayout.invalidateLayout()
  187. }
  188. }
  189. override var canBecomeFirstResponder: Bool {
  190. return true
  191. }
  192. override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
  193. super.traitCollectionDidChange(previousTraitCollection)
  194. changeTheming()
  195. }
  196. // MARK: - NotificationCenter
  197. @objc func initialize() {
  198. if appDelegate.account == "" { return }
  199. // Search
  200. if searchController?.isActive ?? false {
  201. searchController?.isActive = false
  202. }
  203. // Select
  204. if isEditMode {
  205. isEditMode = !isEditMode
  206. selectOcId.removeAll()
  207. }
  208. if self.view?.window != nil {
  209. if serverUrl == "" {
  210. appDelegate.activeServerUrl = NCUtilityFileSystem.shared.getHomeServer(account: appDelegate.account)
  211. } else {
  212. appDelegate.activeServerUrl = serverUrl
  213. }
  214. appDelegate.listFilesVC.removeAll()
  215. appDelegate.listFavoriteVC.removeAll()
  216. appDelegate.listOfflineVC.removeAll()
  217. }
  218. if serverUrl != "" {
  219. self.navigationController?.popToRootViewController(animated: false)
  220. }
  221. setNavigationItem()
  222. reloadDataSource()
  223. changeTheming()
  224. }
  225. @objc func changeTheming() {
  226. view.backgroundColor = NCBrandColor.shared.systemBackground
  227. collectionView.backgroundColor = NCBrandColor.shared.systemBackground
  228. refreshControl.tintColor = .gray
  229. layoutForView = NCUtility.shared.getLayoutForView(key: layoutKey, serverUrl: serverUrl)
  230. gridLayout.itemForLine = CGFloat(layoutForView?.itemForLine ?? 3)
  231. if layoutForView?.layout == NCGlobal.shared.layoutList {
  232. collectionView?.collectionViewLayout = listLayout
  233. } else {
  234. collectionView?.collectionViewLayout = gridLayout
  235. }
  236. // IMAGE BACKGROUND
  237. if layoutForView?.imageBackgroud != "" {
  238. let imagePath = CCUtility.getDirectoryGroup().appendingPathComponent(NCGlobal.shared.appBackground).path + "/" + layoutForView!.imageBackgroud
  239. do {
  240. let data = try Data(contentsOf: URL(fileURLWithPath: imagePath))
  241. if let image = UIImage(data: data) {
  242. backgroundImageView.image = image
  243. backgroundImageView.contentMode = .scaleToFill
  244. collectionView.backgroundView = backgroundImageView
  245. }
  246. } catch { }
  247. } else {
  248. backgroundImageView.image = nil
  249. collectionView.backgroundView = nil
  250. }
  251. // COLOR BACKGROUND
  252. let activeAccount = NCManageDatabase.shared.getActiveAccount()
  253. if traitCollection.userInterfaceStyle == .dark {
  254. if activeAccount?.darkColorBackground != "" {
  255. collectionView.backgroundColor = UIColor(hex: activeAccount?.darkColorBackground ?? "")
  256. } else {
  257. collectionView.backgroundColor = NCBrandColor.shared.systemBackground
  258. }
  259. } else {
  260. if activeAccount?.lightColorBackground != "" {
  261. collectionView.backgroundColor = UIColor(hex: activeAccount?.lightColorBackground ?? "")
  262. } else {
  263. collectionView.backgroundColor = NCBrandColor.shared.systemBackground
  264. }
  265. }
  266. collectionView.reloadData()
  267. }
  268. @objc func reloadDataSource(_ notification: NSNotification) {
  269. reloadDataSource()
  270. }
  271. @objc func reloadDataSourceNetworkForced(_ notification: NSNotification) {
  272. guard let userInfo = notification.userInfo as NSDictionary?,
  273. let serverUrl = userInfo["serverUrl"] as? String,
  274. serverUrl == self.serverUrl
  275. else {
  276. return
  277. }
  278. reloadDataSourceNetwork(forced: true)
  279. }
  280. @objc func changeStatusFolderE2EE(_ notification: NSNotification) {
  281. reloadDataSource()
  282. }
  283. @objc func closeRichWorkspaceWebView() {
  284. reloadDataSourceNetwork()
  285. }
  286. @objc func deleteFile(_ notification: NSNotification) {
  287. guard let userInfo = notification.userInfo as NSDictionary?,
  288. let ocId = userInfo["ocId"] as? String,
  289. let fileNameView = userInfo["fileNameView"] as? String,
  290. let serverUrl = userInfo["serverUrl"] as? String,
  291. let account = userInfo["account"] as? String,
  292. let onlyLocalCache = userInfo["onlyLocalCache"] as? Bool,
  293. (serverUrl == serverUrl && account == appDelegate.account)
  294. else {
  295. return
  296. }
  297. if fileNameView.lowercased() == NCGlobal.shared.fileNameRichWorkspace.lowercased() {
  298. reloadDataSourceNetwork(forced: true)
  299. } else if onlyLocalCache {
  300. self.collectionView?.reloadData()
  301. } else {
  302. let (indexPath, sameSections) = dataSource.deleteMetadata(ocId: ocId)
  303. if let indexPath = indexPath {
  304. if sameSections && (indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section)) {
  305. collectionView?.performBatchUpdates({
  306. collectionView?.deleteItems(at: [indexPath])
  307. }, completion: { _ in
  308. self.collectionView?.reloadData()
  309. })
  310. } else {
  311. self.collectionView?.reloadData()
  312. }
  313. } else {
  314. reloadDataSource()
  315. }
  316. }
  317. }
  318. @objc func moveFile(_ notification: NSNotification) {
  319. guard let userInfo = notification.userInfo as NSDictionary?,
  320. let ocId = userInfo["ocId"] as? String,
  321. let serverUrlFrom = userInfo["serverUrlFrom"] as? String,
  322. serverUrlFrom == self.serverUrl
  323. else {
  324. return
  325. }
  326. let (indexPath, sameSections) = dataSource.deleteMetadata(ocId: ocId)
  327. if let indexPath = indexPath {
  328. if sameSections && (indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section)) {
  329. collectionView?.performBatchUpdates({
  330. collectionView?.deleteItems(at: [indexPath])
  331. }, completion: { _ in
  332. self.collectionView?.reloadData()
  333. })
  334. } else {
  335. self.collectionView?.reloadData()
  336. }
  337. } else {
  338. reloadDataSource()
  339. }
  340. }
  341. @objc func copyFile(_ notification: NSNotification) {
  342. guard let userInfo = notification.userInfo as NSDictionary?,
  343. let serverUrlTo = userInfo["serverUrlTo"] as? String,
  344. serverUrlTo == self.serverUrl
  345. else {
  346. return
  347. }
  348. reloadDataSource()
  349. }
  350. @objc func renameFile(_ notification: NSNotification) {
  351. reloadDataSource()
  352. }
  353. @objc func createFolder(_ notification: NSNotification) {
  354. if let userInfo = notification.userInfo as NSDictionary?, let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId), (metadata.serverUrl == serverUrl && metadata.account == appDelegate.account ) {
  355. pushMetadata(metadata)
  356. } else {
  357. reloadDataSourceNetwork()
  358. }
  359. }
  360. @objc func favoriteFile(_ notification: NSNotification) {
  361. guard let userInfo = notification.userInfo as NSDictionary?,
  362. let ocId = userInfo["ocId"] as? String
  363. else {
  364. reloadDataSource()
  365. return
  366. }
  367. dataSource.reloadMetadata(ocId: ocId)
  368. collectionView?.reloadData()
  369. }
  370. @objc func downloadStartFile(_ notification: NSNotification) {
  371. guard let userInfo = notification.userInfo as NSDictionary?,
  372. let ocId = userInfo["ocId"] as? String
  373. else {
  374. reloadDataSource()
  375. return
  376. }
  377. let (indexPath, sameSections) = dataSource.reloadMetadata(ocId: ocId)
  378. if let indexPath = indexPath {
  379. if sameSections && (indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section)) {
  380. collectionView?.reloadItems(at: [indexPath])
  381. } else {
  382. self.collectionView?.reloadData()
  383. }
  384. } else {
  385. reloadDataSource()
  386. }
  387. }
  388. @objc func downloadedFile(_ notification: NSNotification) {
  389. guard let userInfo = notification.userInfo as NSDictionary?,
  390. let ocId = userInfo["ocId"] as? String
  391. else {
  392. reloadDataSource()
  393. return
  394. }
  395. let (indexPath, sameSections) = dataSource.reloadMetadata(ocId: ocId)
  396. if let indexPath = indexPath {
  397. if sameSections && (indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section)) {
  398. collectionView?.reloadItems(at: [indexPath])
  399. } else {
  400. self.collectionView?.reloadData()
  401. }
  402. } else {
  403. reloadDataSource()
  404. }
  405. }
  406. @objc func downloadCancelFile(_ notification: NSNotification) {
  407. guard let userInfo = notification.userInfo as NSDictionary?,
  408. let ocId = userInfo["ocId"] as? String
  409. else {
  410. reloadDataSource()
  411. return
  412. }
  413. let (indexPath, sameSections) = dataSource.reloadMetadata(ocId: ocId)
  414. if let indexPath = indexPath {
  415. if sameSections && (indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section)) {
  416. collectionView?.reloadItems(at: [indexPath])
  417. } else {
  418. self.collectionView?.reloadData()
  419. }
  420. } else {
  421. reloadDataSource()
  422. }
  423. }
  424. @objc func uploadStartFile(_ notification: NSNotification) {
  425. guard let userInfo = notification.userInfo as NSDictionary?,
  426. let ocId = userInfo["ocId"] as? String,
  427. let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId),
  428. (metadata.serverUrl == serverUrl && metadata.account == appDelegate.account)
  429. else {
  430. return
  431. }
  432. dataSource.addMetadata(metadata)
  433. self.collectionView?.reloadData()
  434. }
  435. @objc func uploadedFile(_ notification: NSNotification) {
  436. guard let userInfo = notification.userInfo as NSDictionary?,
  437. let ocId = userInfo["ocId"] as? String,
  438. let ocIdTemp = userInfo["ocIdTemp"] as? String,
  439. let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId),
  440. (metadata.serverUrl == serverUrl && metadata.account == appDelegate.account)
  441. else {
  442. return
  443. }
  444. let (indexPath, sameSections) = dataSource.reloadMetadata(ocId: metadata.ocId, ocIdTemp: ocIdTemp)
  445. if let indexPath = indexPath {
  446. if sameSections && (indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section)) {
  447. collectionView?.performBatchUpdates({
  448. collectionView?.reloadItems(at: [indexPath])
  449. }, completion: { _ in
  450. self.collectionView?.reloadData()
  451. })
  452. } else {
  453. self.collectionView?.reloadData()
  454. }
  455. } else {
  456. reloadDataSource()
  457. }
  458. }
  459. @objc func uploadCancelFile(_ notification: NSNotification) {
  460. guard let userInfo = notification.userInfo as NSDictionary?,
  461. let ocId = userInfo["ocId"] as? String,
  462. let serverUrl = userInfo["serverUrl"] as? String,
  463. let account = userInfo["account"] as? String,
  464. (serverUrl == self.serverUrl && account == appDelegate.account)
  465. else {
  466. return
  467. }
  468. let (indexPath, sameSections) = dataSource.deleteMetadata(ocId: ocId)
  469. if let indexPath = indexPath {
  470. if sameSections && (indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section)) {
  471. collectionView?.performBatchUpdates({
  472. collectionView?.deleteItems(at: [indexPath])
  473. }, completion: { _ in
  474. self.collectionView?.reloadData()
  475. })
  476. } else {
  477. self.collectionView?.reloadData()
  478. }
  479. } else {
  480. reloadDataSource()
  481. }
  482. }
  483. @objc func triggerProgressTask(_ notification: NSNotification) {
  484. guard let userInfo = notification.userInfo as NSDictionary?,
  485. let progressNumber = userInfo["progress"] as? NSNumber,
  486. let totalBytes = userInfo["totalBytes"] as? Int64,
  487. let totalBytesExpected = userInfo["totalBytesExpected"] as? Int64,
  488. let ocId = userInfo["ocId"] as? String,
  489. let (indexPath, _) = self.dataSource.getIndexPathMetadata(ocId: ocId) as? (IndexPath, NCMetadataForSection?)
  490. else {
  491. return
  492. }
  493. let status = userInfo["status"] as? Int ?? NCGlobal.shared.metadataStatusNormal
  494. if let cell = collectionView?.cellForItem(at: indexPath) {
  495. if let cell = cell as? NCCellProtocol {
  496. if progressNumber.floatValue == 1 {
  497. cell.fileProgressView?.isHidden = true
  498. cell.fileProgressView?.progress = .zero
  499. cell.setButtonMore(named: NCGlobal.shared.buttonMoreMore, image: NCBrandColor.cacheImages.buttonMore)
  500. if let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  501. cell.writeInfoDateSize(date: metadata.date, size: metadata.size)
  502. } else {
  503. cell.fileInfoLabel?.text = ""
  504. }
  505. } else {
  506. cell.fileProgressView?.isHidden = false
  507. cell.fileProgressView?.progress = progressNumber.floatValue
  508. cell.setButtonMore(named: NCGlobal.shared.buttonMoreStop, image: NCBrandColor.cacheImages.buttonStop)
  509. if status == NCGlobal.shared.metadataStatusInDownload {
  510. cell.fileInfoLabel?.text = CCUtility.transformedSize(totalBytesExpected) + " - ↓ " + CCUtility.transformedSize(totalBytes)
  511. } else if status == NCGlobal.shared.metadataStatusInUpload {
  512. cell.fileInfoLabel?.text = CCUtility.transformedSize(totalBytesExpected) + " - ↑ " + CCUtility.transformedSize(totalBytes)
  513. }
  514. }
  515. }
  516. }
  517. }
  518. // MARK: - Layout
  519. @objc func setNavigationItem() {
  520. self.setNavigationHeader()
  521. guard !isEditMode, layoutKey == NCGlobal.shared.layoutViewFiles else { return }
  522. // PROFILE BUTTON
  523. let activeAccount = NCManageDatabase.shared.getActiveAccount()
  524. let image = NCUtility.shared.loadUserImage(
  525. for: appDelegate.user,
  526. displayName: activeAccount?.displayName,
  527. userBaseUrl: appDelegate)
  528. let button = UIButton(type: .custom)
  529. button.setImage(image, for: .normal)
  530. if serverUrl == NCUtilityFileSystem.shared.getHomeServer(account: appDelegate.account) {
  531. var titleButton = " "
  532. if getNavigationTitle() == activeAccount?.alias {
  533. titleButton = ""
  534. } else {
  535. titleButton += activeAccount?.displayName ?? ""
  536. }
  537. button.setTitle(titleButton, for: .normal)
  538. button.setTitleColor(.systemBlue, for: .normal)
  539. }
  540. button.semanticContentAttribute = .forceLeftToRight
  541. button.sizeToFit()
  542. button.action(for: .touchUpInside) { _ in
  543. let accounts = NCManageDatabase.shared.getAllAccountOrderAlias()
  544. if accounts.count > 0 && !NCBrandOptions.shared.disable_multiaccount && !NCBrandOptions.shared.disable_manage_account {
  545. if let vcAccountRequest = UIStoryboard(name: "NCAccountRequest", bundle: nil).instantiateInitialViewController() as? NCAccountRequest {
  546. vcAccountRequest.activeAccount = NCManageDatabase.shared.getActiveAccount()
  547. vcAccountRequest.accounts = accounts
  548. vcAccountRequest.enableTimerProgress = false
  549. vcAccountRequest.enableAddAccount = true
  550. vcAccountRequest.delegate = self
  551. vcAccountRequest.dismissDidEnterBackground = true
  552. let screenHeighMax = UIScreen.main.bounds.height - (UIScreen.main.bounds.height/5)
  553. let numberCell = accounts.count + 1
  554. let height = min(CGFloat(numberCell * Int(vcAccountRequest.heightCell) + 45), screenHeighMax)
  555. let popup = NCPopupViewController(contentController: vcAccountRequest, popupWidth: 300, popupHeight: height)
  556. UIApplication.shared.keyWindow?.rootViewController?.present(popup, animated: true)
  557. }
  558. }
  559. }
  560. navigationItem.setLeftBarButton(UIBarButtonItem(customView: button), animated: true)
  561. navigationItem.leftItemsSupplementBackButton = true
  562. }
  563. func getNavigationTitle() -> String {
  564. let activeAccount = NCManageDatabase.shared.getActiveAccount()
  565. guard let userAlias = activeAccount?.alias, !userAlias.isEmpty else {
  566. return NCBrandOptions.shared.brand
  567. }
  568. return userAlias
  569. }
  570. // MARK: - BackgroundImageColor Delegate
  571. func colorPickerCancel() {
  572. changeTheming()
  573. }
  574. func colorPickerWillChange(color: UIColor) {
  575. collectionView.backgroundColor = color
  576. }
  577. func colorPickerDidChange(lightColor: String, darkColor: String) {
  578. NCManageDatabase.shared.setAccountColorFiles(lightColorBackground: lightColor, darkColorBackground: darkColor)
  579. changeTheming()
  580. }
  581. // MARK: - Empty
  582. func emptyDataSetView(_ view: NCEmptyView) {
  583. self.emptyDataSet?.setOffset(getHeaderHeight())
  584. if isSearching {
  585. view.emptyImage.image = UIImage(named: "search")?.image(color: .gray, size: UIScreen.main.bounds.width)
  586. if isReloadDataSourceNetworkInProgress {
  587. view.emptyTitle.text = NSLocalizedString("_search_in_progress_", comment: "")
  588. } else {
  589. view.emptyTitle.text = NSLocalizedString("_search_no_record_found_", comment: "")
  590. }
  591. view.emptyDescription.text = NSLocalizedString("_search_instruction_", comment: "")
  592. } else if isReloadDataSourceNetworkInProgress {
  593. view.emptyImage.image = UIImage(named: "networkInProgress")?.image(color: .gray, size: UIScreen.main.bounds.width)
  594. view.emptyTitle.text = NSLocalizedString("_request_in_progress_", comment: "")
  595. view.emptyDescription.text = ""
  596. } else {
  597. if serverUrl == "" {
  598. view.emptyImage.image = emptyImage
  599. view.emptyTitle.text = NSLocalizedString(emptyTitle, comment: "")
  600. view.emptyDescription.text = NSLocalizedString(emptyDescription, comment: "")
  601. } else {
  602. view.emptyImage.image = UIImage(named: "folder")?.image(color: NCBrandColor.shared.brandElement, size: UIScreen.main.bounds.width)
  603. view.emptyTitle.text = NSLocalizedString("_files_no_files_", comment: "")
  604. view.emptyDescription.text = NSLocalizedString("_no_file_pull_down_", comment: "")
  605. }
  606. }
  607. }
  608. // MARK: - SEARCH
  609. func updateSearchResults(for searchController: UISearchController) {
  610. self.literalSearch = searchController.searchBar.text
  611. }
  612. func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
  613. self.isSearching = true
  614. self.providers?.removeAll()
  615. self.metadatasSource.removeAll()
  616. self.dataSource.clearDataSource()
  617. self.collectionView.reloadData()
  618. }
  619. func searchBarTextDidEndEditing(_ searchBar: UISearchBar) {
  620. if self.isSearching && self.literalSearch?.count ?? 0 >= 2 {
  621. reloadDataSourceNetwork()
  622. }
  623. }
  624. func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
  625. DispatchQueue.global().async {
  626. NCNetworking.shared.cancelUnifiedSearchFiles()
  627. self.isSearching = false
  628. self.literalSearch = ""
  629. self.providers?.removeAll()
  630. self.dataSource.clearDataSource()
  631. self.reloadDataSource()
  632. }
  633. }
  634. // MARK: - TAP EVENT
  635. func accountRequestChangeAccount(account: String) {
  636. NCManageDatabase.shared.setAccountActive(account)
  637. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  638. NCOperationQueue.shared.cancelAllQueue()
  639. NCNetworking.shared.cancelAllTask()
  640. appDelegate.settingAccount(activeAccount.account, urlBase: activeAccount.urlBase, user: activeAccount.user, userId: activeAccount.userId, password: CCUtility.getPassword(activeAccount.account))
  641. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitialize)
  642. }
  643. }
  644. func accountRequestAddAccount() {
  645. appDelegate.openLogin(viewController: self, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  646. }
  647. func tapButtonSwitch(_ sender: Any) {
  648. if collectionView.collectionViewLayout == gridLayout {
  649. // list layout
  650. headerMenu?.buttonSwitch.accessibilityLabel = NSLocalizedString("_grid_view_", comment: "")
  651. UIView.animate(withDuration: 0.0, animations: {
  652. self.collectionView.collectionViewLayout.invalidateLayout()
  653. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { _ in
  654. self.collectionView.reloadData()
  655. })
  656. })
  657. layoutForView?.layout = NCGlobal.shared.layoutList
  658. NCUtility.shared.setLayoutForView(key: layoutKey, serverUrl: serverUrl, layout: layoutForView?.layout)
  659. } else {
  660. // grid layout
  661. headerMenu?.buttonSwitch.accessibilityLabel = NSLocalizedString("_list_view_", comment: "")
  662. UIView.animate(withDuration: 0.0, animations: {
  663. self.collectionView.collectionViewLayout.invalidateLayout()
  664. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { _ in
  665. self.collectionView.reloadData()
  666. })
  667. })
  668. layoutForView?.layout = NCGlobal.shared.layoutGrid
  669. NCUtility.shared.setLayoutForView(key: layoutKey, serverUrl: serverUrl, layout: layoutForView?.layout)
  670. }
  671. reloadDataSource()
  672. }
  673. func tapButtonOrder(_ sender: Any) {
  674. let sortMenu = NCSortMenu()
  675. sortMenu.toggleMenu(viewController: self, key: layoutKey, sortButton: sender as? UIButton, serverUrl: serverUrl)
  676. }
  677. func tapButton1(_ sender: Any) {
  678. NCAskAuthorization.shared.askAuthorizationPhotoLibrary(viewController: self) { hasPermission in
  679. if hasPermission {
  680. NCPhotosPickerViewController.init(viewController: self, maxSelectedAssets: 0, singleSelectedMode: false)
  681. }
  682. }
  683. }
  684. func tapButton2(_ sender: Any) {
  685. guard !appDelegate.activeServerUrl.isEmpty else { return }
  686. let alertController = UIAlertController.createFolder(serverUrl: appDelegate.activeServerUrl, urlBase: appDelegate)
  687. appDelegate.window?.rootViewController?.present(alertController, animated: true, completion: nil)
  688. }
  689. func tapButton3(_ sender: Any) {
  690. if #available(iOS 13.0, *) {
  691. if let viewController = appDelegate.window?.rootViewController {
  692. NCCreateScanDocument.shared.openScannerDocument(viewController: viewController)
  693. }
  694. }
  695. }
  696. func tapMoreListItem(with objectId: String, namedButtonMore: String, image: UIImage?, sender: Any) {
  697. tapMoreGridItem(with: objectId, namedButtonMore: namedButtonMore, image: image, sender: sender)
  698. }
  699. func tapShareListItem(with objectId: String, sender: Any) {
  700. if isEditMode { return }
  701. guard let metadata = NCManageDatabase.shared.getMetadataFromOcId(objectId) else { return }
  702. NCFunctionCenter.shared.openShare(viewController: self, metadata: metadata, indexPage: .sharing)
  703. }
  704. func tapMoreGridItem(with objectId: String, namedButtonMore: String, image: UIImage?, sender: Any) {
  705. if isEditMode { return }
  706. guard let metadata = NCManageDatabase.shared.getMetadataFromOcId(objectId) else { return }
  707. if namedButtonMore == NCGlobal.shared.buttonMoreMore || namedButtonMore == NCGlobal.shared.buttonMoreLock {
  708. toggleMenu(metadata: metadata, imageIcon: image)
  709. } else if namedButtonMore == NCGlobal.shared.buttonMoreStop {
  710. NCNetworking.shared.cancelTransferMetadata(metadata) { }
  711. }
  712. }
  713. func tapRichWorkspace(_ sender: Any) {
  714. if let navigationController = UIStoryboard(name: "NCViewerRichWorkspace", bundle: nil).instantiateInitialViewController() as? UINavigationController {
  715. if let viewerRichWorkspace = navigationController.topViewController as? NCViewerRichWorkspace {
  716. viewerRichWorkspace.richWorkspaceText = richWorkspaceText ?? ""
  717. viewerRichWorkspace.serverUrl = serverUrl
  718. navigationController.modalPresentationStyle = .fullScreen
  719. self.present(navigationController, animated: true, completion: nil)
  720. }
  721. }
  722. }
  723. func tapButtonSection(_ sender: Any, metadataForSection: NCMetadataForSection?) {
  724. unifiedSearchMore(metadataForSection: metadataForSection)
  725. }
  726. func longPressListItem(with objectId: String, gestureRecognizer: UILongPressGestureRecognizer) {
  727. }
  728. func longPressGridItem(with objectId: String, gestureRecognizer: UILongPressGestureRecognizer) {
  729. }
  730. func longPressMoreListItem(with objectId: String, namedButtonMore: String, gestureRecognizer: UILongPressGestureRecognizer) {
  731. }
  732. func longPressMoreGridItem(with objectId: String, namedButtonMore: String, gestureRecognizer: UILongPressGestureRecognizer) {
  733. }
  734. @objc func longPressCollecationView(_ gestureRecognizer: UILongPressGestureRecognizer) {
  735. openMenuItems(with: nil, gestureRecognizer: gestureRecognizer)
  736. /*
  737. if #available(iOS 13.0, *) {
  738. let interaction = UIContextMenuInteraction(delegate: self)
  739. self.view.addInteraction(interaction)
  740. }
  741. */
  742. }
  743. @available(iOS 13.0, *)
  744. func contextMenuInteraction(_ interaction: UIContextMenuInteraction, configurationForMenuAtLocation location: CGPoint) -> UIContextMenuConfiguration? {
  745. return UIContextMenuConfiguration(identifier: nil, previewProvider: {
  746. return nil
  747. }, actionProvider: { _ in
  748. // let share = UIAction(title: "Share Pupper", image: UIImage(systemName: "square.and.arrow.up")) { action in
  749. // }
  750. // return UIMenu(title: "Main Menu", children: [share])
  751. return nil
  752. })
  753. }
  754. func openMenuItems(with objectId: String?, gestureRecognizer: UILongPressGestureRecognizer) {
  755. if gestureRecognizer.state != .began { return }
  756. var listMenuItems: [UIMenuItem] = []
  757. let touchPoint = gestureRecognizer.location(in: collectionView)
  758. becomeFirstResponder()
  759. if serverUrl != "" {
  760. listMenuItems.append(UIMenuItem(title: NSLocalizedString("_paste_file_", comment: ""), action: #selector(pasteFilesMenu)))
  761. }
  762. if #available(iOS 13.0, *) {
  763. if !NCBrandOptions.shared.disable_background_color {
  764. listMenuItems.append(UIMenuItem(title: NSLocalizedString("_background_", comment: ""), action: #selector(backgroundFilesMenu)))
  765. }
  766. }
  767. if listMenuItems.count > 0 {
  768. UIMenuController.shared.menuItems = listMenuItems
  769. UIMenuController.shared.setTargetRect(CGRect(x: touchPoint.x, y: touchPoint.y, width: 0, height: 0), in: collectionView)
  770. UIMenuController.shared.setMenuVisible(true, animated: true)
  771. }
  772. }
  773. // MARK: - Menu Item
  774. override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
  775. if #selector(pasteFilesMenu) == action {
  776. if UIPasteboard.general.items.count > 0 {
  777. return true
  778. }
  779. }
  780. if #selector(backgroundFilesMenu) == action {
  781. return true
  782. }
  783. return false
  784. }
  785. @objc func pasteFilesMenu() {
  786. NCFunctionCenter.shared.pastePasteboard(serverUrl: serverUrl)
  787. }
  788. @objc func backgroundFilesMenu() {
  789. if let vcBackgroundImageColor = UIStoryboard(name: "NCBackgroundImageColor", bundle: nil).instantiateInitialViewController() as? NCBackgroundImageColor {
  790. vcBackgroundImageColor.delegate = self
  791. vcBackgroundImageColor.setupColor = collectionView.backgroundColor
  792. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  793. vcBackgroundImageColor.lightColor = activeAccount.lightColorBackground
  794. vcBackgroundImageColor.darkColor = activeAccount.darkColorBackground
  795. }
  796. let popup = NCPopupViewController(contentController: vcBackgroundImageColor, popupWidth: vcBackgroundImageColor.width, popupHeight: vcBackgroundImageColor.height)
  797. popup.backgroundAlpha = 0
  798. self.present(popup, animated: true)
  799. }
  800. }
  801. // MARK: - DataSource + NC Endpoint
  802. @objc func reloadDataSource() {
  803. if appDelegate.account == "" { return }
  804. // Get richWorkspace Text
  805. let directory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, serverUrl))
  806. richWorkspaceText = directory?.richWorkspace
  807. // E2EE
  808. isEncryptedFolder = CCUtility.isFolderEncrypted(serverUrl, e2eEncrypted: metadataFolder?.e2eEncrypted ?? false, account: appDelegate.account, urlBase: appDelegate.urlBase)
  809. // get auto upload folder
  810. autoUploadFileName = NCManageDatabase.shared.getAccountAutoUploadFileName()
  811. autoUploadDirectory = NCManageDatabase.shared.getAccountAutoUploadDirectory(urlBase: appDelegate.urlBase, account: appDelegate.account)
  812. // get layout for view
  813. layoutForView = NCUtility.shared.getLayoutForView(key: layoutKey, serverUrl: serverUrl)
  814. // set GroupField for Grid
  815. if !self.isSearching && layoutForView?.layout == NCGlobal.shared.layoutGrid {
  816. groupByField = "classFile"
  817. } else {
  818. groupByField = "name"
  819. }
  820. }
  821. @objc func reloadDataSourceNetwork(forced: Bool = false) { }
  822. @objc func unifiedSearchFilesTimer() {
  823. if NCOperationQueue.shared.dataSourceAddSectionCount() == 0 {
  824. self.timerUnifiedSearch?.invalidate()
  825. self.refreshControl.endRefreshing()
  826. self.isReloadDataSourceNetworkInProgress = false
  827. self.collectionView.reloadData()
  828. }
  829. }
  830. @objc func networkSearch() {
  831. guard !appDelegate.account.isEmpty, let literalSearch = literalSearch, !literalSearch.isEmpty
  832. else {
  833. self.refreshControl.endRefreshing()
  834. return
  835. }
  836. isReloadDataSourceNetworkInProgress = true
  837. self.metadatasSource.removeAll()
  838. self.dataSource.clearDataSource()
  839. self.refreshControl.beginRefreshing()
  840. self.collectionView.reloadData()
  841. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: appDelegate.account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  842. if serverVersionMajor >= NCGlobal.shared.nextcloudVersion20 {
  843. self.timerUnifiedSearch?.invalidate()
  844. NCNetworking.shared.unifiedSearchFiles(urlBase: appDelegate, literal: literalSearch) { allProviders in
  845. self.providers = allProviders
  846. self.searchResults = []
  847. self.dataSource = NCDataSource(
  848. metadatasSource: self.metadatasSource,
  849. account: self.appDelegate.account,
  850. sort: self.layoutForView?.sort,
  851. ascending: self.layoutForView?.ascending,
  852. directoryOnTop: self.layoutForView?.directoryOnTop,
  853. favoriteOnTop: true,
  854. filterLivePhoto: true,
  855. providers: self.providers,
  856. searchResults: self.searchResults)
  857. } update: { id, searchResult, metadatas in
  858. guard let metadatas = metadatas, metadatas.count > 0, self.isSearching , let searchResult = searchResult else { return }
  859. NCOperationQueue.shared.dataSourceAddSection(collectionViewCommon: self, metadatas: metadatas, searchResult: searchResult)
  860. } completion: {errorCode, errorDescription in
  861. self.timerUnifiedSearch = Timer.scheduledTimer(timeInterval: 0.1, target: self, selector: #selector(self.unifiedSearchFilesTimer), userInfo: nil, repeats: true)
  862. }
  863. } else {
  864. NCNetworking.shared.searchFiles(urlBase: appDelegate, literal: literalSearch) { metadatas, errorCode, errorDescription in
  865. DispatchQueue.main.async { self.refreshControl.endRefreshing() }
  866. if self.isSearching, errorCode == 0, let metadatas = metadatas {
  867. self.metadatasSource = metadatas
  868. }
  869. self.isReloadDataSourceNetworkInProgress = false
  870. self.reloadDataSource()
  871. }
  872. }
  873. }
  874. func unifiedSearchMore(metadataForSection: NCMetadataForSection?) {
  875. guard let metadataForSection = metadataForSection, let searchResult = metadataForSection.lastSearchResult, let cursor = searchResult.cursor, let term = literalSearch else { return }
  876. metadataForSection.unifiedSearchInProgress = true
  877. self.collectionView?.reloadData()
  878. NCNetworking.shared.unifiedSearchFilesProvider(urlBase: appDelegate, id: searchResult.id, term: term, limit: 5, cursor: cursor) { searchResult, metadatas, errorCode, ErrorDescription in
  879. metadataForSection.unifiedSearchInProgress = false
  880. guard let searchResult = searchResult, let metadatas = metadatas else { return }
  881. self.metadatasSource.append(contentsOf: metadatas)
  882. let indexPaths = self.dataSource.appendMetadatasToSection(metadatas, metadataForSection: metadataForSection, lastSearchResult: searchResult)
  883. DispatchQueue.main.async {
  884. self.collectionView?.performBatchUpdates({
  885. self.collectionView?.insertItems(at: indexPaths)
  886. }, completion: { _ in
  887. self.collectionView?.reloadData()
  888. })
  889. }
  890. }
  891. }
  892. @objc func networkReadFolder(forced: Bool, completion: @escaping(_ tableDirectory: tableDirectory?, _ metadatas: [tableMetadata]?, _ metadatasUpdate: [tableMetadata]?, _ metadatasDelete: [tableMetadata]?, _ errorCode: Int, _ errorDescription: String) -> Void) {
  893. var tableDirectory: tableDirectory?
  894. NCNetworking.shared.readFile(serverUrlFileName: serverUrl) { (account, metadataFolder, errorCode, errorDescription) in
  895. if errorCode == 0 {
  896. if let metadataFolder = metadataFolder {
  897. tableDirectory = NCManageDatabase.shared.setDirectory(richWorkspace: metadataFolder.richWorkspace, serverUrl: self.serverUrl, account: account)
  898. }
  899. if forced || tableDirectory?.etag != metadataFolder?.etag || metadataFolder?.e2eEncrypted ?? false {
  900. NCNetworking.shared.readFolder(serverUrl: self.serverUrl, account: self.appDelegate.account) { account, metadataFolder, metadatas, metadatasUpdate, _, metadatasDelete, errorCode, errorDescription in
  901. if errorCode == 0 {
  902. self.metadataFolder = metadataFolder
  903. // E2EE
  904. if let metadataFolder = metadataFolder {
  905. if metadataFolder.e2eEncrypted && CCUtility.isEnd(toEndEnabled: self.appDelegate.account) {
  906. NCCommunication.shared.getE2EEMetadata(fileId: metadataFolder.ocId, e2eToken: nil) { account, e2eMetadata, errorCode, errorDescription in
  907. if errorCode == 0 && e2eMetadata != nil {
  908. if !NCEndToEndMetadata.shared.decoderMetadata(e2eMetadata!, privateKey: CCUtility.getEndToEndPrivateKey(account), serverUrl: self.serverUrl, account: account, urlBase: self.appDelegate.urlBase) {
  909. NCContentPresenter.shared.messageNotification("_error_e2ee_", description: "_e2e_error_decode_metadata_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorDecodeMetadata)
  910. } else {
  911. self.reloadDataSource()
  912. }
  913. } else if errorCode != NCGlobal.shared.errorResourceNotFound {
  914. NCContentPresenter.shared.messageNotification("_error_e2ee_", description: "_e2e_error_decode_metadata_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.error, errorCode: NCGlobal.shared.errorDecodeMetadata)
  915. }
  916. completion(tableDirectory, metadatas, metadatasUpdate, metadatasDelete, errorCode, errorDescription)
  917. }
  918. } else {
  919. completion(tableDirectory, metadatas, metadatasUpdate, metadatasDelete, errorCode, errorDescription)
  920. }
  921. } else {
  922. completion(tableDirectory, metadatas, metadatasUpdate, metadatasDelete, errorCode, errorDescription)
  923. }
  924. } else {
  925. completion(tableDirectory, nil, nil, nil, errorCode, errorDescription)
  926. }
  927. }
  928. } else {
  929. completion(tableDirectory, nil, nil, nil, 0, "")
  930. }
  931. } else {
  932. completion(nil, nil, nil, nil, errorCode, errorDescription)
  933. }
  934. }
  935. }
  936. // MARK: - Push metadata
  937. func pushMetadata(_ metadata: tableMetadata) {
  938. guard let serverUrlPush = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName) else { return }
  939. appDelegate.activeMetadata = metadata
  940. // FILES
  941. if layoutKey == NCGlobal.shared.layoutViewFiles && !pushed {
  942. if let viewController = appDelegate.listFilesVC[serverUrlPush] {
  943. if viewController.isViewLoaded {
  944. pushViewController(viewController: viewController)
  945. }
  946. } else {
  947. if let viewController: NCFiles = UIStoryboard(name: "NCFiles", bundle: nil).instantiateInitialViewController() as? NCFiles {
  948. viewController.isRoot = false
  949. viewController.serverUrl = serverUrlPush
  950. viewController.titleCurrentFolder = metadata.fileNameView
  951. appDelegate.listFilesVC[serverUrlPush] = viewController
  952. pushViewController(viewController: viewController)
  953. }
  954. }
  955. }
  956. // FAVORITE
  957. if layoutKey == NCGlobal.shared.layoutViewFavorite && !pushed {
  958. if let viewController = appDelegate.listFavoriteVC[serverUrlPush] {
  959. if viewController.isViewLoaded {
  960. pushViewController(viewController: viewController)
  961. }
  962. } else {
  963. if let viewController: NCFavorite = UIStoryboard(name: "NCFavorite", bundle: nil).instantiateInitialViewController() as? NCFavorite {
  964. viewController.serverUrl = serverUrlPush
  965. viewController.titleCurrentFolder = metadata.fileNameView
  966. appDelegate.listFavoriteVC[serverUrlPush] = viewController
  967. pushViewController(viewController: viewController)
  968. }
  969. }
  970. }
  971. // OFFLINE
  972. if layoutKey == NCGlobal.shared.layoutViewOffline && !pushed {
  973. if let viewController = appDelegate.listOfflineVC[serverUrlPush] {
  974. if viewController.isViewLoaded {
  975. pushViewController(viewController: viewController)
  976. }
  977. } else {
  978. if let viewController: NCOffline = UIStoryboard(name: "NCOffline", bundle: nil).instantiateInitialViewController() as? NCOffline {
  979. viewController.serverUrl = serverUrlPush
  980. viewController.titleCurrentFolder = metadata.fileNameView
  981. appDelegate.listOfflineVC[serverUrlPush] = viewController
  982. pushViewController(viewController: viewController)
  983. }
  984. }
  985. }
  986. // RECENT ( for push use Files ... he he he )
  987. if layoutKey == NCGlobal.shared.layoutViewRecent && !pushed {
  988. if let viewController = appDelegate.listFilesVC[serverUrlPush] {
  989. if viewController.isViewLoaded {
  990. pushViewController(viewController: viewController)
  991. }
  992. } else {
  993. if let viewController: NCFiles = UIStoryboard(name: "NCFiles", bundle: nil).instantiateInitialViewController() as? NCFiles {
  994. viewController.isRoot = false
  995. viewController.serverUrl = serverUrlPush
  996. viewController.titleCurrentFolder = metadata.fileNameView
  997. appDelegate.listFilesVC[serverUrlPush] = viewController
  998. pushViewController(viewController: viewController)
  999. }
  1000. }
  1001. }
  1002. // VIEW IN FOLDER
  1003. if layoutKey == NCGlobal.shared.layoutViewViewInFolder && !pushed {
  1004. if let viewController: NCFileViewInFolder = UIStoryboard(name: "NCFileViewInFolder", bundle: nil).instantiateInitialViewController() as? NCFileViewInFolder {
  1005. viewController.serverUrl = serverUrlPush
  1006. viewController.titleCurrentFolder = metadata.fileNameView
  1007. pushViewController(viewController: viewController)
  1008. }
  1009. }
  1010. // SHARES ( for push use Files ... he he he )
  1011. if layoutKey == NCGlobal.shared.layoutViewShares && !pushed {
  1012. if let viewController = appDelegate.listFilesVC[serverUrlPush] {
  1013. if viewController.isViewLoaded {
  1014. pushViewController(viewController: viewController)
  1015. }
  1016. } else {
  1017. if let viewController: NCFiles = UIStoryboard(name: "NCFiles", bundle: nil).instantiateInitialViewController() as? NCFiles {
  1018. viewController.isRoot = false
  1019. viewController.serverUrl = serverUrlPush
  1020. viewController.titleCurrentFolder = metadata.fileNameView
  1021. appDelegate.listFilesVC[serverUrlPush] = viewController
  1022. pushViewController(viewController: viewController)
  1023. }
  1024. }
  1025. }
  1026. }
  1027. }
  1028. // MARK: - Collection View
  1029. extension NCCollectionViewCommon: UICollectionViewDelegate {
  1030. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  1031. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return }
  1032. appDelegate.activeMetadata = metadata
  1033. if isEditMode {
  1034. if let index = selectOcId.firstIndex(of: metadata.ocId) {
  1035. selectOcId.remove(at: index)
  1036. } else {
  1037. selectOcId.append(metadata.ocId)
  1038. }
  1039. collectionView.reloadItems(at: [indexPath])
  1040. self.navigationItem.title = NSLocalizedString("_selected_", comment: "") + " : \(selectOcId.count)" + " / \(dataSource.metadatasSource.count)"
  1041. return
  1042. }
  1043. if metadata.e2eEncrypted && !CCUtility.isEnd(toEndEnabled: appDelegate.account) {
  1044. NCContentPresenter.shared.messageNotification("_info_", description: "_e2e_goto_settings_for_enable_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.info, errorCode: NCGlobal.shared.errorE2EENotEnabled)
  1045. return
  1046. }
  1047. if metadata.directory {
  1048. pushMetadata(metadata)
  1049. } else if !(self is NCFileViewInFolder) {
  1050. let imageIcon = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  1051. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  1052. var metadatas: [tableMetadata] = []
  1053. for metadata in dataSource.metadatasSource {
  1054. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  1055. metadatas.append(metadata)
  1056. }
  1057. }
  1058. NCViewer.shared.view(viewController: self, metadata: metadata, metadatas: metadatas, imageIcon: imageIcon)
  1059. return
  1060. }
  1061. if CCUtility.fileProviderStorageExists(metadata) {
  1062. NCViewer.shared.view(viewController: self, metadata: metadata, metadatas: [metadata], imageIcon: imageIcon)
  1063. } else if NCCommunication.shared.isNetworkReachable() {
  1064. NCNetworking.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorLoadFileView) { _ in }
  1065. } else {
  1066. NCContentPresenter.shared.messageNotification("_info_", description: "_go_online_", delay: NCGlobal.shared.dismissAfterSecond, type: NCContentPresenter.messageType.info, errorCode: NCGlobal.shared.errorOffline)
  1067. }
  1068. }
  1069. }
  1070. func pushViewController(viewController: UIViewController) {
  1071. if pushed { return }
  1072. pushed = true
  1073. navigationController?.pushViewController(viewController, animated: true)
  1074. }
  1075. @available(iOS 13.0, *)
  1076. func collectionView(_ collectionView: UICollectionView, contextMenuConfigurationForItemAt indexPath: IndexPath, point: CGPoint) -> UIContextMenuConfiguration? {
  1077. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return nil }
  1078. if isEditMode || metadata.classFile == NCCommunicationCommon.typeClassFile.url.rawValue { return nil }
  1079. let identifier = indexPath as NSCopying
  1080. var image: UIImage?
  1081. let cell = collectionView.cellForItem(at: indexPath)
  1082. if cell is NCListCell {
  1083. image = (cell as! NCListCell).imageItem.image
  1084. } else if cell is NCGridCell {
  1085. image = (cell as! NCGridCell).imageItem.image
  1086. }
  1087. return UIContextMenuConfiguration(identifier: identifier, previewProvider: {
  1088. return NCViewerProviderContextMenu(metadata: metadata, image: image)
  1089. }, actionProvider: { _ in
  1090. return NCFunctionCenter.shared.contextMenuConfiguration(ocId: metadata.ocId, viewController: self, enableDeleteLocal: true, enableViewInFolder: false, image: image)
  1091. })
  1092. }
  1093. @available(iOS 13.0, *)
  1094. func collectionView(_ collectionView: UICollectionView, willPerformPreviewActionForMenuWith configuration: UIContextMenuConfiguration, animator: UIContextMenuInteractionCommitAnimating) {
  1095. animator.addCompletion {
  1096. if let indexPath = configuration.identifier as? IndexPath {
  1097. self.collectionView(collectionView, didSelectItemAt: indexPath)
  1098. }
  1099. }
  1100. }
  1101. }
  1102. extension NCCollectionViewCommon: UICollectionViewDataSource {
  1103. func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
  1104. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return }
  1105. // Thumbnail
  1106. if !metadata.directory {
  1107. if metadata.name == NCGlobal.shared.appName {
  1108. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  1109. (cell as! NCCellProtocol).filePreviewImageView?.image = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  1110. } else {
  1111. NCOperationQueue.shared.downloadThumbnail(metadata: metadata, placeholder: true, cell: cell, view: collectionView)
  1112. }
  1113. } else {
  1114. // Unified search
  1115. switch metadata.iconName {
  1116. case let str where str.contains("contacts"):
  1117. (cell as! NCCellProtocol).filePreviewImageView?.image = NCBrandColor.cacheImages.iconContacts
  1118. case let str where str.contains("conversation"):
  1119. (cell as! NCCellProtocol).filePreviewImageView?.image = NCBrandColor.cacheImages.iconTalk
  1120. case let str where str.contains("calendar"):
  1121. (cell as! NCCellProtocol).filePreviewImageView?.image = NCBrandColor.cacheImages.iconCalendar
  1122. case let str where str.contains("deck"):
  1123. (cell as! NCCellProtocol).filePreviewImageView?.image = NCBrandColor.cacheImages.iconDeck
  1124. case let str where str.contains("mail"):
  1125. (cell as! NCCellProtocol).filePreviewImageView?.image = NCBrandColor.cacheImages.iconMail
  1126. case let str where str.contains("talk"):
  1127. (cell as! NCCellProtocol).filePreviewImageView?.image = NCBrandColor.cacheImages.iconTalk
  1128. case let str where str.contains("confirm"):
  1129. (cell as! NCCellProtocol).filePreviewImageView?.image = NCBrandColor.cacheImages.iconConfirm
  1130. case let str where str.contains("pages"):
  1131. (cell as! NCCellProtocol).filePreviewImageView?.image = NCBrandColor.cacheImages.iconPages
  1132. default:
  1133. (cell as! NCCellProtocol).filePreviewImageView?.image = NCBrandColor.cacheImages.file
  1134. }
  1135. //var urlString: String = ""
  1136. if !metadata.iconUrl.isEmpty {
  1137. if let ownerId = NCUtility.shared.getAvatarFromIconUrl(metadata: metadata), let cell = cell as? NCCellProtocol {
  1138. let fileName = metadata.userBaseUrl + "-" + ownerId + ".png"
  1139. NCOperationQueue.shared.downloadAvatar(user: ownerId, dispalyName: nil, fileName: fileName, cell: cell, view: collectionView, cellImageView: cell.filePreviewImageView)
  1140. }
  1141. /*
  1142. if metadata.iconUrl.starts(with: "/apps") {
  1143. //urlString = metadata.urlBase + metadata.iconUrl
  1144. } else if metadata.iconUrl.contains("http") && metadata.iconUrl.contains("avatar") {
  1145. let splitIconUrl = metadata.iconUrl.components(separatedBy: "/")
  1146. var found:Bool = false
  1147. var ownerId: String = ""
  1148. for item in splitIconUrl {
  1149. if found {
  1150. ownerId = item
  1151. break
  1152. }
  1153. if item == "avatar" { found = true}
  1154. }
  1155. let fileName = metadata.userBaseUrl + "-" + ownerId + ".png"
  1156. if let cell = cell as? NCCellProtocol {
  1157. NCOperationQueue.shared.downloadAvatar(user: ownerId, dispalyName: nil, fileName: fileName, cell: cell, view: collectionView, cellImageView: cell.filePreviewImageView)
  1158. }
  1159. }
  1160. // NCCommunication.shared.downloadContent(serverUrl: urlString) { _, data, errorCode, _ in
  1161. // if errorCode == 0, let data = data, let image = UIImage(data: data) {
  1162. // (cell as! NCCellProtocol).filePreviewImageView?.image = image
  1163. // }
  1164. // }
  1165. */
  1166. }
  1167. }
  1168. }
  1169. // Avatar
  1170. if metadata.ownerId.count > 0,
  1171. metadata.ownerId != appDelegate.userId,
  1172. appDelegate.account == metadata.account,
  1173. let cell = cell as? NCCellProtocol {
  1174. let fileName = metadata.userBaseUrl + "-" + metadata.ownerId + ".png"
  1175. NCOperationQueue.shared.downloadAvatar(user: metadata.ownerId, dispalyName: metadata.ownerDisplayName, fileName: fileName, cell: cell, view: collectionView, cellImageView: cell.fileAvatarImageView)
  1176. }
  1177. }
  1178. func collectionView(_ collectionView: UICollectionView, didEndDisplaying cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
  1179. }
  1180. func numberOfSections(in collectionView: UICollectionView) -> Int {
  1181. return dataSource.numberOfSections()
  1182. }
  1183. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  1184. let numberItems = dataSource.numberOfItemsInSection(section)
  1185. emptyDataSet?.numberOfItemsInSection(numberItems, section: section)
  1186. return numberItems
  1187. }
  1188. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  1189. var cell: NCCellProtocol & UICollectionViewCell
  1190. // LAYOUT LIST
  1191. if layoutForView?.layout == NCGlobal.shared.layoutList {
  1192. guard let listCell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as? NCListCell else { return UICollectionViewCell() }
  1193. listCell.delegate = self
  1194. cell = listCell
  1195. } else {
  1196. // LAYOUT GRID
  1197. guard let gridCell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as? NCGridCell else { return UICollectionViewCell() }
  1198. gridCell.delegate = self
  1199. cell = gridCell
  1200. }
  1201. guard let metadata = dataSource.cellForItemAt(indexPath: indexPath) else { return cell }
  1202. let tableShare = dataSource.metadatasForSection[indexPath.section].metadataShare[metadata.ocId]
  1203. var isShare = false
  1204. var isMounted = false
  1205. var a11yValues: [String] = []
  1206. if metadataFolder != nil {
  1207. isShare = metadata.permissions.contains(NCGlobal.shared.permissionShared) && !metadataFolder!.permissions.contains(NCGlobal.shared.permissionShared)
  1208. isMounted = metadata.permissions.contains(NCGlobal.shared.permissionMounted) && !metadataFolder!.permissions.contains(NCGlobal.shared.permissionMounted)
  1209. }
  1210. cell.fileSelectImage?.image = nil
  1211. cell.fileStatusImage?.image = nil
  1212. cell.fileLocalImage?.image = nil
  1213. cell.fileFavoriteImage?.image = nil
  1214. cell.fileSharedImage?.image = nil
  1215. cell.fileMoreImage?.image = nil
  1216. cell.filePreviewImageView?.image = nil
  1217. cell.filePreviewImageView?.backgroundColor = nil
  1218. cell.fileObjectId = metadata.ocId
  1219. cell.fileUser = metadata.ownerId
  1220. cell.fileProgressView?.isHidden = true
  1221. cell.fileProgressView?.progress = 0.0
  1222. cell.hideButtonShare(false)
  1223. cell.hideButtonMore(false)
  1224. cell.titleInfoTrailingDefault()
  1225. if isSearching {
  1226. cell.fileTitleLabel?.text = metadata.fileName
  1227. cell.fileTitleLabel?.lineBreakMode = .byTruncatingTail
  1228. if metadata.name == NCGlobal.shared.appName {
  1229. cell.fileInfoLabel?.text = NSLocalizedString("_in_", comment: "") + " " + NCUtilityFileSystem.shared.getPath(metadata: metadata, withFileName: false)
  1230. } else {
  1231. cell.fileInfoLabel?.text = metadata.subline
  1232. cell.titleInfoTrailingFull()
  1233. }
  1234. if let literalSearch = self.literalSearch {
  1235. let longestWordRange = (metadata.fileName.lowercased() as NSString).range(of: literalSearch)
  1236. let attributedString = NSMutableAttributedString(string: metadata.fileName, attributes: [NSAttributedString.Key.font : UIFont.systemFont(ofSize: 15)])
  1237. attributedString.setAttributes([NSAttributedString.Key.font : UIFont.boldSystemFont(ofSize: 15), NSAttributedString.Key.foregroundColor : NCBrandColor.shared.annotationColor], range: longestWordRange)
  1238. cell.fileTitleLabel?.attributedText = attributedString
  1239. }
  1240. } else {
  1241. cell.fileTitleLabel?.text = metadata.fileNameView
  1242. cell.fileTitleLabel?.lineBreakMode = .byTruncatingMiddle
  1243. cell.writeInfoDateSize(date: metadata.date, size: metadata.size)
  1244. }
  1245. // Progress
  1246. var progress: Float = 0.0
  1247. var totalBytes: Int64 = 0
  1248. if let progressType = appDelegate.listProgress[metadata.ocId] {
  1249. progress = progressType.progress
  1250. totalBytes = progressType.totalBytes
  1251. }
  1252. if metadata.status == NCGlobal.shared.metadataStatusDownloading || metadata.status == NCGlobal.shared.metadataStatusUploading {
  1253. cell.fileProgressView?.isHidden = false
  1254. cell.fileProgressView?.progress = progress
  1255. }
  1256. // Accessibility [shared]
  1257. if metadata.ownerId != appDelegate.userId, appDelegate.account == metadata.account {
  1258. a11yValues.append(NSLocalizedString("_shared_with_you_by_", comment: "") + " " + metadata.ownerDisplayName)
  1259. }
  1260. if metadata.directory {
  1261. if metadata.e2eEncrypted {
  1262. cell.filePreviewImageView?.image = NCBrandColor.cacheImages.folderEncrypted
  1263. } else if isShare {
  1264. cell.filePreviewImageView?.image = NCBrandColor.cacheImages.folderSharedWithMe
  1265. } else if tableShare != nil && tableShare?.shareType != 3 {
  1266. cell.filePreviewImageView?.image = NCBrandColor.cacheImages.folderSharedWithMe
  1267. } else if tableShare != nil && tableShare?.shareType == 3 {
  1268. cell.filePreviewImageView?.image = NCBrandColor.cacheImages.folderPublic
  1269. } else if metadata.mountType == "group" {
  1270. cell.filePreviewImageView?.image = NCBrandColor.cacheImages.folderGroup
  1271. } else if isMounted {
  1272. cell.filePreviewImageView?.image = NCBrandColor.cacheImages.folderExternal
  1273. } else if metadata.fileName == autoUploadFileName && metadata.serverUrl == autoUploadDirectory {
  1274. cell.filePreviewImageView?.image = NCBrandColor.cacheImages.folderAutomaticUpload
  1275. if cell is NCListCell {
  1276. cell.fileTitleLabel?.text = (cell.fileTitleLabel?.text ?? "") + " - " + NSLocalizedString("_auto_upload_folder_", comment: "")
  1277. }
  1278. } else {
  1279. cell.filePreviewImageView?.image = NCBrandColor.cacheImages.folder
  1280. }
  1281. let lockServerUrl = CCUtility.stringAppendServerUrl(metadata.serverUrl, addFileName: metadata.fileName)!
  1282. let tableDirectory = NCManageDatabase.shared.getTableDirectory(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@", appDelegate.account, lockServerUrl))
  1283. // Local image: offline
  1284. if tableDirectory != nil && tableDirectory!.offline {
  1285. cell.fileLocalImage?.image = NCBrandColor.cacheImages.offlineFlag
  1286. }
  1287. } else {
  1288. // image local
  1289. if dataSource.metadatasForSection[indexPath.section].metadataOffLine.contains(metadata.ocId) {
  1290. a11yValues.append(NSLocalizedString("_offline_", comment: ""))
  1291. cell.fileLocalImage?.image = NCBrandColor.cacheImages.offlineFlag
  1292. } else if CCUtility.fileProviderStorageExists(metadata) {
  1293. cell.fileLocalImage?.image = NCBrandColor.cacheImages.local
  1294. }
  1295. }
  1296. // image Favorite
  1297. if metadata.favorite {
  1298. cell.fileFavoriteImage?.image = NCBrandColor.cacheImages.favorite
  1299. a11yValues.append(NSLocalizedString("_favorite_", comment: ""))
  1300. }
  1301. // Share image
  1302. if isShare {
  1303. cell.fileSharedImage?.image = NCBrandColor.cacheImages.shared
  1304. } else if tableShare != nil && tableShare?.shareType == 3 {
  1305. cell.fileSharedImage?.image = NCBrandColor.cacheImages.shareByLink
  1306. } else if tableShare != nil && tableShare?.shareType != 3 {
  1307. cell.fileSharedImage?.image = NCBrandColor.cacheImages.shared
  1308. } else {
  1309. cell.fileSharedImage?.image = NCBrandColor.cacheImages.canShare
  1310. }
  1311. if appDelegate.account != metadata.account {
  1312. cell.fileSharedImage?.image = NCBrandColor.cacheImages.shared
  1313. }
  1314. // Button More
  1315. if metadata.status == NCGlobal.shared.metadataStatusInDownload || metadata.status == NCGlobal.shared.metadataStatusDownloading || metadata.status == NCGlobal.shared.metadataStatusInUpload || metadata.status == NCGlobal.shared.metadataStatusUploading {
  1316. cell.setButtonMore(named: NCGlobal.shared.buttonMoreStop, image: NCBrandColor.cacheImages.buttonStop)
  1317. } else if metadata.lock == true {
  1318. cell.setButtonMore(named: NCGlobal.shared.buttonMoreLock, image: NCBrandColor.cacheImages.buttonMoreLock)
  1319. a11yValues.append(String(format: NSLocalizedString("_locked_by_", comment: ""), metadata.lockOwnerDisplayName))
  1320. } else {
  1321. cell.setButtonMore(named: NCGlobal.shared.buttonMoreMore, image: NCBrandColor.cacheImages.buttonMore)
  1322. }
  1323. // Write status on Label Info
  1324. switch metadata.status {
  1325. case NCGlobal.shared.metadataStatusWaitDownload:
  1326. cell.fileInfoLabel?.text = CCUtility.transformedSize(metadata.size) + " - " + NSLocalizedString("_status_wait_download_", comment: "")
  1327. break
  1328. case NCGlobal.shared.metadataStatusInDownload:
  1329. cell.fileInfoLabel?.text = CCUtility.transformedSize(metadata.size) + " - " + NSLocalizedString("_status_in_download_", comment: "")
  1330. break
  1331. case NCGlobal.shared.metadataStatusDownloading:
  1332. cell.fileInfoLabel?.text = CCUtility.transformedSize(metadata.size) + " - ↓ " + CCUtility.transformedSize(totalBytes)
  1333. break
  1334. case NCGlobal.shared.metadataStatusWaitUpload:
  1335. cell.fileInfoLabel?.text = CCUtility.transformedSize(metadata.size) + " - " + NSLocalizedString("_status_wait_upload_", comment: "")
  1336. break
  1337. case NCGlobal.shared.metadataStatusInUpload:
  1338. cell.fileInfoLabel?.text = CCUtility.transformedSize(metadata.size) + " - " + NSLocalizedString("_status_in_upload_", comment: "")
  1339. break
  1340. case NCGlobal.shared.metadataStatusUploading:
  1341. cell.fileInfoLabel?.text = CCUtility.transformedSize(metadata.size) + " - ↑ " + CCUtility.transformedSize(totalBytes)
  1342. break
  1343. case NCGlobal.shared.metadataStatusUploadError:
  1344. if metadata.sessionError != "" {
  1345. cell.fileInfoLabel?.text = NSLocalizedString("_status_wait_upload_", comment: "") + " " + metadata.sessionError
  1346. } else {
  1347. cell.fileInfoLabel?.text = NSLocalizedString("_status_wait_upload_", comment: "")
  1348. }
  1349. break
  1350. default:
  1351. break
  1352. }
  1353. // Live Photo
  1354. if metadata.livePhoto {
  1355. cell.fileStatusImage?.image = NCBrandColor.cacheImages.livePhoto
  1356. a11yValues.append(NSLocalizedString("_upload_mov_livephoto_", comment: ""))
  1357. }
  1358. // E2EE
  1359. if metadata.e2eEncrypted || isEncryptedFolder {
  1360. cell.hideButtonShare(true)
  1361. }
  1362. // URL
  1363. if metadata.classFile == NCCommunicationCommon.typeClassFile.url.rawValue {
  1364. cell.fileLocalImage?.image = nil
  1365. cell.hideButtonShare(true)
  1366. cell.hideButtonMore(true)
  1367. if let ownerId = NCUtility.shared.getAvatarFromIconUrl(metadata: metadata) {
  1368. cell.fileUser = ownerId
  1369. }
  1370. }
  1371. // Disable Share Button
  1372. if appDelegate.disableSharesView {
  1373. cell.hideButtonShare(true)
  1374. }
  1375. // Separator
  1376. if collectionView.numberOfItems(inSection: indexPath.section) == indexPath.row + 1 || isSearching {
  1377. cell.cellSeparatorView?.isHidden = true
  1378. } else {
  1379. cell.cellSeparatorView?.isHidden = false
  1380. }
  1381. // Edit mode
  1382. if isEditMode {
  1383. cell.selectMode(true)
  1384. if selectOcId.contains(metadata.ocId) {
  1385. cell.selected(true)
  1386. a11yValues.append(NSLocalizedString("_selected_", comment: ""))
  1387. } else {
  1388. cell.selected(false)
  1389. }
  1390. } else {
  1391. cell.selectMode(false)
  1392. }
  1393. // Accessibility
  1394. cell.setAccessibility(label: metadata.fileNameView + ", " + (cell.fileInfoLabel?.text ?? ""), value: a11yValues.joined(separator: ", "))
  1395. return cell
  1396. }
  1397. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  1398. if kind == UICollectionView.elementKindSectionHeader {
  1399. if indexPath.section == 0 {
  1400. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCSectionHeaderMenu
  1401. let (_, heightHeaderRichWorkspace, heightHeaderSection) = getHeaderHeight(section: indexPath.section)
  1402. self.headerMenu = header
  1403. if collectionView.collectionViewLayout == gridLayout {
  1404. header.setImageSwitchList()
  1405. header.buttonSwitch.accessibilityLabel = NSLocalizedString("_list_view_", comment: "")
  1406. } else {
  1407. header.setImageSwitchGrid()
  1408. header.buttonSwitch.accessibilityLabel = NSLocalizedString("_grid_view_", comment: "")
  1409. }
  1410. header.delegate = self
  1411. if headerMenuButtonsCommand && !isSearching {
  1412. header.setButtonsCommand(heigt: NCGlobal.shared.heightButtonsCommand, imageButton1: UIImage(named: "buttonAddImage"), titleButton1: NSLocalizedString("_upload_", comment: ""), imageButton2: UIImage(named: "buttonAddFolder"), titleButton2: NSLocalizedString("_folder_", comment: ""), imageButton3: UIImage(named: "buttonAddScan"), titleButton3: NSLocalizedString("_scan_", comment: ""))
  1413. } else {
  1414. header.setButtonsCommand(heigt: 0)
  1415. }
  1416. if headerMenuButtonsView {
  1417. header.setStatusButtonsView(enable: !dataSource.metadatasSource.isEmpty)
  1418. header.setButtonsView(heigt: NCGlobal.shared.heightButtonsView)
  1419. header.setSortedTitle(layoutForView?.titleButtonHeader ?? "")
  1420. } else {
  1421. header.setButtonsView(heigt: 0)
  1422. }
  1423. header.setRichWorkspaceHeight(heightHeaderRichWorkspace)
  1424. header.setRichWorkspaceText(richWorkspaceText)
  1425. header.setSectionHeight(heightHeaderSection)
  1426. header.labelSection.text = self.dataSource.getSectionValue(indexPath: indexPath)
  1427. header.labelSection.textColor = NCBrandColor.shared.label
  1428. return header
  1429. } else {
  1430. let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeader", for: indexPath) as! NCSectionHeader
  1431. header.labelSection.text = self.dataSource.getSectionValue(indexPath: indexPath)
  1432. header.labelSection.textColor = NCBrandColor.shared.label
  1433. return header
  1434. }
  1435. } else {
  1436. let footer = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCSectionFooter
  1437. let sections = dataSource.numberOfSections()
  1438. let section = indexPath.section
  1439. let metadataForSection = self.dataSource.getMetadataForSection(indexPath.section)
  1440. let isPaginated = metadataForSection?.lastSearchResult?.isPaginated ?? false
  1441. let metadatasCount: Int = metadataForSection?.metadatas.count ?? 0
  1442. let unifiedSearchInProgress = metadataForSection?.unifiedSearchInProgress ?? false
  1443. footer.delegate = self
  1444. footer.metadataForSection = metadataForSection
  1445. footer.setTitleLabel("")
  1446. footer.setButtonText(NSLocalizedString("_show_more_results_", comment: ""))
  1447. footer.separatorIsHidden(true)
  1448. footer.buttonIsHidden(true)
  1449. footer.hideActivityIndicatorSection()
  1450. if isSearching {
  1451. if sections > 1 && section != sections - 1 {
  1452. footer.separatorIsHidden(false)
  1453. }
  1454. if isSearching && isPaginated && metadatasCount > 0 {
  1455. footer.buttonIsHidden(false)
  1456. }
  1457. if unifiedSearchInProgress {
  1458. footer.showActivityIndicatorSection()
  1459. }
  1460. } else {
  1461. if sections == 1 || section == sections - 1 {
  1462. let info = dataSource.getFooterInformationAllMetadatas()
  1463. footer.setTitleLabel(directories: info.directories, files: info.files, size: info.size)
  1464. } else {
  1465. footer.separatorIsHidden(false)
  1466. }
  1467. }
  1468. return footer
  1469. }
  1470. }
  1471. }
  1472. extension NCCollectionViewCommon: UICollectionViewDelegateFlowLayout {
  1473. func getHeaderHeight() -> CGFloat {
  1474. var size: CGFloat = 0
  1475. if headerMenuButtonsCommand && !isSearching {
  1476. size += NCGlobal.shared.heightButtonsCommand
  1477. }
  1478. if headerMenuButtonsView {
  1479. size += NCGlobal.shared.heightButtonsView
  1480. }
  1481. return size
  1482. }
  1483. func getHeaderHeight(section:Int) -> (heightHeaderCommands: CGFloat, heightHeaderRichWorkspace: CGFloat, heightHeaderSection: CGFloat) {
  1484. var headerRichWorkspace: CGFloat = 0
  1485. if let richWorkspaceText = richWorkspaceText, !headerRichWorkspaceDisable {
  1486. let trimmed = richWorkspaceText.trimmingCharacters(in: .whitespaces)
  1487. if trimmed.count > 0 && !isSearching {
  1488. headerRichWorkspace = UIScreen.main.bounds.size.height / 6
  1489. }
  1490. }
  1491. if section == 0 && dataSource.numberOfSections() > 1 {
  1492. return (getHeaderHeight(), headerRichWorkspace, NCGlobal.shared.heightSection)
  1493. } else if section == 0 && dataSource.numberOfSections() == 1 {
  1494. if collectionView.collectionViewLayout == gridLayout {
  1495. return (getHeaderHeight(), headerRichWorkspace, NCGlobal.shared.heightSection)
  1496. } else {
  1497. return (getHeaderHeight(), headerRichWorkspace, 0)
  1498. }
  1499. } else if section > 0 && dataSource.numberOfSections() > 1 {
  1500. return (0, 0, NCGlobal.shared.heightSection)
  1501. } else {
  1502. return (0, 0, 0)
  1503. }
  1504. }
  1505. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  1506. let (heightHeaderCommands, heightHeaderRichWorkspace, heightHeaderSection) = getHeaderHeight(section: section)
  1507. let heightHeader = heightHeaderCommands + heightHeaderRichWorkspace + heightHeaderSection
  1508. return CGSize(width: collectionView.frame.width, height: heightHeader)
  1509. }
  1510. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  1511. let sections = dataSource.numberOfSections()
  1512. let metadataForSection = self.dataSource.getMetadataForSection(section)
  1513. let isPaginated = metadataForSection?.lastSearchResult?.isPaginated ?? false
  1514. let metadatasCount: Int = metadataForSection?.lastSearchResult?.entries.count ?? 0
  1515. var size = CGSize(width: collectionView.frame.width, height: 0)
  1516. if section == sections - 1 {
  1517. size.height += NCGlobal.shared.endHeightFooter
  1518. } else {
  1519. size.height += NCGlobal.shared.heightFooter
  1520. }
  1521. if isSearching && isPaginated && metadatasCount > 0 {
  1522. size.height += NCGlobal.shared.heightFooterButton
  1523. }
  1524. return size
  1525. }
  1526. }