diff --git a/lib/utils/matrix_sdk_extensions.dart/fluffybox_database.dart b/lib/utils/matrix_sdk_extensions.dart/fluffybox_database.dart index 3c74812eb..89a6d42a2 100644 --- a/lib/utils/matrix_sdk_extensions.dart/fluffybox_database.dart +++ b/lib/utils/matrix_sdk_extensions.dart/fluffybox_database.dart @@ -40,6 +40,8 @@ class FlutterFluffyBoxDatabase extends FluffyBoxDatabase { final containsEncryptionKey = await secureStorage.containsKey(key: _cipherStorageKey); if (!containsEncryptionKey) { + // do not try to create a buggy secure storage for new Linux users + if (Platform.isLinux) throw MissingPluginException(); final key = Hive.generateSecureKey(); await secureStorage.write( key: _cipherStorageKey, diff --git a/lib/utils/matrix_sdk_extensions.dart/flutter_matrix_hive_database.dart b/lib/utils/matrix_sdk_extensions.dart/flutter_matrix_hive_database.dart index cbe14b2ed..3ee56bde8 100644 --- a/lib/utils/matrix_sdk_extensions.dart/flutter_matrix_hive_database.dart +++ b/lib/utils/matrix_sdk_extensions.dart/flutter_matrix_hive_database.dart @@ -31,7 +31,7 @@ class FlutterMatrixHiveStore extends FamedlySdkHiveDatabase { HiveCipher hiverCipher; try { // Workaround for secure storage is calling Platform.operatingSystem on web - if (kIsWeb) throw MissingPluginException(); + if (kIsWeb || Platform.isLinux) throw MissingPluginException(); const secureStorage = FlutterSecureStorage(); final containsEncryptionKey = diff --git a/lib/widgets/lock_screen.dart b/lib/widgets/lock_screen.dart index 52853b55f..429d8a2cb 100644 --- a/lib/widgets/lock_screen.dart +++ b/lib/widgets/lock_screen.dart @@ -4,6 +4,7 @@ import 'package:flutter_app_lock/flutter_app_lock.dart'; import 'package:flutter_gen/gen_l10n/l10n.dart'; import 'package:flutter_secure_storage/flutter_secure_storage.dart'; import 'package:pin_code_text_field/pin_code_text_field.dart'; +import 'package:shared_preferences/shared_preferences.dart'; import 'package:fluffychat/config/app_config.dart'; import 'package:fluffychat/config/setting_keys.dart'; @@ -71,8 +72,12 @@ class _LockScreenState extends State { hasError: _wrongInput, onDone: (String input) async { if (input == - await const FlutterSecureStorage() - .read(key: SettingKeys.appLockKey)) { + await ([TargetPlatform.linux] + .contains(Theme.of(context).platform) + ? SharedPreferences.getInstance().then((prefs) => + prefs.getString(SettingKeys.appLockKey)) + : const FlutterSecureStorage() + .read(key: SettingKeys.appLockKey))) { AppLock.of(context).didUnlock(); } else { _textEditingController.clear(); diff --git a/lib/widgets/matrix.dart b/lib/widgets/matrix.dart index 440d06434..82350ab24 100644 --- a/lib/widgets/matrix.dart +++ b/lib/widgets/matrix.dart @@ -14,6 +14,7 @@ import 'package:http/http.dart' as http; import 'package:matrix/encryption.dart'; import 'package:matrix/matrix.dart'; import 'package:provider/provider.dart'; +import 'package:shared_preferences/shared_preferences.dart'; import 'package:universal_html/html.dart' as html; import 'package:url_launcher/url_launcher.dart'; import 'package:vrouter/vrouter.dart'; @@ -32,6 +33,8 @@ import '../utils/background_push.dart'; import '../utils/famedlysdk_store.dart'; import '../utils/platform_infos.dart'; +// import 'package:flutter_secure_storage/flutter_secure_storage.dart'; + class Matrix extends StatefulWidget { static const String callNamespace = 'chat.fluffy.jitsi_call'; @@ -407,8 +410,11 @@ class MatrixState extends State with WidgetsBindingObserver { // Display the app lock if (PlatformInfos.isMobile) { WidgetsBinding.instance.addPostFrameCallback((_) { - const FlutterSecureStorage() - .read(key: SettingKeys.appLockKey) + ([TargetPlatform.linux].contains(Theme.of(context).platform) + ? SharedPreferences.getInstance() + .then((prefs) => prefs.getString(SettingKeys.appLockKey)) + : const FlutterSecureStorage() + .read(key: SettingKeys.appLockKey)) .then((lock) { if (lock?.isNotEmpty ?? false) { AppLock.of(widget.context).enable(); diff --git a/pubspec.lock b/pubspec.lock index 53fe096ea..f20e2b344 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1233,7 +1233,7 @@ packages: source: hosted version: "2.0.4" shared_preferences: - dependency: transitive + dependency: "direct main" description: name: shared_preferences url: "https://pub.dartlang.org" diff --git a/pubspec.yaml b/pubspec.yaml index fe499ef38..d3a42b219 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -66,6 +66,7 @@ dependencies: scroll_to_index: ^2.1.0 sentry: ^6.0.1 share: ^2.0.4 + shared_preferences: ^2.0.12 slugify: ^2.0.0 swipe_to_action: ^0.2.0 uni_links: ^0.5.1