123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583 |
- //
- // NCViewerMedia.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 24/10/2020.
- // Copyright © 2020 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import UIKit
- import SVGKit
- import NextcloudKit
- import EasyTipView
- import SwiftUI
- import MobileVLCKit
- class NCViewerMedia: UIViewController {
- @IBOutlet weak var detailViewTopConstraint: NSLayoutConstraint!
- @IBOutlet weak var detailViewHeighConstraint: NSLayoutConstraint!
- @IBOutlet weak var imageViewTopConstraint: NSLayoutConstraint!
- @IBOutlet weak var imageViewBottomConstraint: NSLayoutConstraint!
- @IBOutlet weak var scrollView: UIScrollView!
- @IBOutlet weak var imageVideoContainer: UIImageView!
- @IBOutlet weak var statusViewImage: UIImageView!
- @IBOutlet weak var statusLabel: UILabel!
- @IBOutlet weak var detailView: NCViewerMediaDetailView!
- private var tipView: EasyTipView?
- private let player = VLCMediaPlayer()
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- weak var viewerMediaPage: NCViewerMediaPage?
- var playerToolBar: NCPlayerToolBar?
- var ncplayer: NCPlayer?
- var image: UIImage?
- var metadata: tableMetadata = tableMetadata()
- var index: Int = 0
- var doubleTapGestureRecognizer: UITapGestureRecognizer = UITapGestureRecognizer()
- var imageViewConstraint: CGFloat = 0
- var isDetailViewInitializze: Bool = false
- // MARK: - View Life Cycle
- required init?(coder aDecoder: NSCoder) {
- super.init(coder: aDecoder)
- doubleTapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(didDoubleTapWith(gestureRecognizer:)))
- doubleTapGestureRecognizer.numberOfTapsRequired = 2
- }
- deinit {
- print("deinit NCViewerMedia")
- self.tipView?.dismiss()
- NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterOpenMediaDetail), object: nil)
- }
- override func viewDidLoad() {
- super.viewDidLoad()
- scrollView.delegate = self
- scrollView.maximumZoomScale = 4
- scrollView.minimumZoomScale = 1
- view.addGestureRecognizer(doubleTapGestureRecognizer)
- if NCManageDatabase.shared.getMetadataLivePhoto(metadata: metadata) != nil {
- statusViewImage.image = NCUtility.shared.loadImage(named: "livephoto", color: .gray)
- statusLabel.text = "LIVE"
- } else {
- statusViewImage.image = nil
- statusLabel.text = ""
- }
-
- if metadata.isAudioOrVideo {
- playerToolBar = Bundle.main.loadNibNamed("NCPlayerToolBar", owner: self, options: nil)?.first as? NCPlayerToolBar
- if let playerToolBar = playerToolBar {
- view.addSubview(playerToolBar)
- playerToolBar.translatesAutoresizingMaskIntoConstraints = false
- playerToolBar.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor).isActive = true
- playerToolBar.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
- playerToolBar.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true
- playerToolBar.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true
- }
- self.ncplayer = NCPlayer(imageVideoContainer: self.imageVideoContainer, playerToolBar: self.playerToolBar, metadata: self.metadata, viewerMediaPage: self.viewerMediaPage)
- }
- // TIP
- var preferences = EasyTipView.Preferences()
- preferences.drawing.foregroundColor = .white
- preferences.drawing.backgroundColor = NCBrandColor.shared.nextcloud
- preferences.drawing.textAlignment = .left
- preferences.drawing.arrowPosition = .top
- preferences.drawing.cornerRadius = 10
- preferences.animating.dismissTransform = CGAffineTransform(translationX: 0, y: 100)
- preferences.animating.showInitialTransform = CGAffineTransform(translationX: 0, y: -100)
- preferences.animating.showInitialAlpha = 0
- preferences.animating.showDuration = 0.5
- preferences.animating.dismissDuration = 0
- tipView = EasyTipView(text: NSLocalizedString("_tip_open_mediadetail_", comment: ""), preferences: preferences, delegate: self)
- detailViewTopConstraint.constant = 0
- detailView.hide()
- self.image = nil
- self.imageVideoContainer.image = nil
- loadImage()
- }
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
- viewerMediaPage?.navigationController?.navigationBar.prefersLargeTitles = false
- viewerMediaPage?.navigationItem.title = metadata.fileNameView
- if metadata.isImage, let viewerMediaPage = self.viewerMediaPage {
- if viewerMediaPage.modifiedOcId.contains(metadata.ocId) {
- viewerMediaPage.modifiedOcId.removeAll(where: { $0 == metadata.ocId })
- loadImage()
- }
- }
- }
- override func viewDidAppear(_ animated: Bool) {
- super.viewDidAppear(animated)
- viewerMediaPage?.clearCommandCenter()
-
- if metadata.isAudioOrVideo {
- if let ncplayer = self.ncplayer {
- if ncplayer.url == nil {
- NCActivityIndicator.shared.startActivity(backgroundView: self.view, style: .medium)
- NCNetworking.shared.getVideoUrl(metadata: metadata) { url, autoplay, error in
- NCActivityIndicator.shared.stop()
- if error == .success, let url = url {
- ncplayer.openAVPlayer(url: url, autoplay: autoplay)
- } else {
- NCContentPresenter.shared.showError(error: error)
- }
- }
- } else {
- var position: Float = 0
- if let result = NCManageDatabase.shared.getVideo(metadata: metadata), let resultPosition = result.position {
- position = resultPosition
- }
- ncplayer.restartAVPlayer(position: position, pauseAfterPlay: true)
- }
- }
- } else if metadata.isImage {
- DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
- self.showTip()
- }
- }
- NotificationCenter.default.addObserver(self, selector: #selector(openDetail(_:)), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterOpenMediaDetail), object: nil)
- }
- override func viewWillDisappear(_ animated: Bool) {
- super.viewWillDisappear(animated)
- self.tipView?.dismiss()
- }
- override func viewDidDisappear(_ animated: Bool) {
- super.viewDidDisappear(animated)
- if let ncplayer = ncplayer, ncplayer.isPlay() {
- ncplayer.playerPause()
- }
- }
- override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) {
- self.tipView?.dismiss()
- if metadata.isVideo {
- self.imageVideoContainer.isHidden = true
- }
- super.viewWillTransition(to: size, with: coordinator)
- coordinator.animate(alongsideTransition: { context in
- // back to the original size
- self.scrollView.zoom(to: CGRect(x: 0, y: 0, width: self.scrollView.bounds.width, height: self.scrollView.bounds.height), animated: false)
- self.view.layoutIfNeeded()
- UIView.animate(withDuration: context.transitionDuration) {
- if self.detailView.isShow() {
- self.openDetail()
- }
- }
- }, completion: { context in
- self.showTip()
- if self.metadata.isVideo {
- self.imageVideoContainer.isHidden = false
- }
- })
- }
- // MARK: - Tip
- func showTip() {
- if !NCManageDatabase.shared.tipExists(NCGlobal.shared.tipNCViewerMediaDetailView), let view = self.navigationController?.navigationBar {
- self.tipView?.show(forView: view)
- }
- }
- // MARK: - Image
- func loadImage() {
- guard let metadata = NCManageDatabase.shared.getMetadataFromOcId(metadata.ocId) else { return }
- self.metadata = metadata
- // Download image
- if !CCUtility.fileProviderStorageExists(metadata) && metadata.isImage && metadata.session == "" {
- if metadata.livePhoto {
- let fileName = (metadata.fileNameView as NSString).deletingPathExtension + ".mov"
- if let metadata = NCManageDatabase.shared.getMetadata(predicate: NSPredicate(format: "account == %@ AND serverUrl == %@ AND fileNameView LIKE[c] %@", metadata.account, metadata.serverUrl, fileName)), !CCUtility.fileProviderStorageExists(metadata) {
- NCNetworking.shared.download(metadata: metadata, selector: "") { _, _ in }
- }
- }
- NCNetworking.shared.download(metadata: metadata, selector: "") { _, _ in
- let image = getImageMetadata(metadata)
- if self.metadata.ocId == metadata.ocId {
- self.image = image
- self.imageVideoContainer.image = image
- }
- }
- }
- // Get image
- let image = getImageMetadata(metadata)
- if self.metadata.ocId == metadata.ocId {
- self.image = image
- self.imageVideoContainer.image = image
- }
- func getImageMetadata(_ metadata: tableMetadata) -> UIImage? {
- if let image = getImage(metadata: metadata) {
- return image
- }
- if metadata.isVideo && !metadata.hasPreview {
- NCUtility.shared.createImageFrom(fileNameView: metadata.fileNameView, ocId: metadata.ocId, etag: metadata.etag, classFile: metadata.classFile)
- }
- if CCUtility.fileProviderStoragePreviewIconExists(metadata.ocId, etag: metadata.etag) {
- if let imagePreviewPath = CCUtility.getDirectoryProviderStoragePreviewOcId(metadata.ocId, etag: metadata.etag) {
- return UIImage(contentsOfFile: imagePreviewPath)
- }
- }
- if metadata.isAudio {
- return UIImage(named: "noPreviewAudio")!.image(color: .gray, size: view.frame.width)
- } else if metadata.isImage {
- return UIImage(named: "noPreview")!.image(color: .gray, size: view.frame.width)
- } else {
- return nil
- }
- }
- func getImage(metadata: tableMetadata) -> UIImage? {
- let ext = CCUtility.getExtension(metadata.fileNameView)
- var image: UIImage?
- if CCUtility.fileProviderStorageExists(metadata) && metadata.isImage {
- let previewPath = CCUtility.getDirectoryProviderStoragePreviewOcId(metadata.ocId, etag: metadata.etag)!
- let imagePath = CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)!
- if ext == "GIF" {
- if !FileManager().fileExists(atPath: previewPath) {
- NCUtility.shared.createImageFrom(fileNameView: metadata.fileNameView, ocId: metadata.ocId, etag: metadata.etag, classFile: metadata.classFile)
- }
- image = UIImage.animatedImage(withAnimatedGIFURL: URL(fileURLWithPath: imagePath))
- } else if ext == "SVG" {
- if let svgImage = SVGKImage(contentsOfFile: imagePath) {
- svgImage.size = CGSize(width: NCGlobal.shared.sizePreview, height: NCGlobal.shared.sizePreview)
- if let image = svgImage.uiImage {
- if !FileManager().fileExists(atPath: previewPath) {
- do {
- try image.pngData()?.write(to: URL(fileURLWithPath: previewPath), options: .atomic)
- } catch { }
- }
- return image
- } else {
- return nil
- }
- } else {
- return nil
- }
- } else {
- NCUtility.shared.createImageFrom(fileNameView: metadata.fileNameView, ocId: metadata.ocId, etag: metadata.etag, classFile: metadata.classFile)
- image = UIImage(contentsOfFile: imagePath)
- }
- }
- return image
- }
- }
- // MARK: - Live Photo
- func playLivePhoto(filePath: String) {
- updateViewConstraints()
- statusViewImage.isHidden = true
- statusLabel.isHidden = true
- player.media = VLCMedia(url: URL(fileURLWithPath: filePath))
- player.drawable = imageVideoContainer
- player.play()
- }
- func stopLivePhoto() {
- player.stop()
- statusViewImage.isHidden = false
- statusLabel.isHidden = false
- }
- // MARK: - Gesture
- @objc func didDoubleTapWith(gestureRecognizer: UITapGestureRecognizer) {
- guard metadata.isImage, !detailView.isShow() else { return }
- let pointInView = gestureRecognizer.location(in: self.imageVideoContainer)
- var newZoomScale = self.scrollView.maximumZoomScale
- if self.scrollView.zoomScale >= newZoomScale || abs(self.scrollView.zoomScale - newZoomScale) <= 0.01 {
- newZoomScale = self.scrollView.minimumZoomScale
- }
- let width = self.scrollView.bounds.width / newZoomScale
- let height = self.scrollView.bounds.height / newZoomScale
- let originX = pointInView.x - (width / 2.0)
- let originY = pointInView.y - (height / 2.0)
- let rectToZoomTo = CGRect(x: originX, y: originY, width: width, height: height)
- self.scrollView.zoom(to: rectToZoomTo, animated: true)
- }
- @objc func didPanWith(gestureRecognizer: UIPanGestureRecognizer) {
- guard metadata.isImage else { return }
- let currentLocation = gestureRecognizer.translation(in: self.view)
- switch gestureRecognizer.state {
- case .began:
- // let velocity = gestureRecognizer.velocity(in: self.view)
- // gesture moving Up
- // if velocity.y < 0 {
- // }
- break
- case .ended:
- if detailView.isShow() {
- self.imageViewTopConstraint.constant = -imageViewConstraint
- self.imageViewBottomConstraint.constant = imageViewConstraint
- } else {
- self.imageViewTopConstraint.constant = 0
- self.imageViewBottomConstraint.constant = 0
- }
- case .changed:
- imageViewTopConstraint.constant = (currentLocation.y - imageViewConstraint)
- imageViewBottomConstraint.constant = -(currentLocation.y - imageViewConstraint)
- // DISMISS VIEW
- if detailView.isHidden && (currentLocation.y > 20) {
- viewerMediaPage?.navigationController?.popViewController(animated: true)
- gestureRecognizer.state = .ended
- }
- // CLOSE DETAIL
- if !detailView.isHidden && (currentLocation.y > 20) {
- self.closeDetail()
- gestureRecognizer.state = .ended
- }
- // OPEN DETAIL
- if detailView.isHidden && (currentLocation.y < -20) {
- self.openDetail()
- gestureRecognizer.state = .ended
- }
- default:
- break
- }
- }
- }
- // MARK: -
- extension NCViewerMedia {
- @objc func openDetail(_ notification: NSNotification) {
- if let userInfo = notification.userInfo as NSDictionary?, let ocId = userInfo["ocId"] as? String, ocId == metadata.ocId {
- openDetail()
- }
- }
- private func openDetail() {
- self.dismissTip()
-
- CCUtility.setExif(metadata) { latitude, longitude, location, date, lensModel in
- if latitude != -1 && latitude != 0 && longitude != -1 && longitude != 0 {
- self.detailViewHeighConstraint.constant = self.view.bounds.height / 2
- } else {
- self.detailViewHeighConstraint.constant = 170
- }
- self.view.layoutIfNeeded()
- self.detailView.show(
- metadata: self.metadata,
- image: self.image,
- textColor: self.viewerMediaPage?.textColor,
- mediaMetadata: (latitude: latitude, longitude: longitude, location: location, date: date, lensModel: lensModel),
- ncplayer: self.ncplayer,
- delegate: self)
-
- if let image = self.imageVideoContainer.image {
- let ratioW = self.imageVideoContainer.frame.width / image.size.width
- let ratioH = self.imageVideoContainer.frame.height / image.size.height
- let ratio = ratioW < ratioH ? ratioW : ratioH
- let imageHeight = image.size.height * ratio
- let VideoContainerHeight = self.imageVideoContainer.frame.height * ratio
- let height = max(imageHeight, VideoContainerHeight)
- self.imageViewConstraint = self.detailView.frame.height - ((self.view.frame.height - height) / 2) + self.view.safeAreaInsets.bottom
- if self.imageViewConstraint < 0 { self.imageViewConstraint = 0 }
- }
- UIView.animate(withDuration: 0.3) {
- self.imageViewTopConstraint.constant = -self.imageViewConstraint
- self.imageViewBottomConstraint.constant = self.imageViewConstraint
- self.detailViewTopConstraint.constant = self.detailViewHeighConstraint.constant
- self.view.layoutIfNeeded()
- } completion: { _ in
- }
- self.scrollView.pinchGestureRecognizer?.isEnabled = false
- }
- }
- private func closeDetail() {
- self.detailView.hide()
- imageViewConstraint = 0
- UIView.animate(withDuration: 0.3) {
- self.imageViewTopConstraint.constant = 0
- self.imageViewBottomConstraint.constant = 0
- self.detailViewTopConstraint.constant = 0
- self.view.layoutIfNeeded()
- } completion: { _ in
- }
- scrollView.pinchGestureRecognizer?.isEnabled = true
- }
- func reloadDetail() {
- if self.detailView.isShow() {
- CCUtility.setExif(metadata) { (latitude, longitude, location, date, lensModel) in
- self.detailView.show(
- metadata: self.metadata,
- image: self.image,
- textColor: self.viewerMediaPage?.textColor,
- mediaMetadata: (latitude: latitude, longitude: longitude, location: location, date: date, lensModel: lensModel),
- ncplayer: self.ncplayer,
- delegate: self)
- }
- }
- }
- }
- // MARK: -
- extension NCViewerMedia: UIScrollViewDelegate {
- func viewForZooming(in scrollView: UIScrollView) -> UIView? {
- return imageVideoContainer
- }
- func scrollViewDidZoom(_ scrollView: UIScrollView) {
- if scrollView.zoomScale > 1 {
- if let image = imageVideoContainer.image {
- let ratioW = imageVideoContainer.frame.width / image.size.width
- let ratioH = imageVideoContainer.frame.height / image.size.height
- let ratio = ratioW < ratioH ? ratioW : ratioH
- let newWidth = image.size.width * ratio
- let newHeight = image.size.height * ratio
- let conditionLeft = newWidth*scrollView.zoomScale > imageVideoContainer.frame.width
- let left = 0.5 * (conditionLeft ? newWidth - imageVideoContainer.frame.width : (scrollView.frame.width - scrollView.contentSize.width))
- let conditioTop = newHeight*scrollView.zoomScale > imageVideoContainer.frame.height
- let top = 0.5 * (conditioTop ? newHeight - imageVideoContainer.frame.height : (scrollView.frame.height - scrollView.contentSize.height))
- scrollView.contentInset = UIEdgeInsets(top: top, left: left, bottom: top, right: left)
- }
- } else {
- scrollView.contentInset = .zero
- }
- }
- func scrollViewDidScroll(_ scrollView: UIScrollView) {
- }
- }
- extension NCViewerMedia: NCViewerMediaDetailViewDelegate {
- func downloadFullResolution() {
- closeDetail()
- NCNetworking.shared.download(metadata: metadata, selector: NCGlobal.shared.selectorOpenDetail) { _, _ in }
- }
- }
- extension NCViewerMedia: EasyTipViewDelegate {
- // TIP
- func easyTipViewDidTap(_ tipView: EasyTipView) {
- NCManageDatabase.shared.addTip(NCGlobal.shared.tipNCViewerMediaDetailView)
- }
- func easyTipViewDidDismiss(_ tipView: EasyTipView) { }
- func dismissTip() {
- NCManageDatabase.shared.addTip(NCGlobal.shared.tipNCViewerMediaDetailView)
- self.tipView?.dismiss()
- }
- }
- // MARK: -
- /*
- class imageVideoContainerView: UIImageView {
- var playerLayer: CALayer?
- var metadata: tableMetadata?
- override func layoutSublayers(of layer: CALayer) {
- super.layoutSublayers(of: layer)
- playerLayer?.frame = self.bounds
- }
- }
- */
|