NCViewerMedia.swift 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  1. //
  2. // NCViewerMedia.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 SVGKit
  25. import NCCommunication
  26. class NCViewerMedia: 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: NCViewerMediaZoom {
  37. return self.pageViewController.viewControllers![0] as! NCViewerMediaZoom
  38. }
  39. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  40. var metadatas: [tableMetadata] = []
  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 cache: [Int:NCViewerMediaZoom] = [:]
  48. let cacheSize: Int = 5
  49. var textColor: UIColor = NCBrandColor.shared.label
  50. // MARK: - View Life Cycle
  51. override func viewDidLoad() {
  52. super.viewDidLoad()
  53. navigationItem.rightBarButtonItem = UIBarButtonItem.init(image: UIImage(named: "more")!.image(color: NCBrandColor.shared.label, size: 25), style: .plain, target: self, action: #selector(self.openMenuMore))
  54. singleTapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didSingleTapWith(gestureRecognizer:)))
  55. panGestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(didPanWith(gestureRecognizer:)))
  56. longtapGestureRecognizer = UILongPressGestureRecognizer()
  57. longtapGestureRecognizer.delaysTouchesBegan = true
  58. longtapGestureRecognizer.minimumPressDuration = 0.3
  59. longtapGestureRecognizer.delegate = self
  60. longtapGestureRecognizer.addTarget(self, action: #selector(didLongpressGestureEvent(gestureRecognizer:)))
  61. pageViewController.delegate = self
  62. pageViewController.dataSource = self
  63. pageViewController.view.addGestureRecognizer(panGestureRecognizer)
  64. pageViewController.view.addGestureRecognizer(singleTapGestureRecognizer)
  65. pageViewController.view.addGestureRecognizer(longtapGestureRecognizer)
  66. // save cache
  67. if let viewerMediaZoom = getCache(index: currentIndex) {
  68. pageViewController.setViewControllers([viewerMediaZoom], direction: .forward, animated: true, completion: nil)
  69. } else {
  70. let viewerMediaZoom = setCache(index: currentIndex, image: getImageMetadata(metadatas[currentIndex]), metadata: metadatas[currentIndex], direction: .forward)
  71. pageViewController.setViewControllers([viewerMediaZoom], direction: .forward, animated: true, completion: nil)
  72. }
  73. NotificationCenter.default.addObserver(self, selector: #selector(changeTheming), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterChangeTheming), object: nil)
  74. NotificationCenter.default.addObserver(self, selector: #selector(viewUnload), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMenuDetailClose), object: nil)
  75. progressView.tintColor = NCBrandColor.shared.brandElement
  76. progressView.trackTintColor = .clear
  77. progressView.progress = 0
  78. }
  79. override func viewWillAppear(_ animated: Bool) {
  80. super.viewWillAppear(animated)
  81. NotificationCenter.default.addObserver(self, selector: #selector(deleteFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
  82. NotificationCenter.default.addObserver(self, selector: #selector(renameFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
  83. NotificationCenter.default.addObserver(self, selector: #selector(moveFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
  84. NotificationCenter.default.addObserver(self, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile), object: nil)
  85. NotificationCenter.default.addObserver(self, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
  86. NotificationCenter.default.addObserver(self, selector: #selector(triggerProgressTask(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterProgressTask), object:nil)
  87. NotificationCenter.default.addObserver(self, selector: #selector(downloadedThumbnail(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedThumbnail), object: nil)
  88. NotificationCenter.default.addObserver(self, selector: #selector(hidePlayerToolBar(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterHidePlayerToolBar), object: nil)
  89. NotificationCenter.default.addObserver(self, selector: #selector(showPlayerToolBar(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterShowPlayerToolBar), object: nil)
  90. }
  91. override func viewWillDisappear(_ animated: Bool) {
  92. super.viewWillDisappear(animated)
  93. // Save time video
  94. if let ncplayer = currentViewController.ncplayer, ncplayer.isPlay() {
  95. ncplayer.playerPause()
  96. ncplayer.saveCurrentTime()
  97. }
  98. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDeleteFile), object: nil)
  99. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterRenameFile), object: nil)
  100. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterMoveFile), object: nil)
  101. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedFile), object: nil)
  102. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterUploadedFile), object: nil)
  103. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterProgressTask), object: nil)
  104. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterDownloadedThumbnail), object: nil)
  105. }
  106. override var preferredStatusBarStyle: UIStatusBarStyle {
  107. if currentScreenMode == .normal {
  108. return .default
  109. } else {
  110. return .lightContent
  111. }
  112. }
  113. // MARK: -
  114. func getCache(index: Int) -> NCViewerMediaZoom? {
  115. return cache[index]
  116. }
  117. func setCache(index: Int, image: UIImage?, metadata: tableMetadata, direction: UIPageViewController.NavigationDirection) -> NCViewerMediaZoom {
  118. let viewerMediaZoom = UIStoryboard(name: "NCViewerMedia", bundle: nil).instantiateViewController(withIdentifier: "NCViewerMediaZoom") as! NCViewerMediaZoom
  119. viewerMediaZoom.index = index
  120. viewerMediaZoom.image = image
  121. viewerMediaZoom.metadata = metadata
  122. viewerMediaZoom.viewerMedia = self
  123. singleTapGestureRecognizer.require(toFail: viewerMediaZoom.doubleTapGestureRecognizer)
  124. if cache.count < cacheSize {
  125. cache[index] = viewerMediaZoom
  126. } else {
  127. let sortedCache = cache.sorted { (first, second) -> Bool in
  128. return first.key < second.key
  129. }
  130. if direction == .forward, let firstCache = sortedCache.first {
  131. cache[firstCache.key] = nil
  132. } else if direction == .reverse, let lastCache = sortedCache.last {
  133. cache[lastCache.key] = nil
  134. }
  135. cache[index] = viewerMediaZoom
  136. }
  137. return viewerMediaZoom
  138. }
  139. @objc func viewUnload() {
  140. navigationController?.popViewController(animated: true)
  141. }
  142. @objc func openMenuMore() {
  143. let imageIcon = UIImage(contentsOfFile: CCUtility.getDirectoryProviderStorageIconOcId(currentViewController.metadata.ocId, etag: currentViewController.metadata.etag))
  144. NCViewer.shared.toggleMenu(viewController: self, metadata: currentViewController.metadata, webView: false, imageIcon: imageIcon)
  145. }
  146. deinit {
  147. print("deinit NCViewerMedia")
  148. }
  149. func changeScreenMode(mode: ScreenMode, enableTimerAutoHide: Bool = false) {
  150. if mode == .normal {
  151. navigationController?.setNavigationBarHidden(false, animated: true)
  152. progressView.isHidden = false
  153. if !currentViewController.detailView.isShow() {
  154. currentViewController.playerToolBar.show(enableTimerAutoHide: enableTimerAutoHide)
  155. }
  156. NCUtility.shared.colorNavigationController(navigationController, backgroundColor: NCBrandColor.shared.systemBackground, titleColor: NCBrandColor.shared.label, tintColor: nil, withoutShadow: false)
  157. view.backgroundColor = NCBrandColor.shared.systemBackground
  158. textColor = NCBrandColor.shared.label
  159. } else {
  160. navigationController?.setNavigationBarHidden(true, animated: true)
  161. progressView.isHidden = true
  162. currentViewController.playerToolBar.hide()
  163. view.backgroundColor = .black
  164. textColor = .white
  165. }
  166. currentScreenMode = mode
  167. if currentViewController.metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue {
  168. saveScreenModeImage = mode
  169. }
  170. setNeedsStatusBarAppearanceUpdate()
  171. currentViewController.reloadDetail()
  172. }
  173. //MARK: - NotificationCenter
  174. @objc func downloadedFile(_ notification: NSNotification) {
  175. if let userInfo = notification.userInfo as NSDictionary?, let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId), let errorCode = userInfo["errorCode"] as? Int {
  176. if errorCode == 0 && currentViewController.metadata.ocId == ocId, let image = getImageMetadata(metadata) {
  177. currentViewController.reload(image: image, metadata: metadata)
  178. if self.metadatas.first(where: { $0.ocId == metadata.ocId }) != nil {
  179. progressView.progress = 0
  180. }
  181. }
  182. }
  183. }
  184. @objc func downloadedThumbnail(_ notification: NSNotification) {
  185. if let userInfo = notification.userInfo as NSDictionary?, let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  186. if currentViewController.metadata.ocId == ocId, let image = getImageMetadata(metadata) {
  187. currentViewController.reload(image: image, metadata: metadata)
  188. }
  189. }
  190. }
  191. @objc func uploadedFile(_ notification: NSNotification) {
  192. if let userInfo = notification.userInfo as NSDictionary? {
  193. if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId), let errorCode = userInfo["errorCode"] as? Int {
  194. if errorCode == 0 && metadata.ocId == currentViewController.metadata.ocId {
  195. //self.reloadCurrentPage()
  196. }
  197. }
  198. }
  199. }
  200. @objc func triggerProgressTask(_ notification: NSNotification) {
  201. if let userInfo = notification.userInfo as NSDictionary? {
  202. if let serverUrl = userInfo["serverUrl"] as? String, let fileName = userInfo["fileName"] as? String, let progressNumber = userInfo["progress"] as? NSNumber {
  203. if self.metadatas.first(where: { $0.serverUrl == serverUrl && $0.fileName == fileName}) != nil {
  204. let progress = progressNumber.floatValue
  205. if progress == 1 {
  206. self.progressView.progress = 0
  207. } else {
  208. self.progressView.progress = progress
  209. }
  210. }
  211. }
  212. }
  213. }
  214. @objc func deleteFile(_ notification: NSNotification) {
  215. if let userInfo = notification.userInfo as NSDictionary? {
  216. if let ocId = userInfo["ocId"] as? String {
  217. let metadatas = self.metadatas.filter { $0.ocId != ocId }
  218. if self.metadatas.count == metadatas.count { return }
  219. self.metadatas = metadatas
  220. if ocId == currentViewController.metadata.ocId {
  221. if !shiftCurrentPage() {
  222. self.viewUnload()
  223. }
  224. }
  225. }
  226. }
  227. }
  228. @objc func renameFile(_ notification: NSNotification) {
  229. if let userInfo = notification.userInfo as NSDictionary? {
  230. if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  231. if let index = metadatas.firstIndex(where: {$0.ocId == metadata.ocId}) {
  232. metadatas[index] = metadata
  233. if index == currentIndex {
  234. navigationItem.title = metadata.fileNameView
  235. currentViewController.metadata = metadata
  236. self.currentViewController.metadata = metadata
  237. }
  238. }
  239. }
  240. }
  241. }
  242. @objc func moveFile(_ notification: NSNotification) {
  243. if let userInfo = notification.userInfo as NSDictionary? {
  244. if let ocId = userInfo["ocId"] as? String, let metadata = NCManageDatabase.shared.getMetadataFromOcId(ocId) {
  245. if metadatas.firstIndex(where: {$0.ocId == metadata.ocId}) != nil {
  246. deleteFile(notification)
  247. }
  248. }
  249. }
  250. }
  251. @objc func changeTheming() {
  252. }
  253. @objc func hidePlayerToolBar(_ notification: NSNotification) {
  254. if let userInfo = notification.userInfo as NSDictionary?, let ocId = userInfo["ocId"] as? String {
  255. if currentViewController.metadata.ocId == ocId {
  256. changeScreenMode(mode: .full)
  257. }
  258. }
  259. }
  260. @objc func showPlayerToolBar(_ notification: NSNotification) {
  261. if let userInfo = notification.userInfo as NSDictionary?, let ocId = userInfo["ocId"] as? String, let enableTimerAutoHide = userInfo["enableTimerAutoHide"] as? Bool{
  262. if currentViewController.metadata.ocId == ocId, let ncplayer = currentViewController.ncplayer, !ncplayer.isPictureInPictureActive() {
  263. changeScreenMode(mode: .normal, enableTimerAutoHide: enableTimerAutoHide)
  264. }
  265. }
  266. }
  267. //MARK: - Image
  268. func getImageMetadata(_ metadata: tableMetadata) -> UIImage? {
  269. if let image = getImage(metadata: metadata) {
  270. return image
  271. }
  272. if metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue && !metadata.hasPreview {
  273. NCUtility.shared.createImageFrom(fileName: metadata.fileNameView, ocId: metadata.ocId, etag: metadata.etag, classFile: metadata.classFile)
  274. }
  275. if CCUtility.fileProviderStoragePreviewIconExists(metadata.ocId, etag: metadata.etag) {
  276. if let imagePreviewPath = CCUtility.getDirectoryProviderStoragePreviewOcId(metadata.ocId, etag: metadata.etag) {
  277. return UIImage.init(contentsOfFile: imagePreviewPath)
  278. }
  279. }
  280. return nil
  281. }
  282. private func getImage(metadata: tableMetadata) -> UIImage? {
  283. let ext = CCUtility.getExtension(metadata.fileNameView)
  284. var image: UIImage?
  285. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) && metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue {
  286. let previewPath = CCUtility.getDirectoryProviderStoragePreviewOcId(metadata.ocId, etag: metadata.etag)!
  287. let imagePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  288. if ext == "GIF" {
  289. if !FileManager().fileExists(atPath: previewPath) {
  290. NCUtility.shared.createImageFrom(fileName: metadata.fileNameView, ocId: metadata.ocId, etag: metadata.etag, classFile: metadata.classFile)
  291. }
  292. image = UIImage.animatedImage(withAnimatedGIFURL: URL(fileURLWithPath: imagePath))
  293. } else if ext == "SVG" {
  294. if let svgImage = SVGKImage(contentsOfFile: imagePath) {
  295. svgImage.size = CGSize(width: NCGlobal.shared.sizePreview, height: NCGlobal.shared.sizePreview)
  296. if let image = svgImage.uiImage {
  297. if !FileManager().fileExists(atPath: previewPath) {
  298. do {
  299. try image.pngData()?.write(to: URL(fileURLWithPath: previewPath), options: .atomic)
  300. } catch { }
  301. }
  302. return image
  303. } else {
  304. return nil
  305. }
  306. } else {
  307. return nil
  308. }
  309. } else {
  310. NCUtility.shared.createImageFrom(fileName: metadata.fileNameView, ocId: metadata.ocId, etag: metadata.etag, classFile: metadata.classFile)
  311. image = UIImage.init(contentsOfFile: imagePath)
  312. }
  313. }
  314. return image
  315. }
  316. }
  317. //MARK: - UIPageViewController Delegate Datasource
  318. extension NCViewerMedia: UIPageViewControllerDelegate, UIPageViewControllerDataSource {
  319. func shiftCurrentPage() -> Bool {
  320. if metadatas.count == 0 { return false }
  321. cache.removeAll()
  322. var direction: UIPageViewController.NavigationDirection = .forward
  323. if currentIndex == metadatas.count {
  324. currentIndex -= 1
  325. direction = .reverse
  326. }
  327. if let viewerMediaZoom = getCache(index: currentIndex) {
  328. pageViewController.setViewControllers([viewerMediaZoom], direction: direction, animated: true, completion: nil)
  329. } else {
  330. let viewerMediaZoom = setCache(index: currentIndex, image: getImageMetadata(metadatas[currentIndex]), metadata: metadatas[currentIndex], direction: direction)
  331. pageViewController.setViewControllers([viewerMediaZoom], direction: direction, animated: true, completion: nil)
  332. }
  333. return true
  334. }
  335. func goTo(index: Int, direction: UIPageViewController.NavigationDirection, autoPlay: Bool) {
  336. currentIndex = index
  337. if let viewerMediaZoom = getCache(index: currentIndex) {
  338. viewerMediaZoom.autoPlay = autoPlay
  339. pageViewController.setViewControllers([viewerMediaZoom], direction: direction, animated: true, completion: nil)
  340. } else {
  341. let viewerMediaZoom = setCache(index: currentIndex, image: getImageMetadata(metadatas[currentIndex]), metadata: metadatas[currentIndex], direction: direction)
  342. viewerMediaZoom.autoPlay = autoPlay
  343. pageViewController.setViewControllers([viewerMediaZoom], direction: direction, animated: true, completion: nil)
  344. }
  345. }
  346. func pageViewController(_ pageViewController: UIPageViewController, viewControllerBefore viewController: UIViewController) -> UIViewController? {
  347. if currentIndex == 0 { return nil }
  348. if let viewerMediaZoom = getCache(index: currentIndex - 1) {
  349. return viewerMediaZoom
  350. } else {
  351. let viewerMediaZoom = setCache(index: currentIndex-1, image: getImageMetadata(metadatas[currentIndex-1]), metadata: metadatas[currentIndex-1], direction: .reverse)
  352. return viewerMediaZoom
  353. }
  354. }
  355. func pageViewController(_ pageViewController: UIPageViewController, viewControllerAfter viewController: UIViewController) -> UIViewController? {
  356. if currentIndex == metadatas.count - 1 { return nil }
  357. if let viewerMediaZoom = getCache(index: currentIndex + 1) {
  358. return viewerMediaZoom
  359. } else {
  360. let viewerMediaZoom = setCache(index: currentIndex+1, image: getImageMetadata(metadatas[currentIndex+1]), metadata: metadatas[currentIndex+1], direction: .forward)
  361. return viewerMediaZoom
  362. }
  363. }
  364. // START TRANSITION
  365. func pageViewController(_ pageViewController: UIPageViewController, willTransitionTo pendingViewControllers: [UIViewController]) {
  366. // Save time video
  367. if let ncplayer = currentViewController.ncplayer, ncplayer.isPlay() {
  368. ncplayer.saveCurrentTime()
  369. }
  370. guard let nextViewController = pendingViewControllers.first as? NCViewerMediaZoom else { return }
  371. nextIndex = nextViewController.index
  372. }
  373. // END TRANSITION
  374. func pageViewController(_ pageViewController: UIPageViewController, didFinishAnimating finished: Bool, previousViewControllers: [UIViewController], transitionCompleted completed: Bool) {
  375. if (completed && nextIndex != nil) {
  376. previousViewControllers.forEach { viewController in
  377. let viewerMediaZoom = viewController as! NCViewerMediaZoom
  378. viewerMediaZoom.scrollView.zoomScale = viewerMediaZoom.scrollView.minimumZoomScale
  379. }
  380. currentIndex = nextIndex!
  381. }
  382. self.nextIndex = nil
  383. }
  384. }
  385. //MARK: - UIGestureRecognizerDelegate
  386. extension NCViewerMedia: UIGestureRecognizerDelegate {
  387. func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool {
  388. if let gestureRecognizer = gestureRecognizer as? UIPanGestureRecognizer {
  389. let velocity = gestureRecognizer.velocity(in: self.view)
  390. var velocityCheck : Bool = false
  391. if UIDevice.current.orientation.isLandscape {
  392. velocityCheck = velocity.x < 0
  393. }
  394. else {
  395. velocityCheck = velocity.y < 0
  396. }
  397. if velocityCheck {
  398. return false
  399. }
  400. }
  401. return true
  402. }
  403. func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool {
  404. if otherGestureRecognizer == currentViewController.scrollView.panGestureRecognizer {
  405. if self.currentViewController.scrollView.contentOffset.y == 0 {
  406. return true
  407. }
  408. }
  409. return false
  410. }
  411. @objc func didPanWith(gestureRecognizer: UIPanGestureRecognizer) {
  412. currentViewController.didPanWith(gestureRecognizer: gestureRecognizer)
  413. }
  414. @objc func didSingleTapWith(gestureRecognizer: UITapGestureRecognizer) {
  415. if let pictureInPictureController = currentViewController.ncplayer?.pictureInPictureController {
  416. if pictureInPictureController.isPictureInPictureActive {
  417. pictureInPictureController.stopPictureInPicture()
  418. }
  419. }
  420. if currentScreenMode == .full {
  421. changeScreenMode(mode: .normal, enableTimerAutoHide: true)
  422. } else {
  423. changeScreenMode(mode: .full)
  424. }
  425. }
  426. //
  427. // LIVE PHOTO
  428. //
  429. @objc func didLongpressGestureEvent(gestureRecognizer: UITapGestureRecognizer) {
  430. if !currentViewController.metadata.livePhoto { return }
  431. if gestureRecognizer.state == .began {
  432. currentViewController.updateViewConstraints()
  433. currentViewController.statusViewImage.isHidden = true
  434. currentViewController.statusLabel.isHidden = true
  435. let fileName = (currentViewController.metadata.fileNameView as NSString).deletingPathExtension + ".mov"
  436. if let metadata = NCManageDatabase.shared.getMetadata(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND fileNameView LIKE[c] %@", currentViewController.metadata.account, currentViewController.metadata.serverUrl, fileName)) {
  437. if CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) {
  438. AudioServicesPlaySystemSound(1519) // peek feedback
  439. if let url = NCKTVHTTPCache.shared.getVideoURL(metadata: metadata) {
  440. self.ncplayerLivePhoto = NCPlayer.init(url: url, autoPlay: true, imageVideoContainer: self.currentViewController.imageVideoContainer, playerToolBar: nil, metadata: metadata, detailView: nil)
  441. }
  442. } else {
  443. let serverUrlFileName = metadata.serverUrl + "/" + metadata.fileNameView
  444. let fileNameLocalPath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
  445. NCCommunication.shared.download(serverUrlFileName: serverUrlFileName, fileNameLocalPath: fileNameLocalPath, requestHandler: { (_) in
  446. }, taskHandler: { (_) in
  447. }, progressHandler: { (progress) in
  448. self.progressView.progress = Float(progress.fractionCompleted)
  449. }) { (account, etag, date, length, allHeaderFields, error, errorCode, errorDescription) in
  450. self.progressView.progress = 0
  451. if errorCode == 0 && account == metadata.account {
  452. NCManageDatabase.shared.addLocalFile(metadata: metadata)
  453. if gestureRecognizer.state == .changed || gestureRecognizer.state == .began {
  454. AudioServicesPlaySystemSound(1519) // peek feedback
  455. if let url = NCKTVHTTPCache.shared.getVideoURL(metadata: metadata) {
  456. self.ncplayerLivePhoto = NCPlayer.init(url: url, autoPlay: true, imageVideoContainer: self.currentViewController.imageVideoContainer, playerToolBar: nil, metadata: metadata, detailView: nil)
  457. }
  458. }
  459. }
  460. }
  461. }
  462. }
  463. } else if gestureRecognizer.state == .ended {
  464. currentViewController.statusViewImage.isHidden = false
  465. currentViewController.statusLabel.isHidden = false
  466. self.ncplayerLivePhoto?.videoRemoved()
  467. }
  468. }
  469. }