|
|
|
@ -7,6 +7,7 @@ import CoreModelKit
|
|
|
|
|
|
|
|
|
|
class LocationController: NSObject { |
|
|
|
|
private let store: DataStore |
|
|
|
|
private static var sharedController = LocationController(withStore: DataStore.shared()) |
|
|
|
|
|
|
|
|
|
init(withStore dataStore: DataStore) { |
|
|
|
|
store = dataStore |
|
|
|
@ -19,6 +20,10 @@ class LocationController: NSObject {
|
|
|
|
|
return locationManager |
|
|
|
|
}() |
|
|
|
|
|
|
|
|
|
class func shared() -> LocationController { |
|
|
|
|
return sharedController |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func authorizationStatus() -> CLAuthorizationStatus { |
|
|
|
|
return CLLocationManager.authorizationStatus() |
|
|
|
|
} |
|
|
|
@ -50,7 +55,9 @@ class LocationController: NSObject {
|
|
|
|
|
case .authorizedAlways: |
|
|
|
|
locationManager.startUpdatingLocation() |
|
|
|
|
case .notDetermined: |
|
|
|
|
locationManager.startUpdatingLocation() |
|
|
|
|
if #available(macOS 10.15, *) { |
|
|
|
|
locationManager.requestWhenInUseAuthorization() |
|
|
|
|
} |
|
|
|
|
case .denied, .restricted: |
|
|
|
|
locationManager.startUpdatingLocation() |
|
|
|
|
default: |
|
|
|
|