NCPlayer.swift 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. //
  2. // NCPlayer.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/07/21.
  6. // Copyright © 2021 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 Foundation
  24. import NextcloudKit
  25. import UIKit
  26. import AVFoundation
  27. import MediaPlayer
  28. import JGProgressHUD
  29. import Alamofire
  30. import MobileVLCKit
  31. class NCPlayer: NSObject {
  32. internal let appDelegate = UIApplication.shared.delegate as! AppDelegate
  33. internal var url: URL?
  34. internal weak var playerToolBar: NCPlayerToolBar?
  35. internal weak var viewController: UIViewController?
  36. private weak var imageVideoContainer: imageVideoContainerView?
  37. private weak var detailView: NCViewerMediaDetailView?
  38. private weak var viewerMediaPage: NCViewerMediaPage?
  39. var player: VLCMediaPlayer?
  40. var thumbnailer: VLCMediaThumbnailer?
  41. var metadata: tableMetadata
  42. var singleTapGestureRecognizer: UITapGestureRecognizer!
  43. var width: Int64?
  44. var height: Int64?
  45. let fileNamePreviewLocalPath: String
  46. let fileNameIconLocalPath: String
  47. // MARK: - View Life Cycle
  48. init(imageVideoContainer: imageVideoContainerView, playerToolBar: NCPlayerToolBar?, metadata: tableMetadata, detailView: NCViewerMediaDetailView?, viewController: UIViewController, viewerMediaPage: NCViewerMediaPage?) {
  49. self.imageVideoContainer = imageVideoContainer
  50. self.playerToolBar = playerToolBar
  51. self.metadata = metadata
  52. self.detailView = detailView
  53. self.viewController = viewController
  54. self.viewerMediaPage = viewerMediaPage
  55. fileNamePreviewLocalPath = CCUtility.getDirectoryProviderStoragePreviewOcId(metadata.ocId, etag: metadata.etag)!
  56. fileNameIconLocalPath = CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)!
  57. super.init()
  58. do {
  59. try AVAudioSession.sharedInstance().setCategory(.playback)
  60. try AVAudioSession.sharedInstance().overrideOutputAudioPort(AVAudioSession.PortOverride.none)
  61. try AVAudioSession.sharedInstance().setActive(true)
  62. } catch {
  63. print(error)
  64. }
  65. }
  66. deinit {
  67. print("deinit NCPlayer with ocId \(metadata.ocId)")
  68. player?.stop()
  69. if let playerToolBar = self.playerToolBar, playerToolBar.isPictureInPictureActive() {
  70. playerToolBar.pictureInPictureController?.stopPictureInPicture()
  71. }
  72. }
  73. func openAVPlayer(url: URL) {
  74. var position: Float = 0
  75. self.url = url
  76. self.singleTapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didSingleTapWith(gestureRecognizer:)))
  77. #if MFFFLIB
  78. MFFF.shared.setDelegate = self
  79. MFFF.shared.dismissMessage()
  80. NotificationCenter.default.addObserver(self, selector: #selector(convertVideoDidFinish(_:)), name: NSNotification.Name(rawValue: self.metadata.ocId), object: nil)
  81. if CCUtility.fileProviderStorageExists(metadata) {
  82. self.url = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: NCGlobal.shared.fileNameVideoEncoded))
  83. self.isProxy = false
  84. }
  85. if MFFF.shared.existsMFFFSession(url: URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView))) {
  86. return
  87. }
  88. #endif
  89. print("Play URL: \(url)")
  90. player = VLCMediaPlayer()
  91. player?.media = VLCMedia(url: url)
  92. player?.delegate = self
  93. player?.media?.addOption("--network-caching=5000")
  94. let volume = CCUtility.getAudioVolume()
  95. if metadata.livePhoto {
  96. player?.audio?.volume = 0
  97. } else if metadata.classFile == NKCommon.TypeClassFile.audio.rawValue {
  98. player?.audio?.volume = Int32(volume)
  99. } else {
  100. player?.audio?.volume = Int32(volume)
  101. if let result = NCManageDatabase.shared.getVideoPosition(metadata: metadata) {
  102. position = result
  103. player?.position = position
  104. }
  105. }
  106. player?.drawable = self.imageVideoContainer
  107. if let view = player?.drawable as? UIView {
  108. view.isUserInteractionEnabled = true
  109. view.addGestureRecognizer(singleTapGestureRecognizer)
  110. }
  111. if NCManageDatabase.shared.getVideoAutoplay(metadata: metadata) {
  112. playerPlay()
  113. playerToolBar?.show(enableTimerAutoHide: true)
  114. } else {
  115. playerToolBar?.show(enableTimerAutoHide: false)
  116. }
  117. playerToolBar?.setBarPlayer(ncplayer: self, position: position)
  118. playerToolBar?.setMetadata(self.metadata)
  119. if let media = player?.media {
  120. thumbnailer = VLCMediaThumbnailer(media: media, andDelegate: self)
  121. }
  122. }
  123. func deactivatePlayer() {
  124. playerPause(withSnapshot: false)
  125. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterApplicationWillResignActive), object: nil)
  126. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterApplicationDidEnterBackground), object: nil)
  127. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterApplicationDidBecomeActive), object: nil)
  128. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterPauseMedia), object: nil)
  129. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterPlayMedia), object: nil)
  130. }
  131. // MARK: - UIGestureRecognizerDelegate
  132. @objc func didSingleTapWith(gestureRecognizer: UITapGestureRecognizer) {
  133. viewerMediaPage?.didSingleTapWith(gestureRecognizer: gestureRecognizer)
  134. }
  135. // MARK: - NotificationCenter
  136. @objc func applicationDidEnterBackground(_ notification: NSNotification) {
  137. if metadata.classFile == NKCommon.TypeClassFile.video.rawValue, let playerToolBar = self.playerToolBar {
  138. if !playerToolBar.isPictureInPictureActive() {
  139. playerPause()
  140. }
  141. }
  142. }
  143. @objc func applicationDidBecomeActive(_ notification: NSNotification) {
  144. playerToolBar?.update(position: player?.position)
  145. }
  146. // MARK: -
  147. func isPlay() -> Bool {
  148. return player?.isPlaying ?? false
  149. }
  150. @objc func playerPlay() {
  151. player?.play()
  152. if let position = NCManageDatabase.shared.getVideoPosition(metadata: self.metadata) {
  153. player?.position = position
  154. playerToolBar?.update(position: position)
  155. } else {
  156. playerToolBar?.update(position: player?.position)
  157. }
  158. }
  159. @objc func playerPause(withSnapshot: Bool = true) {
  160. if let width = width, let height = height, withSnapshot {
  161. player?.saveVideoSnapshot(at: fileNamePreviewLocalPath, withWidth: Int32(width), andHeight: Int32(height))
  162. }
  163. player?.pause()
  164. playerToolBar?.update(position: player?.position)
  165. if let playerToolBar = self.playerToolBar, playerToolBar.isPictureInPictureActive() {
  166. playerToolBar.pictureInPictureController?.stopPictureInPicture()
  167. }
  168. }
  169. func videoSeek(position: Float) {
  170. player?.position = position
  171. playerToolBar?.update(position: position)
  172. }
  173. func savePosition(_ position: Float) {
  174. if metadata.classFile == NKCommon.TypeClassFile.audio.rawValue { return }
  175. let length = Int(player?.media?.length.intValue ?? 0)
  176. NCManageDatabase.shared.addVideo(metadata: metadata, position: position, length: length, autoplay: isPlay())
  177. }
  178. func snapshot() {
  179. if let player = player, let width = width, let height = height {
  180. player.saveVideoSnapshot(at: fileNamePreviewLocalPath, withWidth: Int32(width), andHeight: Int32(height))
  181. }
  182. }
  183. internal func downloadVideo(isEncrypted: Bool = false, requiredConvert: Bool = false) {
  184. guard let view = appDelegate.window?.rootViewController?.view else { return }
  185. let serverUrlFileName = metadata.serverUrl + "/" + metadata.fileName
  186. let fileNameLocalPath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileName)!
  187. let hud = JGProgressHUD()
  188. var downloadRequest: DownloadRequest?
  189. hud.indicatorView = JGProgressHUDRingIndicatorView()
  190. if let indicatorView = hud.indicatorView as? JGProgressHUDRingIndicatorView {
  191. indicatorView.ringWidth = 1.5
  192. }
  193. hud.textLabel.text = NSLocalizedString(metadata.fileNameView, comment: "")
  194. hud.detailTextLabel.text = NSLocalizedString("_tap_to_cancel_", comment: "")
  195. hud.show(in: view)
  196. hud.tapOnHUDViewBlock = { hud in
  197. downloadRequest?.cancel()
  198. }
  199. NextcloudKit.shared.download(serverUrlFileName: serverUrlFileName, fileNameLocalPath: fileNameLocalPath) { request in
  200. downloadRequest = request
  201. } taskHandler: { task in
  202. // task
  203. } progressHandler: { progress in
  204. hud.progress = Float(progress.fractionCompleted)
  205. } completionHandler: { _, _, _, _, _, afError, error in
  206. if afError == nil {
  207. NCManageDatabase.shared.addLocalFile(metadata: self.metadata)
  208. if isEncrypted {
  209. if let result = NCManageDatabase.shared.getE2eEncryption(predicate: NSPredicate(format: "fileNameIdentifier == %@ AND serverUrl == %@", self.metadata.fileName, self.metadata.serverUrl)) {
  210. NCEndToEndEncryption.sharedManager()?.decryptFile(self.metadata.fileName, fileNameView: self.metadata.fileNameView, ocId: self.metadata.ocId, key: result.key, initializationVector: result.initializationVector, authenticationTag: result.authenticationTag)
  211. }
  212. }
  213. if CCUtility.fileProviderStorageExists(self.metadata) || self.metadata.isDirectoryE2EE {
  214. let url = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(self.metadata.ocId, fileNameView: self.metadata.fileNameView))
  215. if requiredConvert {
  216. #if MFFFLIB
  217. self.convertVideo(withAlert: false)
  218. #endif
  219. } else {
  220. self.openAVPlayer(url: url)
  221. }
  222. }
  223. }
  224. hud.dismiss()
  225. }
  226. }
  227. }
  228. extension NCPlayer: VLCMediaPlayerDelegate {
  229. func mediaPlayerStateChanged(_ aNotification: Notification) {
  230. guard let player = self.player else { return }
  231. switch player.state {
  232. case .stopped:
  233. if let url = self.url {
  234. NCManageDatabase.shared.addVideo(metadata: metadata, position: 0, autoplay: false)
  235. if !(self.detailView?.isShow() ?? false) {
  236. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterShowPlayerToolBar, userInfo: ["ocId": self.metadata.ocId, "enableTimerAutoHide": false])
  237. }
  238. self.thumbnailer?.fetchThumbnail()
  239. self.openAVPlayer(url: url)
  240. }
  241. print("Played mode: STOPPED")
  242. break
  243. case .opening:
  244. playerToolBar?.buffering()
  245. print("Played mode: OPENING")
  246. break
  247. case .buffering:
  248. playerToolBar?.buffering()
  249. print("Played mode: BUFFERING")
  250. break
  251. case .ended:
  252. print("Played mode: ENDED")
  253. playerToolBar?.update(position: player.position)
  254. break
  255. case .error:
  256. print("Played mode: ERROR")
  257. break
  258. case .playing:
  259. // var codecNameVideo, codecNameAudio, codecAudioChannelLayout, codecAudioLanguage, codecQuality: String?
  260. if let tracksInformation = player.media?.tracksInformation {
  261. for case let track as [String:Any] in tracksInformation {
  262. if track["type"] as? String == "video" {
  263. width = track["width"] as? Int64
  264. height = track["height"] as? Int64
  265. //codecNameVideo = track["codec"] as? String
  266. }
  267. if track["type"] as? String == "audio" {
  268. // codecNameAudio = track["codec"] as? String
  269. }
  270. }
  271. //NCManageDatabase.shared.addVideoCodec(metadata: metadata, codecNameVideo: codecNameVideo, codecNameAudio: codecNameAudio, codecAudioChannelLayout: codecAudioChannelLayout, codecAudioLanguage: codecAudioLanguage, codecMaxCompatibility: true, codecQuality: codecQuality)
  272. }
  273. // let metaDictionary = player.media?.metaData
  274. print("Played mode: PLAYING")
  275. break
  276. case .paused:
  277. print("Played mode: PAUSED")
  278. playerToolBar?.update(position: player.position)
  279. break
  280. default: break
  281. }
  282. print(player.state)
  283. }
  284. func mediaPlayerTimeChanged(_ aNotification: Notification) {
  285. self.playerToolBar?.update(position: player?.position)
  286. }
  287. func mediaPlayerTitleChanged(_ aNotification: Notification) {
  288. print(".")
  289. }
  290. func mediaPlayerChapterChanged(_ aNotification: Notification) {
  291. print(".")
  292. }
  293. func mediaPlayerLoudnessChanged(_ aNotification: Notification) {
  294. print(".")
  295. }
  296. func mediaPlayerSnapshot(_ aNotification: Notification) {
  297. if let data = NSData(contentsOfFile: fileNamePreviewLocalPath),
  298. let image = UIImage(data: data as Data),
  299. let image = image.resizeImage(size: CGSize(width: NCGlobal.shared.sizeIcon, height: NCGlobal.shared.sizeIcon)),
  300. let data = image.jpegData(compressionQuality: 0.5) {
  301. try? data.write(to: URL(fileURLWithPath: fileNameIconLocalPath))
  302. }
  303. print("Snapshot saved")
  304. }
  305. func mediaPlayerStartedRecording(_ player: VLCMediaPlayer) {
  306. // Handle other states...
  307. }
  308. func mediaPlayer(_ player: VLCMediaPlayer, recordingStoppedAtPath path: String) {
  309. // Handle other states...
  310. }
  311. }
  312. extension NCPlayer: VLCMediaThumbnailerDelegate {
  313. func mediaThumbnailerDidTimeOut(_ mediaThumbnailer: VLCMediaThumbnailer) { }
  314. func mediaThumbnailer(_ mediaThumbnailer: VLCMediaThumbnailer, didFinishThumbnail thumbnail: CGImage) {
  315. var image: UIImage?
  316. do {
  317. let fileNamePreviewLocalPath = CCUtility.getDirectoryProviderStoragePreviewOcId(metadata.ocId, etag: metadata.etag)!
  318. let fileNameIconLocalPath = CCUtility.getDirectoryProviderStorageIconOcId(metadata.ocId, etag: metadata.etag)!
  319. image = UIImage(cgImage: thumbnail)
  320. // Update Playing Info Center
  321. let mediaItemPropertyTitle = MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPMediaItemPropertyTitle] as? String
  322. if let image = image, mediaItemPropertyTitle == metadata.fileNameView {
  323. MPNowPlayingInfoCenter.default().nowPlayingInfo?[MPMediaItemPropertyArtwork] = MPMediaItemArtwork(boundsSize: image.size) { _ in
  324. return image
  325. }
  326. }
  327. // Preview
  328. if let data = image?.jpegData(compressionQuality: 0.5) {
  329. try data.write(to: URL(fileURLWithPath: fileNamePreviewLocalPath), options: .atomic)
  330. }
  331. // Icon
  332. if let data = image?.jpegData(compressionQuality: 0.5) {
  333. try data.write(to: URL(fileURLWithPath: fileNameIconLocalPath), options: .atomic)
  334. }
  335. } catch let error as NSError {
  336. print("GeneratorImagePreview localized error:")
  337. print(error.localizedDescription)
  338. }
  339. }
  340. }