mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 05:13:31 +00:00
* EC-519 Refactored IDeviceActionService to be split into IFileService and IAutofillManager also some cleanups were made * EC-519 Fix format * EC-519 Fix merge to use the new AutofillHandler
232 lines
7.2 KiB
C#
232 lines
7.2 KiB
C#
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
using Bit.App.Abstractions;
|
|
using Bit.App.Resources;
|
|
using Bit.App.Services;
|
|
using Bit.Core.Abstractions;
|
|
using Bit.Core.Utilities;
|
|
using Xamarin.CommunityToolkit.ObjectModel;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public class AutofillServicesPageViewModel : BaseViewModel
|
|
{
|
|
private readonly IDeviceActionService _deviceActionService;
|
|
private readonly IAutofillHandler _autofillHandler;
|
|
private readonly IStateService _stateService;
|
|
private readonly MobileI18nService _i18nService;
|
|
private readonly IPlatformUtilsService _platformUtilsService;
|
|
readonly LazyResolve<ILogger> _logger = new LazyResolve<ILogger>("logger");
|
|
|
|
private bool _autofillServiceToggled;
|
|
private bool _inlineAutofillToggled;
|
|
private bool _accessibilityToggled;
|
|
private bool _drawOverToggled;
|
|
private bool _inited;
|
|
|
|
public AutofillServicesPageViewModel()
|
|
{
|
|
_deviceActionService = ServiceContainer.Resolve<IDeviceActionService>("deviceActionService");
|
|
_autofillHandler = ServiceContainer.Resolve<IAutofillHandler>();
|
|
_stateService = ServiceContainer.Resolve<IStateService>("stateService");
|
|
_i18nService = ServiceContainer.Resolve<II18nService>("i18nService") as MobileI18nService;
|
|
_platformUtilsService = ServiceContainer.Resolve<IPlatformUtilsService>("platformUtilsService");
|
|
PageTitle = AppResources.AutofillServices;
|
|
ToggleAccessibilityCommand = new AsyncCommand(ToggleAccessibilityAsync,
|
|
onException: ex => _logger.Value.Exception(ex),
|
|
allowsMultipleExecutions: false);
|
|
}
|
|
|
|
#region Autofill Service
|
|
|
|
public bool AutofillServiceVisible
|
|
{
|
|
get => _deviceActionService.SystemMajorVersion() >= 26;
|
|
}
|
|
|
|
public bool AutofillServiceToggled
|
|
{
|
|
get => _autofillServiceToggled;
|
|
set => SetProperty(ref _autofillServiceToggled, value,
|
|
additionalPropertyNames: new string[]
|
|
{
|
|
nameof(InlineAutofillEnabled)
|
|
});
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Inline Autofill
|
|
|
|
public bool InlineAutofillVisible
|
|
{
|
|
get => _deviceActionService.SystemMajorVersion() >= 30;
|
|
}
|
|
|
|
public bool InlineAutofillEnabled
|
|
{
|
|
get => AutofillServiceToggled;
|
|
}
|
|
|
|
public bool InlineAutofillToggled
|
|
{
|
|
get => _inlineAutofillToggled;
|
|
set
|
|
{
|
|
if (SetProperty(ref _inlineAutofillToggled, value))
|
|
{
|
|
var task = UpdateInlineAutofillToggledAsync();
|
|
}
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Accessibility
|
|
|
|
public ICommand ToggleAccessibilityCommand { get; }
|
|
|
|
public string AccessibilityDescriptionLabel
|
|
{
|
|
get
|
|
{
|
|
if (_deviceActionService.SystemMajorVersion() <= 22)
|
|
{
|
|
// Android 5
|
|
return _i18nService.T("AccessibilityDescription");
|
|
}
|
|
if (_deviceActionService.SystemMajorVersion() == 23)
|
|
{
|
|
// Android 6
|
|
return _i18nService.T("AccessibilityDescription2");
|
|
}
|
|
if (_deviceActionService.SystemMajorVersion() == 24 || _deviceActionService.SystemMajorVersion() == 25)
|
|
{
|
|
// Android 7
|
|
return _i18nService.T("AccessibilityDescription3");
|
|
}
|
|
// Android 8+
|
|
return _i18nService.T("AccessibilityDescription4");
|
|
}
|
|
}
|
|
|
|
public bool AccessibilityToggled
|
|
{
|
|
get => _accessibilityToggled;
|
|
set => SetProperty(ref _accessibilityToggled, value,
|
|
additionalPropertyNames: new string[]
|
|
{
|
|
nameof(DrawOverEnabled)
|
|
});
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Draw-Over
|
|
|
|
public bool DrawOverVisible
|
|
{
|
|
get => _deviceActionService.SystemMajorVersion() >= 23;
|
|
}
|
|
|
|
public string DrawOverDescriptionLabel
|
|
{
|
|
get
|
|
{
|
|
if (_deviceActionService.SystemMajorVersion() <= 23)
|
|
{
|
|
// Android 6
|
|
return _i18nService.T("DrawOverDescription");
|
|
}
|
|
if (_deviceActionService.SystemMajorVersion() == 24 || _deviceActionService.SystemMajorVersion() == 25)
|
|
{
|
|
// Android 7
|
|
return _i18nService.T("DrawOverDescription2");
|
|
}
|
|
// Android 8+
|
|
return _i18nService.T("DrawOverDescription3");
|
|
}
|
|
}
|
|
|
|
public bool DrawOverEnabled
|
|
{
|
|
get => AccessibilityToggled;
|
|
}
|
|
|
|
public bool DrawOverToggled
|
|
{
|
|
get => _drawOverToggled;
|
|
set => SetProperty(ref _drawOverToggled, value);
|
|
}
|
|
|
|
#endregion
|
|
|
|
public async Task InitAsync()
|
|
{
|
|
InlineAutofillToggled = await _stateService.GetInlineAutofillEnabledAsync() ?? true;
|
|
_inited = true;
|
|
}
|
|
|
|
public void ToggleAutofillService()
|
|
{
|
|
if (!AutofillServiceToggled)
|
|
{
|
|
_deviceActionService.OpenAutofillSettings();
|
|
}
|
|
else
|
|
{
|
|
_autofillHandler.DisableAutofillService();
|
|
}
|
|
}
|
|
|
|
public void ToggleInlineAutofill()
|
|
{
|
|
if (!InlineAutofillEnabled)
|
|
{
|
|
return;
|
|
}
|
|
InlineAutofillToggled = !InlineAutofillToggled;
|
|
}
|
|
|
|
public async Task ToggleAccessibilityAsync()
|
|
{
|
|
if (!_autofillHandler.AutofillAccessibilityServiceRunning())
|
|
{
|
|
var accept = await _platformUtilsService.ShowDialogAsync(AppResources.AccessibilityDisclosureText,
|
|
AppResources.AccessibilityServiceDisclosure, AppResources.Accept,
|
|
AppResources.Decline);
|
|
if (!accept)
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
_deviceActionService.OpenAccessibilitySettings();
|
|
}
|
|
|
|
public void ToggleDrawOver()
|
|
{
|
|
if (!DrawOverEnabled)
|
|
{
|
|
return;
|
|
}
|
|
_deviceActionService.OpenAccessibilityOverlayPermissionSettings();
|
|
}
|
|
|
|
public void UpdateEnabled()
|
|
{
|
|
AutofillServiceToggled =
|
|
_autofillHandler.SupportsAutofillService() && _autofillHandler.AutofillServiceEnabled();
|
|
AccessibilityToggled = _autofillHandler.AutofillAccessibilityServiceRunning();
|
|
DrawOverToggled = _autofillHandler.AutofillAccessibilityOverlayPermitted();
|
|
}
|
|
|
|
private async Task UpdateInlineAutofillToggledAsync()
|
|
{
|
|
if (_inited)
|
|
{
|
|
await _stateService.SetInlineAutofillEnabledAsync(InlineAutofillToggled);
|
|
}
|
|
}
|
|
}
|
|
}
|