fluffychat/lib/utils/database/flutter_famedly_sdk_hive_da...

102 lines
3.1 KiB
Dart
Raw Normal View History

2021-06-11 11:40:38 +02:00
import 'dart:convert';
import 'dart:io';
import 'dart:typed_data';
import 'package:matrix/matrix.dart';
2021-06-11 11:40:38 +02:00
import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
import 'package:hive/hive.dart';
import 'package:hive_flutter/hive_flutter.dart';
import 'package:path_provider/path_provider.dart';
class FlutterFamedlySdkHiveDatabase extends FamedlySdkHiveDatabase {
FlutterFamedlySdkHiveDatabase(String name, {HiveCipher encryptionCipher})
: super(
name,
encryptionCipher: encryptionCipher,
2021-06-14 08:18:55 +02:00
);
2021-06-11 11:40:38 +02:00
static bool _hiveInitialized = false;
static const String _hiveCipherStorageKey = 'hive_encryption_key';
static Future<FamedlySdkHiveDatabase> hiveDatabaseBuilder(
Client client) async {
if (!kIsWeb && !_hiveInitialized) {
Logs().i('Init Hive database...');
await Hive.initFlutter();
_hiveInitialized = true;
}
HiveCipher hiverCipher;
try {
2021-06-12 13:41:22 +02:00
// Workaround for secure storage is calling Platform.operatingSystem on web
if (kIsWeb) throw MissingPluginException();
2021-06-11 11:40:38 +02:00
final secureStorage = const FlutterSecureStorage();
final containsEncryptionKey =
await secureStorage.containsKey(key: _hiveCipherStorageKey);
if (!containsEncryptionKey) {
final key = Hive.generateSecureKey();
await secureStorage.write(
key: _hiveCipherStorageKey,
value: base64UrlEncode(key),
);
}
final encryptionKey = base64Url.decode(
await secureStorage.read(key: _hiveCipherStorageKey),
);
hiverCipher = HiveAesCipher(encryptionKey);
} on MissingPluginException catch (_) {
2021-06-14 08:18:55 +02:00
Logs().i('Hive encryption is not supported on this platform');
2021-06-11 11:40:38 +02:00
}
final db = FamedlySdkHiveDatabase(
client.clientName,
encryptionCipher: hiverCipher,
);
Logs().i('Open Hive database...');
await db.open();
Logs().i('Hive database is ready!');
return db;
}
@override
2021-06-14 08:18:55 +02:00
int get maxFileSize => supportsFileStoring ? 100 * 1024 * 1024 : 0;
2021-06-11 11:40:38 +02:00
@override
2021-06-14 08:18:55 +02:00
bool get supportsFileStoring =>
!kIsWeb && (Platform.isIOS || Platform.isAndroid);
2021-06-11 11:40:38 +02:00
2021-06-14 08:18:55 +02:00
Future<String> _getFileStoreDirectory() async {
try {
return (await getApplicationDocumentsDirectory()).path;
} on MissingPlatformDirectoryException catch (_) {
return (await getDownloadsDirectory()).path;
}
2021-06-11 11:40:38 +02:00
}
@override
Future<Uint8List> getFile(String mxcUri) async {
2021-06-14 08:18:55 +02:00
if (!supportsFileStoring) return null;
final tempDirectory = await _getFileStoreDirectory();
2021-06-11 11:40:38 +02:00
final file = File('$tempDirectory/$mxcUri');
if (await file.exists() == false) return null;
final bytes = await file.readAsBytes();
2021-06-14 08:18:55 +02:00
return bytes;
2021-06-11 11:40:38 +02:00
}
@override
Future storeFile(String mxcUri, Uint8List bytes, int time) async {
2021-06-14 08:18:55 +02:00
if (!supportsFileStoring) return null;
final tempDirectory = await _getFileStoreDirectory();
2021-06-11 11:40:38 +02:00
final file = File('$tempDirectory/$mxcUri');
if (await file.exists()) return;
2021-06-14 08:18:55 +02:00
await file.writeAsBytes(bytes);
2021-06-11 11:40:38 +02:00
return;
}
@override
Future<void> clear(int clientId) async {
await super.clear(clientId);
}
}