NCViewerImageDetailView.swift 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. //
  2. // NCViewerImageDetailView.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 Foundation
  24. import MapKit
  25. class NCViewerImageDetailView: UIView {
  26. @IBOutlet weak var mapHeightConstraint: NSLayoutConstraint!
  27. @IBOutlet weak var sizeLabel: UILabel!
  28. @IBOutlet weak var dateLabel: UILabel!
  29. @IBOutlet weak var mapView: MKMapView!
  30. @IBOutlet weak var locationButton: UIButton!
  31. var localFile: tableLocalFile?
  32. var latitude: Double = 0
  33. var longitude: Double = 0
  34. var location: String?
  35. var date: NSDate?
  36. var heightMap: CGFloat = 0
  37. var size: Double = 0
  38. override func awakeFromNib() {
  39. super.awakeFromNib()
  40. mapView.layer.cornerRadius = 6
  41. mapView.isZoomEnabled = false
  42. mapView.isScrollEnabled = false
  43. mapView.isUserInteractionEnabled = false
  44. }
  45. func show() {
  46. isHidden = false
  47. }
  48. func hide() {
  49. isHidden = true
  50. }
  51. func isShow() -> Bool {
  52. return !isHidden
  53. }
  54. func hasData() -> Bool {
  55. if localFile != nil {
  56. return true
  57. }
  58. return false
  59. }
  60. //MARK: - EXIF
  61. func update(metadata: tableMetadata, heightMap: CGFloat, textColor: UIColor) {
  62. self.heightMap = heightMap
  63. dateLabel.textColor = textColor
  64. if metadata.typeFile == k_metadataTypeFile_image {
  65. CCUtility.setExif(metadata) { (latitude, longitude, location, date) in
  66. self.latitude = latitude
  67. self.longitude = longitude
  68. self.location = location
  69. self.date = date as NSDate?
  70. self.updateContent()
  71. };
  72. }
  73. if let localFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId)) {
  74. let latitudeString = localFile.exifLatitude
  75. let longitudeString = localFile.exifLongitude
  76. self.latitude = Double(localFile.exifLatitude) ?? 0
  77. self.longitude = Double(localFile.exifLongitude) ?? 0
  78. self.date = localFile.exifDate
  79. self.size = localFile.size
  80. if let locationDB = NCManageDatabase.sharedInstance.getLocationFromGeoLatitude(latitudeString, longitude: longitudeString) {
  81. location = locationDB
  82. }
  83. self.updateContent()
  84. }
  85. }
  86. //MARK: - Map
  87. func updateContent() {
  88. // Date
  89. if let date = self.date {
  90. let formatter = DateFormatter()
  91. formatter.dateStyle = .full
  92. let dateString = formatter.string(from: date as Date)
  93. formatter.dateFormat = "HH:mm"
  94. let timeString = formatter.string(from: date as Date)
  95. self.dateLabel.text = dateString + ", " + timeString
  96. }
  97. // Size
  98. self.sizeLabel.text = CCUtility.transformedSize(self.size)
  99. // Map
  100. if latitude > 0 && longitude > 0 {
  101. let annotation = MKPointAnnotation()
  102. annotation.coordinate = CLLocationCoordinate2D(latitude: latitude, longitude: longitude)
  103. mapView.addAnnotation(annotation)
  104. mapView.setRegion(MKCoordinateRegion(center: annotation.coordinate, latitudinalMeters: 500, longitudinalMeters: 500), animated: false)
  105. locationButton.setTitle(location, for: .normal)
  106. mapHeightConstraint.constant = self.heightMap
  107. } else {
  108. mapHeightConstraint.constant = 0
  109. locationButton.setTitle("" , for: .normal)
  110. }
  111. }
  112. //MARK: - Action
  113. @IBAction func touchLocation(_ sender: Any) {
  114. if self.latitude > 0 && self.longitude > 0 {
  115. let latitude: CLLocationDegrees = self.latitude
  116. let longitude: CLLocationDegrees = self.longitude
  117. let regionDistance:CLLocationDistance = 10000
  118. let coordinates = CLLocationCoordinate2DMake(latitude, longitude)
  119. let regionSpan = MKCoordinateRegion(center: coordinates, latitudinalMeters: regionDistance, longitudinalMeters: regionDistance)
  120. let options = [
  121. MKLaunchOptionsMapCenterKey: NSValue(mkCoordinate: regionSpan.center),
  122. MKLaunchOptionsMapSpanKey: NSValue(mkCoordinateSpan: regionSpan.span)
  123. ]
  124. let placemark = MKPlacemark(coordinate: coordinates, addressDictionary: nil)
  125. let mapItem = MKMapItem(placemark: placemark)
  126. mapItem.name = location
  127. mapItem.openInMaps(launchOptions: options)
  128. }
  129. }
  130. }