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';
|
2020-10-03 13:11:07 +02:00
|
|
|
import 'package:fluffychat/utils/matrix_locals.dart';
|
2020-11-22 22:48:10 +01:00
|
|
|
import 'package:fluffychat/components/dialogs/key_verification_dialog.dart';
|
2020-11-22 11:46:31 +01:00
|
|
|
import 'package:flushbar/flushbar_helper.dart';
|
2020-01-01 19:10:13 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2020-10-03 13:11:07 +02:00
|
|
|
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';
|
2020-10-03 13:11:07 +02:00
|
|
|
|
|
|
|
import '../utils/url_launcher.dart';
|
2020-12-11 14:14:33 +01:00
|
|
|
import '../app_config.dart';
|
2020-10-03 13:11:07 +02:00
|
|
|
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) {
|
|
|
|
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 15:46:43 +01:00
|
|
|
await KeyVerificationDialog(
|
|
|
|
request: req,
|
|
|
|
l10n: L10n.of(context),
|
|
|
|
).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) {
|
2020-11-22 11:46:31 +01:00
|
|
|
await FlushbarHelper.createLoading(
|
|
|
|
title: L10n.of(context).loadingPleaseWait,
|
|
|
|
message: L10n.of(context).requestToReadOlderMessages,
|
|
|
|
linearProgressIndicator: LinearProgressIndicator(),
|
|
|
|
).show(context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-01 19:10:13 +01:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
switch (event.type) {
|
2020-01-04 13:53:49 +01:00
|
|
|
case EventTypes.Message:
|
2020-02-21 09:45:37 +01:00
|
|
|
case EventTypes.Encrypted:
|
2020-01-04 13:53:49 +01:00
|
|
|
case EventTypes.Sticker:
|
2020-03-29 20:13:25 +02:00
|
|
|
switch (event.messageType) {
|
2020-01-04 13:53:49 +01:00
|
|
|
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);
|
2020-01-04 13:53:49 +01:00
|
|
|
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);
|
2020-01-04 13:53:49 +01:00
|
|
|
case MessageTypes.Text:
|
2020-05-09 13:36:41 +02:00
|
|
|
case MessageTypes.Notice:
|
|
|
|
case MessageTypes.Emote:
|
2020-11-07 12:00:41 +01:00
|
|
|
if (AppConfig.renderHtml &&
|
2020-05-13 15:58:59 +02:00
|
|
|
!event.redacted &&
|
2020-09-21 09:44:13 +02:00
|
|
|
event.isRichMessage) {
|
2020-12-27 16:47:03 +01:00
|
|
|
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
|
|
|
}
|
2020-09-20 19:16:23 +02:00
|
|
|
final bigEmotes = event.onlyEmotes &&
|
|
|
|
event.numberEmotes > 0 &&
|
|
|
|
event.numberEmotes <= 10;
|
2020-09-20 11:35:28 +02:00
|
|
|
final fontSize = DefaultTextStyle.of(context).style.fontSize;
|
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
|
|
|
),
|
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:
|
|
|
|
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),
|
|
|
|
);
|
2020-01-04 13:53:49 +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) {
|
|
|
|
return RaisedButton(
|
2020-11-22 16:43:45 +01:00
|
|
|
elevation: 7,
|
|
|
|
color: Theme.of(context).scaffoldBackgroundColor,
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(6),
|
|
|
|
),
|
2020-04-08 17:43:07 +02:00
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
2021-01-16 16:39:07 +01:00
|
|
|
Icon(Icons.phone_outlined, color: Colors.green),
|
2020-11-22 16:43:45 +01:00
|
|
|
SizedBox(width: 8),
|
2020-05-07 07:52:40 +02:00
|
|
|
Text(L10n.of(context).videoCall),
|
2020-04-08 17:43:07 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
onPressed: () => launch(event.body),
|
|
|
|
);
|
|
|
|
}
|
2020-11-22 21:45:23 +01:00
|
|
|
final fontSize = DefaultTextStyle.of(context).style.fontSize;
|
|
|
|
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,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
2020-09-20 19:16:23 +02:00
|
|
|
final bigEmotes = event.onlyEmotes &&
|
|
|
|
event.numberEmotes > 0 &&
|
|
|
|
event.numberEmotes <= 10;
|
2020-01-06 20:36:11 +01:00
|
|
|
return LinkText(
|
2020-10-03 13:11:07 +02:00
|
|
|
text: event.getLocalizedBody(MatrixLocals(L10n.of(context)),
|
|
|
|
hideReply: true),
|
2020-01-06 20:36:11 +01:00
|
|
|
textStyle: TextStyle(
|
2020-01-04 13:53:49 +01:00
|
|
|
color: textColor,
|
2020-09-20 11:35:28 +02:00
|
|
|
fontSize: bigEmotes ? fontSize * 3 : fontSize,
|
2020-01-04 13:53:49 +01:00
|
|
|
decoration: event.redacted ? TextDecoration.lineThrough : null,
|
|
|
|
),
|
2020-09-05 13:45:03 +02:00
|
|
|
onLinkTap: (url) => UrlLauncher(context, url).launchUrl(),
|
2020-01-04 13:53:49 +01:00
|
|
|
);
|
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
|
|
|
}
|
|
|
|
}
|