fluffychat/lib/widgets/encryption_button.dart

116 lines
3.7 KiB
Dart
Raw Normal View History

2020-02-22 08:03:44 +00:00
import 'dart:async';
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-12-25 08:58:34 +00:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
2021-10-26 16:50:34 +00:00
import 'package:matrix/matrix.dart';
2021-05-23 11:11:55 +00:00
import 'package:vrouter/vrouter.dart';
2021-10-26 16:50:34 +00:00
2020-02-22 08:03:44 +00:00
import 'matrix.dart';
class EncryptionButton extends StatefulWidget {
final Room room;
const EncryptionButton(this.room, {Key key}) : super(key: key);
@override
_EncryptionButtonState createState() => _EncryptionButtonState();
}
class _EncryptionButtonState extends State<EncryptionButton> {
StreamSubscription _onSyncSub;
2020-02-23 08:31:44 +00:00
void _enableEncryptionAction() async {
if (widget.room.encrypted) {
2021-08-15 11:26:16 +00:00
VRouter.of(context).toSegments(['rooms', widget.room.id, 'encryption']);
2020-02-23 08:31:44 +00:00
return;
}
2021-02-27 09:41:58 +00:00
if (widget.room.joinRules == JoinRules.public) {
await showOkAlertDialog(
2021-05-23 13:02:36 +00:00
useRootNavigator: false,
2021-02-27 09:41:58 +00:00
context: context,
okLabel: L10n.of(context).ok,
message: L10n.of(context).noEncryptionForPublicRooms,
);
2020-02-23 08:31:44 +00:00
return;
}
2020-11-14 09:08:13 +00:00
if (await showOkCancelAlertDialog(
2021-05-23 13:02:36 +00:00
useRootNavigator: false,
2020-11-14 09:08:13 +00:00
context: context,
2021-02-27 09:41:58 +00:00
title: L10n.of(context).enableEncryption,
2020-11-14 09:08:13 +00:00
message: widget.room.client.encryptionEnabled
2021-02-27 09:41:58 +00:00
? L10n.of(context).enableEncryptionWarning
2020-05-07 05:52:40 +00:00
: L10n.of(context).needPantalaimonWarning,
2020-11-14 09:08:13 +00:00
okLabel: L10n.of(context).yes,
2021-02-18 13:23:22 +00:00
cancelLabel: L10n.of(context).cancel,
2020-02-23 08:31:44 +00:00
) ==
2020-11-14 09:08:13 +00:00
OkCancelResult.ok) {
2020-12-25 08:58:34 +00:00
await showFutureLoadingDialog(
context: context,
future: () => widget.room.enableEncryption(),
2020-02-23 08:31:44 +00:00
);
// we want to enable the lock icon
setState(() => null);
2020-02-23 08:31:44 +00:00
}
}
2020-02-22 08:03:44 +00:00
@override
void dispose() {
_onSyncSub?.cancel();
super.dispose();
}
@override
Widget build(BuildContext context) {
if (widget.room.encrypted) {
_onSyncSub ??= Matrix.of(context)
.client
.onSync
.stream
.where((s) => s.deviceLists != null)
.listen((s) => setState(() => null));
}
2020-10-31 09:39:38 +00:00
return FutureBuilder<List<User>>(
future:
widget.room.encrypted ? widget.room.requestParticipants() : null,
2020-02-22 08:03:44 +00:00
builder: (BuildContext context, snapshot) {
Color color;
if (widget.room.encrypted && snapshot.hasData) {
2020-10-31 09:39:38 +00:00
final users = snapshot.data;
users.removeWhere((u) =>
!{Membership.invite, Membership.join}.contains(u.membership) ||
!widget.room.client.userDeviceKeys.containsKey(u.id));
var allUsersValid = true;
var oneUserInvalid = false;
for (final u in users) {
final status = widget.room.client.userDeviceKeys[u.id].verified;
if (status != UserVerifiedStatus.verified) {
allUsersValid = false;
}
if (status == UserVerifiedStatus.unknownDevice) {
oneUserInvalid = true;
}
2020-02-22 08:03:44 +00:00
}
2020-10-31 09:39:38 +00:00
color = oneUserInvalid
? Colors.red
: (allUsersValid ? Colors.green : Colors.orange);
2020-02-22 08:03:44 +00:00
} else if (!widget.room.encrypted &&
widget.room.joinRules != JoinRules.public) {
2021-10-10 09:40:08 +00:00
color = Colors.red;
2020-02-22 08:03:44 +00:00
}
return IconButton(
2021-02-13 12:27:44 +00:00
tooltip: widget.room.encrypted
? L10n.of(context).encrypted
: L10n.of(context).encryptionNotEnabled,
2020-12-06 09:31:35 +00:00
icon: Icon(
widget.room.encrypted
? Icons.lock_outlined
: Icons.lock_open_outlined,
size: 20,
color: color),
2020-02-23 08:31:44 +00:00
onPressed: _enableEncryptionAction,
2020-02-22 08:03:44 +00:00
);
});
}
}