fluffychat/lib/utils/matrix_sdk_extensions.dart/event_extension.dart

86 lines
2.8 KiB
Dart
Raw Normal View History

2020-05-07 11:19:29 +02:00
import 'package:flutter/foundation.dart';
2020-01-19 15:07:42 +01:00
import 'package:flutter/material.dart';
2021-10-26 18:50:34 +02:00
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
2021-10-26 18:50:34 +02:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
import 'package:matrix/matrix.dart';
2022-07-22 11:04:47 +02:00
import 'package:fluffychat/utils/size_string.dart';
2020-05-16 08:02:33 +02:00
import 'matrix_file_extension.dart';
2020-01-19 15:07:42 +01:00
extension LocalizedBody on Event {
Future<LoadingDialogResult<MatrixFile?>> _getFile(BuildContext context) =>
showFutureLoadingDialog(
context: context,
future: () => downloadAndDecryptAttachmentCached(),
);
2021-07-11 17:12:56 +02:00
void saveFile(BuildContext context) async {
final matrixFile = await _getFile(context);
2021-07-11 17:12:56 +02:00
matrixFile.result?.save(context);
2020-05-16 08:02:33 +02:00
}
void shareFile(BuildContext context) async {
final matrixFile = await _getFile(context);
matrixFile.result?.share(context);
}
bool get isAttachmentSmallEnough =>
infoMap['size'] is int &&
infoMap['size'] < room.client.database!.maxFileSize;
bool get isThumbnailSmallEnough =>
thumbnailInfoMap['size'] is int &&
thumbnailInfoMap['size'] < room.client.database!.maxFileSize;
2020-05-07 11:19:29 +02:00
bool get showThumbnail =>
2021-08-08 17:55:00 +02:00
[MessageTypes.Image, MessageTypes.Sticker, MessageTypes.Video]
.contains(messageType) &&
(kIsWeb ||
isAttachmentSmallEnough ||
isThumbnailSmallEnough ||
2020-09-03 12:58:54 +02:00
(content['url'] is String));
2020-05-07 11:19:29 +02:00
2022-07-22 11:04:47 +02:00
String? get sizeString => content
.tryGetMap<String, dynamic>('info')
?.tryGet<int>('size')
?.sizeString;
static final _downloadAndDecryptFutures = <String, Future<MatrixFile>>{};
Future<bool> isAttachmentCached({bool getThumbnail = false}) async {
final mxcUrl = attachmentOrThumbnailMxcUrl(getThumbnail: getThumbnail);
if (mxcUrl == null) return false;
// check if we have it in-memory
if (_downloadAndDecryptFutures.containsKey(mxcUrl)) {
return true;
}
// check if it is stored
if (await isAttachmentInLocalStore(getThumbnail: getThumbnail)) {
return true;
}
// check if the url is cached
2021-08-26 19:03:08 +02:00
final url = mxcUrl.getDownloadLink(room.client);
2021-04-21 14:19:54 +02:00
final file = await DefaultCacheManager().getFileFromCache(url.toString());
return file != null;
}
Future<MatrixFile?> downloadAndDecryptAttachmentCached(
{bool getThumbnail = false}) async {
2021-08-29 15:18:02 +02:00
final mxcUrl =
2022-03-30 11:46:24 +02:00
attachmentOrThumbnailMxcUrl(getThumbnail: getThumbnail)?.toString() ??
eventId;
2021-08-29 15:18:02 +02:00
_downloadAndDecryptFutures[mxcUrl] ??= downloadAndDecryptAttachment(
getThumbnail: getThumbnail,
2021-04-21 14:19:54 +02:00
downloadCallback: (Uri url) async {
final file = await DefaultCacheManager().getSingleFile(url.toString());
return await file.readAsBytes();
},
);
final res = await _downloadAndDecryptFutures[mxcUrl];
return res;
}
2020-01-19 15:07:42 +01:00
}