NCMedia.swift 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  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 NextcloudKit
  25. import JGProgressHUD
  26. import Queuer
  27. class NCMedia: UIViewController, NCEmptyDataSetDelegate, NCSelectDelegate {
  28. @IBOutlet weak var collectionView: UICollectionView!
  29. private var emptyDataSet: NCEmptyDataSet?
  30. private var mediaCommandView: NCMediaCommandView?
  31. private var gridLayout: NCGridMediaLayout!
  32. internal var documentPickerViewController: NCDocumentPickerViewController?
  33. internal let appDelegate = (UIApplication.shared.delegate as? AppDelegate)!
  34. internal let utilityFileSystem = NCUtilityFileSystem()
  35. internal let utility = NCUtility()
  36. internal var isEditMode = false
  37. internal var selectOcId: [String] = []
  38. internal var selectIndexPath: [IndexPath] = []
  39. internal var showOnlyImages = false
  40. internal var showOnlyVideos = false
  41. private let maxImageGrid: CGFloat = 7
  42. private var cellHeigth: CGFloat = 0
  43. private var oldInProgress = false
  44. private var newInProgress = false
  45. private var lastContentOffsetY: CGFloat = 0
  46. private var mediaPath = ""
  47. private var timeIntervalSearchNewMedia: TimeInterval = 3.0
  48. private var timerSearchNewMedia: Timer?
  49. private let insetsTop: CGFloat = 75
  50. struct cacheImages {
  51. static var cellLivePhotoImage = UIImage()
  52. static var cellPlayImage = UIImage()
  53. static var cellImage = UIImage()
  54. }
  55. // MARK: - View Life Cycle
  56. override func viewDidLoad() {
  57. super.viewDidLoad()
  58. view.backgroundColor = .systemBackground
  59. collectionView.register(UINib(nibName: "NCGridMediaCell", bundle: nil), forCellWithReuseIdentifier: "gridCell")
  60. collectionView.alwaysBounceVertical = true
  61. collectionView.contentInset = UIEdgeInsets(top: insetsTop, left: 0, bottom: 50, right: 0)
  62. collectionView.backgroundColor = .systemBackground
  63. gridLayout = NCGridMediaLayout()
  64. gridLayout.itemForLine = CGFloat(min(NCKeychain().mediaWidthImage, 5))
  65. gridLayout.sectionHeadersPinToVisibleBounds = true
  66. collectionView.collectionViewLayout = gridLayout
  67. // Empty
  68. emptyDataSet = NCEmptyDataSet(view: collectionView, offset: 0, delegate: self)
  69. mediaCommandView = Bundle.main.loadNibNamed("NCMediaCommandView", owner: self, options: nil)?.first as? NCMediaCommandView
  70. self.view.addSubview(mediaCommandView!)
  71. mediaCommandView?.mediaView = self
  72. mediaCommandView?.zoomInButton.isEnabled = !(gridLayout.itemForLine == 1)
  73. mediaCommandView?.zoomOutButton.isEnabled = !(gridLayout.itemForLine == maxImageGrid - 1)
  74. mediaCommandView?.collapseControlButtonView(true)
  75. mediaCommandView?.translatesAutoresizingMaskIntoConstraints = false
  76. mediaCommandView?.topAnchor.constraint(equalTo: view.topAnchor, constant: 0).isActive = true
  77. mediaCommandView?.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0).isActive = true
  78. mediaCommandView?.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: 0).isActive = true
  79. mediaCommandView?.heightAnchor.constraint(equalToConstant: 150).isActive = true
  80. self.updateMediaControlVisibility()
  81. collectionView.prefetchDataSource = self
  82. cacheImages.cellLivePhotoImage = utility.loadImage(named: "livephoto", color: .white)
  83. cacheImages.cellPlayImage = utility.loadImage(named: "play.fill", color: .white)
  84. if let activeAccount = NCManageDatabase.shared.getActiveAccount() { self.mediaPath = activeAccount.mediaPath }
  85. }
  86. override func viewWillAppear(_ animated: Bool) {
  87. super.viewWillAppear(animated)
  88. appDelegate.activeViewController = self
  89. navigationController?.setMediaAppreance()
  90. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
  91. NotificationCenter.default.addObserver(self, selector: #selector(moveFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
  92. NotificationCenter.default.addObserver(self, selector: #selector(copyFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterCopyFile), 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. timerSearchNewMedia?.invalidate()
  96. timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchNewMediaTimer), userInfo: nil, repeats: false)
  97. collectionView.reloadData()
  98. }
  99. override func viewDidAppear(_ animated: Bool) {
  100. super.viewDidAppear(animated)
  101. mediaCommandTitle()
  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.notificationCenterCopyFile), object: nil)
  108. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
  109. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
  110. }
  111. override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
  112. super.viewWillTransition(to: size, with: coordinator)
  113. self.collectionView?.collectionViewLayout.invalidateLayout()
  114. }
  115. override var preferredStatusBarStyle: UIStatusBarStyle {
  116. return .lightContent
  117. }
  118. // MARK: - NotificationCenter
  119. @objc func deleteFile(_ notification: NSNotification) {
  120. guard let userInfo = notification.userInfo as NSDictionary?,
  121. let error = userInfo["error"] as? NKError else { return }
  122. let onlyLocalCache: Bool = userInfo["onlyLocalCache"] as? Bool ?? false
  123. NCImageCache.shared.getMediaMetadatas(account: appDelegate.account, predicate: getPredicate())
  124. if error == .success, let indexPath = userInfo["indexPath"] as? [IndexPath], !indexPath.isEmpty, !onlyLocalCache {
  125. collectionView?.performBatchUpdates({
  126. collectionView?.deleteItems(at: indexPath)
  127. }, completion: { _ in
  128. self.collectionView?.reloadData()
  129. })
  130. } else {
  131. if error != .success {
  132. NCContentPresenter().showError(error: error)
  133. }
  134. self.collectionView?.reloadData()
  135. }
  136. if let hud = userInfo["hud"] as? JGProgressHUD {
  137. hud.dismiss()
  138. }
  139. }
  140. @objc func moveFile(_ notification: NSNotification) {
  141. guard let userInfo = notification.userInfo as NSDictionary? else { return }
  142. if let hud = userInfo["hud"] as? JGProgressHUD {
  143. hud.dismiss()
  144. }
  145. }
  146. @objc func copyFile(_ notification: NSNotification) {
  147. moveFile(notification)
  148. }
  149. @objc func renameFile(_ notification: NSNotification) {
  150. guard let userInfo = notification.userInfo as NSDictionary?,
  151. let account = userInfo["account"] as? String,
  152. account == appDelegate.account
  153. else { return }
  154. self.reloadDataSourceWithCompletion { _ in }
  155. }
  156. @objc func uploadedFile(_ notification: NSNotification) {
  157. guard let userInfo = notification.userInfo as NSDictionary?,
  158. let error = userInfo["error"] as? NKError,
  159. error == .success,
  160. let account = userInfo["account"] as? String,
  161. account == appDelegate.account
  162. else { return }
  163. self.reloadDataSourceWithCompletion { _ in }
  164. }
  165. // MARK: - Command
  166. func mediaCommandTitle() {
  167. mediaCommandView?.title.text = ""
  168. if let visibleCells = self.collectionView?.indexPathsForVisibleItems.sorted(by: { $0.row < $1.row }).compactMap({ self.collectionView?.cellForItem(at: $0) }) {
  169. if let cell = visibleCells.first as? NCGridMediaCell {
  170. mediaCommandView?.title.text = ""
  171. if let date = cell.date {
  172. mediaCommandView?.title.text = utility.getTitleFromDate(date)
  173. }
  174. }
  175. }
  176. }
  177. @objc func zoomOutGrid() {
  178. UIView.animate(withDuration: 0.0, animations: {
  179. if self.gridLayout.itemForLine + 1 < self.maxImageGrid {
  180. self.gridLayout.itemForLine += 1
  181. self.mediaCommandView?.zoomInButton.isEnabled = true
  182. }
  183. if self.gridLayout.itemForLine == self.maxImageGrid - 1 {
  184. self.mediaCommandView?.zoomOutButton.isEnabled = false
  185. }
  186. self.collectionView.collectionViewLayout.invalidateLayout()
  187. NCKeychain().mediaWidthImage = Int(self.gridLayout.itemForLine)
  188. })
  189. }
  190. @objc func zoomInGrid() {
  191. UIView.animate(withDuration: 0.0, animations: {
  192. if self.gridLayout.itemForLine - 1 > 0 {
  193. self.gridLayout.itemForLine -= 1
  194. self.mediaCommandView?.zoomOutButton.isEnabled = true
  195. }
  196. if self.gridLayout.itemForLine == 1 {
  197. self.mediaCommandView?.zoomInButton.isEnabled = false
  198. }
  199. self.collectionView.collectionViewLayout.invalidateLayout()
  200. NCKeychain().mediaWidthImage = Int(self.gridLayout.itemForLine)
  201. })
  202. }
  203. @objc func openMenuButtonMore(_ sender: Any) {
  204. toggleMenu()
  205. }
  206. // MARK: Select Path
  207. func dismissSelect(serverUrl: String?, metadata: tableMetadata?, type: String, items: [Any], indexPath: [IndexPath], overwrite: Bool, copy: Bool, move: Bool) {
  208. guard let serverUrl = serverUrl else { return }
  209. let home = utilityFileSystem.getHomeServer(urlBase: appDelegate.urlBase, userId: appDelegate.userId)
  210. mediaPath = serverUrl.replacingOccurrences(of: home, with: "")
  211. NCManageDatabase.shared.setAccountMediaPath(mediaPath, account: appDelegate.account)
  212. reloadDataSourceWithCompletion { _ in
  213. self.searchNewMedia()
  214. }
  215. }
  216. // MARK: - Empty
  217. func emptyDataSetView(_ view: NCEmptyView) {
  218. view.emptyImage.image = UIImage(named: "media")?.image(color: .gray, size: UIScreen.main.bounds.width)
  219. if oldInProgress || newInProgress {
  220. view.emptyTitle.text = NSLocalizedString("_search_in_progress_", comment: "")
  221. } else {
  222. view.emptyTitle.text = NSLocalizedString("_tutorial_photo_view_", comment: "")
  223. }
  224. view.emptyDescription.text = ""
  225. }
  226. }
  227. // MARK: - Collection View
  228. extension NCMedia: UICollectionViewDelegate {
  229. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  230. let metadata = NCImageCache.shared.metadatas[indexPath.row]
  231. if isEditMode {
  232. if let index = selectOcId.firstIndex(of: metadata.ocId) {
  233. selectOcId.remove(at: index)
  234. selectIndexPath.removeAll(where: { $0 == indexPath })
  235. } else {
  236. selectOcId.append(metadata.ocId)
  237. selectIndexPath.append(indexPath)
  238. }
  239. if indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) {
  240. collectionView.reloadItems(at: [indexPath])
  241. }
  242. } else {
  243. // ACTIVE SERVERURL
  244. appDelegate.activeServerUrl = metadata.serverUrl
  245. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as? NCGridMediaCell
  246. NCViewer().view(viewController: self, metadata: metadata, metadatas: NCImageCache.shared.metadatas, imageIcon: cell?.imageItem.image)
  247. }
  248. }
  249. func collectionView(_ collectionView: UICollectionView, contextMenuConfigurationForItemAt indexPath: IndexPath, point: CGPoint) -> UIContextMenuConfiguration? {
  250. guard let cell = collectionView.cellForItem(at: indexPath) as? NCGridMediaCell else { return nil }
  251. let metadata = NCImageCache.shared.metadatas[indexPath.row]
  252. let identifier = indexPath as NSCopying
  253. let image = cell.imageItem.image
  254. return UIContextMenuConfiguration(identifier: identifier, previewProvider: {
  255. return NCViewerProviderContextMenu(metadata: metadata, image: image)
  256. }, actionProvider: { _ in
  257. return NCContextMenu().viewMenu(ocId: metadata.ocId, indexPath: indexPath, viewController: self, image: image)
  258. })
  259. }
  260. func collectionView(_ collectionView: UICollectionView, willPerformPreviewActionForMenuWith configuration: UIContextMenuConfiguration, animator: UIContextMenuInteractionCommitAnimating) {
  261. animator.addCompletion {
  262. if let indexPath = configuration.identifier as? IndexPath {
  263. self.collectionView(collectionView, didSelectItemAt: indexPath)
  264. }
  265. }
  266. }
  267. }
  268. extension NCMedia: UICollectionViewDataSourcePrefetching {
  269. func collectionView(_ collectionView: UICollectionView, prefetchItemsAt indexPaths: [IndexPath]) {
  270. // print("[LOG] n. " + String(indexPaths.count))
  271. }
  272. }
  273. extension NCMedia: UICollectionViewDataSource {
  274. func reloadDataThenPerform(_ closure: @escaping (() -> Void)) {
  275. CATransaction.begin()
  276. CATransaction.setCompletionBlock(closure)
  277. collectionView?.reloadData()
  278. CATransaction.commit()
  279. }
  280. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  281. emptyDataSet?.numberOfItemsInSection(NCImageCache.shared.metadatas.count, section: section)
  282. return NCImageCache.shared.metadatas.count
  283. }
  284. func collectionView(_ collectionView: UICollectionView, didEndDisplaying cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
  285. if !collectionView.indexPathsForVisibleItems.contains(indexPath) && indexPath.row < NCImageCache.shared.metadatas.count {
  286. let metadata = NCImageCache.shared.metadatas[indexPath.row]
  287. for case let operation as NCMediaDownloadThumbnaill in appDelegate.downloadThumbnailQueue.operations where operation.metadata.ocId == metadata.ocId {
  288. operation.cancel()
  289. }
  290. }
  291. }
  292. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  293. guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "gridCell", for: indexPath) as? NCGridMediaCell else { return UICollectionViewCell() }
  294. if indexPath.section < collectionView.numberOfSections && indexPath.row < collectionView.numberOfItems(inSection: indexPath.section) && indexPath.row < NCImageCache.shared.metadatas.count {
  295. let metadata = NCImageCache.shared.metadatas[indexPath.row]
  296. self.cellHeigth = cell.frame.size.height
  297. cell.date = metadata.date as Date
  298. cell.fileObjectId = metadata.ocId
  299. cell.indexPath = indexPath
  300. cell.fileUser = metadata.ownerId
  301. if let cachedImage = NCImageCache.shared.getMediaImage(ocId: metadata.ocId), case let .actual(image) = cachedImage {
  302. cell.imageItem.backgroundColor = nil
  303. cell.imageItem.image = image
  304. } else if FileManager().fileExists(atPath: utilityFileSystem.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  305. if let image = UIImage(contentsOfFile: utilityFileSystem.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)) {
  306. cell.imageItem.backgroundColor = nil
  307. cell.imageItem.image = image
  308. NCImageCache.shared.setMediaImage(ocId: metadata.ocId, image: .actual(image))
  309. }
  310. } else {
  311. if metadata.hasPreview && metadata.status == NCGlobal.shared.metadataStatusNormal && (!utilityFileSystem.fileProviderStoragePreviewIconExists(metadata.ocId, etag: metadata.etag)) {
  312. if appDelegate.downloadThumbnailQueue.operations.filter({ ($0 as? NCMediaDownloadThumbnaill)?.metadata.ocId == metadata.ocId }).isEmpty {
  313. appDelegate.downloadThumbnailQueue.addOperation(NCMediaDownloadThumbnaill(metadata: metadata, cell: cell, collectionView: collectionView))
  314. }
  315. }
  316. cell.imageStatus.image = nil
  317. }
  318. if metadata.isAudioOrVideo {
  319. cell.imageStatus.image = cacheImages.cellPlayImage
  320. } else if metadata.livePhoto && NCImageCache.shared.livePhoto {
  321. cell.imageStatus.image = cacheImages.cellLivePhotoImage
  322. } else {
  323. cell.imageStatus.image = nil
  324. }
  325. if isEditMode {
  326. cell.selectMode(true)
  327. if selectOcId.contains(metadata.ocId) {
  328. cell.selected(true)
  329. } else {
  330. cell.selected(false)
  331. }
  332. } else {
  333. cell.selectMode(false)
  334. }
  335. return cell
  336. } else {
  337. return cell
  338. }
  339. }
  340. }
  341. extension NCMedia: UICollectionViewDelegateFlowLayout {
  342. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  343. return CGSize(width: collectionView.frame.width, height: 0)
  344. }
  345. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
  346. return CGSize(width: collectionView.frame.width, height: 0)
  347. }
  348. }
  349. extension NCMedia {
  350. func getPredicate(_ predicatedefault: Bool = false) -> NSPredicate {
  351. let startServerUrl = NCUtilityFileSystem().getHomeServer(urlBase: appDelegate.urlBase, userId: appDelegate.userId) + mediaPath
  352. let showAll = NSPredicate(format: "account == %@ AND serverUrl BEGINSWITH %@ AND (classFile == %@ OR classFile == %@) AND NOT (session CONTAINS[c] 'upload')", appDelegate.account, startServerUrl, NKCommon.TypeClassFile.image.rawValue, NKCommon.TypeClassFile.video.rawValue)
  353. if predicatedefault { return showAll }
  354. if showOnlyImages {
  355. return NSPredicate(format: "account == %@ AND serverUrl BEGINSWITH %@ AND classFile == %@ AND NOT (session CONTAINS[c] 'upload')", appDelegate.account, startServerUrl, NKCommon.TypeClassFile.image.rawValue)
  356. } else if showOnlyVideos {
  357. return NSPredicate(format: "account == %@ AND serverUrl BEGINSWITH %@ AND classFile == %@ AND NOT (session CONTAINS[c] 'upload')", appDelegate.account, startServerUrl, NKCommon.TypeClassFile.video.rawValue)
  358. } else {
  359. return showAll
  360. }
  361. }
  362. @objc func reloadDataSourceWithCompletion(_ completion: @escaping (_ metadatas: [tableMetadata]) -> Void) {
  363. guard !appDelegate.account.isEmpty else { return }
  364. DispatchQueue.global().async {
  365. NCImageCache.shared.getMediaMetadatas(account: self.appDelegate.account, predicate: self.getPredicate())
  366. DispatchQueue.main.sync {
  367. self.reloadDataThenPerform {
  368. self.updateMediaControlVisibility()
  369. self.mediaCommandTitle()
  370. completion(NCImageCache.shared.metadatas)
  371. }
  372. }
  373. }
  374. }
  375. func updateMediaControlVisibility() {
  376. if NCImageCache.shared.metadatas.isEmpty {
  377. if !self.showOnlyImages && !self.showOnlyVideos {
  378. self.mediaCommandView?.toggleEmptyView(isEmpty: true)
  379. self.mediaCommandView?.isHidden = false
  380. } else {
  381. self.mediaCommandView?.toggleEmptyView(isEmpty: true)
  382. self.mediaCommandView?.isHidden = false
  383. }
  384. } else {
  385. self.mediaCommandView?.toggleEmptyView(isEmpty: false)
  386. self.mediaCommandView?.isHidden = false
  387. }
  388. }
  389. // MARK: - Search media
  390. private func searchOldMedia(value: Int = -30, limit: Int = 300) {
  391. if oldInProgress { return } else { oldInProgress = true }
  392. DispatchQueue.main.async {
  393. self.collectionView.reloadData()
  394. var bottom: CGFloat = 0
  395. if let mainTabBar = self.tabBarController?.tabBar as? NCMainTabBar {
  396. bottom = -mainTabBar.getHeight()
  397. }
  398. NCActivityIndicator.shared.start(backgroundView: self.view, bottom: bottom - 5, style: .medium)
  399. }
  400. var lessDate = Date()
  401. let predicate = getPredicate()
  402. if let metadata = NCManageDatabase.shared.getMetadata(predicate: predicate, sorted: "date", ascending: true) {
  403. lessDate = metadata.date as Date
  404. }
  405. var greaterDate: Date
  406. if value == -999 {
  407. greaterDate = Date.distantPast
  408. } else {
  409. greaterDate = Calendar.current.date(byAdding: .day, value: value, to: lessDate)!
  410. }
  411. let options = NKRequestOptions(timeout: 300, queue: NextcloudKit.shared.nkCommonInstance.backgroundQueue)
  412. NextcloudKit.shared.searchMedia(path: mediaPath, lessDate: lessDate, greaterDate: greaterDate, elementDate: "d:getlastmodified/", limit: limit, showHiddenFiles: NCKeychain().showHiddenFiles, options: options) { account, files, _, error in
  413. self.oldInProgress = false
  414. DispatchQueue.main.async {
  415. NCActivityIndicator.shared.stop()
  416. self.collectionView.reloadData()
  417. }
  418. if error == .success && account == self.appDelegate.account {
  419. if !files.isEmpty {
  420. NCManageDatabase.shared.convertFilesToMetadatas(files, useMetadataFolder: false) { _, _, metadatas in
  421. let predicateDate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
  422. let predicateResult = NSCompoundPredicate(andPredicateWithSubpredicates: [predicateDate, self.getPredicate(true)])
  423. let metadatasResult = NCManageDatabase.shared.getMetadatas(predicate: predicateResult)
  424. let metadatasChanged = NCManageDatabase.shared.updateMetadatas(metadatas, metadatasResult: metadatasResult, addCompareLivePhoto: false)
  425. if metadatasChanged.metadatasUpdate.isEmpty {
  426. self.researchOldMedia(value: value, limit: limit, withElseReloadDataSource: true)
  427. } else {
  428. self.reloadDataSourceWithCompletion { _ in }
  429. }
  430. }
  431. } else {
  432. self.researchOldMedia(value: value, limit: limit, withElseReloadDataSource: false)
  433. }
  434. } else if error != .success {
  435. NextcloudKit.shared.nkCommonInstance.writeLog("[INFO] Media search old media error code \(error.errorCode) " + error.errorDescription)
  436. }
  437. }
  438. }
  439. private func researchOldMedia(value: Int, limit: Int, withElseReloadDataSource: Bool) {
  440. if value == -30 {
  441. searchOldMedia(value: -90)
  442. } else if value == -90 {
  443. searchOldMedia(value: -180)
  444. } else if value == -180 {
  445. searchOldMedia(value: -999)
  446. } else if value == -999 && limit > 0 {
  447. searchOldMedia(value: -999, limit: 0)
  448. } else {
  449. if withElseReloadDataSource {
  450. self.reloadDataSourceWithCompletion { _ in }
  451. }
  452. }
  453. }
  454. @objc func searchNewMediaTimer() {
  455. self.searchNewMedia()
  456. }
  457. @objc func searchNewMedia() {
  458. if newInProgress { return } else {
  459. newInProgress = true
  460. mediaCommandView?.activityIndicator.startAnimating()
  461. }
  462. var limit: Int = 1000
  463. guard var lessDate = Calendar.current.date(byAdding: .second, value: 1, to: Date()) else { return }
  464. guard var greaterDate = Calendar.current.date(byAdding: .day, value: -30, to: Date()) else { return }
  465. if let visibleCells = self.collectionView?.indexPathsForVisibleItems.sorted(by: { $0.row < $1.row }).compactMap({ self.collectionView?.cellForItem(at: $0) }) {
  466. if let cell = visibleCells.first as? NCGridMediaCell {
  467. if cell.date != nil {
  468. if cell.date != NCImageCache.shared.metadatas.first?.date as Date? {
  469. lessDate = Calendar.current.date(byAdding: .second, value: 1, to: cell.date!)!
  470. limit = 0
  471. }
  472. }
  473. }
  474. if let cell = visibleCells.last as? NCGridMediaCell {
  475. if cell.date != nil {
  476. greaterDate = Calendar.current.date(byAdding: .second, value: -1, to: cell.date!)!
  477. }
  478. }
  479. }
  480. reloadDataThenPerform {
  481. let options = NKRequestOptions(timeout: 300, queue: NextcloudKit.shared.nkCommonInstance.backgroundQueue)
  482. NextcloudKit.shared.searchMedia(path: self.mediaPath, lessDate: lessDate, greaterDate: greaterDate, elementDate: "d:getlastmodified/", limit: limit, showHiddenFiles: NCKeychain().showHiddenFiles, options: options) { account, files, _, error in
  483. self.newInProgress = false
  484. DispatchQueue.main.async {
  485. self.mediaCommandView?.activityIndicator.stopAnimating()
  486. }
  487. if error == .success, account == self.appDelegate.account, !files.isEmpty {
  488. NCManageDatabase.shared.convertFilesToMetadatas(files, useMetadataFolder: false) { _, _, metadatas in
  489. let predicate = NSPredicate(format: "date > %@ AND date < %@", greaterDate as NSDate, lessDate as NSDate)
  490. let predicateResult = NSCompoundPredicate(andPredicateWithSubpredicates: [predicate, self.getPredicate(true)])
  491. let metadatasResult = NCManageDatabase.shared.getMetadatas(predicate: predicateResult)
  492. let updateMetadatas = NCManageDatabase.shared.updateMetadatas(metadatas, metadatasResult: metadatasResult, addCompareLivePhoto: false)
  493. if !updateMetadatas.metadatasUpdate.isEmpty || !updateMetadatas.metadatasDelete.isEmpty {
  494. self.reloadDataSourceWithCompletion { _ in }
  495. }
  496. }
  497. } else if error == .success, files.isEmpty, NCImageCache.shared.metadatas.isEmpty {
  498. self.searchOldMedia()
  499. } else if error != .success {
  500. NextcloudKit.shared.nkCommonInstance.writeLog("[ERROR] Media search new media error code \(error.errorCode) " + error.errorDescription)
  501. }
  502. }
  503. }
  504. }
  505. }
  506. // MARK: - ScrollView
  507. extension NCMedia: UIScrollViewDelegate {
  508. func scrollViewDidScroll(_ scrollView: UIScrollView) {
  509. if lastContentOffsetY == 0 || lastContentOffsetY + cellHeigth / 2 <= scrollView.contentOffset.y || lastContentOffsetY - cellHeigth / 2 >= scrollView.contentOffset.y {
  510. mediaCommandTitle()
  511. lastContentOffsetY = scrollView.contentOffset.y
  512. }
  513. }
  514. func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
  515. mediaCommandView?.collapseControlButtonView(true)
  516. }
  517. func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) {
  518. if !decelerate {
  519. timerSearchNewMedia?.invalidate()
  520. timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchNewMediaTimer), userInfo: nil, repeats: false)
  521. if scrollView.contentOffset.y >= (scrollView.contentSize.height - scrollView.frame.size.height) {
  522. searchOldMedia()
  523. }
  524. }
  525. }
  526. func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
  527. timerSearchNewMedia?.invalidate()
  528. timerSearchNewMedia = Timer.scheduledTimer(timeInterval: timeIntervalSearchNewMedia, target: self, selector: #selector(searchNewMediaTimer), userInfo: nil, repeats: false)
  529. if scrollView.contentOffset.y >= (scrollView.contentSize.height - scrollView.frame.size.height) {
  530. searchOldMedia()
  531. }
  532. }
  533. func scrollViewDidScrollToTop(_ scrollView: UIScrollView) {
  534. let y = view.safeAreaInsets.top
  535. scrollView.contentOffset.y = -(insetsTop + y)
  536. }
  537. }
  538. // MARK: - Media Command View
  539. class NCMediaCommandView: UIView {
  540. @IBOutlet weak var moreView: UIVisualEffectView!
  541. @IBOutlet weak var gridSwitchButton: UIButton!
  542. @IBOutlet weak var separatorView: UIView!
  543. @IBOutlet weak var buttonControlWidthConstraint: NSLayoutConstraint!
  544. @IBOutlet weak var zoomInButton: UIButton!
  545. @IBOutlet weak var zoomOutButton: UIButton!
  546. @IBOutlet weak var moreButton: UIButton!
  547. @IBOutlet weak var controlButtonView: UIVisualEffectView!
  548. @IBOutlet weak var title: UILabel!
  549. @IBOutlet weak var activityIndicator: UIActivityIndicatorView!
  550. var mediaView: NCMedia?
  551. private let gradient: CAGradientLayer = CAGradientLayer()
  552. override func awakeFromNib() {
  553. moreView.layer.cornerRadius = 20
  554. moreView.layer.masksToBounds = true
  555. controlButtonView.layer.cornerRadius = 20
  556. controlButtonView.layer.masksToBounds = true
  557. controlButtonView.effect = UIBlurEffect(style: .dark)
  558. gradient.frame = bounds
  559. gradient.startPoint = CGPoint(x: 0, y: 0.5)
  560. gradient.endPoint = CGPoint(x: 0, y: 1)
  561. gradient.colors = [UIColor.black.withAlphaComponent(UIAccessibility.isReduceTransparencyEnabled ? 0.8 : 0.4).cgColor, UIColor.clear.cgColor]
  562. layer.insertSublayer(gradient, at: 0)
  563. moreButton.setImage(UIImage(named: "more")!.image(color: .white, size: 25), for: .normal)
  564. title.text = ""
  565. }
  566. func toggleEmptyView(isEmpty: Bool) {
  567. if isEmpty {
  568. UIView.animate(withDuration: 0.3) {
  569. self.moreView.effect = UIBlurEffect(style: .dark)
  570. self.gradient.isHidden = true
  571. self.controlButtonView.isHidden = true
  572. }
  573. } else {
  574. UIView.animate(withDuration: 0.3) {
  575. self.moreView.effect = UIBlurEffect(style: .dark)
  576. self.gradient.isHidden = false
  577. self.controlButtonView.isHidden = false
  578. }
  579. }
  580. }
  581. @IBAction func moreButtonPressed(_ sender: UIButton) {
  582. mediaView?.openMenuButtonMore(sender)
  583. }
  584. @IBAction func zoomInPressed(_ sender: UIButton) {
  585. mediaView?.zoomInGrid()
  586. }
  587. @IBAction func zoomOutPressed(_ sender: UIButton) {
  588. mediaView?.zoomOutGrid()
  589. }
  590. @IBAction func gridSwitchButtonPressed(_ sender: Any) {
  591. self.collapseControlButtonView(false)
  592. }
  593. func collapseControlButtonView(_ collapse: Bool) {
  594. if collapse {
  595. self.buttonControlWidthConstraint.constant = 40
  596. UIView.animate(withDuration: 0.25) {
  597. self.zoomOutButton.isHidden = true
  598. self.zoomInButton.isHidden = true
  599. self.separatorView.isHidden = true
  600. self.gridSwitchButton.isHidden = false
  601. self.layoutIfNeeded()
  602. }
  603. } else {
  604. self.buttonControlWidthConstraint.constant = 80
  605. UIView.animate(withDuration: 0.25) {
  606. self.zoomOutButton.isHidden = false
  607. self.zoomInButton.isHidden = false
  608. self.separatorView.isHidden = false
  609. self.gridSwitchButton.isHidden = true
  610. self.layoutIfNeeded()
  611. }
  612. }
  613. }
  614. override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
  615. return moreView.frame.contains(point) || controlButtonView.frame.contains(point)
  616. }
  617. override func layoutSublayers(of layer: CALayer) {
  618. super.layoutSublayers(of: layer)
  619. gradient.frame = bounds
  620. }
  621. }
  622. // MARK: - Media Grid Layout
  623. class NCGridMediaLayout: UICollectionViewFlowLayout {
  624. var marginLeftRight: CGFloat = 2
  625. var itemForLine: CGFloat = 3
  626. override init() {
  627. super.init()
  628. sectionHeadersPinToVisibleBounds = false
  629. minimumInteritemSpacing = 0
  630. minimumLineSpacing = marginLeftRight
  631. self.scrollDirection = .vertical
  632. self.sectionInset = UIEdgeInsets(top: 0, left: marginLeftRight, bottom: 0, right: marginLeftRight)
  633. }
  634. required init?(coder aDecoder: NSCoder) {
  635. fatalError("init(coder:) has not been implemented")
  636. }
  637. override var itemSize: CGSize {
  638. get {
  639. if let collectionView = collectionView {
  640. let itemWidth: CGFloat = (collectionView.frame.width - marginLeftRight * 2 - marginLeftRight * (itemForLine - 1)) / itemForLine
  641. let itemHeight: CGFloat = itemWidth
  642. return CGSize(width: itemWidth, height: itemHeight)
  643. }
  644. // Default fallback
  645. return CGSize(width: 100, height: 100)
  646. }
  647. set {
  648. super.itemSize = newValue
  649. }
  650. }
  651. override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint) -> CGPoint {
  652. return proposedContentOffset
  653. }
  654. }
  655. // MARK: -
  656. class NCMediaDownloadThumbnaill: ConcurrentOperation {
  657. var metadata: tableMetadata
  658. var cell: NCCellProtocol?
  659. var collectionView: UICollectionView?
  660. var fileNamePath: String
  661. var fileNamePreviewLocalPath: String
  662. var fileNameIconLocalPath: String
  663. let utilityFileSystem = NCUtilityFileSystem()
  664. init(metadata: tableMetadata, cell: NCCellProtocol?, collectionView: UICollectionView?) {
  665. self.metadata = tableMetadata.init(value: metadata)
  666. self.cell = cell
  667. self.collectionView = collectionView
  668. self.fileNamePath = utilityFileSystem.getFileNamePath(metadata.fileName, serverUrl: metadata.serverUrl, urlBase: metadata.urlBase, userId: metadata.userId)
  669. self.fileNamePreviewLocalPath = utilityFileSystem.getDirectoryProviderStoragePreviewOcId(metadata.ocId, etag: metadata.etag)
  670. self.fileNameIconLocalPath = utilityFileSystem.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)
  671. }
  672. override func start() {
  673. guard !isCancelled else { return self.finish() }
  674. var etagResource: String?
  675. if FileManager.default.fileExists(atPath: fileNameIconLocalPath) && FileManager.default.fileExists(atPath: fileNamePreviewLocalPath) {
  676. etagResource = metadata.etagResource
  677. }
  678. NextcloudKit.shared.downloadPreview(fileNamePathOrFileId: fileNamePath,
  679. fileNamePreviewLocalPath: fileNamePreviewLocalPath,
  680. widthPreview: NCGlobal.shared.sizePreview,
  681. heightPreview: NCGlobal.shared.sizePreview,
  682. fileNameIconLocalPath: fileNameIconLocalPath,
  683. sizeIcon: NCGlobal.shared.sizeIcon,
  684. etag: etagResource,
  685. options: NKRequestOptions(queue: NextcloudKit.shared.nkCommonInstance.backgroundQueue)) { _, imagePreview, _, _, etag, error in
  686. if error == .success, let image = imagePreview {
  687. NCManageDatabase.shared.setMetadataEtagResource(ocId: self.metadata.ocId, etagResource: etag)
  688. DispatchQueue.main.async {
  689. if self.metadata.ocId == self.cell?.fileObjectId, let filePreviewImageView = self.cell?.filePreviewImageView {
  690. UIView.transition(with: filePreviewImageView,
  691. duration: 0.75,
  692. options: .transitionCrossDissolve,
  693. animations: { filePreviewImageView.image = image },
  694. completion: nil)
  695. } else {
  696. self.collectionView?.reloadData()
  697. }
  698. }
  699. NCImageCache.shared.setMediaImage(ocId: self.metadata.ocId, image: .actual(image))
  700. }
  701. self.finish()
  702. }
  703. }
  704. }