Bitwarden-app-android-iphon.../src/Android/MainApplication.cs

110 lines
4.9 KiB
C#
Raw Normal View History

2019-03-28 01:12:44 +01:00
using System;
2019-04-11 20:14:34 +02:00
using System.IO;
2019-04-18 18:31:35 +02:00
using System.Threading.Tasks;
2019-03-28 01:12:44 +01:00
using Android.App;
using Android.Runtime;
2019-04-11 20:14:34 +02:00
using Bit.App.Abstractions;
using Bit.App.Services;
using Bit.Core.Abstractions;
using Bit.Core.Services;
using Bit.Core.Utilities;
using Bit.Droid.Services;
2019-05-16 22:31:58 +02:00
using Plugin.CurrentActivity;
using Plugin.Fingerprint;
using Plugin.Fingerprint.Abstractions;
2019-03-28 01:12:44 +01:00
namespace Bit.Droid
{
#if DEBUG
[Application(Debuggable = true)]
#else
[Application(Debuggable = false)]
#endif
[Register("com.x8bit.bitwarden.MainApplication")]
public class MainApplication : Application
{
public MainApplication(IntPtr handle, JniHandleOwnership transer)
: base(handle, transer)
2019-04-11 20:14:34 +02:00
{
if(ServiceContainer.RegisteredServices.Count == 0)
{
RegisterLocalServices();
ServiceContainer.Init();
}
}
2019-04-10 05:24:03 +02:00
public override void OnCreate()
{
base.OnCreate();
2019-04-18 18:31:35 +02:00
Bootstrap();
2019-05-16 22:31:58 +02:00
CrossCurrentActivity.Current.Init(this);
2019-04-10 05:24:03 +02:00
}
2019-04-11 20:14:34 +02:00
2019-04-18 18:31:35 +02:00
private void RegisterLocalServices()
2019-04-11 20:14:34 +02:00
{
2019-05-08 14:33:17 +02:00
Refractored.FabControl.Droid.FloatingActionButtonViewRenderer.Init();
2019-04-26 16:58:41 +02:00
// Note: This might cause a race condition. Investigate more.
2019-05-23 02:28:31 +02:00
Task.Run(() =>
{
FFImageLoading.Forms.Platform.CachedImageRenderer.Init(true);
ZXing.Net.Mobile.Forms.Android.Platform.Init();
});
2019-05-16 22:31:58 +02:00
CrossFingerprint.SetCurrentActivityResolver(() => CrossCurrentActivity.Current.Activity);
2019-04-22 23:08:37 +02:00
2019-04-11 20:14:34 +02:00
var preferencesStorage = new PreferencesStorageService(null);
var documentsPath = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
var liteDbStorage = new LiteDbStorageService(Path.Combine(documentsPath, "bitwarden.db"));
2019-04-26 16:55:29 +02:00
liteDbStorage.InitAsync();
2019-04-11 21:33:10 +02:00
var localizeService = new LocalizeService();
2019-04-19 18:29:37 +02:00
var broadcasterService = new BroadcasterService();
var messagingService = new MobileBroadcasterMessagingService(broadcasterService);
2019-04-18 16:40:57 +02:00
var i18nService = new MobileI18nService(localizeService.GetCurrentCultureInfo());
var secureStorageService = new SecureStorageService();
var cryptoPrimitiveService = new CryptoPrimitiveService();
var mobileStorageService = new MobileStorageService(preferencesStorage, liteDbStorage);
2019-05-11 05:43:35 +02:00
var deviceActionService = new DeviceActionService(mobileStorageService, messagingService,
broadcasterService);
var platformUtilsService = new MobilePlatformUtilsService(deviceActionService, messagingService,
broadcasterService);
2019-04-11 20:14:34 +02:00
ServiceContainer.Register<IBroadcasterService>("broadcasterService", broadcasterService);
2019-04-18 16:40:57 +02:00
ServiceContainer.Register<IMessagingService>("messagingService", messagingService);
2019-04-11 21:33:10 +02:00
ServiceContainer.Register<ILocalizeService>("localizeService", localizeService);
2019-04-18 16:40:57 +02:00
ServiceContainer.Register<II18nService>("i18nService", i18nService);
ServiceContainer.Register<ICryptoPrimitiveService>("cryptoPrimitiveService", cryptoPrimitiveService);
ServiceContainer.Register<IStorageService>("storageService", mobileStorageService);
ServiceContainer.Register<IStorageService>("secureStorageService", secureStorageService);
2019-04-11 20:14:34 +02:00
ServiceContainer.Register<IDeviceActionService>("deviceActionService", deviceActionService);
2019-04-18 16:40:57 +02:00
ServiceContainer.Register<IPlatformUtilsService>("platformUtilsService", platformUtilsService);
2019-05-28 18:01:55 +02:00
// Push
#if FDROID
2019-05-28 19:50:01 +02:00
ServiceContainer.Register<IPushNotificationListenerService>(
"pushNotificationListenerService", new NoopPushNotificationListenerService());
ServiceContainer.Register<IPushNotificationService>(
"pushNotificationService", new NoopPushNotificationService());
2019-05-28 18:01:55 +02:00
#else
var notificationListenerService = new PushNotificationListenerService();
ServiceContainer.Register<IPushNotificationListenerService>(
"pushNotificationListenerService", notificationListenerService);
var androidPushNotificationService = new AndroidPushNotificationService(
mobileStorageService, notificationListenerService);
ServiceContainer.Register<IPushNotificationService>(
"pushNotificationService", androidPushNotificationService);
#endif
2019-04-11 20:14:34 +02:00
}
2019-04-18 18:31:35 +02:00
private void Bootstrap()
{
(ServiceContainer.Resolve<II18nService>("i18nService") as MobileI18nService).Init();
ServiceContainer.Resolve<IAuthService>("authService").Init();
// Note: This is not awaited
var bootstrapTask = BootstrapAsync();
}
private async Task BootstrapAsync()
{
await ServiceContainer.Resolve<IEnvironmentService>("environmentService").SetUrlsFromStorageAsync();
}
2019-03-28 01:12:44 +01:00
}
}