fluffychat/lib/utils/matrix_sdk_extensions.dart/flutter_matrix_hive_databas...

134 lines
4.0 KiB
Dart
Raw Normal View History

2021-06-11 09:40:38 +00:00
import 'dart:convert';
import 'dart:io';
import 'dart:typed_data';
import 'package:matrix/matrix.dart';
2021-06-11 09:40:38 +00: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';
import '../platform_infos.dart';
class FlutterMatrixHiveStore extends FamedlySdkHiveDatabase {
FlutterMatrixHiveStore(String name, {HiveCipher encryptionCipher})
2021-06-11 09:40:38 +00:00
: super(
name,
encryptionCipher: encryptionCipher,
2021-06-14 06:18:55 +00:00
);
2021-06-11 09:40:38 +00:00
Box _customBox;
String get _customBoxName => '$name.box.custom';
2021-06-11 09:40:38 +00:00
static bool _hiveInitialized = false;
static const String _hiveCipherStorageKey = 'hive_encryption_key';
@override
Future<void> open() async {
await super.open();
_customBox = await Hive.openBox(
_customBoxName,
encryptionCipher: encryptionCipher,
);
return;
}
@override
Future<void> clear(int clientId) async {
await super.clear(clientId);
await _customBox.deleteAll(_customBox.keys);
await _customBox.close();
}
dynamic get(dynamic key) => _customBox.get(key);
Future<void> put(dynamic key, dynamic value) => _customBox.put(key, value);
2021-06-11 09:40:38 +00:00
static Future<FamedlySdkHiveDatabase> hiveDatabaseBuilder(
Client client) async {
if (!kIsWeb && !_hiveInitialized) {
_hiveInitialized = true;
}
HiveCipher hiverCipher;
try {
2021-06-12 11:41:22 +00:00
// Workaround for secure storage is calling Platform.operatingSystem on web
if (kIsWeb) throw MissingPluginException();
2021-10-14 16:09:30 +00:00
const secureStorage = FlutterSecureStorage();
2021-06-11 09:40:38 +00:00
final containsEncryptionKey =
await secureStorage.containsKey(key: _hiveCipherStorageKey);
if (!containsEncryptionKey) {
final key = Hive.generateSecureKey();
await secureStorage.write(
key: _hiveCipherStorageKey,
value: base64UrlEncode(key),
);
}
// workaround for if we just wrote to the key and it still doesn't exist
final rawEncryptionKey =
await secureStorage.read(key: _hiveCipherStorageKey);
if (rawEncryptionKey == null) throw MissingPluginException();
final encryptionKey = base64Url.decode(rawEncryptionKey);
2021-06-11 09:40:38 +00:00
hiverCipher = HiveAesCipher(encryptionKey);
} on MissingPluginException catch (_) {
2021-06-14 06:18:55 +00:00
Logs().i('Hive encryption is not supported on this platform');
2021-06-11 09:40:38 +00:00
}
final db = FlutterMatrixHiveStore(
2021-06-11 09:40:38 +00:00
client.clientName,
encryptionCipher: hiverCipher,
);
try {
await db.open();
} catch (e, s) {
Logs().e('Unable to open Hive. Delete and try again...', e, s);
await db.clear(client.id);
await db.open();
}
2021-06-11 09:40:38 +00:00
return db;
}
@override
2021-06-14 06:18:55 +00:00
int get maxFileSize => supportsFileStoring ? 100 * 1024 * 1024 : 0;
2021-06-11 09:40:38 +00:00
@override
bool get supportsFileStoring => (PlatformInfos.isIOS ||
PlatformInfos.isAndroid ||
PlatformInfos.isDesktop);
2021-06-11 09:40:38 +00:00
2021-06-14 06:18:55 +00:00
Future<String> _getFileStoreDirectory() async {
try {
try {
return (await getApplicationSupportDirectory()).path;
} catch (_) {
return (await getApplicationDocumentsDirectory()).path;
}
} catch (_) {
2021-06-14 06:18:55 +00:00
return (await getDownloadsDirectory()).path;
}
2021-06-11 09:40:38 +00:00
}
@override
2021-08-26 17:03:08 +00:00
Future<Uint8List> getFile(Uri mxcUri) async {
2021-06-14 06:18:55 +00:00
if (!supportsFileStoring) return null;
final tempDirectory = await _getFileStoreDirectory();
2021-08-26 17:03:08 +00:00
final file =
File('$tempDirectory/${Uri.encodeComponent(mxcUri.toString())}');
2021-06-11 09:40:38 +00:00
if (await file.exists() == false) return null;
final bytes = await file.readAsBytes();
2021-06-14 06:18:55 +00:00
return bytes;
2021-06-11 09:40:38 +00:00
}
@override
2021-08-26 17:03:08 +00:00
Future storeFile(Uri mxcUri, Uint8List bytes, int time) async {
2021-06-14 06:18:55 +00:00
if (!supportsFileStoring) return null;
final tempDirectory = await _getFileStoreDirectory();
2021-08-26 17:03:08 +00:00
final file =
File('$tempDirectory/${Uri.encodeComponent(mxcUri.toString())}');
2021-06-11 09:40:38 +00:00
if (await file.exists()) return;
2021-06-14 06:18:55 +00:00
await file.writeAsBytes(bytes);
2021-06-11 09:40:38 +00:00
return;
}
}