NCMedia.swift 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843
  1. //
  2. // NCMedia.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 12/02/2019.
  6. // Copyright © 2019 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import UIKit
  24. import NCCommunication
  25. class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
  26. @IBOutlet weak var collectionView : UICollectionView!
  27. private var emptyDataSet: NCEmptyDataSet?
  28. private var mediaCommandView: NCMediaCommandView?
  29. private var gridLayout: NCGridMediaLayout!
  30. internal let appDelegate = UIApplication.shared.delegate as! AppDelegate
  31. public var metadatas: [tableMetadata] = []
  32. private var account: String = ""
  33. private var predicateDefault: NSPredicate?
  34. private var predicate: NSPredicate?
  35. internal var isEditMode = false
  36. internal var selectOcId: [String] = []
  37. internal var filterClassTypeImage = false
  38. internal var filterClassTypeVideo = false
  39. private let maxImageGrid: CGFloat = 7
  40. private var cellHeigth: CGFloat = 0
  41. private var oldInProgress = false
  42. private var newInProgress = false
  43. private var lastContentOffsetY: CGFloat = 0
  44. private var mediaPath = ""
  45. private var livePhoto: Bool = false
  46. private var timeIntervalSearchNewMedia: TimeInterval = 3.0
  47. private var timerSearchNewMedia: Timer?
  48. private let insetsTop: CGFloat = 75
  49. struct cacheImages {
  50. static var cellLivePhotoImage = UIImage()
  51. static var cellPlayImage = UIImage()
  52. }
  53. // MARK: - View Life Cycle
  54. override func viewDidLoad() {
  55. super.viewDidLoad()
  56. appDelegate.activeMedia = self
  57. view.backgroundColor = NCBrandColor.shared.systemBackground
  58. collectionView.register(UINib.init(nibName: "NCGridMediaCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  59. collectionView.alwaysBounceVertical = true
  60. collectionView.contentInset = UIEdgeInsets(top: insetsTop, left: 0, bottom: 50, right: 0);
  61. collectionView.backgroundColor = NCBrandColor.shared.systemBackground
  62. collectionView.bounces = false
  63. gridLayout = NCGridMediaLayout()
  64. gridLayout.itemForLine = CGFloat(min(CCUtility.getMediaWidthImage(), 5))
  65. gridLayout.sectionHeadersPinToVisibleBounds = true
  66. collectionView.collectionViewLayout = gridLayout
  67. // Empty
  68. emptyDataSet = NCEmptyDataSet.init(view: collectionView, offset: 0, delegate: self)
  69. // Notification
  70. NotificationCenter.default.addObserver(self, selector: #selector(initialize), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterInitialize), object: nil)
  71. mediaCommandView = Bundle.main.loadNibNamed("NCMediaCommandView", owner: self, options: nil)?.first as? NCMediaCommandView
  72. self.view.addSubview(mediaCommandView!)
  73. mediaCommandView?.mediaView = self
  74. mediaCommandView?.zoomInButton.isEnabled = !(gridLayout.itemForLine == 1)
  75. mediaCommandView?.zoomOutButton.isEnabled = !(gridLayout.itemForLine == maxImageGrid - 1)
  76. mediaCommandView?.collapseControlButtonView(true)
  77. mediaCommandView?.translatesAutoresizingMaskIntoConstraints = false
  78. mediaCommandView?.topAnchor.constraint(equalTo: view.topAnchor, constant: 0).isActive = true
  79. mediaCommandView?.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
  80. mediaCommandView?.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: 0).isActive = true
  81. mediaCommandView?.heightAnchor.constraint(equalToConstant: 150).isActive = true
  82. self.updateMediaControlVisibility()
  83. collectionView.prefetchDataSource = self
  84. cacheImages.cellLivePhotoImage = NCUtility.shared.loadImage(named: "livephoto", color: .white)
  85. cacheImages.cellPlayImage = NCUtility.shared.loadImage(named: "play.fill", color: .white)
  86. }
  87. override func viewWillAppear(_ animated: Bool) {
  88. super.viewWillAppear(animated)
  89. appDelegate.activeViewController = self
  90. //
  91. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
  92. NotificationCenter.default.addObserver(self, selector: #selector(moveFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
  93. NotificationCenter.default.addObserver(self, selector: #selector(renameFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
  94. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
  95. // hide nagigation controller
  96. navigationController?.navigationBar.prefersLargeTitles = true
  97. navigationController?.setNavigationBarHidden(true, animated: false)
  98. self.reloadDataSourceWithCompletion { (_) in
  99. self.timerSearchNewMedia?.invalidate()
  100. self.timerSearchNewMedia = Timer.scheduledTimer(timeInterval: self.timeIntervalSearchNewMedia, target: self, selector: #selector(self.searchNewMediaTimer), userInfo: nil, repeats: false)
  101. }
  102. }
  103. override func viewWillDisappear(_ animated: Bool) {
  104. super.viewWillDisappear(animated)
  105. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
  106. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
  107. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
  108. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
  109. }
  110. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  111. super.viewWillTransition(to: size, with: coordinator)
  112. coordinator.animate(alongsideTransition: nil) { _ in
  113. self.reloadDataThenPerform { }
  114. }
  115. }
  116. override var preferredStatusBarStyle: UIStatusBarStyle {
  117. return .lightContent
  118. }
  119. //MARK: - NotificationCenter
  120. @objc func initialize() {
  121. self.reloadDataSourceWithCompletion { (_) in
  122. self.timerSearchNewMedia?.invalidate()
  123. self.timerSearchNewMedia = Timer.scheduledTimer(timeInterval: self.timeIntervalSearchNewMedia, target: self, selector: #selector(self.searchNewMediaTimer), userInfo: nil, repeats: false)
  124. DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) {
  125. self.mediaCommandTitle()
  126. }
  127. }
  128. }
  129. @objc func deleteFile(_ notification: NSNotification) {
  130. if let userInfo = notification.userInfo as NSDictionary? {
  131. if let ocId = userInfo["ocId"] as? String {
  132. let indexes = self.metadatas.indices.filter { self.metadatas[$0].ocId == ocId }
  133. let metadatas = self.metadatas.filter { $0.ocId != ocId }
  134. self.metadatas = metadatas
  135. if self.metadatas.count == 0 {
  136. collectionView?.reloadData()
  137. } else if let row = indexes.first {
  138. let indexPath = IndexPath(row: row, section: 0)
  139. collectionView?.deleteItems(at: [indexPath])
  140. }
  141. self.updateMediaControlVisibility()
  142. }
  143. }
  144. }
  145. @objc func moveFile(_ notification: NSNotification) {
  146. if let userInfo = notification.userInfo as NSDictionary? {
  147. if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  148. if metadata.account == appDelegate.account {
  149. let indexes = self.metadatas.indices.filter { self.metadatas[$0].ocId == metadata.ocId }
  150. let metadatas = self.metadatas.filter { $0.ocId != metadata.ocId }
  151. self.metadatas = metadatas
  152. if self.metadatas.count == 0 {
  153. collectionView?.reloadData()
  154. } else if let row = indexes.first {
  155. let indexPath = IndexPath(row: row, section: 0)
  156. collectionView?.deleteItems(at: [indexPath])
  157. }
  158. self.updateMediaControlVisibility()
  159. }
  160. }
  161. }
  162. }
  163. @objc func renameFile(_ notification: NSNotification) {
  164. if let userInfo = notification.userInfo as NSDictionary? {
  165. if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  166. if metadata.account == appDelegate.account {
  167. self.reloadDataSourceWithCompletion { (_) in }
  168. }
  169. }
  170. }
  171. }
  172. @objc func uploadedFile(_ notification: NSNotification) {
  173. if let userInfo = notification.userInfo as NSDictionary? {
  174. if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId), let errorCode = userInfo["errorCode"] as? Int {
  175. if errorCode == 0 && metadata.account == appDelegate.account {
  176. self.reloadDataSourceWithCompletion { (_) in }
  177. }
  178. }
  179. }
  180. }
  181. //MARK: - Command
  182. func mediaCommandTitle() {
  183. mediaCommandView?.title.text = ""
  184. if let visibleCells = self.collectionView?.indexPathsForVisibleItems.sorted(by: { $0.row < $1.row }).compactMap({ self.collectionView?.cellForItem(at: $0) }) {
  185. if let cell = visibleCells.first as? NCGridMediaCell {
  186. if cell.date != nil {
  187. mediaCommandView?.title.text = CCUtility.getTitleSectionDate(cell.date)
  188. }
  189. }
  190. }
  191. }
  192. @objc func zoomOutGrid() {
  193. UIView.animate(withDuration: 0.0, animations: {
  194. if(self.gridLayout.itemForLine + 1 < self.maxImageGrid) {
  195. self.gridLayout.itemForLine += 1
  196. self.mediaCommandView?.zoomInButton.isEnabled = true
  197. }
  198. if(self.gridLayout.itemForLine == self.maxImageGrid - 1) {
  199. self.mediaCommandView?.zoomOutButton.isEnabled = false
  200. }
  201. self.collectionView.collectionViewLayout.invalidateLayout()
  202. CCUtility.setMediaWidthImage(Int(self.gridLayout.itemForLine))
  203. })
  204. }
  205. @objc func zoomInGrid() {
  206. UIView.animate(withDuration: 0.0, animations: {
  207. if(self.gridLayout.itemForLine - 1 > 0) {
  208. self.gridLayout.itemForLine -= 1
  209. self.mediaCommandView?.zoomOutButton.isEnabled = true
  210. }
  211. if(self.gridLayout.itemForLine == 1) {
  212. self.mediaCommandView?.zoomInButton.isEnabled = false
  213. }
  214. self.collectionView.collectionViewLayout.invalidateLayout()
  215. CCUtility.setMediaWidthImage(Int(self.gridLayout.itemForLine))
  216. })
  217. }
  218. @objc func openMenuButtonMore(_ sender: Any) {
  219. toggleMenu()
  220. }
  221. // MARK: Select Path
  222. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], overwrite: Bool, copy: Bool, move: Bool) {
  223. if serverUrl != nil {
  224. let path = CCUtility.returnPathfromServerUrl(serverUrl, urlBase: appDelegate.urlBase, account: appDelegate.account) ?? ""
  225. NCManageDatabase.shared.setAccountMediaPath(path, account: appDelegate.account)
  226. reloadDataSourceWithCompletion { (_) in
  227. self.searchNewMedia()
  228. }
  229. }
  230. }
  231. // MARK: - Empty
  232. func emptyDataSetView(_ view: NCEmptyView) {
  233. view.emptyImage.image = UIImage.init(named: "media")?.image(color: .gray, size: UIScreen.main.bounds.width)
  234. if oldInProgress || newInProgress {
  235. view.emptyTitle.text = NSLocalizedString("_search_in_progress_", comment: "")
  236. } else {
  237. view.emptyTitle.text = NSLocalizedString("_tutorial_photo_view_", comment: "")
  238. }
  239. view.emptyDescription.text = ""
  240. }
  241. }
  242. // MARK: - Collection View
  243. extension NCMedia: UICollectionViewDelegate {
  244. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  245. let metadata = metadatas[indexPath.row]
  246. if isEditMode {
  247. if let index = selectOcId.firstIndex(of: metadata.ocId) {
  248. selectOcId.remove(at: index)
  249. } else {
  250. selectOcId.append(metadata.ocId)
  251. }
  252. if indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) {
  253. collectionView.reloadItems(at: [indexPath])
  254. }
  255. } else {
  256. // ACTIVE SERVERURL
  257. appDelegate.activeServerUrl = metadata.serverUrl
  258. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as? NCGridMediaCell
  259. NCViewer.shared.view(viewController: self, metadata: metadata, metadatas: metadatas, imageIcon: cell?.imageItem.image)
  260. }
  261. }
  262. @available(iOS 13.0, *)
  263. func collectionView(_ collectionView: UICollectionView, contextMenuConfigurationForItemAt indexPath: IndexPath, point: CGPoint) -> UIContextMenuConfiguration? {
  264. let metadata = metadatas[indexPath.row]
  265. let identifier = indexPath as NSCopying
  266. if let cell = collectionView.cellForItem(at: indexPath) as? NCGridMediaCell {
  267. let image = cell.imageItem.image
  268. return UIContextMenuConfiguration(identifier: identifier, previewProvider: {
  269. return NCViewerProviderContextMenu(metadata: metadata, image: image)
  270. }, actionProvider: { suggestedActions in
  271. return NCFunctionCenter.shared.contextMenuConfiguration(ocId: metadata.ocId, viewController: self, enableDeleteLocal: false, enableViewInFolder: true, image: image)
  272. })
  273. } else {
  274. return nil
  275. }
  276. }
  277. @available(iOS 13.0, *)
  278. func collectionView(_ collectionView: UICollectionView, willPerformPreviewActionForMenuWith configuration: UIContextMenuConfiguration, animator: UIContextMenuInteractionCommitAnimating) {
  279. animator.addCompletion {
  280. if let indexPath = configuration.identifier as? IndexPath {
  281. self.collectionView(collectionView, didSelectItemAt: indexPath)
  282. }
  283. }
  284. }
  285. }
  286. extension NCMedia: UICollectionViewDataSourcePrefetching {
  287. func collectionView(_ collectionView: UICollectionView, prefetchItemsAt indexPaths: [IndexPath]) {
  288. //print("[LOG] n. " + String(indexPaths.count))
  289. }
  290. }
  291. extension NCMedia: UICollectionViewDataSource {
  292. func reloadDataThenPerform(_ closure: @escaping (() -> Void)) {
  293. CATransaction.begin()
  294. CATransaction.setCompletionBlock(closure)
  295. collectionView?.reloadData()
  296. CATransaction.commit()
  297. }
  298. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  299. emptyDataSet?.numberOfItemsInSection(metadatas.count, section: section)
  300. return metadatas.count
  301. }
  302. func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
  303. if indexPath.row < self.metadatas.count {
  304. let metadata = self.metadatas[indexPath.row]
  305. if FileManager().fileExists(atPath: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  306. (cell as! NCGridMediaCell).imageItem.backgroundColor = nil
  307. (cell as! NCGridMediaCell).imageItem.image = UIImage.init(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag))
  308. } else {
  309. NCOperationQueue.shared.downloadThumbnail(metadata: metadata, placeholder: false, cell: cell, view: collectionView)
  310. }
  311. }
  312. }
  313. func collectionView(_ collectionView: UICollectionView, didEndDisplaying cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
  314. if !collectionView.indexPathsForVisibleItems.contains(indexPath) && indexPath.row < metadatas.count {
  315. let metadata = metadatas[indexPath.row]
  316. NCOperationQueue.shared.cancelDownloadThumbnail(metadata: metadata)
  317. }
  318. }
  319. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  320. if indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) && indexPath.row < metadatas.count {
  321. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridMediaCell
  322. let metadata = metadatas[indexPath.row]
  323. self.cellHeigth = cell.frame.size.height
  324. cell.date = metadata.date as Date
  325. cell.fileObjectId = metadata.ocId
  326. cell.fileUser = metadata.ownerId
  327. if metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  328. cell.imageStatus.image = cacheImages.cellPlayImage
  329. } else if metadata.livePhoto && livePhoto {
  330. cell.imageStatus.image = cacheImages.cellLivePhotoImage
  331. }
  332. if isEditMode {
  333. cell.selectMode(true)
  334. if selectOcId.contains(metadata.ocId) {
  335. cell.selected(true)
  336. } else {
  337. cell.selected(false)
  338. }
  339. } else {
  340. cell.selectMode(false)
  341. }
  342. return cell
  343. } else {
  344. return collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as! NCGridMediaCell
  345. }
  346. }
  347. }
  348. extension NCMedia: UICollectionViewDelegateFlowLayout {
  349. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  350. return CGSize(width: collectionView.frame.width, height: 0)
  351. }
  352. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  353. return CGSize(width: collectionView.frame.width, height: 0)
  354. }
  355. }
  356. extension NCMedia {
  357. // MARK: - Datasource
  358. @objc func reloadDataSourceWithCompletion(_ completion: @escaping (_ metadatas: [tableMetadata]) -> Void) {
  359. if appDelegate.account == "" { return }
  360. if account != appDelegate.account {
  361. self.metadatas = []
  362. account = appDelegate.account
  363. collectionView?.reloadData()
  364. }
  365. livePhoto = CCUtility.getLivePhoto()
  366. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  367. self.mediaPath = activeAccount.mediaPath
  368. }
  369. let startServerUrl = NCUtilityFileSystem.shared.getHomeServer(account: appDelegate.account) + mediaPath
  370. predicateDefault = NSPredicate(format: "account == %@ AND serverUrl BEGINSWITH %@ AND (classFile == %@ OR classFile == %@) AND NOT (session CONTAINS[c] 'upload')", appDelegate.account, startServerUrl, NCCommunicationCommon.typeClassFile.image.rawValue, NCCommunicationCommon.typeClassFile.video.rawValue)
  371. if filterClassTypeImage {
  372. predicate = NSPredicate(format: "account == %@ AND serverUrl BEGINSWITH %@ AND classFile == %@ AND NOT (session CONTAINS[c] 'upload')", appDelegate.account, startServerUrl, NCCommunicationCommon.typeClassFile.video.rawValue)
  373. } else if filterClassTypeVideo {
  374. predicate = NSPredicate(format: "account == %@ AND serverUrl BEGINSWITH %@ AND classFile == %@ AND NOT (session CONTAINS[c] 'upload')", appDelegate.account, startServerUrl, NCCommunicationCommon.typeClassFile.image.rawValue)
  375. } else {
  376. predicate = predicateDefault
  377. }
  378. guard var predicateForGetMetadatasMedia = predicate else { return }
  379. if livePhoto {
  380. let predicateLivePhoto = NSPredicate(format: "!(ext == 'mov' AND livePhoto == true)")
  381. predicateForGetMetadatasMedia = NSCompoundPredicate.init(andPredicateWithSubpredicates:[predicateForGetMetadatasMedia, predicateLivePhoto])
  382. }
  383. DispatchQueue.global().async {
  384. self.metadatas = NCManageDatabase.shared.getMetadatasMedia(predicate: predicateForGetMetadatasMedia, sort: CCUtility.getMediaSortDate())
  385. DispatchQueue.main.sync {
  386. self.reloadDataThenPerform {
  387. self.updateMediaControlVisibility()
  388. self.mediaCommandTitle()
  389. completion(self.metadatas)
  390. }
  391. }
  392. }
  393. }
  394. func updateMediaControlVisibility() {
  395. if self.metadatas.count == 0 {
  396. if !self.filterClassTypeImage && !self.filterClassTypeVideo {
  397. self.mediaCommandView?.toggleEmptyView(isEmpty: true)
  398. self.mediaCommandView?.isHidden = false
  399. } else {
  400. self.mediaCommandView?.toggleEmptyView(isEmpty: true)
  401. self.mediaCommandView?.isHidden = false
  402. }
  403. } else {
  404. self.mediaCommandView?.toggleEmptyView(isEmpty: false)
  405. self.mediaCommandView?.isHidden = false
  406. }
  407. }
  408. // MARK: - Search media
  409. private func searchOldMedia(value: Int = -30, limit: Int = 300) {
  410. if oldInProgress { return }
  411. else { oldInProgress = true }
  412. collectionView.reloadData()
  413. var lessDate = Date()
  414. if predicateDefault != nil {
  415. if let metadata = NCManageDatabase.shared.getMetadata(predicate: predicateDefault!, sorted: "date", ascending: true) {
  416. lessDate = metadata.date as Date
  417. }
  418. }
  419. var greaterDate: Date
  420. if value == -999 {
  421. greaterDate = Date.distantPast
  422. } else {
  423. greaterDate = Calendar.current.date(byAdding: .day, value:value, to: lessDate)!
  424. }
  425. let height = self.tabBarController?.tabBar.frame.size.height ?? 0
  426. NCUtility.shared.startActivityIndicator(backgroundView: self.view, blurEffect: false, bottom: height + 50, style: .gray)
  427. NCCommunication.shared.searchMedia(path: mediaPath, lessDate: lessDate, greaterDate: greaterDate, elementDate: "d:getlastmodified/", limit: limit, showHiddenFiles: CCUtility.getShowHiddenFiles(), timeout: 120) { (account, files, errorCode, errorDescription) in
  428. self.oldInProgress = false
  429. NCUtility.shared.stopActivityIndicator()
  430. self.collectionView.reloadData()
  431. if errorCode == 0 && account == self.appDelegate.account {
  432. if files.count > 0 {
  433. NCManageDatabase.shared.convertNCCommunicationFilesToMetadatas(files, useMetadataFolder: false, account: self.appDelegate.account) { (_, _, metadatas) in
  434. let predicateDate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
  435. let predicateResult = NSCompoundPredicate.init(andPredicateWithSubpredicates:[predicateDate, self.predicateDefault!])
  436. let metadatasResult = NCManageDatabase.shared.getMetadatas(predicate: predicateResult)
  437. let metadatasChanged = NCManageDatabase.shared.updateMetadatas(metadatas, metadatasResult: metadatasResult, addCompareLivePhoto: false)
  438. if metadatasChanged.metadatasUpdate.count == 0 {
  439. self.researchOldMedia(value: value, limit: limit, withElseReloadDataSource: true)
  440. } else {
  441. self.reloadDataSourceWithCompletion { (_) in }
  442. }
  443. }
  444. } else {
  445. self.researchOldMedia(value: value, limit: limit, withElseReloadDataSource: false)
  446. }
  447. } else if errorCode != 0 {
  448. NCCommunicationCommon.shared.writeLog("Media search old media error code \(errorCode) " + errorDescription)
  449. }
  450. }
  451. }
  452. private func researchOldMedia(value: Int , limit: Int, withElseReloadDataSource: Bool) {
  453. if value == -30 {
  454. searchOldMedia(value: -90)
  455. } else if value == -90 {
  456. searchOldMedia(value: -180)
  457. } else if value == -180 {
  458. searchOldMedia(value: -999)
  459. } else if value == -999 && limit > 0 {
  460. searchOldMedia(value: -999, limit: 0)
  461. } else {
  462. if withElseReloadDataSource {
  463. self.reloadDataSourceWithCompletion { (_) in }
  464. }
  465. }
  466. }
  467. @objc func searchNewMediaTimer() {
  468. self.searchNewMedia()
  469. }
  470. @objc func searchNewMedia() {
  471. if newInProgress { return }
  472. else {
  473. newInProgress = true
  474. mediaCommandView?.activityIndicator.startAnimating()
  475. }
  476. var limit: Int = 1000
  477. guard var lessDate = Calendar.current.date(byAdding: .second, value: 1, to: Date()) else { return }
  478. guard var greaterDate = Calendar.current.date(byAdding: .day, value: -30, to: Date()) else { return }
  479. if let visibleCells = self.collectionView?.indexPathsForVisibleItems.sorted(by: { $0.row < $1.row }).compactMap({ self.collectionView?.cellForItem(at: $0) }) {
  480. if let cell = visibleCells.first as? NCGridMediaCell {
  481. if cell.date != nil {
  482. if cell.date != self.metadatas.first?.date as Date? {
  483. lessDate = Calendar.current.date(byAdding: .second, value: 1, to: cell.date!)!
  484. limit = 0
  485. }
  486. }
  487. }
  488. if let cell = visibleCells.last as? NCGridMediaCell {
  489. if cell.date != nil {
  490. greaterDate = Calendar.current.date(byAdding: .second, value: -1, to: cell.date!)!
  491. }
  492. }
  493. }
  494. reloadDataThenPerform {
  495. NCCommunication.shared.searchMedia(path: self.mediaPath, lessDate: lessDate, greaterDate: greaterDate, elementDate: "d:getlastmodified/", limit: limit, showHiddenFiles: CCUtility.getShowHiddenFiles(), timeout: 120) { (account, files, errorCode, errorDescription) in
  496. self.newInProgress = false
  497. self.mediaCommandView?.activityIndicator.stopAnimating()
  498. if errorCode == 0 && account == self.appDelegate.account && files.count > 0 {
  499. NCManageDatabase.shared.convertNCCommunicationFilesToMetadatas(files, useMetadataFolder: false, account: account) { (_, _, metadatas) in
  500. let predicate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
  501. let predicateResult = NSCompoundPredicate.init(andPredicateWithSubpredicates:[predicate, self.predicate!])
  502. let metadatasResult = NCManageDatabase.shared.getMetadatas(predicate: predicateResult)
  503. let updateMetadatas = NCManageDatabase.shared.updateMetadatas(metadatas, metadatasResult: metadatasResult, addCompareLivePhoto: false)
  504. if updateMetadatas.metadatasUpdate.count > 0 || updateMetadatas.metadatasDelete.count > 0 {
  505. self.reloadDataSourceWithCompletion { (_) in }
  506. }
  507. }
  508. } else if errorCode == 0 && files.count == 0 && self.metadatas.count == 0 {
  509. self.searchOldMedia()
  510. } else if errorCode != 0 {
  511. NCCommunicationCommon.shared.writeLog("Media search new media error code \(errorCode) " + errorDescription)
  512. }
  513. }
  514. }
  515. }
  516. }
  517. // MARK: - ScrollView
  518. extension NCMedia: UIScrollViewDelegate {
  519. func scrollViewDidScroll(_ scrollView: UIScrollView) {
  520. if lastContentOffsetY == 0 || lastContentOffsetY + cellHeigth/2 <= scrollView.contentOffset.y || lastContentOffsetY - cellHeigth/2 >= scrollView.contentOffset.y {
  521. mediaCommandTitle()
  522. lastContentOffsetY = scrollView.contentOffset.y
  523. }
  524. }
  525. func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
  526. mediaCommandView?.collapseControlButtonView(true)
  527. }
  528. func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) {
  529. if !decelerate {
  530. timerSearchNewMedia?.invalidate()
  531. timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchNewMediaTimer), userInfo: nil, repeats: false)
  532. if (scrollView.contentOffset.y >= (scrollView.contentSize.height - scrollView.frame.size.height)) {
  533. searchOldMedia()
  534. }
  535. }
  536. }
  537. func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
  538. timerSearchNewMedia?.invalidate()
  539. timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchNewMediaTimer), userInfo: nil, repeats: false)
  540. if (scrollView.contentOffset.y >= (scrollView.contentSize.height - scrollView.frame.size.height)) {
  541. searchOldMedia()
  542. }
  543. }
  544. func scrollViewDidScrollToTop(_ scrollView: UIScrollView) {
  545. let y = view.safeAreaInsets.top
  546. scrollView.contentOffset.y = -(insetsTop + y)
  547. }
  548. }
  549. // MARK: - Media Command View
  550. class NCMediaCommandView: UIView {
  551. @IBOutlet weak var moreView: UIVisualEffectView!
  552. @IBOutlet weak var gridSwitchButton: UIButton!
  553. @IBOutlet weak var separatorView: UIView!
  554. @IBOutlet weak var buttonControlWidthConstraint: NSLayoutConstraint!
  555. @IBOutlet weak var zoomInButton: UIButton!
  556. @IBOutlet weak var zoomOutButton: UIButton!
  557. @IBOutlet weak var moreButton: UIButton!
  558. @IBOutlet weak var controlButtonView: UIVisualEffectView!
  559. @IBOutlet weak var title : UILabel!
  560. @IBOutlet weak var activityIndicator : UIActivityIndicatorView!
  561. var mediaView:NCMedia?
  562. private let gradient: CAGradientLayer = CAGradientLayer()
  563. override func awakeFromNib() {
  564. moreView.layer.cornerRadius = 20
  565. moreView.layer.masksToBounds = true
  566. controlButtonView.layer.cornerRadius = 20
  567. controlButtonView.layer.masksToBounds = true
  568. gradient.frame = bounds
  569. gradient.startPoint = CGPoint(x: 0, y: 0.50)
  570. gradient.endPoint = CGPoint(x: 0, y: 0.9)
  571. gradient.colors = [UIColor.black.withAlphaComponent(0.4).cgColor , UIColor.clear.cgColor]
  572. layer.insertSublayer(gradient, at: 0)
  573. moreButton.setImage(UIImage.init(named: "more")!.image(color: .white, size: 25), for: .normal)
  574. title.text = ""
  575. }
  576. func toggleEmptyView(isEmpty: Bool) {
  577. if isEmpty {
  578. UIView.animate(withDuration: 0.3) {
  579. self.moreView.effect = UIBlurEffect(style: .dark)
  580. self.gradient.isHidden = true
  581. self.controlButtonView.isHidden = true
  582. }
  583. } else {
  584. UIView.animate(withDuration: 0.3) {
  585. self.moreView.effect = UIBlurEffect(style: .regular)
  586. self.gradient.isHidden = false
  587. self.controlButtonView.isHidden = false
  588. }
  589. }
  590. }
  591. @IBAction func moreButtonPressed(_ sender: UIButton) {
  592. mediaView?.openMenuButtonMore(sender)
  593. }
  594. @IBAction func zoomInPressed(_ sender: UIButton) {
  595. mediaView?.zoomInGrid()
  596. }
  597. @IBAction func zoomOutPressed(_ sender: UIButton) {
  598. mediaView?.zoomOutGrid()
  599. }
  600. @IBAction func gridSwitchButtonPressed(_ sender: Any) {
  601. self.collapseControlButtonView(false)
  602. }
  603. func collapseControlButtonView(_ collapse: Bool) {
  604. if (collapse) {
  605. self.buttonControlWidthConstraint.constant = 40
  606. UIView.animate(withDuration: 0.25) {
  607. self.zoomOutButton.isHidden = true
  608. self.zoomInButton.isHidden = true
  609. self.separatorView.isHidden = true
  610. self.gridSwitchButton.isHidden = false
  611. self.layoutIfNeeded()
  612. }
  613. } else {
  614. self.buttonControlWidthConstraint.constant = 80
  615. UIView.animate(withDuration: 0.25) {
  616. self.zoomOutButton.isHidden = false
  617. self.zoomInButton.isHidden = false
  618. self.separatorView.isHidden = false
  619. self.gridSwitchButton.isHidden = true
  620. self.layoutIfNeeded()
  621. }
  622. }
  623. }
  624. override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
  625. return moreView.frame.contains(point) || controlButtonView.frame.contains(point)
  626. }
  627. override func layoutSublayers(of layer: CALayer) {
  628. super.layoutSublayers(of: layer)
  629. gradient.frame = bounds
  630. }
  631. }
  632. // MARK: - Media Grid Layout
  633. class NCGridMediaLayout: UICollectionViewFlowLayout {
  634. var marginLeftRight: CGFloat = 6
  635. var itemForLine: CGFloat = 3
  636. override init() {
  637. super.init()
  638. sectionHeadersPinToVisibleBounds = false
  639. minimumInteritemSpacing = 0
  640. minimumLineSpacing = marginLeftRight
  641. self.scrollDirection = .vertical
  642. self.sectionInset = UIEdgeInsets(top: 0, left: marginLeftRight, bottom: 0, right: marginLeftRight)
  643. }
  644. required init?(coder aDecoder: NSCoder) {
  645. fatalError("init(coder:) has not been implemented")
  646. }
  647. override var itemSize: CGSize {
  648. get {
  649. if let collectionView = collectionView {
  650. let itemWidth: CGFloat = (collectionView.frame.width - marginLeftRight * 2 - marginLeftRight * (itemForLine - 1)) / itemForLine
  651. let itemHeight: CGFloat = itemWidth
  652. return CGSize(width: itemWidth, height: itemHeight)
  653. }
  654. // Default fallback
  655. return CGSize(width: 100, height: 100)
  656. }
  657. set {
  658. super.itemSize = newValue
  659. }
  660. }
  661. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  662. return proposedContentOffset
  663. }
  664. }