NCViewerImageDetailView.swift 5.0 KB

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