NCTrash.swift 31 KB

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