import 'dart:async'; import 'package:SEFER/controller/home/captin/home_captain_controller.dart'; import 'package:get/get.dart'; import 'package:google_maps_flutter/google_maps_flutter.dart'; import 'package:location/location.dart'; import 'package:SEFER/constant/box_name.dart'; import 'package:SEFER/constant/links.dart'; import 'package:SEFER/controller/functions/crud.dart'; import 'package:SEFER/controller/home/payment/captain_wallet_controller.dart'; import 'package:SEFER/main.dart'; import '../../print.dart'; // LocationController.dart class LocationController extends GetxController { LocationData? _currentLocation; late Location location; bool isLoading = false; late double heading = 0; late double accuracy = 0; late double previousTime = 0; late double latitude; late double totalDistance = 0; late double longitude; late DateTime time; late double speed = 0; late double speedAccuracy = 0; late double headingAccuracy = 0; bool isActive = false; late LatLng myLocation; String totalPoints = '0'; LocationData? get currentLocation => _currentLocation; Timer? _locationTimer; @override void onInit() async { super.onInit(); location = Location(); getLocation(); // startLocationUpdates(); totalPoints = Get.put(CaptainWalletController()).totalPoints.toString(); // isActive = Get.put(HomeCaptainController()).isActive; } // Function to determine which area the coordinates belong to String getLocationArea(double latitude, double longitude) { if (latitude >= 29.918901 && latitude <= 30.198857 && longitude >= 31.215009 && longitude <= 31.532186) { return 'Cairo'; } else if (latitude >= 29.904975 && latitude <= 30.143372 && longitude >= 30.787030 && longitude <= 31.238843) { return 'Giza'; } else if (latitude >= 30.396286 && latitude <= 31.654458 && longitude >= 29.041139 && longitude <= 32.626259) { return 'Alexandria'; } else { return 'Outside'; } } Future startLocationUpdates() async { if (box.read(BoxName.driverID) != null) { _locationTimer = Timer.periodic(const Duration(seconds: 5), (timer) async { try { totalPoints = Get.find().totalPoints.toString(); isActive = Get.find().isActive; if (isActive) { if (double.parse(totalPoints) > -3000) { await getLocation(); // Determine the area based on current location String area = getLocationArea(myLocation.latitude, myLocation.longitude); print('Determined Area: $area'); String endpoint; switch (area) { case 'Cairo': box.write(BoxName.serverChosen, AppLink.seferCairoServer); endpoint = AppLink.addCarsLocationCairoEndpoint; Log.print('Endpoint: $endpoint'); break; case 'Giza': box.write(BoxName.serverChosen, AppLink.seferGizaServer); endpoint = AppLink.addCarsLocationGizaEndpoint; Log.print('Endpoint: $endpoint'); break; case 'Alexandria': box.write( BoxName.serverChosen, AppLink.seferAlexandriaServer); endpoint = AppLink.addCarsLocationAlexandriaEndpoint; Log.print('Endpoint: $endpoint'); break; case 'Outside': // Handle cases outside of Cairo, Giza, and Alexandria print('Location outside Cairo, Giza, or Alexandria'); box.write(BoxName.serverChosen, AppLink.seferCairoServer); endpoint = AppLink .addCarsLocationCairoEndpoint; // Fallback to Cairo endpoint Log.print('Fallback Endpoint: $endpoint'); break; default: // Handle any other unexpected cases print('Unknown location area'); endpoint = AppLink .addCarsLocationCairoEndpoint; // Fallback to Cairo endpoint Log.print('Fallback Endpoint: $endpoint'); box.write(BoxName.serverChosen, AppLink.seferCairoServer); return; } // Ensure driver ID exists before making the API call if (box.read(BoxName.driverID) != null) { await CRUD().post(link: endpoint, payload: { 'driver_id': box.read(BoxName.driverID).toString(), 'latitude': myLocation.latitude.toString(), 'longitude': myLocation.longitude.toString(), 'heading': heading.toString(), 'speed': (speed * 3.6).toStringAsFixed(1), 'distance': totalDistance == 0 && (speed * 3.6) < 5 ? '0.0' : totalDistance < 7 ? totalDistance.toStringAsFixed(3) : totalDistance.toStringAsFixed(1), 'status': box.read(BoxName.statusDriverLocation).toString(), }); // Update the camera position on the map Get.find() .mapHomeCaptainController ?.animateCamera( CameraUpdate.newLatLng( LatLng( Get.find().myLocation.latitude, Get.find().myLocation.longitude, ), ), ); } } } } catch (e) { // Handle the error gracefully Log.print('Error during location update: $e'); } }); } } void stopLocationUpdates() { _locationTimer?.cancel(); } Future getLocation() async { // isLoading = true; // update(); bool serviceEnabled; PermissionStatus permissionGranted; // Check if location services are enabled serviceEnabled = await location.serviceEnabled(); if (!serviceEnabled) { serviceEnabled = await location.requestService(); if (!serviceEnabled) { // Location services are still not enabled, handle the error return; } } // Check if the app has permission to access location permissionGranted = await location.hasPermission(); if (permissionGranted == PermissionStatus.denied) { permissionGranted = await location.requestPermission(); if (permissionGranted != PermissionStatus.granted) { // Location permission is still not granted, handle the error return; } } // Configure location accuracy // LocationAccuracy desiredAccuracy = LocationAccuracy.high; // Get the current location LocationData _locationData = await location.getLocation(); myLocation = (_locationData.latitude != null && _locationData.longitude != null ? LatLng(_locationData.latitude!, _locationData.longitude!) : null)!; getLocationArea(_locationData.latitude!, _locationData.longitude!); speed = _locationData.speed!; heading = _locationData.heading!; // Calculate the distance between the current location and the previous location if (Get.find().rideId == 'rideId') { Log.print( 'Get.find().rideId: ${Get.find().rideId}'); if (previousTime > 0) { double distance = calculateDistanceInKmPerHour( previousTime, _locationData.time, speed); totalDistance += distance; } previousTime = _locationData.time!; } // Print location details // isLoading = false; update(); } double calculateDistanceInKmPerHour( double? startTime, double? endTime, double speedInMetersPerSecond) { // Calculate the time difference in hours double timeDifferenceInHours = (endTime! - startTime!) / 1000 / 3600; // Convert speed to kilometers per hour double speedInKmPerHour = speedInMetersPerSecond * 3.6; // Calculate the distance in kilometers double distanceInKilometers = speedInKmPerHour * timeDifferenceInHours; // Convert distance from kilometers to meters double distanceInMeters = distanceInKilometers * 1000; // If the calculated distance is less than 6 meters, return 0 to avoid fake distance return distanceInMeters < 5 ? 0 : distanceInKilometers; } }