2021-05-13 20:03:07 +02:00
using Xamarin.Forms ;
using TINK.View ;
using TINK.Model.Station ;
using System ;
using System.Linq ;
2022-08-30 15:42:25 +02:00
using TINK.Model.Bikes ;
2021-06-26 20:57:55 +02:00
using TINK.Repository.Exception ;
2021-05-13 20:03:07 +02:00
using TINK.Model ;
using Serilog ;
using System.Collections.Generic ;
using System.Threading.Tasks ;
using System.ComponentModel ;
using Xamarin.Forms.GoogleMaps ;
using System.Collections.ObjectModel ;
2021-08-28 10:04:10 +02:00
#if USEFLYOUT
2021-05-13 20:03:07 +02:00
using TINK.View.MasterDetail ;
2021-06-26 20:57:55 +02:00
#endif
2021-05-13 20:03:07 +02:00
using TINK.Settings ;
using TINK.Model.Connector ;
using TINK.Model.Services.CopriApi ;
2021-11-07 19:42:59 +01:00
using TINK.Services.Permissions ;
2021-05-13 20:03:07 +02:00
using Xamarin.Essentials ;
using System.Threading ;
using TINK.MultilingualResources ;
using TINK.Services.BluetoothLock ;
2021-06-26 20:57:55 +02:00
using TINK.Repository ;
2022-04-10 17:38:34 +02:00
using TINK.Services.Geolocation ;
2022-08-30 15:42:25 +02:00
using TINK.Model.State ;
2021-05-13 20:03:07 +02:00
#if ! TRYNOTBACKSTYLE
#endif
namespace TINK.ViewModel.Map
{
2022-09-06 16:08:19 +02:00
public class MapPageViewModel : INotifyPropertyChanged
{
/// <summary> True if message was already shown to user. </summary>
private static bool WasMerchantMessageAlreadyShown { get ; set ; } = false ;
2022-01-04 18:59:16 +01:00
2022-09-06 16:08:19 +02:00
/// <summary> Holds the count of custom icons availalbe.</summary>
private const int CUSTOM_ICONS_COUNT = 30 ;
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Reference on view service to show modal notifications and to perform navigation. </summary>
private IViewService ViewService { get ; }
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>
/// Holds the exception which occurred getting bikes occupied information.
/// </summary>
private Exception m_oException ;
2021-05-13 20:03:07 +02:00
2021-06-26 20:57:55 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>
/// Service to query/ manage permissions (location) of the app.
/// </summary>
private ILocationPermission PermissionsService { get ; }
2021-06-26 20:57:55 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>
/// Service to manage bluetooth stack.
/// </summary>
private Plugin . BLE . Abstractions . Contracts . IBluetoothLE BluetoothService { get ; set ; }
2021-06-26 20:57:55 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Notifies view about changes. </summary>
public event PropertyChangedEventHandler PropertyChanged ;
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Object to manage update of view model objects from Copri.</summary>
private IPollingUpdateTaskManager m_oViewUpdateManager ;
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>Holds whether to poll or not and the periode leght is polling is on.</summary>
private PollingParameters Polling { get ; set ; }
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Reference on the tink app instance. </summary>
private ITinkApp TinkApp { get ; }
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>Delegate to perform navigation.</summary>
private INavigation m_oNavigation ;
2021-05-13 20:03:07 +02:00
2021-08-28 10:04:10 +02:00
#if USEFLYOUT
2021-05-13 20:03:07 +02:00
/// <summary>Delegate to perform navigation.</summary>
private INavigationMasterDetail m_oNavigationMasterDetail ;
2021-06-26 20:57:55 +02:00
#endif
2022-09-06 16:08:19 +02:00
private ObservableCollection < Pin > pins ;
public ObservableCollection < Pin > Pins
{
get
{
if ( pins = = null )
pins = new ObservableCollection < Pin > ( ) ; // If view model is not binding context pins collection must be set programmatically.
return pins ;
}
set = > pins = value ;
}
/// <summary>Delegate to move map to region.</summary>
private Action < MapSpan > m_oMoveToRegionDelegate ;
/// <summary> False if user tabed on station marker to show bikes at a given station.</summary>
private bool isMapPageEnabled = false ;
IGeolocation GeolocationService { get ; }
/// <summary> False if user tabed on station marker to show bikes at a given station.</summary>
public bool IsMapPageEnabled
{
get = > isMapPageEnabled ;
private set
{
if ( isMapPageEnabled = = value )
return ;
isMapPageEnabled = value ;
PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( IsMapPageEnabled ) ) ) ;
}
}
/// <summary> Prevents an invalid instane to be created. </summary>
/// <param name="tinkApp"> Reference to tink app model.</param>
/// <param name="moveToRegionDelegate">Delegate to center map and set zoom level.</param>
/// <param name="viewService">View service to notify user.</param>
/// <param name="navigation">Interface to navigate.</param>
public MapPageViewModel (
ITinkApp tinkApp ,
ILocationPermission permissionsService ,
Plugin . BLE . Abstractions . Contracts . IBluetoothLE bluetoothService ,
IGeolocation geolocationService ,
Action < MapSpan > moveToRegionDelegate ,
IViewService viewService ,
INavigation navigation )
{
TinkApp = tinkApp
? ? throw new ArgumentException ( "Can not instantiate map page view model- object. No tink app object available." ) ;
PermissionsService = permissionsService ? ?
throw new ArgumentException ( $"Can not instantiate {nameof(MapPageViewModel)}. Permissions service object must never be null." ) ;
BluetoothService = bluetoothService ? ?
throw new ArgumentException ( $"Can not instantiate {nameof(MapPageViewModel)}. Bluetooth service object must never be null." ) ;
GeolocationService = geolocationService ? ?
throw new ArgumentException ( $"Can not instantiate {nameof(MapPageViewModel)}. Geolocation service object must never be null." ) ;
m_oMoveToRegionDelegate = moveToRegionDelegate
? ? throw new ArgumentException ( "Can not instantiate map page view model- object. No move delegate available." ) ;
ViewService = viewService
? ? throw new ArgumentException ( "Can not instantiate map page view model- object. No view available." ) ;
m_oNavigation = navigation
? ? throw new ArgumentException ( "Can not instantiate map page view model- object. No navigation service available." ) ;
m_oViewUpdateManager = new IdlePollingUpdateTaskManager ( ) ;
2021-05-13 20:03:07 +02:00
2021-08-28 10:04:10 +02:00
#if USEFLYOUT
2021-05-13 20:03:07 +02:00
m_oNavigationMasterDetail = new EmptyNavigationMasterDetail ( ) ;
2021-06-26 20:57:55 +02:00
#endif
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
Polling = PollingParameters . NoPolling ;
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
tinkKonradToggleViewModel = new EmptyToggleViewModel ( ) ;
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
IsConnected = TinkApp . GetIsConnected ( ) ;
}
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>Sets the stations filter to to apply (Konrad or TINK). </summary>
public IGroupFilterMapPage ActiveFilterMap
{
get = > tinkKonradToggleViewModel . FilterDictionary ? ? new GroupFilterMapPage ( ) ;
set
{
tinkKonradToggleViewModel = new TinkKonradToggleViewModel ( value ) ;
PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( TinkColor ) ) ) ;
PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( KonradColor ) ) ) ;
PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( NoTinkColor ) ) ) ;
PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( NoKonradColor ) ) ) ;
PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( IsToggleVisible ) ) ) ;
}
}
2021-05-13 20:03:07 +02:00
2021-08-28 10:04:10 +02:00
#if USEFLYOUT
2021-05-13 20:03:07 +02:00
/// <summary> Delegate to perform navigation.</summary>
public INavigationMasterDetail NavigationMasterDetail
{
set { m_oNavigationMasterDetail = value ; }
}
2021-06-26 20:57:55 +02:00
#endif
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
public Command < PinClickedEventArgs > PinClickedCommand = > new Command < PinClickedEventArgs > (
args = >
{
OnStationClicked ( args . Pin . Tag . ToString ( ) ) ;
args . Handled = true ; // Prevents map to be centered to selected pin.
} ) ;
/// <summary>
/// One time setup: Sets pins into map and connects to events.
/// </summary>
private void InitializePins ( StationDictionary stations )
{
// Add pins to stations.
Log . ForContext < MapPageViewModel > ( ) . Debug ( $"Request to draw {stations.Count} pins." ) ;
foreach ( var station in stations )
{
if ( station . Position = = null )
{
// There should be no reason for a position object to be null but this alreay occurred in past.
Log . ForContext < MapPageViewModel > ( ) . Error ( "Postion object of station {@l_oStation} is null." , station ) ;
continue ;
}
var l_oPin = new Pin
{
Position = new Xamarin . Forms . GoogleMaps . Position ( station . Position . Latitude , station . Position . Longitude ) ,
Label = long . TryParse ( station . Id , out long stationId ) & & stationId > CUSTOM_ICONS_COUNT
? station . GetStationName ( )
: string . Empty , // Stations with custom icons have already a id marker. No need for a label.
Tag = station . Id ,
IsVisible = false , // Set to false to prevent showing default icons (flickering).
} ;
Pins . Add ( l_oPin ) ;
}
}
/// <summary> Update all stations from TINK. </summary>
/// <param name="stationsColorList">List of colors to apply.</param>
private void UpdatePinsColor ( IList < Color > stationsColorList )
{
Log . ForContext < MapPageViewModel > ( ) . Debug ( $"Starting update of stations pins color for {stationsColorList.Count} stations..." ) ;
// Update colors of pins.
for ( int pinIndex = 0 ; pinIndex < stationsColorList . Count ; pinIndex + + )
{
var indexPartPrefix = int . TryParse ( Pins [ pinIndex ] . Tag . ToString ( ) , out int stationId )
& & stationId < = CUSTOM_ICONS_COUNT
? $"{stationId}" // there is a station marker with index letter for given station id
: "Open" ; // there is no station marker. Use open marker.
var colorPartPrefix = GetRessourceNameColorPart ( stationsColorList [ pinIndex ] ) ;
var l_iName = $"{indexPartPrefix.ToString().PadLeft(2, '0')}_{colorPartPrefix}{(DeviceInfo.Platform == DevicePlatform.Android ? " . png " : string.Empty)}" ;
try
{
Pins [ pinIndex ] . Icon = BitmapDescriptorFactory . FromBundle ( l_iName ) ;
}
catch ( Exception l_oException )
{
Log . ForContext < MapPageViewModel > ( ) . Error ( "Station icon {l_strName} can not be loaded. {@l_oException}." , l_oException ) ;
Pins [ pinIndex ] . Label = stationId . ToString ( ) ;
Pins [ pinIndex ] . Icon = BitmapDescriptorFactory . DefaultMarker ( stationsColorList [ pinIndex ] ) ;
}
Pins [ pinIndex ] . IsVisible = true ;
}
var pinsCount = Pins . Count ;
for ( int pinIndex = stationsColorList . Count ; pinIndex < pinsCount ; pinIndex + + )
{
Log . ForContext < MapPageViewModel > ( ) . Error ( $"Unexpected count of pins detected. Expected {stationsColorList.Count} but is {pinsCount}." ) ;
Pins [ pinIndex ] . IsVisible = false ;
}
Log . ForContext < MapPageViewModel > ( ) . Debug ( "Update of stations pins color done." ) ;
}
/// <summary> Gets the color related part of the ressrouce name.</summary>
/// <param name="color">Color to get name for.</param>
/// <returns>Resource name.</returns>
private static string GetRessourceNameColorPart ( Color color )
{
if ( color = = Color . Blue )
{
return "Blue" ;
}
if ( color = = Color . Green )
{
return "Green" ;
}
if ( color = = Color . LightBlue )
{
return "LightBlue" ;
}
if ( color = = Color . Red )
{
return "Red" ;
}
return color . ToString ( ) ;
}
/// <summary>
/// Invoked when page is shown.
/// Starts update process.
/// </summary>
public async Task OnAppearing ( )
{
try
{
IsRunning = true ;
// Process map page.
Polling = TinkApp . Polling ;
Log . ForContext < MapPageViewModel > ( ) . Information (
$"{(Polling != null && Polling.IsActivated ? $" Map page is appearing . Update periode is { Polling . Periode . TotalSeconds } sec . " : " Map page is appearing . Polling is off . ")}" +
$"Current UI language is {Thread.CurrentThread.CurrentUICulture.Name}." ) ;
// Update map page filter
ActiveFilterMap = TinkApp . GroupFilterMapPage ;
ActionText = AppResources . ActivityTextRequestingLocationPermissions ;
var status = await RequestLocationPermission ( ) ;
ActionText = AppResources . ActivityTextMapLoadingStationsAndBikes ;
IsConnected = TinkApp . GetIsConnected ( ) ;
var resultStationsAndBikes = await TinkApp . GetConnector ( IsConnected ) . Query . GetBikesAndStationsAsync ( ) ;
TinkApp . Stations = resultStationsAndBikes . Response . StationsAll ;
TinkApp . ResourceUrls = resultStationsAndBikes . GeneralData . ResourceUrls ;
if ( ! string . IsNullOrEmpty ( resultStationsAndBikes ? . GeneralData ? . MerchantMessage )
& & ! WasMerchantMessageAlreadyShown )
{
await ViewService . DisplayAlert (
"Information" ,
resultStationsAndBikes . GeneralData . MerchantMessage ,
AppResources . MessageAnswerOk ) ;
WasMerchantMessageAlreadyShown = true ;
}
await SetStationsOnMap ( resultStationsAndBikes . Response . StationsAll ) ;
await HandleAuthCookieNotDefinedException ( resultStationsAndBikes . Exception ) ;
// Update pin colors.
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "Starting update pins color..." ) ;
var colors = GetStationColors (
Pins . Select ( x = > x . Tag . ToString ( ) ) . ToList ( ) ,
resultStationsAndBikes . Response . Bikes ) ;
// Update pins color form count of bikes located at station.
UpdatePinsColor ( colors ) ;
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "Update pins color done." ) ;
// Move and scale before getting stations and bikes which takes some time.
ActionText = AppResources . ActivityTextCenterMap ;
// Get map display area
Model . Map . IMapSpan mapSpan = null ;
if ( TinkApp . CenterMapToCurrentLocation & & status = = Status . Granted )
{
// Get from smart device
mapSpan = await GetFromLocationService ( status ) ;
}
if ( mapSpan = = null )
{
// Use map display are from COPRI
mapSpan = resultStationsAndBikes . GeneralData . InitialMapSpan ;
}
if ( mapSpan . IsValid )
{
TinkApp . UserMapSpan = MapSpan . FromCenterAndRadius (
new Xamarin . Forms . GoogleMaps . Position ( mapSpan . Center . Latitude , mapSpan . Center . Longitude ) ,
new Distance ( mapSpan . Radius * 1000 ) ) ;
TinkApp . Save ( ) ;
MoveAndScale ( m_oMoveToRegionDelegate , TinkApp . ActiveMapSpan ) ;
}
m_oViewUpdateManager = CreateUpdateTask ( ) ;
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "Update pins color done." ) ;
try
{
// Update bikes at station or my bikes depending on context.
await m_oViewUpdateManager . StartUpdateAyncPeridically ( Polling ) ;
}
catch ( Exception )
{
// Excpetions are handled insde update task;
}
Exception = resultStationsAndBikes . Exception ;
ActionText = "" ;
IsRunning = false ;
IsMapPageEnabled = true ;
}
catch ( Exception l_oException )
{
Log . ForContext < MapPageViewModel > ( ) . Error ( $"An error occurred showing bike stations page.\r\n{l_oException.Message}" ) ;
IsRunning = false ;
await ViewService . DisplayAlert (
"Fehler" ,
$"Beim Anzeigen der Fahrradstandorte- Seite ist ein Fehler aufgetreten.\r\n{l_oException.Message}" ,
"OK" ) ;
IsMapPageEnabled = true ;
}
}
/// <summary>
/// Invoked when the auth cookie is not defined.
/// </summary>
private async Task HandleAuthCookieNotDefinedException ( Exception exception )
{
if ( exception ? . GetType ( ) = = typeof ( AuthcookieNotDefinedException ) )
{
Log . ForContext < MapPageViewModel > ( ) . Error ( "Map page is shown (probable for the first time after startup of app) and COPRI auth cookie is not defined. {@l_oException}" , exception ) ;
// COPRI reports an auth cookie error.
await ViewService . DisplayAlert (
AppResources . MessageWaring ,
AppResources . MessageMapPageErrorAuthcookieUndefined ,
AppResources . MessageAnswerOk ) ;
IsConnected = TinkApp . GetIsConnected ( ) ;
await TinkApp . GetConnector ( IsConnected ) . Command . DoLogout ( ) ;
TinkApp . ActiveUser . Logout ( ) ;
}
}
/// <summary>
/// Sets the available stations on the map.
/// </summary>
private async Task SetStationsOnMap ( StationDictionary stations )
{
if ( Pins . Count > 0 & & Pins . Count ! = stations . Count )
{
// Either
// - user logged in/ logged out which might lead to more/ less stations beeing available
// - new stations were added/ existing ones remove
Pins . Clear ( ) ;
}
// Check if there are alreay any pins to the map
// i.e detecte first call of member OnAppearing after construction
if ( Pins . Count < = 0 )
{
Log . ForContext < MapPageViewModel > ( ) . Debug ( $"{(ActiveFilterMap.GetGroup().Any() ? $" Active map filter is { string . Join ( "," , ActiveFilterMap . GetGroup ( ) ) } . " : " Map filter is off . ")}" ) ;
// Map was not yet initialized.
// Get stations from Copri
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "No pins detected on page." ) ;
if ( stations . CopriVersion < CopriCallsStatic . UnsupportedVersionLower )
{
await ViewService . DisplayAlert (
AppResources . MessageWaring ,
string . Format ( AppResources . MessageCopriVersionIsOutdated , TinkApp . Flavor . GetDisplayName ( ) ) ,
AppResources . MessageAnswerOk ) ;
Log . ForContext < MapPageViewModel > ( ) . Error ( $"Outdated version of app detected. Version expected is {stations.CopriVersion}." ) ;
}
if ( stations . CopriVersion > = CopriCallsStatic . UnsupportedVersionUpper )
{
await ViewService . DisplayAlert (
AppResources . MessageWaring ,
string . Format ( AppResources . MessageAppVersionIsOutdated , TinkApp . Flavor . GetDisplayName ( ) ) ,
AppResources . MessageAnswerOk ) ;
Log . ForContext < MapPageViewModel > ( ) . Error ( $"Outdated version of app detected. Version expected is {stations.CopriVersion}." ) ;
}
// Set pins to their positions on map.
InitializePins ( stations ) ;
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "Update of pins done." ) ;
}
}
/// <summary>
/// Moves the map to the current position of the user.
/// If location permission hasn't been granted, the position is not adjusted.
/// </summary>
private async Task < Model . Map . IMapSpan > GetFromLocationService ( Status status )
{
Location currentLocation = null ;
try
{
currentLocation = await GeolocationService . GetAsync ( ) ;
}
catch ( Exception ex )
{
Log . ForContext < MapPageViewModel > ( ) . Error ( "Getting location failed. {Exception}" , ex ) ;
}
if ( currentLocation = = null )
return null ;
return Model . Map . MapSpanFactory . Create (
PositionFactory . Create ( currentLocation . Latitude , currentLocation . Longitude ) ,
TinkApp . ActiveMapSpan . Radius . Kilometers ) ;
}
/// <summary>
/// Requests the location permission from the user.
/// If the user declines, a dialog prompot is shown, telling the user to toggle the permission in the device settings.
/// </summary>
/// <returns>The permission status.</returns>
private async Task < Status > RequestLocationPermission ( )
{
// Check location permission
var status = await PermissionsService . CheckStatusAsync ( ) ;
if ( TinkApp . CenterMapToCurrentLocation
& & ! GeolocationService . IsSimulation
& & status ! = Status . Granted )
{
status = await PermissionsService . RequestAsync ( ) ;
if ( status ! = Status . Granted )
{
var dialogResult = await ViewService . DisplayAlert (
AppResources . MessageTitleHint ,
AppResources . MessageCenterMapLocationPermissionOpenDialog ,
AppResources . MessageAnswerYes ,
AppResources . MessageAnswerNo ) ;
if ( dialogResult )
{
// User decided to give access to locations permissions.
PermissionsService . OpenAppSettings ( ) ;
ActionText = "" ;
IsRunning = false ;
IsMapPageEnabled = true ;
}
}
}
return status ;
}
/// <summary> Moves map and scales visible region depending on active filter. </summary>
public static void MoveAndScale (
Action < MapSpan > moveToRegionDelegate ,
MapSpan currentMapSpan = null )
{
if ( currentMapSpan ! = null )
{
// Move to current location.
moveToRegionDelegate ( currentMapSpan ) ;
return ;
}
}
/// <summary> Creates a update task object. </summary>
/// <param name="p_oSynchronizationContext">Object to use for synchronization.</param>
private PollingUpdateTaskManager CreateUpdateTask ( )
{
// Start task which periodically updates pins.
return new PollingUpdateTaskManager (
( ) = >
{
try
{
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "Entering update cycle." ) ;
Result < StationsAndBikesContainer > resultStationsAndBikes ;
TinkApp . PostAction (
unused = >
{
ActionText = AppResources . ActivityTextUpdating ;
IsConnected = TinkApp . GetIsConnected ( ) ;
} ,
null ) ;
resultStationsAndBikes = TinkApp . GetConnector ( IsConnected ) . Query . GetBikesAndStationsAsync ( ) . Result ;
var exception = resultStationsAndBikes . Exception ;
if ( exception ! = null )
{
Log . ForContext < MapPageViewModel > ( ) . Error ( "Getting bikes and stations in polling context failed with exception {Exception}." , exception ) ;
}
// Check if there are alreay any pins to the map.
// If no initialze pins.
if ( Pins . Count < = 0 )
{
// Set pins to their positions on map.
TinkApp . PostAction (
unused = > { InitializePins ( resultStationsAndBikes . Response . StationsAll ) ; } ,
null ) ;
}
// Set/ update pins colors.
var l_oColors = GetStationColors (
Pins . Select ( x = > x . Tag . ToString ( ) ) . ToList ( ) ,
resultStationsAndBikes . Response . Bikes ) ;
// Update pins color form count of bikes located at station.
TinkApp . PostAction (
unused = >
{
UpdatePinsColor ( l_oColors ) ;
ActionText = string . Empty ;
Exception = resultStationsAndBikes . Exception ;
} ,
null ) ;
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "Leaving update cycle." ) ;
}
catch ( Exception exception )
{
Log . ForContext < MapPageViewModel > ( ) . Error ( "Getting stations and bikes from update task failed. {Exception}" , exception ) ;
TinkApp . PostAction (
unused = >
{
Exception = exception ;
ActionText = string . Empty ;
} ,
null ) ;
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "Leaving update cycle." ) ;
return ;
}
} ) ;
}
/// <summary>
/// Invoked when pages is closed/ hidden.
/// Stops update process.
/// </summary>
public async Task OnDisappearing ( )
{
Log . Information ( "Map page is disappearing..." ) ;
await m_oViewUpdateManager . StopUpdatePeridically ( ) ;
}
/// <summary> User clicked on a bike. </summary>
/// <param name="selectedStationId">Id of station user clicked on.</param>
public async void OnStationClicked ( string selectedStationId )
{
try
{
Log . ForContext < MapPageViewModel > ( ) . Information ( $"User taped station {selectedStationId}." ) ;
// Lock action to prevent multiple instances of "BikeAtStation" being opened.
IsMapPageEnabled = false ;
TinkApp . SelectedStation = TinkApp . Stations . FirstOrDefault ( x = > x . Id = = selectedStationId )
? ? new Station ( selectedStationId , new List < string > ( ) , null ) ; // Station might not be in list StationDictinaly because this list is not updatd in background task.
2021-05-13 20:03:07 +02:00
#if TRYNOTBACKSTYLE
m_oNavigation . ShowPage (
typeof ( BikesAtStationPage ) ,
p_strStationName ) ;
#else
2022-09-06 16:08:19 +02:00
// Show page.
await ViewService . PushAsync ( ViewTypes . BikesAtStation ) ;
IsMapPageEnabled = true ;
ActionText = "" ;
}
catch ( Exception exception )
{
IsMapPageEnabled = true ;
ActionText = "" ;
Log . ForContext < MapPageViewModel > ( ) . Error ( "Fehler beim Öffnen der Ansicht \"Fahrräder an Station\" aufgetreten. {Exception}" , exception ) ;
await ViewService . DisplayAlert (
"Fehler" ,
$"Fehler beim Öffnen der Ansicht \" Fahrräder an Station \ " aufgetreten. {exception.Message}" ,
"OK" ) ;
}
2021-05-13 20:03:07 +02:00
#endif
2022-09-06 16:08:19 +02:00
}
/// <summary>
/// Gets the list of station color for all stations.
/// </summary>
/// <param name="stationsId">Station id list to get color for.</param>
/// <returns></returns>
private static IList < Color > GetStationColors (
IEnumerable < string > stationsId ,
BikeCollection bikesAll )
{
if ( stationsId = = null )
{
Log . ForContext < MapPageViewModel > ( ) . Debug ( "No stations available to update color for." ) ;
return new List < Color > ( ) ;
}
if ( bikesAll = = null )
{
// If object is null an error occurred querrying bikes availalbe or bikes occpied which results in an unknown state.
Log . ForContext < MapPageViewModel > ( ) . Error ( "No bikes available to determine pins color." ) ;
return new List < Color > ( stationsId . Select ( x = > Color . Blue ) ) ;
}
// Get state for each station.
var colors = new List < Color > ( ) ;
foreach ( var stationId in stationsId )
{
// Get color of given station.
var bikesAtStation = bikesAll . Where ( x = > x . StationId = = stationId ) . ToList ( ) ;
if ( bikesAtStation . FirstOrDefault ( x = > x . State . Value . IsOccupied ( ) ) ! = null )
{
// There is at least one requested or booked bike
colors . Add ( Color . LightBlue ) ;
continue ;
}
if ( bikesAtStation . ToList ( ) . Count > 0 )
{
// There is at least one bike available
colors . Add ( Color . Green ) ;
continue ;
}
colors . Add ( Color . Red ) ;
}
return colors ;
}
/// <summary>
/// Exception which occurred getting bike information.
/// </summary>
public Exception Exception
{
get
{
return m_oException ;
}
private set
{
var statusInfoText = StatusInfoText ;
m_oException = value ;
if ( statusInfoText = = StatusInfoText )
{
// Nothing to do because value did not change.
return ;
}
PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( StatusInfoText ) ) ) ;
}
}
/// <summary> Holds info about current action. </summary>
private string actionText ;
/// <summary> Holds info about current action. </summary>
private string ActionText
{
get = > actionText ;
set
{
var statusInfoText = StatusInfoText ;
actionText = value ;
if ( statusInfoText = = StatusInfoText )
{
// Nothing to do because value did not change.
return ;
}
PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( StatusInfoText ) ) ) ;
}
}
/// <summary> Used to block more than on copri requests at a given time.</summary>
private bool isRunning = false ;
/// <summary>
/// True if any action can be performed (request and cancel request)
/// </summary>
public bool IsRunning
{
get = > isRunning ;
set
{
if ( value = = isRunning )
return ;
Log . ForContext < MapPageViewModel > ( ) . Debug ( $"Switch value of {nameof(isRunning)} to {value}." ) ;
isRunning = value ;
PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( IsRunning ) ) ) ;
}
}
/// <summary> Holds information whether app is connected to web or not. </summary>
private bool? isConnected = null ;
/// <summary>Exposes the is connected state. </summary>
private bool IsConnected
{
get = > isConnected ? ? false ;
set
{
var statusInfoText = StatusInfoText ;
isConnected = value ;
if ( statusInfoText = = StatusInfoText )
{
// Nothing to do.
return ;
}
PropertyChanged ? . Invoke ( this , new PropertyChangedEventArgs ( nameof ( StatusInfoText ) ) ) ;
}
}
/// <summary> Holds the status information text. </summary>
public string StatusInfoText
{
get
{
if ( Exception ! = null )
{
// An error occurred getting data from copri.
return Exception . GetShortErrorInfoText ( TinkApp . IsReportLevelVerbose ) ;
}
if ( ! IsConnected )
{
return AppResources . ActivityTextConnectionStateOffline ;
}
return ActionText ? ? string . Empty ;
}
}
/// <summary> Command object to bind login button to view model.</summary>
public System . Windows . Input . ICommand OnToggleTinkToKonrad = > new Xamarin . Forms . Command ( async ( ) = > await ToggleTinkToKonrad ( ) ) ;
/// <summary> Command object to bind login button to view model.</summary>
public System . Windows . Input . ICommand OnToggleKonradToTink = > new Xamarin . Forms . Command ( async ( ) = > await ToggleKonradToTink ( ) ) ;
/// <summary> Manages toggle functionality. </summary>
private ITinkKonradToggleViewModel tinkKonradToggleViewModel ;
/// <summary> User request to toggle from TINK to Konrad. </summary>
public async Task ToggleTinkToKonrad ( )
{
if ( tinkKonradToggleViewModel . CurrentFilter = = FilterHelper . CITYBIKE )
{
// Konrad is already activated, nothing to do.
return ;
}
Log . ForContext < MapPageViewModel > ( ) . Information ( "User toggles to Konrad." ) ;
await ActivateFilter ( FilterHelper . CARGOBIKE ) ;
}
/// <summary> User request to toggle from TINK to Konrad. </summary>
public async Task ToggleKonradToTink ( )
{
if ( tinkKonradToggleViewModel . CurrentFilter = = FilterHelper . CARGOBIKE )
{
// Konrad is already activated, nothing to do.
return ;
}
Log . ForContext < MapPageViewModel > ( ) . Information ( "User toggles to TINK." ) ;
await ActivateFilter ( FilterHelper . CITYBIKE ) ;
}
/// <summary> User request to toggle from TINK to Konrad. </summary>
private async Task ActivateFilter ( string selectedFilter )
{
try
{
IsMapPageEnabled = false ;
IsRunning = true ;
Log . ForContext < MapPageViewModel > ( ) . Information ( $"Request to toggle to \" { selectedFilter } \ "." ) ;
// Stop polling.
ActionText = AppResources . ActivityTextOneMomentPlease ;
await m_oViewUpdateManager . StopUpdatePeridically ( ) ;
// Clear error info.
Exception = null ;
// Toggle view
tinkKonradToggleViewModel = new TinkKonradToggleViewModel ( ActiveFilterMap ) . DoToggle ( ) ;
ActiveFilterMap = tinkKonradToggleViewModel . FilterDictionary ;
TinkApp . GroupFilterMapPage = ActiveFilterMap ;
TinkApp . Save ( ) ;
TinkApp . UpdateConnector ( ) ;
Pins . Clear ( ) ;
// Check location permission
ActionText = AppResources . ActivityTextRequestingLocationPermissions ;
var status = await PermissionsService . CheckStatusAsync ( ) ;
if ( TinkApp . CenterMapToCurrentLocation
& & ! GeolocationService . IsSimulation
& & status ! = Status . Granted )
{
status = await PermissionsService . RequestAsync ( ) ;
if ( status ! = Status . Granted )
{
var dialogResult = await ViewService . DisplayAlert (
AppResources . MessageTitleHint ,
AppResources . MessageCenterMapLocationPermissionOpenDialog ,
AppResources . MessageAnswerYes ,
AppResources . MessageAnswerNo ) ;
if ( dialogResult )
{
// User decided to give access to locations permissions.
PermissionsService . OpenAppSettings ( ) ;
ActionText = "" ;
IsRunning = false ;
IsMapPageEnabled = true ;
return ;
}
}
// Do not use property .State to get bluetooth state due
// to issue https://hausource.visualstudio.com/TINK/_workitems/edit/116 /
// see https://github.com/xabre/xamarin-bluetooth-le/issues/112#issuecomment-380994887
if ( await BluetoothService . GetBluetoothState ( ) ! = Plugin . BLE . Abstractions . Contracts . BluetoothState . On )
{
await ViewService . DisplayAlert (
AppResources . MessageTitleHint ,
AppResources . MessageBikesManagementBluetoothActivation ,
AppResources . MessageAnswerOk ) ;
ActionText = "" ;
IsRunning = false ;
IsMapPageEnabled = true ;
return ;
}
}
// Move and scale before getting stations and bikes which takes some time.
ActionText = AppResources . ActivityTextCenterMap ;
if ( TinkApp . CenterMapToCurrentLocation )
{
Location currentLocation = null ;
try
{
currentLocation = await GeolocationService . GetAsync ( ) ;
}
catch ( Exception ex )
{
Log . ForContext < MapPageViewModel > ( ) . Error ( "Getting location failed. {Exception}" , ex ) ;
}
if ( currentLocation ! = null )
{
TinkApp . UserMapSpan = MapSpan . FromCenterAndRadius (
new Xamarin . Forms . GoogleMaps . Position ( currentLocation . Latitude , currentLocation . Longitude ) ,
TinkApp . ActiveMapSpan . Radius ) ;
TinkApp . Save ( ) ;
}
}
// Update stations
MoveAndScale ( m_oMoveToRegionDelegate , TinkApp . ActiveMapSpan ) ;
ActionText = AppResources . ActivityTextMapLoadingStationsAndBikes ;
IsConnected = TinkApp . GetIsConnected ( ) ;
var resultStationsAndBikes = await TinkApp . GetConnector ( IsConnected ) . Query . GetBikesAndStationsAsync ( ) ;
// Set pins to their positions on map.
InitializePins ( resultStationsAndBikes . Response . StationsAll ) ;
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "Update of pins on toggle done..." ) ;
// Update pin colors.
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "Starting update pins color on toggle..." ) ;
var l_oColors = GetStationColors (
Pins . Select ( x = > x . Tag . ToString ( ) ) . ToList ( ) ,
resultStationsAndBikes . Response . Bikes ) ;
// Update pins color form count of bikes located at station.
UpdatePinsColor ( l_oColors ) ;
Log . ForContext < MapPageViewModel > ( ) . Verbose ( "Update pins color done." ) ;
try
{
// Update bikes at station or my bikes depending on context.
await m_oViewUpdateManager . StartUpdateAyncPeridically ( Polling ) ;
}
catch ( Exception )
{
// Excpetions are handled insde update task;
}
ActionText = "" ;
IsRunning = false ;
IsMapPageEnabled = true ;
Log . ForContext < MapPageViewModel > ( ) . Information ( $"Toggle to \" { selectedFilter } \ " done." ) ;
}
catch ( Exception l_oException )
{
Log . ForContext < MapPageViewModel > ( ) . Error ( "An error occurred switching view Cargobike/ Citybike.{}" ) ;
ActionText = "" ;
IsRunning = false ;
await ViewService . DisplayAlert (
"Fehler" ,
AppResources . MessageMapPageErrorSwitch ,
String . Format ( AppResources . MessageMapPageErrorSwitch , l_oException . Message ) ,
AppResources . MessageAnswerOk ) ;
IsMapPageEnabled = true ;
}
}
public Color TinkColor = > tinkKonradToggleViewModel . TinkColor ;
public Color KonradColor = > tinkKonradToggleViewModel . KonradColor ;
public Color NoTinkColor = > tinkKonradToggleViewModel . NoTinkColor ;
public Color NoKonradColor = > tinkKonradToggleViewModel . NoKonradColor ;
public bool IsToggleVisible = > tinkKonradToggleViewModel . IsToggleVisible ;
}
2021-12-08 17:58:06 +01:00
}