NCTrash.swift 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718
  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 <m.faggiana@twsweb.it>
  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 Sheeeeeeeeet
  25. class NCTrash: UIViewController ,UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout, UIGestureRecognizerDelegate, NCTrashListCellDelegate, NCGridCellDelegate, NCTrashSectionHeaderMenuDelegate, DropdownMenuDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
  26. @IBOutlet fileprivate weak var collectionView: UICollectionView!
  27. var path = ""
  28. var titleCurrentFolder = NSLocalizedString("_trash_view_", comment: "")
  29. private let appDelegate = UIApplication.shared.delegate as! AppDelegate
  30. private var isEditMode = false
  31. private var selectFileID = [String]()
  32. private var datasource = [tableTrash]()
  33. private var typeLayout = ""
  34. private var datasourceSorted = ""
  35. private var datasourceAscending = true
  36. private var datasourceGroupBy = "none"
  37. private var datasourceDirectoryOnTop = false
  38. private var listLayout: NCListLayout!
  39. private var gridLayout: NCGridLayout!
  40. private var actionSheet: ActionSheet?
  41. private let highHeader: CGFloat = 50
  42. private let refreshControl = UIRefreshControl()
  43. override func viewDidLoad() {
  44. super.viewDidLoad()
  45. // Cell
  46. collectionView.register(UINib.init(nibName: "NCTrashListCell", bundle: nil), forCellWithReuseIdentifier: "listCell")
  47. collectionView.register(UINib.init(nibName: "NCGridCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  48. // Header - Footer
  49. collectionView.register(UINib.init(nibName: "NCTrashSectionHeaderMenu", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "sectionHeaderMenu")
  50. collectionView.register(UINib.init(nibName: "NCTrashSectionFooter", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "sectionFooter")
  51. collectionView.alwaysBounceVertical = true
  52. listLayout = NCListLayout()
  53. gridLayout = NCGridLayout()
  54. // Add Refresh Control
  55. if #available(iOS 10.0, *) {
  56. collectionView.refreshControl = refreshControl
  57. } else {
  58. collectionView.addSubview(refreshControl)
  59. }
  60. // Configure Refresh Control
  61. refreshControl.tintColor = NCBrandColor.sharedInstance.brandText
  62. refreshControl.backgroundColor = NCBrandColor.sharedInstance.brand
  63. refreshControl.addTarget(self, action: #selector(loadListingTrash), for: .valueChanged)
  64. // empty Data Source
  65. self.collectionView.emptyDataSetDelegate = self;
  66. self.collectionView.emptyDataSetSource = self;
  67. }
  68. override func viewWillAppear(_ animated: Bool) {
  69. super.viewWillAppear(animated)
  70. // Color
  71. appDelegate.aspectNavigationControllerBar(self.navigationController?.navigationBar, online: appDelegate.reachability.isReachable(), hidden: false)
  72. appDelegate.aspectTabBar(self.tabBarController?.tabBar, hidden: false)
  73. self.navigationItem.title = titleCurrentFolder
  74. (typeLayout, datasourceSorted, datasourceAscending, datasourceGroupBy, datasourceDirectoryOnTop) = NCUtility.sharedInstance.getLayoutForView(key: k_layout_view_trash)
  75. if typeLayout == k_layout_list {
  76. collectionView.collectionViewLayout = listLayout
  77. } else {
  78. collectionView.collectionViewLayout = gridLayout
  79. }
  80. loadDatasource()
  81. loadListingTrash()
  82. }
  83. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  84. super.viewWillTransition(to: size, with: coordinator)
  85. coordinator.animate(alongsideTransition: nil) { _ in
  86. self.collectionView.collectionViewLayout.invalidateLayout()
  87. self.actionSheet?.viewDidLayoutSubviews()
  88. }
  89. }
  90. // MARK: DZNEmpty
  91. func backgroundColor(forEmptyDataSet scrollView: UIScrollView) -> UIColor? {
  92. return NCBrandColor.sharedInstance.backgroundView
  93. }
  94. func image(forEmptyDataSet scrollView: UIScrollView) -> UIImage? {
  95. return CCGraphics.changeThemingColorImage(UIImage.init(named: "trashNoFiles"), multiplier: 2, color: NCBrandColor.sharedInstance.graySoft)
  96. }
  97. func title(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  98. let text = "\n"+NSLocalizedString("_trash_no_trash_", comment: "")
  99. let attributes = [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: 20), NSAttributedString.Key.foregroundColor: UIColor.lightGray]
  100. return NSAttributedString.init(string: text, attributes: attributes)
  101. }
  102. func description(forEmptyDataSet scrollView: UIScrollView) -> NSAttributedString? {
  103. let text = "\n"+NSLocalizedString("_trash_no_trash_description_", comment: "")
  104. let attributes = [NSAttributedString.Key.font: UIFont.systemFont(ofSize: 14), NSAttributedString.Key.foregroundColor: UIColor.lightGray]
  105. return NSAttributedString.init(string: text, attributes: attributes)
  106. }
  107. func emptyDataSetShouldAllowScroll(_ scrollView: UIScrollView) -> Bool {
  108. return true
  109. }
  110. // MARK: TAP EVENT
  111. func tapSwitchHeaderMenu(sender: Any) {
  112. if collectionView.collectionViewLayout == gridLayout {
  113. // list layout
  114. UIView.animate(withDuration: 0.0, animations: {
  115. self.collectionView.collectionViewLayout.invalidateLayout()
  116. self.collectionView.setCollectionViewLayout(self.listLayout, animated: false, completion: { (_) in
  117. self.collectionView.reloadData()
  118. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  119. })
  120. })
  121. typeLayout = k_layout_list
  122. NCUtility.sharedInstance.setLayoutForView(key: k_layout_view_trash, layout: typeLayout, sort: datasourceSorted, ascending: datasourceAscending, groupBy: datasourceGroupBy, directoryOnTop: datasourceDirectoryOnTop)
  123. } else {
  124. // grid layout
  125. UIView.animate(withDuration: 0.0, animations: {
  126. self.collectionView.collectionViewLayout.invalidateLayout()
  127. self.collectionView.setCollectionViewLayout(self.gridLayout, animated: false, completion: { (_) in
  128. self.collectionView.reloadData()
  129. self.collectionView.setContentOffset(CGPoint(x:0,y:0), animated: false)
  130. })
  131. })
  132. typeLayout = k_layout_grid
  133. NCUtility.sharedInstance.setLayoutForView(key: k_layout_view_trash, layout: typeLayout, sort: datasourceSorted, ascending: datasourceAscending, groupBy: datasourceGroupBy, directoryOnTop: datasourceDirectoryOnTop)
  134. }
  135. }
  136. func tapOrderHeaderMenu(sender: Any) {
  137. var menuView: DropdownMenu?
  138. var selectedRow = 0
  139. let item1 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortFileNameAZ"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_name_a_z_", comment: ""))
  140. let item2 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortFileNameZA"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_name_z_a_", comment: ""))
  141. let item3 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortDateMoreRecent"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_date_more_recent_", comment: ""))
  142. let item4 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortDateLessRecent"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_date_less_recent_", comment: ""))
  143. let item5 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortSmallest"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_size_smallest_", comment: ""))
  144. let item6 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "sortLargest"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_order_by_size_largest_", comment: ""))
  145. switch datasourceSorted {
  146. case "fileName":
  147. if datasourceAscending == true { item1.style = .highlight; selectedRow = 0 }
  148. if datasourceAscending == false { item2.style = .highlight; selectedRow = 1 }
  149. case "date":
  150. if datasourceAscending == false { item3.style = .highlight; selectedRow = 2 }
  151. if datasourceAscending == true { item4.style = .highlight; selectedRow = 3 }
  152. case "size":
  153. if datasourceAscending == true { item5.style = .highlight; selectedRow = 4 }
  154. if datasourceAscending == false { item6.style = .highlight; selectedRow = 5 }
  155. default:
  156. print("")
  157. }
  158. menuView = DropdownMenu(navigationController: self.navigationController!, items: [item1, item2, item3, item4, item5, item6], selectedRow: selectedRow)
  159. menuView?.token = "tapOrderHeaderMenu"
  160. menuView?.delegate = self
  161. menuView?.rowHeight = 45
  162. menuView?.highlightColor = NCBrandColor.sharedInstance.brand
  163. menuView?.tableView.alwaysBounceVertical = false
  164. menuView?.tableViewBackgroundColor = UIColor.white
  165. let header = (sender as? UIButton)?.superview as! NCTrashSectionHeaderMenu
  166. let headerRect = self.collectionView.convert(header.bounds, from: self.view)
  167. let menuOffsetY = headerRect.height - headerRect.origin.y - 2
  168. menuView?.topOffsetY = CGFloat(menuOffsetY)
  169. menuView?.showMenu()
  170. }
  171. func tapMoreHeaderMenu(sender: Any) {
  172. var menuView: DropdownMenu?
  173. if isEditMode {
  174. let item0 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedNo"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_cancel_", comment: ""))
  175. let item1 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "restore"), multiplier: 1, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_trash_restore_selected_", comment: ""))
  176. let item2 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "trash"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_trash_delete_selected_", comment: ""))
  177. menuView = DropdownMenu(navigationController: self.navigationController!, items: [item0, item1, item2], selectedRow: -1)
  178. menuView?.token = "tapMoreHeaderMenuSelect"
  179. } else {
  180. let item0 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "select"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_select_", comment: ""))
  181. let item1 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "restore"), multiplier: 1, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_trash_restore_all_", comment: ""))
  182. let item2 = DropdownItem(image: CCGraphics.changeThemingColorImage(UIImage.init(named: "trash"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), title: NSLocalizedString("_trash_delete_all_", comment: ""))
  183. menuView = DropdownMenu(navigationController: self.navigationController!, items: [item0, item1, item2], selectedRow: -1)
  184. menuView?.token = "tapMoreHeaderMenu"
  185. }
  186. menuView?.delegate = self
  187. menuView?.rowHeight = 45
  188. menuView?.highlightColor = NCBrandColor.sharedInstance.brand
  189. menuView?.tableView.alwaysBounceVertical = false
  190. menuView?.tableViewBackgroundColor = UIColor.white
  191. let header = (sender as? UIButton)?.superview as! NCTrashSectionHeaderMenu
  192. let headerRect = self.collectionView.convert(header.bounds, from: self.view)
  193. let menuOffsetY = headerRect.height - headerRect.origin.y - 2
  194. menuView?.topOffsetY = CGFloat(menuOffsetY)
  195. menuView?.showMenu()
  196. }
  197. func tapRestoreListItem(with fileID: String, sender: Any) {
  198. if !isEditMode {
  199. restoreItem(with: fileID)
  200. } else {
  201. let buttonPosition:CGPoint = (sender as! UIButton).convert(CGPoint.zero, to:collectionView)
  202. let indexPath = collectionView.indexPathForItem(at: buttonPosition)
  203. collectionView(self.collectionView, didSelectItemAt: indexPath!)
  204. }
  205. }
  206. func tapMoreListItem(with fileID: String, sender: Any) {
  207. if !isEditMode {
  208. var items = [ActionSheetItem]()
  209. items.append(ActionSheetDangerButton(title: NSLocalizedString("_delete_", comment: "")))
  210. items.append(ActionSheetCancelButton(title: NSLocalizedString("_cancel_", comment: "")))
  211. actionSheet = ActionSheet(items: items) { sheet, item in
  212. if item is ActionSheetDangerButton { self.deleteItem(with: fileID) }
  213. if item is ActionSheetCancelButton { print("Cancel buttons has the value `true`") }
  214. }
  215. guard let tableTrash = NCManageDatabase.sharedInstance.getTrashItem(fileID: fileID) else {
  216. return
  217. }
  218. let headerView = NCActionSheetHeader.sharedInstance.actionSheetHeader(isDirectory: tableTrash.directory, iconName: tableTrash.iconName, fileID: tableTrash.fileID, fileNameView: tableTrash.fileName, text: tableTrash.trashbinFileName)
  219. actionSheet?.headerView = headerView
  220. actionSheet?.headerView?.frame.size.height = 50
  221. actionSheet?.present(in: self, from: sender as! UIButton)
  222. } else {
  223. let buttonPosition:CGPoint = (sender as! UIButton).convert(CGPoint.zero, to:collectionView)
  224. let indexPath = collectionView.indexPathForItem(at: buttonPosition)
  225. collectionView(self.collectionView, didSelectItemAt: indexPath!)
  226. }
  227. }
  228. func tapMoreGridItem(with fileID: String, sender: Any) {
  229. if !isEditMode {
  230. var items = [ActionSheetItem]()
  231. let appearanceDelete = ActionSheetItemAppearance.init()
  232. appearanceDelete.textColor = UIColor.red
  233. items.append(ActionSheetItem(title: NSLocalizedString("_restore_", comment: ""), value: 0, image: CCGraphics.changeThemingColorImage(UIImage.init(named: "restore"), multiplier: 1, color: NCBrandColor.sharedInstance.icon)))
  234. let itemDelete = ActionSheetItem(title: NSLocalizedString("_delete_", comment: ""), value: 1, image: CCGraphics.changeThemingColorImage(UIImage.init(named: "trash"), multiplier: 2, color: UIColor.red))
  235. itemDelete.customAppearance = appearanceDelete
  236. items.append(itemDelete)
  237. items.append(ActionSheetCancelButton(title: NSLocalizedString("_cancel_", comment: "")))
  238. actionSheet = ActionSheet(items: items) { sheet, item in
  239. if item.value as? Int == 0 { self.restoreItem(with: fileID) }
  240. if item.value as? Int == 1 { self.deleteItem(with: fileID) }
  241. if item is ActionSheetCancelButton { print("Cancel buttons has the value `true`") }
  242. }
  243. guard let tableTrash = NCManageDatabase.sharedInstance.getTrashItem(fileID: fileID) else {
  244. return
  245. }
  246. let headerView = NCActionSheetHeader.sharedInstance.actionSheetHeader(isDirectory: tableTrash.directory, iconName: tableTrash.iconName, fileID: tableTrash.fileID, fileNameView: tableTrash.fileName, text: tableTrash.trashbinFileName)
  247. actionSheet?.headerView = headerView
  248. actionSheet?.headerView?.frame.size.height = 50
  249. actionSheet?.present(in: self, from: sender as! UIButton)
  250. } else {
  251. let buttonPosition:CGPoint = (sender as! UIButton).convert(CGPoint.zero, to:collectionView)
  252. let indexPath = collectionView.indexPathForItem(at: buttonPosition)
  253. collectionView(self.collectionView, didSelectItemAt: indexPath!)
  254. }
  255. }
  256. // MARK: DROP-DOWN-MENU
  257. func dropdownMenu(_ dropdownMenu: DropdownMenu, didSelectRowAt indexPath: IndexPath) {
  258. if dropdownMenu.token == "tapOrderHeaderMenu" {
  259. switch indexPath.row {
  260. case 0: datasourceSorted = "fileName"; datasourceAscending = true
  261. case 1: datasourceSorted = "fileName"; datasourceAscending = false
  262. case 2: datasourceSorted = "date"; datasourceAscending = false
  263. case 3: datasourceSorted = "date"; datasourceAscending = true
  264. case 4: datasourceSorted = "size"; datasourceAscending = true
  265. case 5: datasourceSorted = "size"; datasourceAscending = false
  266. default: print("")
  267. }
  268. NCUtility.sharedInstance.setLayoutForView(key: k_layout_view_trash, layout: typeLayout, sort: datasourceSorted, ascending: datasourceAscending, groupBy: datasourceGroupBy, directoryOnTop: datasourceDirectoryOnTop)
  269. loadDatasource()
  270. }
  271. if dropdownMenu.token == "tapMoreHeaderMenu" {
  272. // Select
  273. if indexPath.row == 0 {
  274. isEditMode = true
  275. collectionView.reloadData()
  276. }
  277. // Restore ALL
  278. if indexPath.row == 1 {
  279. for record: tableTrash in self.datasource {
  280. restoreItem(with: record.fileID)
  281. }
  282. }
  283. // Delete ALL
  284. if indexPath.row == 2 {
  285. var items = [ActionSheetItem]()
  286. items.append(ActionSheetTitle(title: NSLocalizedString("_trash_delete_all_", comment: "")))
  287. items.append(ActionSheetDangerButton(title: NSLocalizedString("_delete_", comment: "")))
  288. items.append(ActionSheetCancelButton(title: NSLocalizedString("_cancel_", comment: "")))
  289. actionSheet = ActionSheet(items: items) { sheet, item in
  290. if item is ActionSheetDangerButton {
  291. for record: tableTrash in self.datasource {
  292. self.deleteItem(with: record.fileID)
  293. }
  294. }
  295. if item is ActionSheetCancelButton { return }
  296. }
  297. actionSheet?.present(in: self, from: self.view)
  298. }
  299. }
  300. if dropdownMenu.token == "tapMoreHeaderMenuSelect" {
  301. // Cancel
  302. if indexPath.row == 0 {
  303. isEditMode = false
  304. selectFileID.removeAll()
  305. collectionView.reloadData()
  306. }
  307. // Restore selected files
  308. if indexPath.row == 1 {
  309. for fileID in selectFileID {
  310. restoreItem(with: fileID)
  311. }
  312. isEditMode = false
  313. selectFileID.removeAll()
  314. collectionView.reloadData()
  315. }
  316. // Delete selected files
  317. if indexPath.row == 2 {
  318. var items = [ActionSheetItem]()
  319. items.append(ActionSheetTitle(title: NSLocalizedString("_trash_delete_selected_", comment: "")))
  320. items.append(ActionSheetDangerButton(title: NSLocalizedString("_delete_", comment: "")))
  321. items.append(ActionSheetCancelButton(title: NSLocalizedString("_cancel_", comment: "")))
  322. actionSheet = ActionSheet(items: items) { sheet, item in
  323. if item is ActionSheetDangerButton {
  324. for fileID in self.selectFileID {
  325. self.deleteItem(with: fileID)
  326. }
  327. self.isEditMode = false
  328. self.selectFileID.removeAll()
  329. self.collectionView.reloadData()
  330. }
  331. if item is ActionSheetCancelButton { return }
  332. }
  333. actionSheet?.present(in: self, from: self.view)
  334. }
  335. }
  336. }
  337. /*
  338. func dropdownMenuWillDismiss(_ dropdownMenu: DropdownMenu) {
  339. if dropdownMenu.token == "tapOrderHeaderMenu" {
  340. let trashHeader = collectionView.supplementaryView(forElementKind: UICollectionView.elementKindSectionHeader, at: IndexPath(row: 0, section: 0)) as! NCTrashHeaderMenu
  341. let title = String(trashHeader.buttonOrder.title(for: .normal)!.dropLast()) + "▽"
  342. trashHeader.buttonOrder.setTitle(title, for: .normal)
  343. }
  344. }
  345. func dropdownMenuWillShow(_ dropdownMenu: DropdownMenu) {
  346. if dropdownMenu.token == "tapOrderHeaderMenu" {
  347. let trashHeader = collectionView.supplementaryView(forElementKind: UICollectionView.elementKindSectionHeader, at: IndexPath(row: 0, section: 0)) as! NCTrashHeaderMenu
  348. let title = String(trashHeader.buttonOrder.title(for: .normal)!.dropLast()) + "△"
  349. trashHeader.buttonOrder.setTitle(title, for: .normal)
  350. }
  351. }
  352. */
  353. // MARK: NC API
  354. @objc func loadListingTrash() {
  355. let ocNetworking = OCnetworking.init(delegate: self, metadataNet: nil, withUser: appDelegate.activeUser, withUserID: appDelegate.activeUserID, withPassword: appDelegate.activePassword, withUrl: appDelegate.activeUrl)
  356. ocNetworking?.listingTrash(appDelegate.activeUrl, path:path, account: appDelegate.activeAccount, success: { (item) in
  357. self.refreshControl.endRefreshing()
  358. NCManageDatabase.sharedInstance.deleteTrash(filePath: self.path)
  359. NCManageDatabase.sharedInstance.addTrashs(item as! [tableTrash])
  360. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  361. self.loadDatasource()
  362. }
  363. }, failure: { (message, errorCode) in
  364. self.refreshControl.endRefreshing()
  365. print("error " + message!)
  366. })
  367. }
  368. func restoreItem(with fileID: String) {
  369. guard let tableTrash = NCManageDatabase.sharedInstance.getTrashItem(fileID: fileID) else {
  370. return
  371. }
  372. let ocNetworking = OCnetworking.init(delegate: self, metadataNet: nil, withUser: appDelegate.activeUser, withUserID: appDelegate.activeUserID, withPassword: appDelegate.activePassword, withUrl: appDelegate.activeUrl)
  373. let fileName = appDelegate.activeUrl + tableTrash.filePath + tableTrash.fileName
  374. let fileNameTo = appDelegate.activeUrl + k_dav + "/trashbin/" + appDelegate.activeUserID + "/restore/" + tableTrash.fileName
  375. ocNetworking?.moveFileOrFolder(fileName, fileNameTo: fileNameTo, success: {
  376. NCManageDatabase.sharedInstance.deleteTrash(fileID: fileID)
  377. self.loadDatasource()
  378. }, failure: { (message, errorCode) in
  379. self.appDelegate.messageNotification("_error_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  380. })
  381. }
  382. func deleteItem(with fileID: String) {
  383. guard let tableTrash = NCManageDatabase.sharedInstance.getTrashItem(fileID: fileID) else {
  384. return
  385. }
  386. let ocNetworking = OCnetworking.init(delegate: self, metadataNet: nil, withUser: appDelegate.activeUser, withUserID: appDelegate.activeUserID, withPassword: appDelegate.activePassword, withUrl: appDelegate.activeUrl)
  387. let path = appDelegate.activeUrl + tableTrash.filePath + tableTrash.fileName
  388. ocNetworking?.deleteFileOrFolder(path, completion: { (message, errorCode) in
  389. if errorCode == 0 {
  390. NCManageDatabase.sharedInstance.deleteTrash(fileID: fileID)
  391. self.loadDatasource()
  392. } else {
  393. self.appDelegate.messageNotification("_error_", description: message, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: errorCode)
  394. }
  395. })
  396. }
  397. func downloadThumbnail(with tableTrash: tableTrash, indexPath: IndexPath) {
  398. let ocNetworking = OCnetworking.init(delegate: self, metadataNet: nil, withUser: appDelegate.activeUser, withUserID: appDelegate.activeUserID, withPassword: appDelegate.activePassword, withUrl: appDelegate.activeUrl)
  399. ocNetworking?.downloadPreviewTrash(withFileID: tableTrash.fileID, fileName: tableTrash.fileName, completion: { (message, errorCode) in
  400. if errorCode == 0 && CCUtility.fileProviderStorageIconExists(tableTrash.fileID, fileNameView: tableTrash.fileName) {
  401. self.collectionView.reloadItems(at: [indexPath])
  402. }
  403. })
  404. }
  405. // MARK: DATASOURCE
  406. @objc func loadDatasource() {
  407. datasource.removeAll()
  408. if path == "" {
  409. let userID = (appDelegate.activeUserID as NSString).addingPercentEncoding(withAllowedCharacters: NSCharacterSet.urlFragmentAllowed)
  410. path = k_dav + "/trashbin/" + userID! + "/trash/"
  411. }
  412. guard let tashItems = NCManageDatabase.sharedInstance.getTrash(filePath: path, sorted: datasourceSorted, ascending: datasourceAscending) else {
  413. return
  414. }
  415. datasource = tashItems
  416. collectionView.reloadData()
  417. }
  418. // MARK: COLLECTIONVIEW METHODS
  419. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  420. if kind == UICollectionView.elementKindSectionHeader {
  421. let trashHeader = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionHeaderMenu", for: indexPath) as! NCTrashSectionHeaderMenu
  422. if collectionView.collectionViewLayout == gridLayout {
  423. trashHeader.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  424. } else {
  425. trashHeader.buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchGrid"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  426. }
  427. trashHeader.delegate = self
  428. trashHeader.setStatusButton(datasource: datasource)
  429. trashHeader.setTitleOrder(datasourceSorted: datasourceSorted, datasourceAscending: datasourceAscending)
  430. return trashHeader
  431. } else {
  432. let trashFooter = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "sectionFooter", for: indexPath) as! NCTrashSectionFooter
  433. trashFooter.setTitleLabelFooter(datasource: datasource)
  434. return trashFooter
  435. }
  436. }
  437. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  438. return CGSize(width: collectionView.frame.width, height: highHeader)
  439. }
  440. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  441. return CGSize(width: collectionView.frame.width, height: highHeader)
  442. }
  443. func numberOfSections(in collectionView: UICollectionView) -> Int {
  444. return 1
  445. }
  446. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  447. return datasource.count
  448. }
  449. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  450. let tableTrash = datasource[indexPath.item]
  451. var image: UIImage?
  452. if tableTrash.iconName.count > 0 {
  453. image = UIImage.init(named: tableTrash.iconName)
  454. } else {
  455. image = UIImage.init(named: "file")
  456. }
  457. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconFileID(tableTrash.fileID, fileNameView: tableTrash.fileName)) {
  458. image = UIImage.init(contentsOfFile: CCUtility.getDirectoryProviderStorageIconFileID(tableTrash.fileID, fileNameView: tableTrash.fileName))
  459. } else {
  460. if tableTrash.hasPreview == 1 && !CCUtility.fileProviderStorageIconExists(tableTrash.fileID, fileNameView: tableTrash.fileName) {
  461. downloadThumbnail(with: tableTrash, indexPath: indexPath)
  462. }
  463. }
  464. if collectionView.collectionViewLayout == listLayout {
  465. // LIST
  466. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "listCell", for: indexPath) as! NCTrashListCell
  467. cell.delegate = self
  468. cell.fileID = tableTrash.fileID
  469. cell.indexPath = indexPath
  470. cell.labelTitle.text = tableTrash.trashbinFileName
  471. if tableTrash.directory {
  472. cell.imageItem.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  473. cell.labelInfo.text = CCUtility.dateDiff(tableTrash.date as Date)
  474. } else {
  475. cell.imageItem.image = image
  476. cell.labelInfo.text = CCUtility.dateDiff(tableTrash.date as Date) + " " + CCUtility.transformedSize(tableTrash.size)
  477. }
  478. if isEditMode {
  479. cell.imageItemLeftConstraint.constant = 45
  480. cell.imageSelect.isHidden = false
  481. if selectFileID.contains(tableTrash.fileID) {
  482. cell.imageSelect.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedYes"), multiplier: 2, color: NCBrandColor.sharedInstance.brand)
  483. cell.backgroundView = NCUtility.sharedInstance.cellBlurEffect(with: cell.bounds)
  484. } else {
  485. cell.imageSelect.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedNo"), multiplier: 2, color: NCBrandColor.sharedInstance.optionItem)
  486. cell.backgroundView = nil
  487. }
  488. } else {
  489. cell.imageItemLeftConstraint.constant = 10
  490. cell.imageSelect.isHidden = true
  491. cell.backgroundView = nil
  492. }
  493. return cell
  494. } else {
  495. // GRID
  496. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridCell
  497. cell.delegate = self
  498. cell.fileID = tableTrash.fileID
  499. cell.indexPath = indexPath
  500. cell.labelTitle.text = tableTrash.trashbinFileName
  501. if tableTrash.directory {
  502. cell.imageItem.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "folder"), multiplier: 3, color: NCBrandColor.sharedInstance.brandElement)
  503. } else {
  504. cell.imageItem.image = image
  505. }
  506. if isEditMode {
  507. cell.imageSelect.isHidden = false
  508. if selectFileID.contains(tableTrash.fileID) {
  509. cell.imageSelect.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "checkedYes"), multiplier: 2, color: UIColor.white)
  510. cell.backgroundView = NCUtility.sharedInstance.cellBlurEffect(with: cell.bounds)
  511. } else {
  512. cell.imageSelect.isHidden = true
  513. cell.backgroundView = nil
  514. }
  515. } else {
  516. cell.imageSelect.isHidden = true
  517. cell.backgroundView = nil
  518. }
  519. return cell
  520. }
  521. }
  522. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  523. let tableTrash = datasource[indexPath.item]
  524. if isEditMode {
  525. if let index = selectFileID.index(of: tableTrash.fileID) {
  526. selectFileID.remove(at: index)
  527. } else {
  528. selectFileID.append(tableTrash.fileID)
  529. }
  530. collectionView.reloadItems(at: [indexPath])
  531. return
  532. }
  533. if tableTrash.directory {
  534. let ncTrash:NCTrash = UIStoryboard(name: "NCTrash", bundle: nil).instantiateInitialViewController() as! NCTrash
  535. ncTrash.path = tableTrash.filePath + tableTrash.fileName
  536. ncTrash.titleCurrentFolder = tableTrash.trashbinFileName
  537. self.navigationController?.pushViewController(ncTrash, animated: true)
  538. }
  539. }
  540. }