import 'package:hive/hive.dart'; import 'package:selfprivacy/config/hive_config.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/dns_provider_credential.dart'; import 'package:selfprivacy/logic/models/hive/server.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/server_provider_credential.dart'; import 'package:selfprivacy/logic/models/hive/user.dart'; import 'package:selfprivacy/logic/models/hive/wizards_data/server_installation_wizard_data.dart'; class ResourcesModel { final Box _box = Hive.box(BNames.resourcesBox); List get serverProviderCredentials => _serverProviderTokens; List get dnsProviderCredentials => _dnsProviderTokens; List get backupsCredentials => _backupsCredentials; List get servers => _servers; BackblazeBucket? get backblazeBucket => _backblazeBucket; List _serverProviderTokens = []; List _dnsProviderTokens = []; List _backupsCredentials = []; List _servers = []; // TODO: As we will add support for other backup storages, we should // refactor this. BackblazeBucket? _backblazeBucket; @Deprecated('Compatibility getter') ServerHostingDetails? get serverDetails => _servers.firstOrNull?.hostingDetails; @Deprecated('Compatibility getter') String? get serverProviderKey => _serverProviderTokens.firstOrNull?.token; @Deprecated('Compatibility getter') String? get serverLocation => _servers.firstOrNull?.hostingDetails.serverLocation; @Deprecated('Compatibility getter') String? get serverType => _servers.firstOrNull?.hostingDetails.serverType; @Deprecated('Compatibility getter') String? get dnsProviderKey => _dnsProviderTokens.firstOrNull?.token; @Deprecated('Compatibility getter') ServerProviderType? get serverProvider => _serverProviderTokens.firstOrNull?.provider; @Deprecated('Compatibility getter') DnsProviderType? get dnsProvider => _dnsProviderTokens.firstOrNull?.provider; @Deprecated('Compatibility getter') BackupsCredential? get backblazeCredential => _backupsCredentials.firstOrNull; @Deprecated('Compatibility getter') ServerDomain? get serverDomain => _servers.firstOrNull?.domain; Future addServerProviderToken( final ServerProviderCredential token, ) async { _serverProviderTokens.add(token); await _box.put(BNames.serverProviderTokens, _serverProviderTokens); } Future associateServerWithToken( final int serverId, final String token, ) async { _serverProviderTokens .firstWhere( (final credential) => credential.token == token, ) .associatedServerIds .add(serverId); await _box.put(BNames.serverProviderTokens, _serverProviderTokens); } Future removeServerProviderToken( final ServerProviderCredential token, ) async { _serverProviderTokens.remove(token); await _box.put(BNames.serverProviderTokens, _serverProviderTokens); } Future addDnsProviderToken(final DnsProviderCredential token) async { _dnsProviderTokens.add(token); await _box.put(BNames.dnsProviderTokens, _dnsProviderTokens); } Future associateDomainWithToken( final String domain, final String token, ) async { _dnsProviderTokens .firstWhere( (final credential) => credential.token == token, ) .associatedDomainNames .add(domain); await _box.put(BNames.dnsProviderTokens, _dnsProviderTokens); } Future removeDnsProviderToken(final DnsProviderCredential token) async { _dnsProviderTokens.remove(token); await _box.put(BNames.dnsProviderTokens, _dnsProviderTokens); } Future addBackupsCredential(final BackupsCredential credential) async { _backupsCredentials.add(credential); await _box.put(BNames.backupsProviderTokens, _backupsCredentials); } Future removeBackupsCredential( final BackupsCredential credential, ) async { _backupsCredentials.remove(credential); await _box.put(BNames.backupsProviderTokens, _backupsCredentials); } Future addServer(final Server server) async { _servers.add(server); await _box.put(BNames.servers, _servers); } Future removeServer(final Server server) async { _servers.remove(server); await _box.put(BNames.servers, _servers); } Future setBackblazeBucket(final BackblazeBucket bucket) async { _backblazeBucket = bucket; await _box.put(BNames.backblazeBucket, _backblazeBucket); } Future removeBackblazeBucket() async { _backblazeBucket = null; await _box.delete(BNames.backblazeBucket); } void clear() { _servers.clear(); _serverProviderTokens.clear(); _dnsProviderTokens.clear(); _backupsCredentials.clear(); _backblazeBucket = null; _box.clear(); _box.compact(); } void init() { _serverProviderTokens = _box .get( BNames.serverProviderTokens, defaultValue: [], ) .map( (final e) => e as ServerProviderCredential, ) .toList(); _dnsProviderTokens = _box .get( BNames.dnsProviderTokens, defaultValue: [], ) .map((final e) => e as DnsProviderCredential) .toList(); _backupsCredentials = _box .get( BNames.backupsProviderTokens, defaultValue: [], ) .map((final e) => e as BackupsCredential) .toList(); _servers = _box .get( BNames.servers, defaultValue: [], ) .map((final e) => e as Server) .toList(); _backblazeBucket = _box.get(BNames.backblazeBucket); } } class WizardDataModel { final Box _box = Hive.box(BNames.wizardDataBox); ServerInstallationWizardData? get serverInstallation => _serverInstallation; ServerInstallationWizardData? _serverInstallation; Future setServerProviderType(final ServerProviderType provider) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(serverProviderType: provider); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setServerProviderKey(final String key) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(serverProviderKey: key); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setDnsProviderType(final DnsProviderType provider) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(dnsProviderType: provider); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setDnsProviderKey(final String key) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(dnsProviderKey: key); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setServerTypeIdentifier(final String identifier) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(serverTypeIdentifier: identifier); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setServerLocation(final String location) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(serverLocation: location); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setServerDetails(final ServerHostingDetails details) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(serverDetails: () => details); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future deleteServerDetails() async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(serverDetails: () => null); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setBackupsCredential(final BackupsCredential credential) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(backupsCredential: credential); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setServerDomain(final ServerDomain domain) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(serverDomain: () => domain); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future deleteServerDomain() async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(serverDomain: () => null); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setIsServerStarted(final bool isStarted) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(isServerStarted: isStarted); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setIsServerRebootedFirstTime(final bool isRebooted) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(isServerResetedFirstTime: isRebooted); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setIsServerRebootedSecondTime(final bool isRebooted) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(isServerResetedSecondTime: isRebooted); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setRootUser(final User user) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(rootUser: user); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future setIsRecoveringServer(final bool isRecovering) async { _serverInstallation = (_serverInstallation ?? ServerInstallationWizardData.empty()) .copyWith(isRecoveringServer: isRecovering); await _box.put(BNames.serverInstallationWizardData, _serverInstallation); } Future clearServerInstallation() async { _serverInstallation = null; await _box.delete(BNames.serverInstallationWizardData); } Future clear() async { await _box.clear(); await _box.compact(); } void init() { _serverInstallation = _box.get(BNames.serverInstallationWizardData, defaultValue: null); } }