Files
workavia-mail-front/core/lib/utils/file_utils.dart
T

151 lines
4.3 KiB
Dart

import 'dart:convert';
import 'dart:io';
import 'package:core/domain/exceptions/download_file_exception.dart';
import 'package:core/utils/app_logger.dart';
import 'package:core/utils/platform_info.dart';
import 'package:flutter/services.dart';
import 'package:flutter_charset_detector/flutter_charset_detector.dart';
import 'package:path_provider/path_provider.dart';
class FileUtils {
static const String DEFAULT_CHARSET = 'utf-8';
static const String TEXT_PLAIN_MIME_TYPE = 'text/plain';
Future<String> _getInternalStorageDirPath({
required String nameFile,
String? folderPath,
String? extensionFile
}) async {
if (!PlatformInfo.isWeb) {
String fileDirectory = (await getApplicationDocumentsDirectory()).absolute.path;
if (folderPath != null) {
fileDirectory = '$fileDirectory/$folderPath';
}
Directory directory = Directory(fileDirectory);
if (!await directory.exists()) {
await directory.create(recursive: true);
}
fileDirectory = '$fileDirectory/$nameFile';
if (extensionFile != null) {
fileDirectory = '$fileDirectory.$extensionFile';
}
return fileDirectory;
} else {
throw DeviceNotSupportedException();
}
}
Future<File> saveToFile({
required String nameFile,
required String content,
String? folderPath,
String? extensionFile
}) async {
final internalStorageDirPath = await _getInternalStorageDirPath(
nameFile: nameFile,
folderPath: folderPath,
extensionFile: extensionFile
);
final file = File(internalStorageDirPath);
log("FileUtils()::saveToFile: $file");
return await file.writeAsString(content, mode: FileMode.write);
}
Future<void> deleteFile(String filePath) async {
final file = File(filePath);
if (await file.exists()) {
await file.delete();
log("FileUtils()::deleteFile: $file");
} else {
log("FileUtils()::deleteFile: File does not exist");
}
}
Future<String> getContentFromFile({
required String nameFile,
String? folderPath,
String? extensionFile
}) async {
final internalStorageDirPath = await _getInternalStorageDirPath(
nameFile: nameFile,
folderPath: folderPath,
extensionFile: extensionFile
);
final file = File(internalStorageDirPath);
final emailContent = await file.readAsString();
log("FileUtils()::getFromFile: $emailContent");
return emailContent;
}
Future<Directory?> getFolder(String folderName) async {
try {
String folderPath = (await getApplicationDocumentsDirectory()).absolute.path;
folderPath = '$folderPath/$folderName';
log('FileUtils::getFolder(): $folderPath');
return Directory(folderPath);
} catch (e) {
logWarning('FileUtils::getFolder():EXCEPTION: $e');
return null;
}
}
Future<void> removeFolder(String folderName) async {
try {
final dir = await getFolder(folderName);
if (dir == null) return;
if (await dir.exists()) {
await dir.delete(recursive: true);
await dir.create(); // Re-create folder
log('FileUtils::removeFolder: Remove ${dir.path} success');
}
} catch (e) {
logWarning('FileUtils::removeFolder():EXCEPTION: $e');
}
}
Future<String> convertImageAssetToBase64(String assetImage) async {
ByteData bytes = await rootBundle.load(assetImage);
final buffer = bytes.buffer;
final base64Data = base64Encode(Uint8List.view(buffer));
return base64Data;
}
Future<void> deleteCompressedFileOnMobile(String filePath, {required String pathContains}) async {
log('$runtimeType::deleteCompressedFileOnMobile: filePath: $filePath');
if (!PlatformInfo.isMobile) return;
try {
final File file = File(filePath);
if (await file.exists() && file.path.contains(pathContains)) {
await file.delete();
}
} catch (e) {
logWarning('$runtimeType::deleteCompressedFileOnMobile: error: $e');
}
}
Future<String> getCharsetFromBytes(Uint8List bytes) async {
try {
final decodedResult = await CharsetDetector.autoDecode(bytes);
log('FileUtils::getCharsetFromBytes: FILE_CHARSET = ${decodedResult.charset}');
return decodedResult.charset;
} catch (e) {
logWarning('FileUtils::getCharsetFromBytes: Exception: $e');
return DEFAULT_CHARSET;
}
}
}