fluffychat/lib/components/message_content.dart

210 lines
7.5 KiB
Dart
Raw Normal View History

2020-11-22 10:46:31 +00:00
import 'package:famedlysdk/encryption/utils/key_verification.dart';
2020-01-01 18:10:13 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2020-03-15 10:27:51 +00:00
import 'package:fluffychat/components/audio_player.dart';
2020-12-25 08:58:34 +00:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
2020-04-02 12:05:32 +00:00
import 'package:fluffychat/components/image_bubble.dart';
2020-05-07 09:19:29 +00:00
import 'package:fluffychat/utils/event_extension.dart';
import 'package:fluffychat/utils/matrix_locals.dart';
2020-11-22 21:48:10 +00:00
import 'package:fluffychat/components/dialogs/key_verification_dialog.dart';
2020-11-22 10:46:31 +00:00
import 'package:flushbar/flushbar_helper.dart';
2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-09-05 11:45:03 +00:00
import 'package:matrix_link_text/link_text.dart';
2020-01-01 18:10:13 +00:00
import 'package:url_launcher/url_launcher.dart';
import '../utils/url_launcher.dart';
2020-12-11 13:14:33 +00:00
import '../app_config.dart';
import 'html_message.dart';
2020-01-01 18:10:13 +00:00
import 'matrix.dart';
2020-05-03 09:56:53 +00:00
import 'message_download_content.dart';
2020-01-01 18:10:13 +00:00
class MessageContent extends StatelessWidget {
final Event event;
final Color textColor;
2020-01-19 14:07:42 +00:00
const MessageContent(this.event, {this.textColor});
2020-01-01 18:10:13 +00:00
2020-11-22 10:46:31 +00:00
void _verifyOrRequestKey(BuildContext context) async {
if (event.content['can_request_session'] != true) {
FlushbarHelper.createError(
message: event.type == EventTypes.Encrypted
? L10n.of(context).needPantalaimonWarning
: event.getLocalizedBody(
MatrixLocals(L10n.of(context)),
),
);
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-01-19 14:46:43 +00:00
await KeyVerificationDialog(
request: req,
l10n: L10n.of(context),
).show(context);
2020-11-22 10:46:31 +00:00
} else {
2020-12-25 08:58:34 +00:00
final success = await showFutureLoadingDialog(
context: context,
future: () => event.requestKey(),
2020-11-22 10:46:31 +00:00
);
2020-12-25 08:58:34 +00:00
if (success.error == null) {
2020-11-22 10:46:31 +00:00
await FlushbarHelper.createLoading(
title: L10n.of(context).loadingPleaseWait,
message: L10n.of(context).requestToReadOlderMessages,
linearProgressIndicator: LinearProgressIndicator(),
).show(context);
}
}
}
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
switch (event.type) {
case EventTypes.Message:
2020-02-21 08:45:37 +00:00
case EventTypes.Encrypted:
case EventTypes.Sticker:
2020-03-29 18:13:25 +00:00
switch (event.messageType) {
case MessageTypes.Image:
case MessageTypes.Sticker:
2020-05-07 09:19:29 +00:00
if (event.showThumbnail) {
2020-05-03 09:56:53 +00:00
return ImageBubble(event);
}
return MessageDownloadContent(event, textColor);
case MessageTypes.Audio:
2020-03-15 10:27:51 +00:00
return AudioPlayer(
2020-03-29 18:13:25 +00:00
event,
2020-03-15 10:27:51 +00:00
color: textColor,
);
2020-03-13 20:58:48 +00:00
case MessageTypes.Video:
case MessageTypes.File:
2020-05-03 09:56:53 +00:00
return MessageDownloadContent(event, textColor);
case MessageTypes.Text:
2020-05-09 11:36:41 +00:00
case MessageTypes.Notice:
case MessageTypes.Emote:
if (AppConfig.renderHtml &&
2020-05-13 13:58:59 +00:00
!event.redacted &&
2020-09-21 07:44:13 +00:00
event.isRichMessage) {
var html = event.formattedText;
2020-05-09 11:36:41 +00:00
if (event.messageType == MessageTypes.Emote) {
2020-05-13 13:58:59 +00:00
html = '* $html';
2020-05-09 11:36:41 +00:00
}
final bigEmotes = event.onlyEmotes &&
event.numberEmotes > 0 &&
event.numberEmotes <= 10;
2020-09-20 09:35:28 +00:00
final fontSize = DefaultTextStyle.of(context).style.fontSize;
2020-05-09 11:36:41 +00:00
return HtmlMessage(
html: html,
2020-05-15 05:47:32 +00:00
defaultTextStyle: TextStyle(
color: textColor,
2020-09-20 09:35:28 +00:00
fontSize: bigEmotes ? fontSize * 3 : fontSize,
2020-05-15 05:47:32 +00:00
),
2020-05-14 05:43:21 +00:00
room: event.room,
2020-09-20 09:35:28 +00:00
emoteSize: bigEmotes ? fontSize * 3 : fontSize * 1.5,
2020-05-09 11:36:41 +00:00
);
}
// else we fall through to the normal message rendering
continue textmessage;
case MessageTypes.BadEncrypted:
2020-11-22 10:46:31 +00:00
case EventTypes.Encrypted:
return RaisedButton(
elevation: 7,
color: Theme.of(context).scaffoldBackgroundColor,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(6),
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Icon(Icons.lock_outline),
SizedBox(width: 8),
Text(L10n.of(context).encrypted),
],
),
onPressed: () => _verifyOrRequestKey(context),
);
case MessageTypes.Location:
case MessageTypes.None:
2020-05-09 11:36:41 +00:00
textmessage:
2020-02-21 08:45:37 +00:00
default:
2020-04-08 15:43:07 +00:00
if (event.content['msgtype'] == Matrix.callNamespace) {
return RaisedButton(
2020-11-22 15:43:45 +00:00
elevation: 7,
color: Theme.of(context).scaffoldBackgroundColor,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(6),
),
2020-04-08 15:43:07 +00:00
child: Row(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
2021-01-16 15:39:07 +00:00
Icon(Icons.phone_outlined, color: Colors.green),
2020-11-22 15:43:45 +00:00
SizedBox(width: 8),
2020-05-07 05:52:40 +00:00
Text(L10n.of(context).videoCall),
2020-04-08 15:43:07 +00:00
],
),
onPressed: () => launch(event.body),
);
}
2020-11-22 20:45:23 +00:00
final fontSize = DefaultTextStyle.of(context).style.fontSize;
if (event.redacted) {
return Row(
mainAxisSize: MainAxisSize.min,
children: [
2020-11-23 06:51:54 +00:00
Icon(Icons.delete_forever_outlined, color: textColor),
2020-11-22 20:45:23 +00: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 19:36:11 +00:00
return LinkText(
text: event.getLocalizedBody(MatrixLocals(L10n.of(context)),
hideReply: true),
2020-01-06 19:36:11 +00:00
textStyle: TextStyle(
color: textColor,
2020-09-20 09:35:28 +00:00
fontSize: bigEmotes ? fontSize * 3 : fontSize,
decoration: event.redacted ? TextDecoration.lineThrough : null,
),
2020-09-05 11:45:03 +00:00
onLinkTap: (url) => UrlLauncher(context, url).launchUrl(),
);
2020-01-04 08:37:09 +00:00
}
2020-02-21 08:45:37 +00:00
break;
2020-01-19 14:07:42 +00:00
default:
2020-01-02 22:38:46 +00:00
return Text(
2020-06-10 08:07:01 +00:00
L10n.of(context)
.userSentUnknownEvent(event.sender.calcDisplayname(), event.type),
2020-01-02 22:38:46 +00:00
style: TextStyle(
color: textColor,
2020-01-19 14:07:42 +00:00
decoration: event.redacted ? TextDecoration.lineThrough : null,
2020-01-02 22:38:46 +00:00
),
);
2020-01-01 18:10:13 +00:00
}
2020-05-09 11:36:41 +00:00
return Container(); // else flutter analyze complains
2020-01-01 18:10:13 +00:00
}
}