NCViewerMedia.swift 27 KB

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