NCMedia.swift 34 KB

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