NCViewerMedia.swift 27 KB

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