fluffychat/lib/components/message_content.dart

202 lines
7.5 KiB
Dart
Raw Normal View History

2021-04-03 13:09:20 +02:00
import 'package:adaptive_page_layout/adaptive_page_layout.dart';
2020-11-22 11:46:31 +01:00
import 'package:famedlysdk/encryption/utils/key_verification.dart';
2020-01-01 19:10:13 +01:00
import 'package:famedlysdk/famedlysdk.dart';
2020-03-15 11:27:51 +01:00
import 'package:fluffychat/components/audio_player.dart';
2020-12-25 09:58:34 +01:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
2020-04-02 14:05:32 +02:00
import 'package:fluffychat/components/image_bubble.dart';
2020-05-07 11:19:29 +02:00
import 'package:fluffychat/utils/event_extension.dart';
import 'package:fluffychat/utils/matrix_locals.dart';
2020-11-22 22:48:10 +01:00
import 'package:fluffychat/components/dialogs/key_verification_dialog.dart';
2021-04-03 13:09:20 +02:00
2020-01-01 19:10:13 +01:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-09-05 13:45:03 +02:00
import 'package:matrix_link_text/link_text.dart';
2020-01-01 19:10:13 +01:00
import 'package:url_launcher/url_launcher.dart';
import '../utils/url_launcher.dart';
2020-12-11 14:14:33 +01:00
import '../app_config.dart';
import 'html_message.dart';
2020-01-01 19:10:13 +01:00
import 'matrix.dart';
2020-05-03 11:56:53 +02:00
import 'message_download_content.dart';
2020-01-01 19:10:13 +01:00
class MessageContent extends StatelessWidget {
final Event event;
final Color textColor;
2020-01-19 15:07:42 +01:00
const MessageContent(this.event, {this.textColor});
2020-01-01 19:10:13 +01:00
2020-11-22 11:46:31 +01:00
void _verifyOrRequestKey(BuildContext context) async {
if (event.content['can_request_session'] != true) {
2021-04-03 13:09:20 +02:00
AdaptivePageLayout.of(context).showSnackBar(SnackBar(
content: Text(
event.type == EventTypes.Encrypted
2020-11-22 11:46:31 +01:00
? L10n.of(context).needPantalaimonWarning
: event.getLocalizedBody(
MatrixLocals(L10n.of(context)),
),
2021-04-03 13:09:20 +02:00
)));
2020-11-22 11:46:31 +01:00
return;
}
final client = Matrix.of(context).client;
if (client.isUnknownSession && client.encryption.crossSigning.enabled) {
final req =
await client.userDeviceKeys[client.userID].startVerification();
req.onUpdate = () async {
if (req.state == KeyVerificationState.done) {
for (var i = 0; i < 12; i++) {
if (await client.encryption.keyManager.isCached()) {
break;
}
await Future.delayed(Duration(seconds: 1));
}
final timeline = await event.room.getTimeline();
timeline.requestKeys();
timeline.cancelSubscriptions();
}
};
2021-02-24 12:17:23 +01:00
await KeyVerificationDialog(request: req).show(context);
2020-11-22 11:46:31 +01:00
} else {
2020-12-25 09:58:34 +01:00
final success = await showFutureLoadingDialog(
context: context,
future: () => event.requestKey(),
2020-11-22 11:46:31 +01:00
);
2020-12-25 09:58:34 +01:00
if (success.error == null) {
2021-04-03 13:09:20 +02:00
AdaptivePageLayout.of(context).showSnackBar(SnackBar(
content: Text(L10n.of(context).requestToReadOlderMessages)));
2020-11-22 11:46:31 +01:00
}
}
}
2020-01-01 19:10:13 +01:00
@override
Widget build(BuildContext context) {
2021-02-07 08:59:58 +01:00
final fontSize =
DefaultTextStyle.of(context).style.fontSize * AppConfig.fontSizeFactor;
2020-01-01 19:10:13 +01:00
switch (event.type) {
case EventTypes.Message:
2020-02-21 09:45:37 +01:00
case EventTypes.Encrypted:
case EventTypes.Sticker:
2020-03-29 20:13:25 +02:00
switch (event.messageType) {
case MessageTypes.Image:
case MessageTypes.Sticker:
2020-05-07 11:19:29 +02:00
if (event.showThumbnail) {
2020-05-03 11:56:53 +02:00
return ImageBubble(event);
}
return MessageDownloadContent(event, textColor);
case MessageTypes.Audio:
2020-03-15 11:27:51 +01:00
return AudioPlayer(
2020-03-29 20:13:25 +02:00
event,
2020-03-15 11:27:51 +01:00
color: textColor,
);
2020-03-13 21:58:48 +01:00
case MessageTypes.Video:
case MessageTypes.File:
2020-05-03 11:56:53 +02:00
return MessageDownloadContent(event, textColor);
case MessageTypes.Text:
2020-05-09 13:36:41 +02:00
case MessageTypes.Notice:
case MessageTypes.Emote:
if (AppConfig.renderHtml &&
2020-05-13 15:58:59 +02:00
!event.redacted &&
2020-09-21 09:44:13 +02:00
event.isRichMessage) {
var html = event.formattedText;
2020-05-09 13:36:41 +02:00
if (event.messageType == MessageTypes.Emote) {
2020-05-13 15:58:59 +02:00
html = '* $html';
2020-05-09 13:36:41 +02:00
}
final bigEmotes = event.onlyEmotes &&
event.numberEmotes > 0 &&
event.numberEmotes <= 10;
2020-05-09 13:36:41 +02:00
return HtmlMessage(
html: html,
2020-05-15 07:47:32 +02:00
defaultTextStyle: TextStyle(
color: textColor,
2020-09-20 11:35:28 +02:00
fontSize: bigEmotes ? fontSize * 3 : fontSize,
2020-05-15 07:47:32 +02:00
),
2021-01-27 20:08:09 +01:00
linkStyle: TextStyle(
color: textColor.withAlpha(150),
fontSize: bigEmotes ? fontSize * 3 : fontSize,
decoration: TextDecoration.underline,
),
2020-05-14 07:43:21 +02:00
room: event.room,
2020-09-20 11:35:28 +02:00
emoteSize: bigEmotes ? fontSize * 3 : fontSize * 1.5,
2020-05-09 13:36:41 +02:00
);
}
// else we fall through to the normal message rendering
continue textmessage;
case MessageTypes.BadEncrypted:
2020-11-22 11:46:31 +01:00
case EventTypes.Encrypted:
2021-03-04 12:28:06 +01:00
return ElevatedButton.icon(
style: ElevatedButton.styleFrom(
primary: Theme.of(context).scaffoldBackgroundColor,
onPrimary: Theme.of(context).textTheme.bodyText1.color,
2020-11-22 11:46:31 +01:00
),
onPressed: () => _verifyOrRequestKey(context),
2021-03-04 12:28:06 +01:00
icon: Icon(Icons.lock_outline),
label: Text(L10n.of(context).encrypted),
2020-11-22 11:46:31 +01:00
);
case MessageTypes.Location:
case MessageTypes.None:
2020-05-09 13:36:41 +02:00
textmessage:
2020-02-21 09:45:37 +01:00
default:
2020-04-08 17:43:07 +02:00
if (event.content['msgtype'] == Matrix.callNamespace) {
2021-03-04 12:28:06 +01:00
return ElevatedButton.icon(
style: ElevatedButton.styleFrom(
primary: Theme.of(context).scaffoldBackgroundColor,
onPrimary: Theme.of(context).textTheme.bodyText1.color,
2020-04-08 17:43:07 +02:00
),
onPressed: () => launch(event.body),
2021-03-04 12:28:06 +01:00
icon: Icon(Icons.phone_outlined, color: Colors.green),
label: Text(L10n.of(context).videoCall),
2020-04-08 17:43:07 +02:00
);
}
2020-11-22 21:45:23 +01:00
if (event.redacted) {
return Row(
mainAxisSize: MainAxisSize.min,
children: [
2020-11-23 07:51:54 +01:00
Icon(Icons.delete_forever_outlined, color: textColor),
2020-11-22 21:45:23 +01:00
SizedBox(width: 4),
Text(
event.getLocalizedBody(MatrixLocals(L10n.of(context)),
hideReply: true),
style: TextStyle(
color: textColor,
fontSize: fontSize,
fontWeight: FontWeight.bold,
decoration: TextDecoration.lineThrough,
decorationThickness: 0.5,
),
),
],
);
}
final bigEmotes = event.onlyEmotes &&
event.numberEmotes > 0 &&
event.numberEmotes <= 10;
2020-01-06 20:36:11 +01:00
return LinkText(
text: event.getLocalizedBody(MatrixLocals(L10n.of(context)),
hideReply: true),
2020-01-06 20:36:11 +01:00
textStyle: TextStyle(
color: textColor,
2020-09-20 11:35:28 +02:00
fontSize: bigEmotes ? fontSize * 3 : fontSize,
decoration: event.redacted ? TextDecoration.lineThrough : null,
),
2021-01-27 20:08:09 +01:00
linkStyle: TextStyle(
color: textColor.withAlpha(150),
fontSize: bigEmotes ? fontSize * 3 : fontSize,
decoration: TextDecoration.underline,
),
2020-09-05 13:45:03 +02:00
onLinkTap: (url) => UrlLauncher(context, url).launchUrl(),
);
2020-01-04 09:37:09 +01:00
}
2020-02-21 09:45:37 +01:00
break;
2020-01-19 15:07:42 +01:00
default:
2020-01-02 23:38:46 +01:00
return Text(
2020-06-10 10:07:01 +02:00
L10n.of(context)
.userSentUnknownEvent(event.sender.calcDisplayname(), event.type),
2020-01-02 23:38:46 +01:00
style: TextStyle(
color: textColor,
2020-01-19 15:07:42 +01:00
decoration: event.redacted ? TextDecoration.lineThrough : null,
2020-01-02 23:38:46 +01:00
),
);
2020-01-01 19:10:13 +01:00
}
2020-05-09 13:36:41 +02:00
return Container(); // else flutter analyze complains
2020-01-01 19:10:13 +01:00
}
}