selfprivacy.org.app/lib/config/hive_config.dart

125 lines
4.7 KiB
Dart
Raw Normal View History

2021-01-06 17:35:57 +00:00
import 'dart:convert';
import 'dart:typed_data';
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
import 'package:hive_flutter/hive_flutter.dart';
import 'package:selfprivacy/logic/models/hive/backblaze_bucket.dart';
import 'package:selfprivacy/logic/models/hive/backups_credential.dart';
import 'package:selfprivacy/logic/models/hive/server_details.dart';
import 'package:selfprivacy/logic/models/hive/server_domain.dart';
import 'package:selfprivacy/logic/models/hive/user.dart';
import 'package:selfprivacy/utils/platform_adapter.dart';
2021-01-06 17:35:57 +00:00
class HiveConfig {
static Future<void> init() async {
final String? storagePath = PlatformAdapter.storagePath;
print('HiveConfig: Custom storage path: $storagePath');
await Hive.initFlutter(storagePath);
2021-01-06 17:35:57 +00:00
Hive.registerAdapter(UserAdapter());
Hive.registerAdapter(ServerHostingDetailsAdapter());
Hive.registerAdapter(ServerDomainAdapter());
Hive.registerAdapter(BackupsCredentialAdapter());
2021-12-06 18:31:19 +00:00
Hive.registerAdapter(BackblazeBucketAdapter());
Hive.registerAdapter(ServerProviderVolumeAdapter());
2022-09-05 05:21:16 +00:00
Hive.registerAdapter(UserTypeAdapter());
Hive.registerAdapter(DnsProviderTypeAdapter());
Hive.registerAdapter(ServerProviderTypeAdapter());
2023-06-29 09:52:09 +00:00
Hive.registerAdapter(BackupsProviderTypeAdapter());
await Hive.openBox(BNames.appSettingsBox);
2021-07-29 05:24:42 +00:00
2022-06-05 19:36:32 +00:00
final HiveAesCipher cipher = HiveAesCipher(
2022-06-09 21:13:06 +00:00
await getEncryptedKey(BNames.serverInstallationEncryptionKey),
);
2021-09-15 13:15:54 +00:00
await Hive.openBox(BNames.serverInstallationBox, encryptionCipher: cipher);
2021-01-06 17:35:57 +00:00
}
2022-06-05 19:36:32 +00:00
static Future<Uint8List> getEncryptedKey(final String encKey) async {
const FlutterSecureStorage secureStorage = FlutterSecureStorage();
final bool hasEncryptionKey = await secureStorage.containsKey(key: encKey);
2021-08-29 09:50:24 +00:00
if (!hasEncryptionKey) {
2022-06-05 19:36:32 +00:00
final List<int> key = Hive.generateSecureKey();
2021-09-02 19:32:07 +00:00
await secureStorage.write(key: encKey, value: base64UrlEncode(key));
2021-01-06 17:35:57 +00:00
}
2022-06-05 19:36:32 +00:00
final String? string = await secureStorage.read(key: encKey);
2021-03-15 15:39:44 +00:00
return base64Url.decode(string!);
2021-01-06 17:35:57 +00:00
}
}
/// Mappings for the different boxes and their keys
2021-01-06 17:35:57 +00:00
class BNames {
/// App settings box. Contains app settings like [isDarkModeOn], [isOnboardingShowing]
static String appSettingsBox = 'appSettings';
/// A boolean field of [appSettingsBox] box.
2021-01-06 17:35:57 +00:00
static String isDarkModeOn = 'isDarkModeOn';
2023-02-23 14:41:45 +00:00
/// A boolean field of [appSettingsBox] box.
static String isAutoDarkModeOn = 'isAutoDarkModeOn';
/// A boolean field of [appSettingsBox] box.
static String isOnboardingShowing = 'isOnboardingShowing';
2021-01-06 17:35:57 +00:00
2024-04-12 12:41:32 +00:00
/// Encryption key to decrypt [serverInstallationBox] box.
static String serverInstallationEncryptionKey = 'key';
2021-01-06 17:35:57 +00:00
/// Server installation box. Contains server details and provider tokens.
static String serverInstallationBox = 'appConfig';
/// A List<String> field of [serverInstallationBox] box.
static String rootKeys = 'rootKeys';
/// A boolean field of [serverInstallationBox] box.
static String hasFinalChecked = 'hasFinalChecked';
/// A boolean field of [serverInstallationBox] box.
static String isServerStarted = 'isServerStarted';
/// A [ServerDomain] field of [serverInstallationBox] box.
static String serverDomain = 'cloudFlareDomain';
/// A String field of [serverInstallationBox] box.
2021-01-06 17:35:57 +00:00
static String hetznerKey = 'hetznerKey';
/// A String field of [serverInstallationBox] box.
static String serverProvider = 'serverProvider';
/// A String field of [serverInstallationBox] box.
static String dnsProvider = 'dnsProvider';
/// A String field of [serverLocation] box.
static String serverLocation = 'serverLocation';
/// A String field of [serverInstallationBox] box.
2021-01-06 17:35:57 +00:00
static String cloudFlareKey = 'cloudFlareKey';
/// A String field of [serverTypeIdentifier] box.
static String serverTypeIdentifier = 'serverTypeIdentifier';
/// A [User] field of [serverInstallationBox] box.
2021-01-06 17:35:57 +00:00
static String rootUser = 'rootUser';
/// A [ServerHostingDetails] field of [serverInstallationBox] box.
static String serverDetails = 'hetznerServer';
/// A [BackupsCredential] field of [serverInstallationBox] box.
static String backblazeCredential = 'backblazeKey';
/// A [BackblazeBucket] field of [serverInstallationBox] box.
2021-12-06 18:31:19 +00:00
static String backblazeBucket = 'backblazeBucket';
/// A boolean field of [serverInstallationBox] box.
2021-02-16 18:48:15 +00:00
static String isLoading = 'isLoading';
/// A boolean field of [serverInstallationBox] box.
2021-03-31 11:37:39 +00:00
static String isServerResetedFirstTime = 'isServerResetedFirstTime';
/// A boolean field of [serverInstallationBox] box.
2021-03-31 11:37:39 +00:00
static String isServerResetedSecondTime = 'isServerResetedSecondTime';
2022-05-30 23:06:08 +00:00
/// A boolean field of [serverInstallationBox] box.
static String isRecoveringServer = 'isRecoveringServer';
2021-01-06 17:35:57 +00:00
}