fluffychat/lib/components/matrix.dart

436 lines
14 KiB
Dart
Raw Normal View History

2020-01-03 16:23:40 +00:00
import 'dart:async';
import 'dart:io';
2020-11-14 09:08:13 +00:00
import 'package:adaptive_dialog/adaptive_dialog.dart';
2020-06-10 08:07:01 +00:00
import 'package:famedlysdk/encryption.dart';
import 'package:famedlysdk/famedlysdk.dart';
import 'package:fluffychat/utils/app_route.dart';
2020-05-05 08:30:24 +00:00
import 'package:fluffychat/utils/firebase_controller.dart';
import 'package:fluffychat/utils/matrix_locals.dart';
2020-09-26 18:27:15 +00:00
import 'package:fluffychat/utils/platform_infos.dart';
2020-10-28 09:56:24 +00:00
import 'package:fluffychat/utils/sentry_controller.dart';
import 'package:fluffychat/views/settings_3pid.dart';
import 'package:flushbar/flushbar.dart';
2020-01-01 18:10:13 +00:00
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-06-27 08:15:37 +00:00
import 'package:universal_html/prefer_universal/html.dart' as html;
import 'package:url_launcher/url_launcher.dart';
/*import 'package:fluffychat/views/chat.dart';
2020-12-11 13:14:33 +00:00
import 'package:fluffychat/app_config.dart';
import 'package:dbus/dbus.dart';
import 'package:desktop_notifications/desktop_notifications.dart';*/
2020-02-22 07:27:08 +00:00
import '../utils/beautify_string_extension.dart';
import '../utils/famedlysdk_store.dart';
2020-11-22 21:48:10 +00:00
import 'dialogs/key_verification_dialog.dart';
2020-10-04 17:19:35 +00:00
import '../utils/platform_infos.dart';
2020-12-11 13:14:33 +00:00
import '../app_config.dart';
import '../config/setting_keys.dart';
import 'avatar.dart';
2020-01-01 18:10:13 +00:00
class Matrix extends StatefulWidget {
2020-04-08 15:43:07 +00:00
static const String callNamespace = 'chat.fluffy.jitsi_call';
2020-01-01 18:10:13 +00:00
final Widget child;
2020-12-11 13:14:33 +00:00
Matrix({this.child, Key key}) : super(key: key);
2020-01-01 18:10:13 +00:00
@override
MatrixState createState() => MatrixState();
/// Returns the (nearest) Client instance of your application.
static MatrixState of(BuildContext context) {
2020-05-13 13:58:59 +00:00
var newState =
2020-01-01 18:10:13 +00:00
(context.dependOnInheritedWidgetOfExactType<_InheritedMatrix>()).data;
2020-05-05 08:30:24 +00:00
newState.context = FirebaseController.context = context;
2020-01-01 18:10:13 +00:00
return newState;
}
}
class MatrixState extends State<Matrix> {
Client client;
2020-12-11 13:14:33 +00:00
Store store = Store();
2020-05-13 13:58:59 +00:00
@override
2020-01-01 18:10:13 +00:00
BuildContext context;
2020-10-04 07:16:46 +00:00
static const String userStatusesType = 'chat.fluffy.user_statuses';
2020-04-09 07:51:52 +00:00
Map<String, dynamic> get shareContent => _shareContent;
set shareContent(Map<String, dynamic> content) {
_shareContent = content;
onShareContentChanged.add(_shareContent);
}
Map<String, dynamic> _shareContent;
final StreamController<Map<String, dynamic>> onShareContentChanged =
StreamController.broadcast();
2020-01-08 13:19:15 +00:00
String activeRoomId;
2020-04-03 18:24:25 +00:00
File wallpaper;
2020-12-11 13:14:33 +00:00
String clientName;
2020-04-08 15:43:07 +00:00
2020-01-01 18:10:13 +00:00
void clean() async {
if (!kIsWeb) return;
2020-12-11 13:14:33 +00:00
await store.deleteItem(clientName);
2020-01-01 18:10:13 +00:00
}
2020-01-08 13:19:15 +00:00
void _initWithStore() async {
2020-05-13 13:58:59 +00:00
var initLoginState = client.onLoginStateChanged.stream.first;
2020-10-04 09:52:06 +00:00
try {
2020-11-21 08:22:35 +00:00
client.init();
2020-10-04 11:43:17 +00:00
final firstLoginState = await initLoginState;
if (firstLoginState == LoginState.logged) {
if (PlatformInfos.isMobile) {
await FirebaseController.setupFirebase(
this,
2020-12-11 13:14:33 +00:00
clientName,
2020-10-04 11:43:17 +00:00
);
}
2020-10-04 09:52:06 +00:00
}
2020-11-24 16:53:35 +00:00
final storeItem = await store.getItem(SettingKeys.showNoPid);
final configOptionMissing = storeItem == null || storeItem.isEmpty;
if (configOptionMissing || (!configOptionMissing && storeItem == '1')) {
if (configOptionMissing) {
await store.setItem(SettingKeys.showNoPid, '0');
}
await Matrix.of(context)
.client
.requestThirdPartyIdentifiers()
.then((l) {
if (l.isEmpty) {
Flushbar(
title: L10n.of(context).warning,
message: L10n.of(context).noPasswordRecoveryDescription,
mainButton: RaisedButton(
elevation: 7,
color: Theme.of(context).scaffoldBackgroundColor,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(6),
),
2020-11-24 16:53:35 +00:00
child: Text(L10n.of(context).edit),
onPressed: () => Navigator.of(context).push(
AppRoute.defaultRoute(
context,
Settings3PidView(),
),
),
),
flushbarStyle: FlushbarStyle.FLOATING,
).show(context);
}
}).catchError((_) => null);
}
2020-10-04 09:52:06 +00:00
} catch (e, s) {
client.onLoginStateChanged.sink.addError(e, s);
2020-10-28 09:56:24 +00:00
SentryController.captureException(e, s);
2020-10-04 10:32:29 +00:00
rethrow;
2020-01-08 13:19:15 +00:00
}
}
2020-02-22 07:27:08 +00:00
StreamSubscription onRoomKeyRequestSub;
2020-06-25 14:29:06 +00:00
StreamSubscription onKeyVerificationRequestSub;
2020-04-08 15:43:07 +00:00
StreamSubscription onJitsiCallSub;
2020-06-27 08:15:37 +00:00
StreamSubscription onNotification;
StreamSubscription<UiaRequest> onUiaRequest;
2020-08-22 13:20:07 +00:00
StreamSubscription<html.Event> onFocusSub;
StreamSubscription<html.Event> onBlurSub;
2020-04-08 15:43:07 +00:00
void _onUiaRequest(UiaRequest uiaRequest) async {
2020-12-11 09:27:38 +00:00
uiaRequest.onUpdate = (_) => _onUiaRequest(uiaRequest);
if (uiaRequest.state != UiaRequestState.waitForUser ||
uiaRequest.nextStages.isEmpty) return;
final stage = uiaRequest.nextStages.first;
switch (stage) {
2020-12-11 09:27:38 +00:00
case AuthenticationTypes.password:
final input = await showTextInputDialog(context: context, textFields: [
DialogTextField(
minLines: 1,
maxLines: 1,
obscureText: true,
)
]);
if (input?.isEmpty ?? true) return;
return uiaRequest.completeStage(
2020-12-11 09:27:38 +00:00
AuthenticationPassword(
session: uiaRequest.session,
user: client.userID,
password: input.single,
identifier: AuthenticationUserIdentifier(user: client.userID),
),
);
default:
debugPrint('Warning! Cannot handle the stage "$stage"');
return;
}
}
2020-04-08 15:43:07 +00:00
void onJitsiCall(EventUpdate eventUpdate) {
final event = Event.fromJson(
eventUpdate.content, client.getRoomById(eventUpdate.roomID));
if (DateTime.now().millisecondsSinceEpoch -
2020-06-10 08:07:01 +00:00
event.originServerTs.millisecondsSinceEpoch >
2020-04-08 15:43:07 +00:00
1000 * 60 * 5) {
return;
}
final senderName = event.sender.calcDisplayname();
final senderAvatar = event.sender.avatarUrl;
showDialog(
context: context,
builder: (context) => AlertDialog(
2020-05-07 05:52:40 +00:00
title: Text(L10n.of(context).videoCall),
2020-04-08 15:43:07 +00:00
content: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
2020-04-09 08:16:38 +00:00
ListTile(
contentPadding: EdgeInsets.all(0),
leading: Avatar(senderAvatar, senderName),
title: Text(
senderName,
style: TextStyle(fontSize: 18),
),
subtitle:
event.room.isDirectChat ? null : Text(event.room.displayname),
),
2020-04-08 15:43:07 +00:00
Divider(),
Row(
children: <Widget>[
Spacer(),
FloatingActionButton(
backgroundColor: Colors.red,
2020-12-06 09:31:35 +00:00
child: Icon(Icons.phone_missed_outlined),
2020-04-08 15:43:07 +00:00
onPressed: () => Navigator.of(context).pop(),
),
Spacer(),
FloatingActionButton(
backgroundColor: Colors.green,
2020-12-06 09:31:35 +00:00
child: Icon(Icons.phone_outlined),
2020-04-08 15:43:07 +00:00
onPressed: () {
Navigator.of(context).pop();
launch(event.body);
},
),
Spacer(),
],
),
],
),
),
);
return;
}
2020-02-22 07:27:08 +00:00
2020-08-22 13:20:07 +00:00
bool webHasFocus = true;
void _showLocalNotification(EventUpdate eventUpdate) async {
final roomId = eventUpdate.roomID;
if (webHasFocus && activeRoomId == roomId) return;
final room = client.getRoomById(roomId);
2020-06-27 09:08:05 +00:00
if (room.notificationCount == 0) return;
2020-06-27 08:15:37 +00:00
final event = Event.fromJson(eventUpdate.content, room);
final body = event.getLocalizedBody(
MatrixLocals(L10n.of(context)),
2020-06-27 08:15:37 +00:00
withSenderNamePrefix:
!room.isDirectChat || room.lastEvent.senderId == client.userID,
);
final icon = event.sender.avatarUrl?.getThumbnail(client,
width: 64, height: 64, method: ThumbnailMethod.crop) ??
room.avatar?.getThumbnail(client,
width: 64, height: 64, method: ThumbnailMethod.crop);
if (kIsWeb) {
html.AudioElement()
..src = 'assets/assets/sounds/notification.wav'
..autoplay = true
..load();
html.Notification(
room.getLocalizedDisplayname(MatrixLocals(L10n.of(context))),
body: body,
icon: icon,
);
} else if (Platform.isLinux) {
/*var sessionBus = DBusClient.session();
var client = NotificationClient(sessionBus);
_linuxNotificationIds[roomId] = await client.notify(
room.getLocalizedDisplayname(MatrixLocals(L10n.of(context))),
body: body,
replacesID: _linuxNotificationIds[roomId] ?? -1,
appName: AppConfig.applicationName,
actionCallback: (_) => Navigator.of(context).pushAndRemoveUntil(
AppRoute.defaultRoute(
context,
ChatView(roomId),
),
(r) => r.isFirst),
);
await sessionBus.close();*/
}
2020-06-27 08:15:37 +00:00
}
//final Map<String, int> _linuxNotificationIds = {};
2020-01-01 18:10:13 +00:00
@override
void initState() {
2020-11-08 19:42:35 +00:00
super.initState();
initMatrix();
}
void initMatrix() {
2020-12-11 13:14:33 +00:00
clientName =
'${AppConfig.applicationName} ${kIsWeb ? 'Web' : Platform.operatingSystem}';
2020-11-21 08:22:35 +00:00
final Set verificationMethods = <KeyVerificationMethod>{
KeyVerificationMethod.numbers
};
if (PlatformInfos.isMobile) {
// emojis don't show in web somehow
verificationMethods.add(KeyVerificationMethod.emoji);
}
client = Client(
2020-12-11 13:14:33 +00:00
clientName,
2020-11-21 08:22:35 +00:00
enableE2eeRecovery: true,
verificationMethods: verificationMethods,
importantStateEvents: <String>{
'im.ponies.room_emotes', // we want emotes to work properly
},
databaseBuilder: getDatabase,
);
onJitsiCallSub ??= client.onEvent.stream
.where((e) =>
e.type == EventUpdateType.timeline &&
e.eventType == 'm.room.message' &&
e.content['content']['msgtype'] == Matrix.callNamespace &&
e.content['sender'] != client.userID)
.listen(onJitsiCall);
onRoomKeyRequestSub ??=
client.onRoomKeyRequest.stream.listen((RoomKeyRequest request) async {
final room = request.room;
if (request.sender != room.client.userID) {
return; // ignore share requests by others
2020-06-25 14:29:06 +00:00
}
2020-11-21 08:22:35 +00:00
final sender = room.getUserByMXIDSync(request.sender);
if (await showOkCancelAlertDialog(
context: context,
title: L10n.of(context).requestToReadOlderMessages,
message:
'${sender.id}\n\n${L10n.of(context).device}:\n${request.requestingDevice.deviceId}\n\n${L10n.of(context).identity}:\n${request.requestingDevice.curve25519Key.beautified}',
okLabel: L10n.of(context).verify,
cancelLabel: L10n.of(context).deny,
) ==
OkCancelResult.ok) {
await request.forwardKey();
}
});
onKeyVerificationRequestSub ??= client.onKeyVerificationRequest.stream
.listen((KeyVerification request) async {
var hidPopup = false;
request.onUpdate = () {
if (!hidPopup &&
{KeyVerificationState.done, KeyVerificationState.error}
.contains(request.state)) {
Navigator.of(context, rootNavigator: true).pop('dialog');
2020-06-25 14:29:06 +00:00
}
2020-11-21 08:22:35 +00:00
hidPopup = true;
};
if (await showOkCancelAlertDialog(
context: context,
title: L10n.of(context).newVerificationRequest,
message: L10n.of(context).askVerificationRequest(request.userId),
) ==
OkCancelResult.ok) {
request.onUpdate = null;
hidPopup = true;
await request.acceptVerification();
2020-11-22 21:48:10 +00:00
await KeyVerificationDialog(request: request).show(context);
2020-11-21 08:22:35 +00:00
} else {
request.onUpdate = null;
hidPopup = true;
await request.rejectVerification();
}
});
_initWithStore();
2020-11-08 19:42:35 +00:00
if (kIsWeb) {
onFocusSub = html.window.onFocus.listen((_) => webHasFocus = true);
onBlurSub = html.window.onBlur.listen((_) => webHasFocus = false);
}
onUiaRequest ??= client.onUiaRequest.stream.listen(_onUiaRequest);
2020-11-08 19:42:35 +00:00
if (kIsWeb || Platform.isLinux) {
client.onSync.stream.first.then((s) {
html.Notification.requestPermission();
onNotification ??= client.onEvent.stream
.where((e) =>
e.type == EventUpdateType.timeline &&
[EventTypes.Message, EventTypes.Sticker, EventTypes.Encrypted]
.contains(e.eventType) &&
e.content['sender'] != client.userID)
.listen(_showLocalNotification);
});
}
2020-12-11 13:14:33 +00:00
initSettings();
2020-11-08 19:42:35 +00:00
}
void initSettings() {
2020-05-13 13:58:59 +00:00
if (store != null) {
2020-12-11 13:14:33 +00:00
store.getItem(SettingKeys.jitsiInstance).then((final instance) =>
AppConfig.jitsiInstance = instance ?? AppConfig.jitsiInstance);
store.getItem(SettingKeys.wallpaper).then((final path) async {
2020-04-08 08:54:17 +00:00
if (path == null) return;
2020-04-03 18:24:25 +00:00
final file = File(path);
if (await file.exists()) {
wallpaper = file;
}
});
store
.getItemBool(SettingKeys.renderHtml, AppConfig.renderHtml)
.then((value) => AppConfig.renderHtml = value);
store
.getItemBool(
SettingKeys.hideRedactedEvents, AppConfig.hideRedactedEvents)
.then((value) => AppConfig.hideRedactedEvents = value);
store
.getItemBool(
SettingKeys.hideUnknownEvents, AppConfig.hideUnknownEvents)
.then((value) => AppConfig.hideUnknownEvents = value);
2020-04-03 18:24:25 +00:00
}
2020-01-01 18:10:13 +00:00
}
2020-01-03 16:23:40 +00:00
@override
void dispose() {
2020-02-22 07:27:08 +00:00
onRoomKeyRequestSub?.cancel();
2020-06-25 14:29:06 +00:00
onKeyVerificationRequestSub?.cancel();
2020-04-08 15:43:07 +00:00
onJitsiCallSub?.cancel();
2020-06-27 08:15:37 +00:00
onNotification?.cancel();
2020-08-22 13:20:07 +00:00
onFocusSub?.cancel();
onBlurSub?.cancel();
2020-01-03 16:23:40 +00:00
super.dispose();
}
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
return _InheritedMatrix(
data: this,
child: widget.child,
);
}
}
class _InheritedMatrix extends InheritedWidget {
final MatrixState data;
_InheritedMatrix({Key key, this.data, Widget child})
: super(key: key, child: child);
@override
bool updateShouldNotify(_InheritedMatrix old) {
2020-08-16 10:54:43 +00:00
var update = old.data.client.accessToken != data.client.accessToken ||
old.data.client.userID != data.client.userID ||
old.data.client.deviceID != data.client.deviceID ||
old.data.client.deviceName != data.client.deviceName ||
old.data.client.homeserver != data.client.homeserver;
2020-01-01 18:10:13 +00:00
return update;
}
}