fluffychat/lib/widgets/event_content/html_message.dart

155 lines
5.4 KiB
Dart
Raw Normal View History

2020-05-09 11:36:41 +00:00
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-10-26 16:50:34 +00:00
import 'package:flutter_matrix_html/flutter_html.dart';
import 'package:matrix/matrix.dart';
import '../../config/app_config.dart';
import '../../config/setting_keys.dart';
import '../../pages/image_viewer.dart';
2021-10-26 16:50:34 +00:00
import '../../utils/matrix_sdk_extensions.dart/matrix_locals.dart';
import '../../utils/url_launcher.dart';
import '../matrix.dart';
2020-05-09 11:36:41 +00:00
class HtmlMessage extends StatelessWidget {
final String html;
final int maxLines;
2020-05-14 05:43:21 +00:00
final Room room;
2020-05-15 05:47:32 +00:00
final TextStyle defaultTextStyle;
final TextStyle linkStyle;
2020-09-20 09:35:28 +00:00
final double emoteSize;
2020-05-09 11:36:41 +00:00
2021-10-14 16:09:30 +00:00
const HtmlMessage({
Key key,
this.html,
this.maxLines,
this.room,
this.defaultTextStyle,
this.linkStyle,
this.emoteSize,
}) : super(key: key);
2020-05-09 11:36:41 +00:00
@override
Widget build(BuildContext context) {
// riot-web is notorious for creating bad reply fallback events from invalid messages which, if
// not handled properly, can lead to impersination. As such, we strip the entire `<mx-reply>` tags
// here already, to prevent that from happening.
// We do *not* do this in an AST and just with simple regex here, as riot-web tends to create
// miss-matching tags, and this way we actually correctly identify what we want to strip and, well,
// strip it.
final renderHtml = html.replaceAll(
2021-10-14 16:09:30 +00:00
RegExp('<mx-reply>.*</mx-reply>',
caseSensitive: false, multiLine: false, dotAll: true),
'');
2020-05-09 11:36:41 +00:00
// there is no need to pre-validate the html, as we validate it while rendering
2020-05-22 10:21:16 +00:00
2020-10-28 09:15:06 +00:00
final matrix = Matrix.of(context);
2020-05-15 05:47:32 +00:00
final themeData = Theme.of(context);
2020-05-09 11:36:41 +00:00
return Html(
data: renderHtml,
2020-05-15 05:47:32 +00:00
defaultTextStyle: defaultTextStyle,
2020-09-20 09:35:28 +00:00
emoteSize: emoteSize,
2020-05-22 10:21:16 +00:00
linkStyle: linkStyle ??
themeData.textTheme.bodyText2.copyWith(
2021-05-24 08:59:00 +00:00
color: themeData.colorScheme.secondary,
2020-05-22 10:21:16 +00:00
decoration: TextDecoration.underline,
),
2020-05-09 11:36:41 +00:00
shrinkToFit: true,
maxLines: maxLines,
2020-09-05 11:45:03 +00:00
onLinkTap: (url) => UrlLauncher(context, url).launchUrl(),
onPillTap: (url) => UrlLauncher(context, url).launchUrl(),
getMxcUrl: (String mxc, double width, double height,
{bool animated = false}) {
2020-05-09 11:36:41 +00:00
final ratio = MediaQuery.of(context).devicePixelRatio;
2021-04-21 12:19:54 +00:00
return Uri.parse(mxc)
?.getThumbnail(
matrix.client,
width: (width ?? 800) * ratio,
height: (height ?? 800) * ratio,
method: ThumbnailMethod.scale,
animated: AppConfig.autoplayImages ? animated : false,
2021-04-21 12:19:54 +00:00
)
.toString();
2020-05-09 11:36:41 +00:00
},
onImageTap: (String mxc) => showDialog(
context: Matrix.of(context).navigatorContext,
useRootNavigator: false,
builder: (_) => ImageViewer(Event.fromJson({
'type': EventTypes.Message,
'content': <String, dynamic>{
'body': mxc,
'url': mxc,
'msgtype': MessageTypes.Image,
},
'event_id': 'fake_event',
}, room))),
2020-10-28 09:15:06 +00:00
setCodeLanguage: (String key, String value) async {
await matrix.store.setItem('${SettingKeys.codeLanguage}.$key', value);
2020-10-28 09:15:06 +00:00
},
getCodeLanguage: (String key) async {
return await matrix.store.getItem('${SettingKeys.codeLanguage}.$key');
2020-10-28 09:15:06 +00:00
},
getPillInfo: (String url) async {
2020-05-14 05:43:21 +00:00
if (room == null) {
return null;
}
final identityParts = url.parseIdentifierIntoParts();
final identifier = identityParts?.primaryIdentifier;
if (identifier == null) {
return null;
}
if (identifier.sigil == '@') {
2020-05-14 05:43:21 +00:00
// we have a user pill
final user = room.getState('m.room.member', identifier);
if (user != null) {
return user.content;
}
// there might still be a profile...
final profile = await room.client.getProfileFromUserId(identifier);
if (profile != null) {
return {
'displayname': profile.displayName,
2020-05-14 05:43:21 +00:00
'avatar_url': profile.avatarUrl.toString(),
};
}
return null;
}
if (identifier.sigil == '#') {
2020-05-14 05:43:21 +00:00
// we have an alias pill
for (final r in room.client.rooms) {
final state = r.getState('m.room.canonical_alias');
2020-05-22 10:21:16 +00:00
if (state != null &&
((state.content['alias'] is String &&
state.content['alias'] == identifier) ||
(state.content['alt_aliases'] is List &&
state.content['alt_aliases'].contains(identifier)))) {
2020-05-14 05:43:21 +00:00
// we have a room!
return {
'displayname':
r.getLocalizedDisplayname(MatrixLocals(L10n.of(context))),
2020-05-14 05:43:21 +00:00
'avatar_url': r.getState('m.room.avatar')?.content['url'],
};
}
}
return null;
}
if (identifier.sigil == '!') {
2020-05-14 05:43:21 +00:00
// we have a room ID pill
final r = room.client.getRoomById(identifier);
if (r == null) {
return null;
}
return {
'displayname':
r.getLocalizedDisplayname(MatrixLocals(L10n.of(context))),
2020-05-14 05:43:21 +00:00
'avatar_url': r.getState('m.room.avatar')?.content['url'],
};
}
return null;
},
2020-05-09 11:36:41 +00:00
);
}
}