mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
register android push on my vault page too
This commit is contained in:
@@ -28,6 +28,10 @@ namespace Bit.Android.Services
|
|||||||
{
|
{
|
||||||
_pushNotificationListener.OnRegistered(registeredToken, Device.Android);
|
_pushNotificationListener.OnRegistered(registeredToken, Device.Android);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_settings.AddOrUpdateValue(Constants.PushLastRegistrationDate, DateTime.UtcNow);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Unregister()
|
public void Unregister()
|
||||||
|
|||||||
@@ -136,34 +136,44 @@ namespace Bit.App.Pages
|
|||||||
|
|
||||||
_filterResultsCancellationTokenSource = FetchAndLoadVault();
|
_filterResultsCancellationTokenSource = FetchAndLoadVault();
|
||||||
|
|
||||||
if(_connectivity.IsConnected && Device.RuntimePlatform == Device.iOS)
|
// Push registration
|
||||||
|
if(_connectivity.IsConnected)
|
||||||
{
|
{
|
||||||
var pushPromptShow = _settings.GetValueOrDefault(Constants.PushInitialPromptShown, false);
|
var lastPushRegistration = _settings.GetValueOrDefault(Constants.PushLastRegistrationDate,
|
||||||
Action registerAction = () =>
|
DateTime.MinValue);
|
||||||
{
|
|
||||||
var lastPushRegistration =
|
|
||||||
_settings.GetValueOrDefault(Constants.PushLastRegistrationDate, DateTime.MinValue);
|
|
||||||
if(!pushPromptShow || DateTime.UtcNow - lastPushRegistration > TimeSpan.FromDays(1))
|
|
||||||
{
|
|
||||||
_pushNotification.Register();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if(!pushPromptShow)
|
if(Device.RuntimePlatform == Device.iOS)
|
||||||
{
|
{
|
||||||
_settings.AddOrUpdateValue(Constants.PushInitialPromptShown, true);
|
var pushPromptShow = _settings.GetValueOrDefault(Constants.PushInitialPromptShown, false);
|
||||||
_userDialogs.Alert(new AlertConfig
|
Action registerAction = () =>
|
||||||
{
|
{
|
||||||
Message = AppResources.PushNotificationAlert,
|
if(!pushPromptShow || DateTime.UtcNow - lastPushRegistration > TimeSpan.FromDays(1))
|
||||||
Title = AppResources.EnableAutomaticSyncing,
|
{
|
||||||
OnAction = registerAction,
|
_pushNotification.Register();
|
||||||
OkText = AppResources.OkGotIt
|
}
|
||||||
});
|
};
|
||||||
|
|
||||||
|
if(!pushPromptShow)
|
||||||
|
{
|
||||||
|
_settings.AddOrUpdateValue(Constants.PushInitialPromptShown, true);
|
||||||
|
_userDialogs.Alert(new AlertConfig
|
||||||
|
{
|
||||||
|
Message = AppResources.PushNotificationAlert,
|
||||||
|
Title = AppResources.EnableAutomaticSyncing,
|
||||||
|
OnAction = registerAction,
|
||||||
|
OkText = AppResources.OkGotIt
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Check push registration once per day
|
||||||
|
registerAction();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else if(Device.RuntimePlatform == Device.Android &&
|
||||||
|
DateTime.UtcNow - lastPushRegistration > TimeSpan.FromDays(1))
|
||||||
{
|
{
|
||||||
// Check push registration once per day
|
_pushNotification.Register();
|
||||||
registerAction();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user