This repository has been archived on 2023-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
ha_client/lib/managers/location_manager.class.dart

176 lines
6.3 KiB
Dart
Raw Normal View History

part of '../main.dart';
class LocationManager {
2019-10-20 20:54:29 +03:00
static final LocationManager _instance = LocationManager
._internal();
factory LocationManager() {
return _instance;
}
LocationManager._internal() {
init();
}
2019-10-21 21:22:25 +03:00
final int defaultUpdateIntervalMinutes = 20;
final String backgroundTaskId = "haclocationtask4352";
final String backgroundTaskTag = "haclocation";
2019-10-20 20:54:29 +03:00
Duration _updateInterval;
2019-10-24 21:34:38 +03:00
bool _isRunning;
2019-10-20 20:54:29 +03:00
void init() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.reload();
_updateInterval = Duration(minutes: prefs.getInt("location-interval") ??
defaultUpdateIntervalMinutes);
2019-10-24 21:34:38 +03:00
_isRunning = prefs.getBool("location-enabled") ?? false;
if (_isRunning) {
await _startLocationService();
2019-10-20 20:54:29 +03:00
}
}
2019-10-24 21:58:48 +03:00
setSettings(bool enabled, int interval) async {
2019-10-20 20:54:29 +03:00
SharedPreferences prefs = await SharedPreferences.getInstance();
if (interval != _updateInterval.inMinutes) {
prefs.setInt("location-interval", interval);
_updateInterval = Duration(minutes: interval);
2019-10-24 21:34:38 +03:00
if (_isRunning) {
Logger.d("Stopping location tracking...");
_isRunning = false;
await _stopLocationService();
}
2019-10-20 20:54:29 +03:00
}
2019-10-24 21:34:38 +03:00
if (enabled && !_isRunning) {
Logger.d("Starting location tracking");
2019-10-20 20:54:29 +03:00
SharedPreferences prefs = await SharedPreferences.getInstance();
prefs.setBool("location-enabled", enabled);
2019-10-24 21:34:38 +03:00
_isRunning = true;
await _startLocationService();
} else if (!enabled && _isRunning) {
Logger.d("Stopping location tracking...");
2019-10-20 20:54:29 +03:00
SharedPreferences prefs = await SharedPreferences.getInstance();
prefs.setBool("location-enabled", enabled);
2019-10-24 21:34:38 +03:00
_isRunning = false;
await _stopLocationService();
2019-10-20 20:54:29 +03:00
}
}
2019-10-24 21:34:38 +03:00
_startLocationService() async {
2019-10-20 20:54:29 +03:00
Logger.d("Scheduling location update for every ${_updateInterval
.inMinutes} minutes...");
2019-10-21 21:22:25 +03:00
String webhookId = ConnectionManager().webhookId;
String httpWebHost = ConnectionManager().httpWebHost;
if (webhookId != null && webhookId.isNotEmpty) {
await workManager.Workmanager.registerPeriodicTask(
backgroundTaskId,
"haClientLocationTracking",
tag: backgroundTaskTag,
inputData: {
"webhookId": webhookId,
"httpWebHost": httpWebHost
},
frequency: _updateInterval,
2019-10-22 21:42:30 +03:00
existingWorkPolicy: workManager.ExistingWorkPolicy.keep,
2019-10-21 21:22:25 +03:00
backoffPolicy: workManager.BackoffPolicy.linear,
2019-10-22 21:42:30 +03:00
backoffPolicyDelay: _updateInterval,
2019-10-21 21:22:25 +03:00
constraints: workManager.Constraints(
networkType: workManager.NetworkType.connected
)
);
}
2019-10-20 20:54:29 +03:00
}
2019-10-24 21:34:38 +03:00
_stopLocationService() async {
2019-10-20 20:54:29 +03:00
Logger.d("Canceling previous schedule if any...");
2019-10-21 21:22:25 +03:00
await workManager.Workmanager.cancelByTag(backgroundTaskTag);
2019-10-20 20:54:29 +03:00
}
2019-10-24 21:34:38 +03:00
updateDeviceLocation() async {
2019-10-21 21:22:25 +03:00
if (ConnectionManager().webhookId != null &&
2019-10-20 20:54:29 +03:00
ConnectionManager().webhookId.isNotEmpty) {
String url = "${ConnectionManager()
.httpWebHost}/api/webhook/${ConnectionManager().webhookId}";
Map<String, String> headers = {};
Logger.d("[Location] Getting device location...");
Position location = await Geolocator().getCurrentPosition(
desiredAccuracy: LocationAccuracy.medium);
Logger.d("[Location] Got location: ${location.latitude} ${location
.longitude}. Sending home...");
2019-10-24 21:34:38 +03:00
int battery = await Battery().batteryLevel;
2019-10-20 20:54:29 +03:00
var data = {
"type": "update_location",
"data": {
"gps": [location.latitude, location.longitude],
"gps_accuracy": location.accuracy,
"battery": battery
}
};
headers["Content-Type"] = "application/json";
await http.post(
url,
headers: headers,
body: json.encode(data)
);
Logger.d("[Location] ...done.");
}
}
}
void updateDeviceLocationIsolate() {
2019-10-21 21:22:25 +03:00
workManager.Workmanager.executeTask((backgroundTask, data) {
2019-10-24 21:34:38 +03:00
//print("[Background $backgroundTask] Started");
var battery = Battery();
int batteryLevel = 100;
2019-10-21 21:22:25 +03:00
String webhookId = data["webhookId"];
String httpWebHost = data["httpWebHost"];
if (webhookId != null && webhookId.isNotEmpty) {
2019-10-24 21:34:38 +03:00
//print("[Background $backgroundTask] hour=$battery");
2019-10-22 21:42:30 +03:00
String url = "$httpWebHost/api/webhook/$webhookId";
Map<String, String> headers = {};
headers["Content-Type"] = "application/json";
2019-10-24 21:34:38 +03:00
Map data = {
"type": "update_location",
"data": {
"gps": [],
"gps_accuracy": 0,
"battery": batteryLevel
}
};
//print("[Background $backgroundTask] Getting battery level...");
battery.batteryLevel.then((val) => data["data"]["battery"] = val).whenComplete((){
//print("[Background $backgroundTask] Getting device location...");
Geolocator().getCurrentPosition(desiredAccuracy: LocationAccuracy.medium).then((location) {
//print("[Background $backgroundTask] Got location: ${location.latitude} ${location.longitude}");
2019-10-24 22:18:27 +03:00
if (location != null) {
2019-10-24 21:34:38 +03:00
data["data"]["gps"] = [location.latitude, location.longitude];
data["data"]["gps_accuracy"] = location.accuracy;
//print("[Background $backgroundTask] Sending data home...");
http.post(
2019-10-24 22:18:27 +03:00
url,
headers: headers,
body: json.encode(data)
2019-10-24 21:34:38 +03:00
);
2019-10-24 22:18:27 +03:00
}
}).catchError((e) {
//print("[Background $backgroundTask] Error getting current location: ${e.toString()}. Trying last known...");
Geolocator().getLastKnownPosition(desiredAccuracy: LocationAccuracy.medium).then((location){
//print("[Background $backgroundTask] Got last known location: ${location.latitude} ${location.longitude}");
if (location != null) {
data["data"]["gps"] = [location.latitude, location.longitude];
data["data"]["gps_accuracy"] = location.accuracy;
//print("[Background $backgroundTask] Sending data home...");
http.post(
url,
headers: headers,
body: json.encode(data)
);
}
2019-10-22 21:42:30 +03:00
});
});
2019-10-20 20:54:29 +03:00
});
2019-10-21 21:22:25 +03:00
}
2019-10-20 20:54:29 +03:00
return Future.value(true);
});
}