123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- //
- // NCViewerMediaDetailView.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 31/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 MapKit
- import NCCommunication
- public protocol NCViewerMediaDetailViewDelegate: AnyObject {
- func downloadFullResolution()
- }
- class NCViewerMediaDetailView: UIView {
- @IBOutlet weak var separator: UIView!
- @IBOutlet weak var sizeLabel: UILabel!
- @IBOutlet weak var sizeValue: UILabel!
- @IBOutlet weak var dateLabel: UILabel!
- @IBOutlet weak var dateValue: UILabel!
- @IBOutlet weak var dimLabel: UILabel!
- @IBOutlet weak var dimValue: UILabel!
- @IBOutlet weak var lensModelLabel: UILabel!
- @IBOutlet weak var lensModelValue: UILabel!
- @IBOutlet weak var messageButton: UIButton!
- @IBOutlet weak var mapContainer: UIView!
- @IBOutlet weak var locationButton: UIButton!
- var latitude: Double = 0
- var longitude: Double = 0
- var location: String?
- var date: Date?
- var lensModel: String?
- var metadata: tableMetadata?
- var mapView: MKMapView?
- var ncplayer: NCPlayer?
- var delegate: NCViewerMediaDetailViewDelegate?
-
- override func awakeFromNib() {
- super.awakeFromNib()
- separator.backgroundColor = NCBrandColor.shared.separator
- sizeLabel.text = ""
- sizeValue.text = ""
- dateLabel.text = ""
- dateValue.text = ""
- dimLabel.text = ""
- dimValue.text = ""
- lensModelLabel.text = ""
- lensModelValue.text = ""
- messageButton.setTitle("", for: .normal)
- locationButton.setTitle("", for: .normal)
- }
- deinit {
- print("deinit NCViewerMediaDetailView")
- self.mapView?.removeFromSuperview()
- self.mapView = nil
- }
-
- func show(metadata: tableMetadata, image: UIImage?, textColor: UIColor?, latitude: Double, longitude: Double, location: String?, date: Date?, lensModel: String?, ncplayer: NCPlayer?, delegate: NCViewerMediaDetailViewDelegate?) {
-
- self.metadata = metadata
- self.latitude = latitude
- self.longitude = longitude
- self.location = location
- self.date = date
- self.lensModel = lensModel
- self.ncplayer = ncplayer
- self.delegate = delegate
- if mapView == nil && (latitude != -1 && latitude != 0 && longitude != -1 && longitude != 0) {
- let annotation = MKPointAnnotation()
- annotation.coordinate = CLLocationCoordinate2D(latitude: latitude, longitude: longitude)
- self.mapView = MKMapView()
- if let mapView = self.mapView {
- mapView.translatesAutoresizingMaskIntoConstraints = false
- self.mapContainer.addSubview(mapView)
- NSLayoutConstraint.activate([
- mapView.topAnchor.constraint(equalTo: self.mapContainer.topAnchor),
- mapView.bottomAnchor.constraint(equalTo: self.mapContainer.bottomAnchor),
- mapView.leadingAnchor.constraint(equalTo: self.mapContainer.leadingAnchor),
- mapView.trailingAnchor.constraint(equalTo: self.mapContainer.trailingAnchor)
- ])
- mapView.layer.cornerRadius = 6
- mapView.isZoomEnabled = true
- mapView.isScrollEnabled = false
- mapView.isUserInteractionEnabled = false
- mapView.addAnnotation(annotation)
- mapView.setRegion(MKCoordinateRegion(center: annotation.coordinate, latitudinalMeters: 500, longitudinalMeters: 500), animated: false)
- }
- }
- // Size
- sizeLabel.text = NSLocalizedString("_size_", comment: "")
- sizeValue.text = CCUtility.transformedSize(metadata.size)
- sizeValue.textColor = textColor
- // Date
- if let date = date {
- let formatter = DateFormatter()
- formatter.dateStyle = .full
- formatter.timeStyle = .medium
- let dateString = formatter.string(from: date as Date)
- dateLabel.text = NSLocalizedString("_date_", comment: "")
- dateValue.text = dateString
- } else {
- dateLabel.text = NSLocalizedString("_date_", comment: "")
- dateValue.text = NSLocalizedString("_not_available_", comment: "")
- }
- dateValue.textColor = textColor
- // Dimension / Duration
- if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue {
- if let image = image {
- dimLabel.text = NSLocalizedString("_resolution_", comment: "")
- dimValue.text = "\(Int(image.size.width)) x \(Int(image.size.height))"
- }
- } else if metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
- if let durationTime = NCManageDatabase.shared.getVideoDurationTime(metadata: metadata) {
- self.dimLabel.text = NSLocalizedString("_duration_", comment: "")
- self.dimValue.text = NCUtility.shared.stringFromTime(durationTime)
- }
- }
- dimValue.textColor = textColor
- // Model
- if let lensModel = lensModel {
- lensModelLabel.text = NSLocalizedString("_model_", comment: "")
- lensModelValue.text = lensModel
- lensModelValue.textColor = textColor
- }
- // Message
- if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue && !CCUtility.fileProviderStorageExists(metadata) && metadata.session == "" {
- messageButton.setTitle(NSLocalizedString("_try_download_full_resolution_", comment: ""), for: .normal)
- messageButton.isHidden = false
- } else {
- messageButton.setTitle("", for: .normal)
- messageButton.isHidden = true
- }
- // Location
- if let location = location {
- locationButton.setTitle(location, for: .normal)
- locationButton.isHidden = false
- } else {
- locationButton.setTitle("", for: .normal)
- locationButton.isHidden = true
- }
- self.isHidden = false
- }
- func hide() {
- self.isHidden = true
- }
- func isShow() -> Bool {
- return !self.isHidden
- }
- // MARK: - Action
- @IBAction func touchLocation(_ sender: Any) {
- if latitude != -1 && latitude != 0 && longitude != -1 && longitude != 0 {
- let latitude: CLLocationDegrees = self.latitude
- let longitude: CLLocationDegrees = self.longitude
- let regionDistance: CLLocationDistance = 10000
- let coordinates = CLLocationCoordinate2DMake(latitude, longitude)
- let regionSpan = MKCoordinateRegion(center: coordinates, latitudinalMeters: regionDistance, longitudinalMeters: regionDistance)
- let options = [
- MKLaunchOptionsMapCenterKey: NSValue(mkCoordinate: regionSpan.center),
- MKLaunchOptionsMapSpanKey: NSValue(mkCoordinateSpan: regionSpan.span)
- ]
- let placemark = MKPlacemark(coordinate: coordinates, addressDictionary: nil)
- let mapItem = MKMapItem(placemark: placemark)
- mapItem.name = location
- mapItem.openInMaps(launchOptions: options)
- }
- }
- @IBAction func touchFavorite(_ sender: Any) {
- }
- @IBAction func touchMessage(_ sender: Any) {
- delegate?.downloadFullResolution()
- }
- // MARK: -
- func secondsToHoursMinutesSeconds (seconds: Int) -> (Int, Int, Int) {
- return (seconds / 3600, (seconds % 3600) / 60, (seconds % 3600) % 60)
- }
- }
|