NCCollectionViewCommon.swift 82 KB

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