NCViewerMediaPage.swift 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624
  1. //
  2. // NCViewerMediaPage.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/10/2020.
  6. // Copyright © 2020 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. import MediaPlayer
  26. class NCViewerMediaPage: UIViewController {
  27. @IBOutlet weak var progressView: UIProgressView!
  28. enum ScreenMode {
  29. case full, normal
  30. }
  31. var currentScreenMode: ScreenMode = .normal
  32. var saveScreenModeImage: ScreenMode = .normal
  33. var pageViewController: UIPageViewController {
  34. return self.children[0] as! UIPageViewController
  35. }
  36. var currentViewController: NCViewerMedia {
  37. return self.pageViewController.viewControllers![0] as! NCViewerMedia
  38. }
  39. var metadatas: [tableMetadata] = []
  40. var modifiedOcId: [String] = []
  41. var currentIndex = 0
  42. var nextIndex: Int?
  43. var ncplayerLivePhoto: NCPlayer?
  44. var panGestureRecognizer: UIPanGestureRecognizer!
  45. var singleTapGestureRecognizer: UITapGestureRecognizer!
  46. var longtapGestureRecognizer: UILongPressGestureRecognizer!
  47. var textColor: UIColor = NCBrandColor.shared.label
  48. var playCommand: Any?
  49. var pauseCommand: Any?
  50. var skipForwardCommand: Any?
  51. var skipBackwardCommand: Any?
  52. var nextTrackCommand: Any?
  53. var previousTrackCommand: Any?
  54. // MARK: - View Life Cycle
  55. override func viewDidLoad() {
  56. super.viewDidLoad()
  57. navigationItem.rightBarButtonItem = UIBarButtonItem(image: UIImage(named: "more")!.image(color: NCBrandColor.shared.label, size: 25), style: .plain, target: self, action: #selector(self.openMenuMore))
  58. singleTapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didSingleTapWith(gestureRecognizer:)))
  59. panGestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(didPanWith(gestureRecognizer:)))
  60. longtapGestureRecognizer = UILongPressGestureRecognizer()
  61. longtapGestureRecognizer.delaysTouchesBegan = true
  62. longtapGestureRecognizer.minimumPressDuration = 0.3
  63. longtapGestureRecognizer.delegate = self
  64. longtapGestureRecognizer.addTarget(self, action: #selector(didLongpressGestureEvent(gestureRecognizer:)))
  65. pageViewController.delegate = self
  66. pageViewController.dataSource = self
  67. pageViewController.view.addGestureRecognizer(panGestureRecognizer)
  68. pageViewController.view.addGestureRecognizer(singleTapGestureRecognizer)
  69. pageViewController.view.addGestureRecognizer(longtapGestureRecognizer)
  70. let viewerMedia = getViewerMedia(index: currentIndex, metadata: metadatas[currentIndex])
  71. pageViewController.setViewControllers([viewerMedia], direction: .forward, animated: true, completion: nil)
  72. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterChangeTheming), object: nil)
  73. NotificationCenter.default.addObserver(self, selector: #selector(viewUnload), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMenuDetailClose), object: nil)
  74. progressView.tintColor = NCBrandColor.shared.brandElement
  75. progressView.trackTintColor = .clear
  76. progressView.progress = 0
  77. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
  78. NotificationCenter.default.addObserver(self, selector: #selector(renameFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
  79. NotificationCenter.default.addObserver(self, selector: #selector(moveFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
  80. NotificationCenter.default.addObserver(self, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile), object: nil)
  81. NotificationCenter.default.addObserver(self, selector: #selector(triggerProgressTask(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterProgressTask), object: nil)
  82. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
  83. NotificationCenter.default.addObserver(self, selector: #selector(hidePlayerToolBar(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterHidePlayerToolBar), object: nil)
  84. NotificationCenter.default.addObserver(self, selector: #selector(showPlayerToolBar(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterShowPlayerToolBar), object: nil)
  85. NotificationCenter.default.addObserver(self, selector: #selector(reloadMediaPage(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadMediaPage), object: nil)
  86. NotificationCenter.default.addObserver(self, selector: #selector(applicationDidBecomeActive(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterApplicationDidBecomeActive), object: nil)
  87. }
  88. deinit {
  89. print("#deinit NCViewerMediaPage")
  90. // Clear
  91. if let ncplayer = currentViewController.ncplayer, ncplayer.isPlay() {
  92. ncplayer.playerPause()
  93. ncplayer.saveCurrentTime()
  94. }
  95. currentViewController.playerToolBar.stopTimerAutoHide()
  96. clearCommandCenter()
  97. metadatas.removeAll()
  98. ncplayerLivePhoto = nil
  99. #if MFFFLIB
  100. MFFF.shared.dismissMessage()
  101. #endif
  102. // Remove Observer
  103. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
  104. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
  105. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
  106. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile), object: nil)
  107. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterProgressTask), object: nil)
  108. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
  109. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterHidePlayerToolBar), object: nil)
  110. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterShowPlayerToolBar), object: nil)
  111. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterReloadMediaPage), object: nil)
  112. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterApplicationDidBecomeActive), object: nil)
  113. }
  114. override var preferredStatusBarStyle: UIStatusBarStyle {
  115. if currentScreenMode == .normal {
  116. return .default
  117. } else {
  118. return .lightContent
  119. }
  120. }
  121. // MARK: -
  122. func getViewerMedia(index: Int, metadata: tableMetadata) -> NCViewerMedia {
  123. let viewerMedia = UIStoryboard(name: "NCViewerMediaPage", bundle: nil).instantiateViewController(withIdentifier: "NCViewerMedia") as! NCViewerMedia
  124. viewerMedia.index = index
  125. viewerMedia.metadata = metadata
  126. viewerMedia.viewerMediaPage = self
  127. singleTapGestureRecognizer.require(toFail: viewerMedia.doubleTapGestureRecognizer)
  128. return viewerMedia
  129. }
  130. @objc func viewUnload() {
  131. navigationController?.popViewController(animated: true)
  132. }
  133. @objc func openMenuMore() {
  134. let imageIcon = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(currentViewController.metadata.ocId, etag: currentViewController.metadata.etag))
  135. NCViewer.shared.toggleMenu(viewController: self, metadata: currentViewController.metadata, webView: false, imageIcon: imageIcon)
  136. }
  137. func changeScreenMode(mode: ScreenMode, enableTimerAutoHide: Bool = false) {
  138. if mode == .normal {
  139. navigationController?.setNavigationBarHidden(false, animated: true)
  140. progressView.isHidden = false
  141. if !currentViewController.detailView.isShow() {
  142. currentViewController.playerToolBar.show(enableTimerAutoHide: enableTimerAutoHide)
  143. }
  144. NCUtility.shared.colorNavigationController(navigationController, backgroundColor: NCBrandColor.shared.systemBackground, titleColor: NCBrandColor.shared.label, tintColor: nil, withoutShadow: false)
  145. view.backgroundColor = NCBrandColor.shared.systemBackground
  146. textColor = NCBrandColor.shared.label
  147. } else {
  148. navigationController?.setNavigationBarHidden(true, animated: true)
  149. progressView.isHidden = true
  150. currentViewController.playerToolBar.hide()
  151. view.backgroundColor = .black
  152. textColor = .white
  153. }
  154. currentScreenMode = mode
  155. if currentViewController.metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue {
  156. saveScreenModeImage = mode
  157. }
  158. setNeedsStatusBarAppearanceUpdate()
  159. currentViewController.reloadDetail()
  160. }
  161. // MARK: - NotificationCenter
  162. @objc func downloadedFile(_ notification: NSNotification) {
  163. progressView.progress = 0
  164. }
  165. @objc func triggerProgressTask(_ notification: NSNotification) {
  166. if let userInfo = notification.userInfo as NSDictionary? {
  167. if let progressNumber = userInfo["progress"] as? NSNumber {
  168. let progress = progressNumber.floatValue
  169. if progress == 1 {
  170. self.progressView.progress = 0
  171. } else {
  172. self.progressView.progress = progress
  173. }
  174. }
  175. }
  176. }
  177. @objc func uploadedFile(_ notification: NSNotification) {
  178. if let userInfo = notification.userInfo as NSDictionary? {
  179. if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId), let errorCode = userInfo["errorCode"] as? Int {
  180. if errorCode == 0, let index = metadatas.firstIndex(where: {$0.ocId == metadata.ocId}) {
  181. metadatas[index] = metadata
  182. if currentViewController.metadata.ocId == ocId {
  183. currentViewController.reloadImage()
  184. } else {
  185. modifiedOcId.append(ocId)
  186. }
  187. }
  188. }
  189. }
  190. }
  191. @objc func deleteFile(_ notification: NSNotification) {
  192. if let userInfo = notification.userInfo as NSDictionary? {
  193. if let ocId = userInfo["ocId"] as? String {
  194. let metadatas = self.metadatas.filter { $0.ocId != ocId }
  195. if self.metadatas.count == metadatas.count { return }
  196. self.metadatas = metadatas
  197. if ocId == currentViewController.metadata.ocId {
  198. shiftCurrentPage()
  199. }
  200. }
  201. }
  202. }
  203. @objc func renameFile(_ notification: NSNotification) {
  204. if let userInfo = notification.userInfo as NSDictionary? {
  205. if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  206. if let index = metadatas.firstIndex(where: {$0.ocId == metadata.ocId}) {
  207. metadatas[index] = metadata
  208. if index == currentIndex {
  209. navigationItem.title = metadata.fileNameView
  210. currentViewController.metadata = metadata
  211. self.currentViewController.metadata = metadata
  212. }
  213. }
  214. }
  215. }
  216. }
  217. @objc func moveFile(_ notification: NSNotification) {
  218. if let userInfo = notification.userInfo as NSDictionary? {
  219. if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  220. if metadatas.firstIndex(where: {$0.ocId == metadata.ocId}) != nil {
  221. deleteFile(notification)
  222. }
  223. }
  224. }
  225. }
  226. @objc func changeTheming() {
  227. }
  228. @objc func hidePlayerToolBar(_ notification: NSNotification) {
  229. if let userInfo = notification.userInfo as NSDictionary?, let ocId = userInfo["ocId"] as? String {
  230. if currentViewController.metadata.ocId == ocId {
  231. changeScreenMode(mode: .full)
  232. }
  233. }
  234. }
  235. @objc func showPlayerToolBar(_ notification: NSNotification) {
  236. if let userInfo = notification.userInfo as NSDictionary?, let ocId = userInfo["ocId"] as? String, let enableTimerAutoHide = userInfo["enableTimerAutoHide"] as? Bool {
  237. if currentViewController.metadata.ocId == ocId, let playerToolBar = currentViewController.playerToolBar, !playerToolBar.isPictureInPictureActive() {
  238. changeScreenMode(mode: .normal, enableTimerAutoHide: enableTimerAutoHide)
  239. }
  240. }
  241. }
  242. @objc func reloadMediaPage(_ notification: NSNotification) {
  243. self.reloadCurrentPage()
  244. }
  245. @objc func applicationDidBecomeActive(_ notification: NSNotification) {
  246. progressView.progress = 0
  247. }
  248. // MARK: - Command Center
  249. func updateCommandCenter(ncplayer: NCPlayer, metadata: tableMetadata) {
  250. var nowPlayingInfo = [String: Any]()
  251. // Clear
  252. clearCommandCenter()
  253. UIApplication.shared.beginReceivingRemoteControlEvents()
  254. // Add handler for Play Command
  255. MPRemoteCommandCenter.shared().playCommand.isEnabled = true
  256. playCommand = MPRemoteCommandCenter.shared().playCommand.addTarget { _ in
  257. if !ncplayer.isPlay() {
  258. ncplayer.playerPlay()
  259. return .success
  260. }
  261. return .commandFailed
  262. }
  263. // Add handler for Pause Command
  264. MPRemoteCommandCenter.shared().pauseCommand.isEnabled = true
  265. pauseCommand = MPRemoteCommandCenter.shared().pauseCommand.addTarget { _ in
  266. if ncplayer.isPlay() {
  267. ncplayer.playerPause()
  268. return .success
  269. }
  270. return .commandFailed
  271. }
  272. // VIDEO / AUDIO () ()
  273. if metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  274. MPRemoteCommandCenter.shared().skipForwardCommand.isEnabled = true
  275. skipForwardCommand = MPRemoteCommandCenter.shared().skipForwardCommand.addTarget { [weak self] event in
  276. let seconds = Float64((event as! MPSkipIntervalCommandEvent).interval)
  277. self?.currentViewController.playerToolBar.skip(seconds: seconds)
  278. return .success
  279. }
  280. MPRemoteCommandCenter.shared().skipBackwardCommand.isEnabled = true
  281. skipBackwardCommand = MPRemoteCommandCenter.shared().skipBackwardCommand.addTarget { [weak self] event in
  282. let seconds = Float64((event as! MPSkipIntervalCommandEvent).interval)
  283. self?.currentViewController.playerToolBar.skip(seconds: -seconds)
  284. return .success
  285. }
  286. }
  287. // AUDIO < >
  288. /*
  289. if metadata?.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  290. MPRemoteCommandCenter.shared().nextTrackCommand.isEnabled = true
  291. appDelegate.nextTrackCommand = MPRemoteCommandCenter.shared().nextTrackCommand.addTarget { event in
  292. self.forward()
  293. return .success
  294. }
  295. MPRemoteCommandCenter.shared().previousTrackCommand.isEnabled = true
  296. appDelegate.previousTrackCommand = MPRemoteCommandCenter.shared().previousTrackCommand.addTarget { event in
  297. self.backward()
  298. return .success
  299. }
  300. }
  301. */
  302. nowPlayingInfo[MPMediaItemPropertyTitle] = metadata.fileNameView
  303. nowPlayingInfo[MPMediaItemPropertyPlaybackDuration] = ncplayer.durationTime.seconds
  304. if let image = currentViewController.image {
  305. nowPlayingInfo[MPMediaItemPropertyArtwork] = MPMediaItemArtwork(boundsSize: image.size) { _ in
  306. return image
  307. }
  308. }
  309. MPNowPlayingInfoCenter.default().nowPlayingInfo = nowPlayingInfo
  310. }
  311. func clearCommandCenter() {
  312. UIApplication.shared.endReceivingRemoteControlEvents()
  313. MPNowPlayingInfoCenter.default().nowPlayingInfo = [:]
  314. MPRemoteCommandCenter.shared().playCommand.isEnabled = false
  315. MPRemoteCommandCenter.shared().pauseCommand.isEnabled = false
  316. MPRemoteCommandCenter.shared().skipForwardCommand.isEnabled = false
  317. MPRemoteCommandCenter.shared().skipBackwardCommand.isEnabled = false
  318. MPRemoteCommandCenter.shared().nextTrackCommand.isEnabled = false
  319. MPRemoteCommandCenter.shared().previousTrackCommand.isEnabled = false
  320. if let playCommand = playCommand {
  321. MPRemoteCommandCenter.shared().playCommand.removeTarget(playCommand)
  322. self.playCommand = nil
  323. }
  324. if let pauseCommand = pauseCommand {
  325. MPRemoteCommandCenter.shared().pauseCommand.removeTarget(pauseCommand)
  326. self.pauseCommand = nil
  327. }
  328. if let skipForwardCommand = skipForwardCommand {
  329. MPRemoteCommandCenter.shared().skipForwardCommand.removeTarget(skipForwardCommand)
  330. self.skipForwardCommand = nil
  331. }
  332. if let skipBackwardCommand = skipBackwardCommand {
  333. MPRemoteCommandCenter.shared().skipBackwardCommand.removeTarget(skipBackwardCommand)
  334. self.skipBackwardCommand = nil
  335. }
  336. if let nextTrackCommand = nextTrackCommand {
  337. MPRemoteCommandCenter.shared().nextTrackCommand.removeTarget(nextTrackCommand)
  338. self.nextTrackCommand = nil
  339. }
  340. if let previousTrackCommand = previousTrackCommand {
  341. MPRemoteCommandCenter.shared().previousTrackCommand.removeTarget(previousTrackCommand)
  342. self.previousTrackCommand = nil
  343. }
  344. }
  345. }
  346. // MARK: - UIPageViewController Delegate Datasource
  347. extension NCViewerMediaPage: UIPageViewControllerDelegate, UIPageViewControllerDataSource {
  348. func shiftCurrentPage() {
  349. if metadatas.count == 0 {
  350. self.viewUnload()
  351. return
  352. }
  353. var direction: UIPageViewController.NavigationDirection = .forward
  354. if currentIndex == metadatas.count {
  355. currentIndex -= 1
  356. direction = .reverse
  357. }
  358. currentViewController.ncplayer?.deactivateObserver()
  359. let viewerMedia = getViewerMedia(index: currentIndex, metadata: metadatas[currentIndex])
  360. pageViewController.setViewControllers([viewerMedia], direction: direction, animated: true, completion: nil)
  361. }
  362. func reloadCurrentPage() {
  363. currentViewController.ncplayer?.deactivateObserver()
  364. let viewerMedia = getViewerMedia(index: currentIndex, metadata: metadatas[currentIndex])
  365. viewerMedia.autoPlay = false
  366. pageViewController.setViewControllers([viewerMedia], direction: .forward, animated: false, completion: nil)
  367. }
  368. func goTo(index: Int, direction: UIPageViewController.NavigationDirection, autoPlay: Bool) {
  369. currentIndex = index
  370. currentViewController.ncplayer?.deactivateObserver()
  371. let viewerMedia = getViewerMedia(index: currentIndex, metadata: metadatas[currentIndex])
  372. viewerMedia.autoPlay = autoPlay
  373. pageViewController.setViewControllers([viewerMedia], direction: direction, animated: true, completion: nil)
  374. }
  375. func pageViewController(_ pageViewController: UIPageViewController, viewControllerBefore viewController: UIViewController) -> UIViewController? {
  376. if currentIndex == 0 { return nil }
  377. let viewerMedia = getViewerMedia(index: currentIndex - 1, metadata: metadatas[currentIndex - 1])
  378. return viewerMedia
  379. }
  380. func pageViewController(_ pageViewController: UIPageViewController, viewControllerAfter viewController: UIViewController) -> UIViewController? {
  381. if currentIndex == metadatas.count - 1 { return nil }
  382. let viewerMedia = getViewerMedia(index: currentIndex + 1, metadata: metadatas[currentIndex + 1])
  383. return viewerMedia
  384. }
  385. // START TRANSITION
  386. func pageViewController(_ pageViewController: UIPageViewController, willTransitionTo pendingViewControllers: [UIViewController]) {
  387. // Save time video
  388. if let ncplayer = currentViewController.ncplayer, ncplayer.isPlay() {
  389. ncplayer.saveCurrentTime()
  390. }
  391. guard let nextViewController = pendingViewControllers.first as? NCViewerMedia else { return }
  392. nextIndex = nextViewController.index
  393. }
  394. // END TRANSITION
  395. func pageViewController(_ pageViewController: UIPageViewController, didFinishAnimating finished: Bool, previousViewControllers: [UIViewController], transitionCompleted completed: Bool) {
  396. if completed && nextIndex != nil {
  397. previousViewControllers.forEach { viewController in
  398. let viewerMedia = viewController as! NCViewerMedia
  399. viewerMedia.ncplayer?.deactivateObserver()
  400. }
  401. currentIndex = nextIndex!
  402. }
  403. self.nextIndex = nil
  404. }
  405. }
  406. // MARK: - UIGestureRecognizerDelegate
  407. extension NCViewerMediaPage: UIGestureRecognizerDelegate {
  408. func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
  409. if let gestureRecognizer = gestureRecognizer as? UIPanGestureRecognizer {
  410. let velocity = gestureRecognizer.velocity(in: self.view)
  411. var velocityCheck: Bool = false
  412. if UIDevice.current.orientation.isLandscape {
  413. velocityCheck = velocity.x < 0
  414. } else {
  415. velocityCheck = velocity.y < 0
  416. }
  417. if velocityCheck {
  418. return false
  419. }
  420. }
  421. return true
  422. }
  423. func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
  424. if otherGestureRecognizer == currentViewController.scrollView.panGestureRecognizer {
  425. if self.currentViewController.scrollView.contentOffset.y == 0 {
  426. return true
  427. }
  428. }
  429. return false
  430. }
  431. @objc func didPanWith(gestureRecognizer: UIPanGestureRecognizer) {
  432. currentViewController.didPanWith(gestureRecognizer: gestureRecognizer)
  433. }
  434. @objc func didSingleTapWith(gestureRecognizer: UITapGestureRecognizer) {
  435. if let playerToolBar = currentViewController.playerToolBar, playerToolBar.isPictureInPictureActive() {
  436. playerToolBar.pictureInPictureController?.stopPictureInPicture()
  437. }
  438. if currentScreenMode == .full {
  439. changeScreenMode(mode: .normal, enableTimerAutoHide: true)
  440. } else {
  441. changeScreenMode(mode: .full)
  442. }
  443. }
  444. //
  445. // LIVE PHOTO
  446. //
  447. @objc func didLongpressGestureEvent(gestureRecognizer: UITapGestureRecognizer) {
  448. if !currentViewController.metadata.livePhoto { return }
  449. if gestureRecognizer.state == .began {
  450. currentViewController.updateViewConstraints()
  451. currentViewController.statusViewImage.isHidden = true
  452. currentViewController.statusLabel.isHidden = true
  453. let fileName = (currentViewController.metadata.fileNameView as NSString).deletingPathExtension + ".mov"
  454. if let metadata = NCManageDatabase.shared.getMetadata(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND fileNameView LIKE[c] %@", currentViewController.metadata.account, currentViewController.metadata.serverUrl, fileName)), CCUtility.fileProviderStorageExists(metadata) {
  455. AudioServicesPlaySystemSound(1519) // peek feedback
  456. if let url = NCKTVHTTPCache.shared.getVideoURL(metadata: metadata) {
  457. self.ncplayerLivePhoto = NCPlayer.init(url: url, autoPlay: true, imageVideoContainer: self.currentViewController.imageVideoContainer, playerToolBar: nil, metadata: metadata, detailView: nil, viewController: self)
  458. }
  459. }
  460. } else if gestureRecognizer.state == .ended {
  461. currentViewController.statusViewImage.isHidden = false
  462. currentViewController.statusLabel.isHidden = false
  463. currentViewController.imageVideoContainer.image = currentViewController.image
  464. ncplayerLivePhoto?.videoLayer?.removeFromSuperlayer()
  465. ncplayerLivePhoto?.deactivateObserver()
  466. }
  467. }
  468. }