NCViewerMediaDetailView.swift 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. //
  2. // NCViewerMediaDetailView.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 31/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 MapKit
  25. import NCCommunication
  26. class NCViewerMediaDetailView: UIView {
  27. @IBOutlet weak var separator: UIView!
  28. @IBOutlet weak var sizeLabel: UILabel!
  29. @IBOutlet weak var sizeValue: UILabel!
  30. @IBOutlet weak var dateLabel: UILabel!
  31. @IBOutlet weak var dateValue: UILabel!
  32. @IBOutlet weak var dimLabel: UILabel!
  33. @IBOutlet weak var dimValue: UILabel!
  34. @IBOutlet weak var lensModelLabel: UILabel!
  35. @IBOutlet weak var lensModelValue: UILabel!
  36. @IBOutlet weak var messageLabel: UILabel!
  37. @IBOutlet weak var mapContainer: UIView!
  38. @IBOutlet weak var locationButton: UIButton!
  39. var latitude: Double = 0
  40. var longitude: Double = 0
  41. var location: String?
  42. var date: Date?
  43. var lensModel: String?
  44. var mapView: MKMapView?
  45. override func awakeFromNib() {
  46. super.awakeFromNib()
  47. separator.backgroundColor = NCBrandColor.shared.separator
  48. sizeLabel.text = ""
  49. sizeValue.text = ""
  50. dateLabel.text = ""
  51. dateValue.text = ""
  52. dimLabel.text = ""
  53. dimValue.text = ""
  54. lensModelLabel.text = ""
  55. lensModelValue.text = ""
  56. messageLabel.text = ""
  57. messageLabel.textColor = NCBrandColor.shared.brand
  58. locationButton.setTitle("" , for: .normal)
  59. }
  60. deinit {
  61. print("deinit NCViewerMediaDetailView")
  62. self.mapView?.removeFromSuperview()
  63. self.mapView = nil
  64. }
  65. func show(metadata: tableMetadata, image: UIImage?, textColor: UIColor?, latitude: Double, longitude: Double, location: String?, date: Date?, lensModel: String?) {
  66. self.latitude = latitude
  67. self.longitude = longitude
  68. self.location = location
  69. self.date = date
  70. self.lensModel = lensModel
  71. if mapView == nil && (latitude != -1 && latitude != 0 && longitude != -1 && longitude != 0) {
  72. let annotation = MKPointAnnotation()
  73. annotation.coordinate = CLLocationCoordinate2D(latitude: latitude, longitude: longitude)
  74. self.mapView = MKMapView.init()
  75. if let mapView = self.mapView {
  76. mapView.translatesAutoresizingMaskIntoConstraints = false
  77. self.mapContainer.addSubview(mapView)
  78. NSLayoutConstraint.activate([
  79. mapView.topAnchor.constraint(equalTo: self.mapContainer.topAnchor),
  80. mapView.bottomAnchor.constraint(equalTo: self.mapContainer.bottomAnchor),
  81. mapView.leadingAnchor.constraint(equalTo: self.mapContainer.leadingAnchor),
  82. mapView.trailingAnchor.constraint(equalTo: self.mapContainer.trailingAnchor),
  83. ])
  84. mapView.layer.cornerRadius = 6
  85. mapView.isZoomEnabled = true
  86. mapView.isScrollEnabled = false
  87. mapView.isUserInteractionEnabled = false
  88. mapView.addAnnotation(annotation)
  89. mapView.setRegion(MKCoordinateRegion(center: annotation.coordinate, latitudinalMeters: 500, longitudinalMeters: 500), animated: false)
  90. }
  91. }
  92. // Size
  93. sizeLabel.text = NSLocalizedString("_size_", comment: "")
  94. sizeValue.text = CCUtility.transformedSize(metadata.size)
  95. sizeValue.textColor = textColor
  96. // Date
  97. if let date = date {
  98. let formatter = DateFormatter()
  99. formatter.dateStyle = .full
  100. formatter.timeStyle = .medium
  101. let dateString = formatter.string(from: date as Date)
  102. dateLabel.text = NSLocalizedString("_date_", comment: "")
  103. dateValue.text = dateString
  104. } else {
  105. dateLabel.text = NSLocalizedString("_date_", comment: "")
  106. dateValue.text = NSLocalizedString("_not_available_", comment: "")
  107. }
  108. dateValue.textColor = textColor
  109. // Dimension / Duration
  110. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue {
  111. if let image = image {
  112. dimLabel.text = NSLocalizedString("_resolution_", comment: "")
  113. dimValue.text = "\(Int(image.size.width)) x \(Int(image.size.height))"
  114. }
  115. } else if metadata.classFile == NCCommunicationCommon.typeClassFile.video.rawValue || metadata.classFile == NCCommunicationCommon.typeClassFile.audio.rawValue {
  116. if let durationTime = NCManageDatabase.shared.getVideoDurationTime(metadata: metadata) {
  117. self.dimLabel.text = NSLocalizedString("_duration_", comment: "")
  118. self.dimValue.text = NCUtility.shared.stringFromTime(durationTime)
  119. }
  120. }
  121. dimValue.textColor = textColor
  122. // Model
  123. if let lensModel = lensModel {
  124. lensModelLabel.text = NSLocalizedString("_model_", comment: "")
  125. lensModelValue.text = lensModel
  126. lensModelValue.textColor = textColor
  127. }
  128. // Message
  129. if metadata.classFile == NCCommunicationCommon.typeClassFile.image.rawValue && !CCUtility.fileProviderStorageExists(metadata.ocId, fileNameView: metadata.fileNameView) && metadata.session == "" {
  130. messageLabel.text = NSLocalizedString("_try_download_full_resolution_", comment: "")
  131. } else {
  132. messageLabel.text = ""
  133. }
  134. // Location
  135. if let location = location {
  136. self.locationButton.setTitle(location, for: .normal)
  137. }
  138. self.isHidden = false
  139. }
  140. func hide() {
  141. self.isHidden = true
  142. }
  143. func isShow() -> Bool {
  144. return !self.isHidden
  145. }
  146. //MARK: - Action
  147. @IBAction func touchLocation(_ sender: Any) {
  148. if latitude != -1 && latitude != 0 && longitude != -1 && longitude != 0 {
  149. let latitude: CLLocationDegrees = self.latitude
  150. let longitude: CLLocationDegrees = self.longitude
  151. let regionDistance:CLLocationDistance = 10000
  152. let coordinates = CLLocationCoordinate2DMake(latitude, longitude)
  153. let regionSpan = MKCoordinateRegion(center: coordinates, latitudinalMeters: regionDistance, longitudinalMeters: regionDistance)
  154. let options = [
  155. MKLaunchOptionsMapCenterKey: NSValue(mkCoordinate: regionSpan.center),
  156. MKLaunchOptionsMapSpanKey: NSValue(mkCoordinateSpan: regionSpan.span)
  157. ]
  158. let placemark = MKPlacemark(coordinate: coordinates, addressDictionary: nil)
  159. let mapItem = MKMapItem(placemark: placemark)
  160. mapItem.name = location
  161. mapItem.openInMaps(launchOptions: options)
  162. }
  163. }
  164. @IBAction func touchFavorite(_ sender: Any) {
  165. }
  166. //MARK: -
  167. func secondsToHoursMinutesSeconds (seconds : Int) -> (Int, Int, Int) {
  168. return (seconds / 3600, (seconds % 3600) / 60, (seconds % 3600) % 60)
  169. }
  170. }