fluffychat/lib/utils/matrix_sdk_extensions.dart/matrix_file_extension.dart

61 lines
1.8 KiB
Dart
Raw Normal View History

2020-03-29 20:13:25 +02:00
import 'dart:io';
import 'package:matrix/matrix.dart';
2020-10-28 08:05:10 +01:00
import 'package:fluffychat/utils/platform_infos.dart';
2021-07-11 17:12:56 +02:00
import 'package:flutter/material.dart';
2021-07-24 10:47:34 +02:00
import 'package:path_provider/path_provider.dart';
2021-07-11 17:12:56 +02:00
import 'package:file_picker_cross/file_picker_cross.dart';
2021-07-24 10:47:34 +02:00
import 'package:share/share.dart';
2021-10-14 17:26:20 +02:00
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-03-29 20:13:25 +02:00
extension MatrixFileExtension on MatrixFile {
2021-07-11 17:12:56 +02:00
void save(BuildContext context) async {
final fileName = name.split('/').last;
2021-10-14 17:26:20 +02:00
if (PlatformInfos.isMobile) {
final tmpDirectory = PlatformInfos.isAndroid
? Directory('/storage/emulated/0/Download')
: await getTemporaryDirectory();
2021-07-24 10:47:34 +02:00
final path = '${tmpDirectory.path}$fileName';
await File(path).writeAsBytes(bytes);
await Share.shareFiles([path]);
2021-10-14 17:26:20 +02:00
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text(L10n.of(context).savedFileAs(path))),
2021-07-11 17:12:56 +02:00
);
2021-10-14 17:26:20 +02:00
return;
2020-04-10 18:25:47 +02:00
} else {
2021-07-11 17:12:56 +02:00
final file = FilePickerCross(bytes);
await file.exportToStorage(fileName: fileName);
2020-04-10 18:25:47 +02:00
}
2020-03-29 20:13:25 +02:00
}
2020-09-04 12:56:25 +02:00
MatrixFile get detectFileType {
if (msgType == MessageTypes.Image) {
return MatrixImageFile(bytes: bytes, name: name);
}
if (msgType == MessageTypes.Video) {
return MatrixVideoFile(bytes: bytes, name: name);
}
if (msgType == MessageTypes.Audio) {
return MatrixAudioFile(bytes: bytes, name: name);
}
return this;
}
String get sizeString {
var size = this.size.toDouble();
if (size < 1000000) {
size = size / 1000;
size = (size * 10).round() / 10;
return '${size.toString()} KB';
} else if (size < 1000000000) {
size = size / 1000000;
size = (size * 10).round() / 10;
return '${size.toString()} MB';
} else {
size = size / 1000000000;
size = (size * 10).round() / 10;
return '${size.toString()} GB';
}
}
2020-03-29 20:13:25 +02:00
}