NCTrash.swift 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695
  1. //
  2. // NCTrash.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 02/10/2018.
  6. // Copyright © 2018 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. import NCCommunication
  25. class NCTrash: UIViewController, UIGestureRecognizerDelegate, NCTrashListCellDelegate, NCGridCellDelegate, NCTrashSectionHeaderMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  26. @IBOutlet weak var collectionView: UICollectionView!
  27. var path = ""
  28. var titleCurrentFolder = NSLocalizedString("_trash_view_", comment: "")
  29. var blinkocId: String?
  30. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  31. private var isEditMode = false
  32. private var selectocId: [String] = []
  33. private var datasource: [tableTrash] = []
  34. private var layout = ""
  35. private var groupBy = "none"
  36. private var titleButton = ""
  37. private var itemForLine = 0
  38. private var listLayout: NCListLayout!
  39. private var gridLayout: NCGridLayout!
  40. private let highHeader: CGFloat = 50
  41. private let refreshControl = UIRefreshControl()
  42. required init?(coder aDecoder: NSCoder) {
  43. super.init(coder: aDecoder)
  44. appDelegate.activeTrash = self
  45. }
  46. override func viewDidLoad() {
  47. super.viewDidLoad()
  48. // Cell
  49. collectionView.register(UINib.init(nibName: "NCTrashListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  50. collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  51. // Header - Footer
  52. collectionView.register(UINib.init(nibName: "NCTrashSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  53. collectionView.register(UINib.init(nibName: "NCTrashSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  54. collectionView.alwaysBounceVertical = true
  55. listLayout = NCListLayout()
  56. gridLayout = NCGridLayout()
  57. // Add Refresh Control
  58. collectionView.refreshControl = refreshControl
  59. // Configure Refresh Control
  60. refreshControl.addTarget(self, action: #selector(loadListingTrash), for: .valueChanged)
  61. // empty Data Source
  62. self.collectionView.emptyDataSetDelegate = self;
  63. self.collectionView.emptyDataSetSource = self;
  64. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: k_notificationCenter_changeTheming), object: nil)
  65. NotificationCenter.default.addObserver(self, selector: #selector(reloadDataSource), name: NSNotification.Name(rawValue: k_notificationCenter_reloadDataSource), object: nil)
  66. changeTheming()
  67. }
  68. override func viewWillAppear(_ animated: Bool) {
  69. super.viewWillAppear(animated)
  70. self.navigationItem.title = titleCurrentFolder
  71. (layout, _, _, groupBy, _, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: k_layout_view_trash)
  72. gridLayout.itemForLine = CGFloat(itemForLine)
  73. if layout == k_layout_list {
  74. collectionView.collectionViewLayout = listLayout
  75. } else {
  76. collectionView.collectionViewLayout = gridLayout
  77. }
  78. // Datasource & serverUrl
  79. if path == "" {
  80. guard let userID = (appDelegate.userID as NSString).addingPercentEncoding(withAllowedCharacters: NSCharacterSet.urlFragmentAllowed) else { return }
  81. path = appDelegate.urlBase + "/" + NCUtility.shared.getDAV() + "/trashbin/" + userID + "/trash/"
  82. }
  83. if (datasource.count == 0) {
  84. reloadDataSource()
  85. }
  86. loadListingTrash()
  87. }
  88. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  89. super.viewWillTransition(to: size, with: coordinator)
  90. coordinator.animate(alongsideTransition: nil) { _ in
  91. self.collectionView?.collectionViewLayout.invalidateLayout()
  92. }
  93. }
  94. @objc func changeTheming() {
  95. appDelegate.changeTheming(self, tableView: nil, collectionView: collectionView, form: false)
  96. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  97. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brandElement
  98. }
  99. // MARK: DZNEmpty
  100. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  101. return NCBrandColor.sharedInstance.backgroundView
  102. }
  103. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  104. return CCGraphics.changeThemingColorImage(UIImage.init(named: "trash"), width: 300, height: 300, color: NCBrandColor.sharedInstance.graySoft)
  105. }
  106. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  107. let text = "\n"+NSLocalizedString("_trash_no_trash_", comment: "")
  108. let attributes = [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: 20), NSAttributedString.Key.foregroundColor: UIColor.lightGray]
  109. return NSAttributedString.init(string: text, attributes: attributes)
  110. }
  111. func description(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  112. let text = "\n"+NSLocalizedString("_trash_no_trash_description_", comment: "")
  113. let attributes = [NSAttributedString.Key.font: UIFont.systemFont(ofSize: 14), NSAttributedString.Key.foregroundColor: UIColor.lightGray]
  114. return NSAttributedString.init(string: text, attributes: attributes)
  115. }
  116. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  117. return true
  118. }
  119. // MARK: TAP EVENT
  120. func tapSwitchHeaderMenu(sender: Any) {
  121. if collectionView.collectionViewLayout == gridLayout {
  122. // list layout
  123. UIView.animate(withDuration: 0.0, animations: {
  124. self.collectionView.collectionViewLayout.invalidateLayout()
  125. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  126. self.collectionView.reloadData()
  127. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  128. })
  129. })
  130. layout = k_layout_list
  131. NCUtility.shared.setLayoutForView(key: k_layout_view_trash, layout: layout)
  132. } else {
  133. // grid layout
  134. UIView.animate(withDuration: 0.0, animations: {
  135. self.collectionView.collectionViewLayout.invalidateLayout()
  136. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  137. self.collectionView.reloadData()
  138. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  139. })
  140. })
  141. layout = k_layout_grid
  142. NCUtility.shared.setLayoutForView(key: k_layout_view_trash, layout: layout)
  143. }
  144. }
  145. func tapOrderHeaderMenu(sender: Any) {
  146. let sortMenu = NCSortMenu()
  147. sortMenu.toggleMenu(viewController: self, key: k_layout_view_trash, sortButton: sender as? UIButton, serverUrl: nil, hideDirectoryOnTop: true)
  148. }
  149. func tapMoreHeaderMenu(sender: Any) {
  150. let mainMenuViewController = UIStoryboard.init(name: "NCMenu", bundle: nil).instantiateViewController(withIdentifier: "NCMainMenuTableViewController") as! NCMainMenuTableViewController
  151. var actions: [NCMenuAction] = []
  152. if isEditMode {
  153. actions.append(
  154. NCMenuAction(
  155. title: NSLocalizedString("_trash_delete_selected_", comment: ""),
  156. icon: CCGraphics.changeThemingColorImage(UIImage(named: "trash"), width: 50, height: 50, color: .red),
  157. action: { menuAction in
  158. let alert = UIAlertController(title: NSLocalizedString("_trash_delete_selected_", comment: ""), message: "", preferredStyle: .alert)
  159. alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .destructive, handler: { _ in
  160. for ocId in self.selectocId {
  161. self.deleteItem(with: ocId)
  162. }
  163. self.isEditMode = false
  164. self.selectocId.removeAll()
  165. self.collectionView.reloadData()
  166. }))
  167. alert.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel, handler: { _ in
  168. }))
  169. self.present(alert, animated: true, completion: nil)
  170. }
  171. )
  172. )
  173. } else {
  174. actions.append(
  175. NCMenuAction(
  176. title: NSLocalizedString("_trash_delete_all_", comment: ""),
  177. icon: CCGraphics.changeThemingColorImage(UIImage(named: "trash"), width: 50, height: 50, color: .red),
  178. action: { menuAction in
  179. let alert = UIAlertController(title: NSLocalizedString("_trash_delete_all_", comment: ""), message: "", preferredStyle: .alert)
  180. alert.addAction(UIAlertAction(title: NSLocalizedString("_ok_", comment: ""), style: .destructive, handler: { _ in
  181. self.emptyTrash()
  182. }))
  183. alert.addAction(UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .cancel, handler: { _ in
  184. }))
  185. self.present(alert, animated: true, completion: nil)
  186. }
  187. )
  188. )
  189. }
  190. mainMenuViewController.actions = actions
  191. let menuPanelController = NCMenuPanelController()
  192. menuPanelController.parentPresenter = self
  193. menuPanelController.delegate = mainMenuViewController
  194. menuPanelController.set(contentViewController: mainMenuViewController)
  195. menuPanelController.track(scrollView: mainMenuViewController.tableView)
  196. self.present(menuPanelController, animated: true, completion: nil)
  197. }
  198. func tapRestoreListItem(with ocId: String, sender: Any) {
  199. if !isEditMode {
  200. restoreItem(with: ocId)
  201. } else {
  202. let buttonPosition:CGPoint = (sender as! UIButton).convert(CGPoint.zero, to:collectionView)
  203. let indexPath = collectionView.indexPathForItem(at: buttonPosition)
  204. collectionView(self.collectionView, didSelectItemAt: indexPath!)
  205. }
  206. }
  207. func tapMoreListItem(with objectId: String, sender: Any) {
  208. if !isEditMode {
  209. let mainMenuViewController = UIStoryboard.init(name: "NCMenu", bundle: nil).instantiateViewController(withIdentifier: "NCMainMenuTableViewController") as! NCMainMenuTableViewController
  210. var actions: [NCMenuAction] = []
  211. guard let tableTrash = NCManageDatabase.sharedInstance.getTrashItem(fileId: objectId, account: appDelegate.account) else {
  212. return
  213. }
  214. var iconHeader: UIImage!
  215. if let icon = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(tableTrash.fileId, etag: tableTrash.fileName)) {
  216. iconHeader = icon
  217. } else {
  218. if(tableTrash.directory) {
  219. iconHeader = CCGraphics.changeThemingColorImage(UIImage(named: "folder"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
  220. } else {
  221. iconHeader = UIImage(named: tableTrash.iconName)
  222. }
  223. }
  224. actions.append(
  225. NCMenuAction(
  226. title: tableTrash.trashbinFileName,
  227. icon: iconHeader,
  228. action: nil
  229. )
  230. )
  231. actions.append(
  232. NCMenuAction(
  233. title: NSLocalizedString("_delete_", comment: ""),
  234. icon: CCGraphics.changeThemingColorImage(UIImage(named: "trash"), width: 50, height: 50, color: .red),
  235. action: { menuAction in
  236. self.deleteItem(with: objectId)
  237. }
  238. )
  239. )
  240. mainMenuViewController.actions = actions
  241. let menuPanelController = NCMenuPanelController()
  242. menuPanelController.parentPresenter = self
  243. menuPanelController.delegate = mainMenuViewController
  244. menuPanelController.set(contentViewController: mainMenuViewController)
  245. menuPanelController.track(scrollView: mainMenuViewController.tableView)
  246. self.present(menuPanelController, animated: true, completion: nil)
  247. } else {
  248. let buttonPosition: CGPoint = (sender as! UIButton).convert(CGPoint.zero, to: collectionView)
  249. let indexPath = collectionView.indexPathForItem(at: buttonPosition)
  250. collectionView(self.collectionView, didSelectItemAt: indexPath!)
  251. }
  252. }
  253. func tapMoreGridItem(with objectId: String, sender: Any) {
  254. if !isEditMode {
  255. let mainMenuViewController = UIStoryboard.init(name: "NCMenu", bundle: nil).instantiateViewController(withIdentifier: "NCMainMenuTableViewController") as! NCMainMenuTableViewController
  256. var actions: [NCMenuAction] = []
  257. guard let tableTrash = NCManageDatabase.sharedInstance.getTrashItem(fileId: objectId, account: appDelegate.account) else {
  258. return
  259. }
  260. var iconHeader: UIImage!
  261. if let icon = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(tableTrash.fileId, etag: tableTrash.fileName)) {
  262. iconHeader = icon
  263. } else {
  264. if(tableTrash.directory) {
  265. iconHeader = CCGraphics.changeThemingColorImage(UIImage(named: "folder"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon)
  266. } else {
  267. iconHeader = UIImage(named: tableTrash.iconName)
  268. }
  269. }
  270. actions.append(
  271. NCMenuAction(
  272. title: tableTrash.trashbinFileName,
  273. icon: iconHeader,
  274. action: nil
  275. )
  276. )
  277. actions.append(
  278. NCMenuAction(
  279. title: NSLocalizedString("_restore_", comment: ""),
  280. icon: CCGraphics.changeThemingColorImage(UIImage(named: "restore"), width: 50, height: 50, color: NCBrandColor.sharedInstance.icon),
  281. action: { menuAction in
  282. self.restoreItem(with: objectId)
  283. }
  284. )
  285. )
  286. actions.append(
  287. NCMenuAction(
  288. title: NSLocalizedString("_delete_", comment: ""),
  289. icon: CCGraphics.changeThemingColorImage(UIImage(named: "trash"), width: 50, height: 50, color: .red),
  290. action: { menuAction in
  291. self.deleteItem(with: objectId)
  292. }
  293. )
  294. )
  295. mainMenuViewController.actions = actions
  296. let menuPanelController = NCMenuPanelController()
  297. menuPanelController.parentPresenter = self
  298. menuPanelController.delegate = mainMenuViewController
  299. menuPanelController.set(contentViewController: mainMenuViewController)
  300. menuPanelController.track(scrollView: mainMenuViewController.tableView)
  301. self.present(menuPanelController, animated: true, completion: nil)
  302. } else {
  303. let buttonPosition: CGPoint = (sender as! UIButton).convert(CGPoint.zero, to: collectionView)
  304. let indexPath = collectionView.indexPathForItem(at: buttonPosition)
  305. collectionView(self.collectionView, didSelectItemAt: indexPath!)
  306. }
  307. }
  308. }
  309. // MARK: - Collection View
  310. extension NCTrash: UICollectionViewDelegate {
  311. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  312. let tableTrash = datasource[indexPath.item]
  313. if isEditMode {
  314. if let index = selectocId.firstIndex(of: tableTrash.fileId) {
  315. selectocId.remove(at: index)
  316. } else {
  317. selectocId.append(tableTrash.fileId)
  318. }
  319. collectionView.reloadItems(at: [indexPath])
  320. return
  321. }
  322. if tableTrash.directory {
  323. let ncTrash:NCTrash = UIStoryboard(name: "NCTrash", bundle: nil).instantiateInitialViewController() as! NCTrash
  324. ncTrash.path = tableTrash.filePath + tableTrash.fileName
  325. ncTrash.titleCurrentFolder = tableTrash.trashbinFileName
  326. self.navigationController?.pushViewController(ncTrash, animated: true)
  327. }
  328. }
  329. }
  330. extension NCTrash: UICollectionViewDataSource {
  331. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  332. if kind == UICollectionView.elementKindSectionHeader {
  333. let trashHeader = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCTrashSectionHeaderMenu
  334. if collectionView.collectionViewLayout == gridLayout {
  335. trashHeader.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  336. } else {
  337. trashHeader.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  338. }
  339. trashHeader.delegate = self
  340. trashHeader.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  341. trashHeader.separator.backgroundColor = NCBrandColor.sharedInstance.separator
  342. trashHeader.setStatusButton(datasource: datasource)
  343. trashHeader.setTitleSorted(datasourceTitleButton: titleButton)
  344. return trashHeader
  345. } else {
  346. let trashFooter = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCTrashSectionFooter
  347. trashFooter.setTitleLabelFooter(datasource: datasource)
  348. return trashFooter
  349. }
  350. }
  351. func numberOfSections(in collectionView: UICollectionView) -> Int {
  352. return 1
  353. }
  354. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  355. return datasource.count
  356. }
  357. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  358. let tableTrash = datasource[indexPath.item]
  359. var image: UIImage?
  360. if tableTrash.iconName.count > 0 {
  361. image = UIImage.init(named: tableTrash.iconName)
  362. } else {
  363. image = UIImage.init(named: "file")
  364. }
  365. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(tableTrash.fileId, etag: tableTrash.fileName)) {
  366. image = UIImage.init(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(tableTrash.fileId, etag: tableTrash.fileName))
  367. } else {
  368. if tableTrash.hasPreview && !CCUtility.fileProviderStoragePreviewIconExists(tableTrash.fileId, etag: tableTrash.fileName) {
  369. downloadThumbnail(with: tableTrash, indexPath: indexPath)
  370. }
  371. }
  372. if collectionView.collectionViewLayout == listLayout {
  373. // LIST
  374. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCTrashListCell
  375. cell.delegate = self
  376. cell.objectId = tableTrash.fileId
  377. cell.indexPath = indexPath
  378. cell.labelTitle.text = tableTrash.trashbinFileName
  379. cell.labelTitle.textColor = NCBrandColor.sharedInstance.textView
  380. cell.separator.backgroundColor = NCBrandColor.sharedInstance.separator
  381. if tableTrash.directory {
  382. cell.imageItem.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  383. cell.labelInfo.text = CCUtility.dateDiff(tableTrash.date as Date)
  384. } else {
  385. cell.imageItem.image = image
  386. cell.labelInfo.text = CCUtility.dateDiff(tableTrash.date as Date) + ", " + CCUtility.transformedSize(tableTrash.size)
  387. }
  388. if isEditMode {
  389. cell.imageItemLeftConstraint.constant = 45
  390. cell.imageSelect.isHidden = false
  391. if selectocId.contains(tableTrash.fileId) {
  392. cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedYes"), to: CGSize(width: 50, height: 50), isAspectRation: true)
  393. cell.backgroundView = NCUtility.shared.cellBlurEffect(with: cell.bounds)
  394. } else {
  395. cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedNo"), to: CGSize(width: 50, height: 50), isAspectRation: true)
  396. cell.backgroundView = nil
  397. }
  398. } else {
  399. cell.imageItemLeftConstraint.constant = 10
  400. cell.imageSelect.isHidden = true
  401. cell.backgroundView = nil
  402. }
  403. return cell
  404. } else {
  405. // GRID
  406. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  407. cell.delegate = self
  408. cell.objectId = tableTrash.fileId
  409. cell.indexPath = indexPath
  410. cell.labelTitle.text = tableTrash.trashbinFileName
  411. cell.labelTitle.textColor = NCBrandColor.sharedInstance.textView
  412. if tableTrash.directory {
  413. cell.imageItem.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  414. } else {
  415. cell.imageItem.image = image
  416. }
  417. if isEditMode {
  418. cell.imageSelect.isHidden = false
  419. if selectocId.contains(tableTrash.fileId) {
  420. cell.imageSelect.image = CCGraphics.scale(UIImage.init(named: "checkedYes"), to: CGSize(width: 50, height: 50), isAspectRation: true)
  421. cell.backgroundView = NCUtility.shared.cellBlurEffect(with: cell.bounds)
  422. } else {
  423. cell.imageSelect.isHidden = true
  424. cell.backgroundView = nil
  425. }
  426. } else {
  427. cell.imageSelect.isHidden = true
  428. cell.backgroundView = nil
  429. }
  430. return cell
  431. }
  432. }
  433. }
  434. extension NCTrash: UICollectionViewDelegateFlowLayout {
  435. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  436. return CGSize(width: collectionView.frame.width, height: highHeader)
  437. }
  438. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  439. return CGSize(width: collectionView.frame.width, height: highHeader)
  440. }
  441. }
  442. // MARK: - NC API & Algorithm
  443. extension NCTrash {
  444. @objc func reloadDataSource() {
  445. var sort: String
  446. var ascending: Bool
  447. (layout, sort, ascending, groupBy, _, titleButton, itemForLine) = NCUtility.shared.getLayoutForView(key: k_layout_view_trash)
  448. datasource.removeAll()
  449. guard let tashItems = NCManageDatabase.sharedInstance.getTrash(filePath: path, sort: sort, ascending: ascending, account: appDelegate.account) else {
  450. return
  451. }
  452. datasource = tashItems
  453. reloadDataThenPerform {
  454. // GoTo ocId
  455. if self.blinkocId != nil {
  456. for item in 0...self.datasource.count-1 {
  457. if self.datasource[item].fileId.contains(self.blinkocId!) {
  458. let indexPath = IndexPath(item: item, section: 0)
  459. self.collectionView.scrollToItem(at: indexPath, at: .top, animated: false)
  460. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  461. self.blinkocId = nil
  462. NCUtility.shared.blink(cell: self.collectionView.cellForItem(at: indexPath))
  463. }
  464. }
  465. }
  466. }
  467. }
  468. }
  469. @objc func loadListingTrash() {
  470. NCCommunication.shared.listingTrash(showHiddenFiles: false) { (account, items, errorCode, errorDescription) in
  471. self.refreshControl.endRefreshing()
  472. if errorCode == 0 && account == self.appDelegate.account {
  473. NCManageDatabase.sharedInstance.deleteTrash(filePath: self.path, account: self.appDelegate.account)
  474. NCManageDatabase.sharedInstance.addTrash(account: account, items: items)
  475. } else if errorCode != 0 {
  476. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  477. } else {
  478. print("[LOG] It has been changed user during networking process, error.")
  479. }
  480. self.reloadDataSource()
  481. }
  482. }
  483. func reloadDataThenPerform(_ closure: @escaping (() -> Void)) {
  484. CATransaction.begin()
  485. CATransaction.setCompletionBlock(closure)
  486. collectionView.reloadData()
  487. CATransaction.commit()
  488. }
  489. func restoreItem(with fileId: String) {
  490. guard let tableTrash = NCManageDatabase.sharedInstance.getTrashItem(fileId: fileId, account: appDelegate.account) else {
  491. return
  492. }
  493. let fileNameFrom = tableTrash.filePath + tableTrash.fileName
  494. let fileNameTo = appDelegate.urlBase + "/" + NCUtility.shared.getDAV() + "/trashbin/" + appDelegate.userID + "/restore/" + tableTrash.fileName
  495. NCCommunication.shared.moveFileOrFolder(serverUrlFileNameSource: fileNameFrom, serverUrlFileNameDestination: fileNameTo, overwrite: true) { (account, errorCode, errorDescription) in
  496. if errorCode == 0 && account == self.appDelegate.account {
  497. NCManageDatabase.sharedInstance.deleteTrash(fileId: fileId, account: account)
  498. self.reloadDataSource()
  499. } else if errorCode != 0 {
  500. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  501. } else {
  502. print("[LOG] It has been changed user during networking process, error.")
  503. }
  504. }
  505. }
  506. func emptyTrash() {
  507. let serverUrlFileName = appDelegate.urlBase + "/" + NCUtility.shared.getDAV() + "/trashbin/" + appDelegate.userID + "/trash"
  508. NCCommunication.shared.deleteFileOrFolder(serverUrlFileName) { (account, errorCode, errorDescription) in
  509. if errorCode == 0 && account == self.appDelegate.account {
  510. NCManageDatabase.sharedInstance.deleteTrash(fileId: nil, account: self.appDelegate.account)
  511. } else if errorCode != 0 {
  512. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  513. } else {
  514. print("[LOG] It has been changed user during networking process, error.")
  515. }
  516. self.reloadDataSource()
  517. }
  518. }
  519. func deleteItem(with fileId: String) {
  520. guard let tableTrash = NCManageDatabase.sharedInstance.getTrashItem(fileId: fileId, account: appDelegate.account) else {
  521. return
  522. }
  523. let serverUrlFileName = tableTrash.filePath + tableTrash.fileName
  524. NCCommunication.shared.deleteFileOrFolder(serverUrlFileName) { (account, errorCode, errorDescription) in
  525. if errorCode == 0 && account == self.appDelegate.account {
  526. NCManageDatabase.sharedInstance.deleteTrash(fileId: fileId, account: account)
  527. self.reloadDataSource()
  528. } else if errorCode != 0 {
  529. NCContentPresenter.shared.messageNotification("_error_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
  530. } else {
  531. print("[LOG] It has been changed user during networking process, error.")
  532. }
  533. }
  534. }
  535. func downloadThumbnail(with tableTrash: tableTrash, indexPath: IndexPath) {
  536. let fileNamePreviewLocalPath = CCUtility.getDirectoryProviderStoragePreviewOcId(tableTrash.fileId, etag: tableTrash.fileName)!
  537. let fileNameIconLocalPath = CCUtility.getDirectoryProviderStorageIconOcId(tableTrash.fileId, etag: tableTrash.fileName)!
  538. NCCommunication.shared.downloadPreview(fileNamePathOrFileId: tableTrash.fileId, fileNamePreviewLocalPath: fileNamePreviewLocalPath, widthPreview: Int(k_sizePreview), heightPreview: Int(k_sizePreview), fileNameIconLocalPath: fileNameIconLocalPath, sizeIcon: Int(k_sizeIcon), endpointTrashbin: true) { (account, imagePreview, imageIcon, errorCode, errorDescription) in
  539. if errorCode == 0 && imageIcon != nil && account == self.appDelegate.account {
  540. if let cell = self.collectionView.cellForItem(at: indexPath) {
  541. if cell is NCTrashListCell {
  542. (cell as! NCTrashListCell).imageItem.image = imageIcon
  543. } else if cell is NCGridCell {
  544. (cell as! NCGridCell).imageItem.image = imageIcon
  545. }
  546. }
  547. }
  548. }
  549. }
  550. }