File size: 7,268 Bytes
2d8be8f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
import CoreLocation
import SwiftRs
import Tauri
import UIKit
import WebKit
class GetPositionArgs: Decodable {
var enableHighAccuracy: Bool?
}
class WatchPositionArgs: Decodable {
let options: GetPositionArgs
let channel: Channel
}
class ClearWatchArgs: Decodable {
let channelId: UInt32
}
class GeolocationPlugin: Plugin, CLLocationManagerDelegate {
private let locationManager = CLLocationManager()
private var isUpdatingLocation: Bool = false
private var permissionRequests: [Invoke] = []
private var positionRequests: [Invoke] = []
private var watcherChannels: [Channel] = []
override init() {
super.init()
locationManager.delegate = self
}
//
// Tauri commands
//
@objc public func getCurrentPosition(_ invoke: Invoke) throws {
let args = try invoke.parseArgs(GetPositionArgs.self)
self.positionRequests.append(invoke)
DispatchQueue.main.async {
if args.enableHighAccuracy == true {
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest
} else {
self.locationManager.desiredAccuracy = kCLLocationAccuracyKilometer
}
// TODO: Use the authorizationStatus instance property with locationManagerDidChangeAuthorization(_:) instead.
if CLLocationManager.authorizationStatus() == .notDetermined {
self.locationManager.requestWhenInUseAuthorization()
} else {
self.locationManager.requestLocation()
}
}
}
@objc public func watchPosition(_ invoke: Invoke) throws {
let args = try invoke.parseArgs(WatchPositionArgs.self)
self.watcherChannels.append(args.channel)
DispatchQueue.main.async {
if args.options.enableHighAccuracy == true {
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest
} else {
self.locationManager.desiredAccuracy = kCLLocationAccuracyKilometer
}
// TODO: Use the authorizationStatus instance property with locationManagerDidChangeAuthorization(_:) instead.
if CLLocationManager.authorizationStatus() == .notDetermined {
self.locationManager.requestWhenInUseAuthorization()
} else {
self.locationManager.startUpdatingLocation()
self.isUpdatingLocation = true
}
}
invoke.resolve()
}
@objc public func clearWatch(_ invoke: Invoke) throws {
let args = try invoke.parseArgs(ClearWatchArgs.self)
self.watcherChannels = self.watcherChannels.filter { $0.id != args.channelId }
// TODO: capacitor plugin calls stopUpdating unconditionally
if self.watcherChannels.isEmpty {
self.stopUpdating()
}
invoke.resolve()
}
@objc override public func checkPermissions(_ invoke: Invoke) {
var status: String = ""
if CLLocationManager.locationServicesEnabled() {
// TODO: Use the authorizationStatus instance property with locationManagerDidChangeAuthorization(_:) instead.
switch CLLocationManager.authorizationStatus() {
case .notDetermined:
status = "prompt"
case .restricted, .denied:
status = "denied"
case .authorizedAlways, .authorizedWhenInUse:
status = "granted"
@unknown default:
status = "prompt"
}
} else {
invoke.reject("Location services are not enabled.")
return
}
let result = ["location": status, "coarseLocation": status]
invoke.resolve(result)
}
@objc override public func requestPermissions(_ invoke: Invoke) {
if CLLocationManager.locationServicesEnabled() {
// TODO: Use the authorizationStatus instance property with locationManagerDidChangeAuthorization(_:) instead.
if CLLocationManager.authorizationStatus() == .notDetermined {
self.permissionRequests.append(invoke)
DispatchQueue.main.async {
self.locationManager.requestWhenInUseAuthorization()
}
} else {
checkPermissions(invoke)
}
} else {
invoke.reject("Location services are not enabled.")
}
}
//
// Delegate methods
//
public func locationManager(_ manager: CLLocationManager, didFailWithError error: Error) {
Logger.error(error)
let requests = self.positionRequests + self.permissionRequests
self.positionRequests.removeAll()
self.permissionRequests.removeAll()
for request in requests {
request.reject(error.localizedDescription)
}
for channel in self.watcherChannels {
do {
try channel.send(error.localizedDescription)
} catch {
Logger.error(error)
}
}
}
public func locationManager(
_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]
) {
// Respond to all getCurrentPosition() calls.
for request in self.positionRequests {
// The capacitor plugin uses locations.first but .last should be the most current one
// and i don't see a reason to use old locations
if let location = locations.last {
let result = convertLocation(location)
request.resolve(result)
} else {
request.reject("Location service returned an empty Location array.")
}
}
for channel in self.watcherChannels {
// The capacitor plugin uses locations.first but .last should be the most recent one
// and i don't see a reason to use old locations
if let location = locations.last {
let result = convertLocation(location)
do {
try channel.send(result)
} catch {
Logger.error(error)
}
} else {
do {
try channel.send("Location service returned an empty Location array.")
} catch {
Logger.error(error)
}
}
}
}
public func locationManager(
_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus
) {
let requests = self.permissionRequests
self.permissionRequests.removeAll()
for request in requests {
checkPermissions(request)
}
if !self.positionRequests.isEmpty {
self.locationManager.requestLocation()
}
if !self.watcherChannels.isEmpty && !self.isUpdatingLocation {
self.locationManager.startUpdatingLocation()
self.isUpdatingLocation = true
}
}
//
// Internal/Helper methods
//
// TODO: Why is this pub in capacitor
private func stopUpdating() {
self.locationManager.stopUpdatingLocation()
self.isUpdatingLocation = false
}
private func convertLocation(_ location: CLLocation) -> JsonObject {
var ret: JsonObject = [:]
var coords: JsonObject = [:]
coords["latitude"] = location.coordinate.latitude
coords["longitude"] = location.coordinate.longitude
coords["accuracy"] = location.horizontalAccuracy
coords["altitude"] = location.altitude
coords["altitudeAccuracy"] = location.verticalAccuracy
coords["speed"] = location.speed
coords["heading"] = location.course
ret["timestamp"] = Int((location.timestamp.timeIntervalSince1970 * 1000))
ret["coords"] = coords
return ret
}
}
@_cdecl("init_plugin_geolocation")
func initPlugin() -> Plugin {
return GeolocationPlugin()
}
|