123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438 |
- import 'dart:io';
- import 'package:flutter/cupertino.dart';
- import "package:flutter/foundation.dart";
- import 'package:flutter/material.dart';
- import 'package:logging/logging.dart';
- import 'package:media_extension/media_extension.dart';
- import 'package:path/path.dart' as file_path;
- import 'package:photo_manager/photo_manager.dart';
- import 'package:photos/core/event_bus.dart';
- import 'package:photos/db/files_db.dart';
- import 'package:photos/events/local_photos_updated_event.dart';
- import "package:photos/generated/l10n.dart";
- import "package:photos/l10n/l10n.dart";
- import "package:photos/models/file/extensions/file_props.dart";
- import 'package:photos/models/file/file.dart';
- import 'package:photos/models/file/file_type.dart';
- import 'package:photos/models/file/trash_file.dart';
- import 'package:photos/models/ignored_file.dart';
- import "package:photos/models/metadata/common_keys.dart";
- import 'package:photos/models/selected_files.dart';
- import 'package:photos/services/collections_service.dart';
- import 'package:photos/services/hidden_service.dart';
- import 'package:photos/services/ignored_files_service.dart';
- import 'package:photos/services/local_sync_service.dart';
- import 'package:photos/ui/collections/collection_action_sheet.dart';
- import 'package:photos/ui/viewer/file/custom_app_bar.dart';
- import "package:photos/ui/viewer/file_details/favorite_widget.dart";
- import "package:photos/ui/viewer/file_details/upload_icon_widget.dart";
- import 'package:photos/utils/dialog_util.dart';
- import 'package:photos/utils/file_util.dart';
- import "package:photos/utils/magic_util.dart";
- import 'package:photos/utils/toast_util.dart';
- class FileAppBar extends StatefulWidget {
- final EnteFile file;
- final Function(EnteFile) onFileRemoved;
- final double height;
- final bool shouldShowActions;
- final ValueNotifier<bool> enableFullScreenNotifier;
- const FileAppBar(
- this.file,
- this.onFileRemoved,
- this.height,
- this.shouldShowActions, {
- required this.enableFullScreenNotifier,
- Key? key,
- }) : super(key: key);
- @override
- FileAppBarState createState() => FileAppBarState();
- }
- class FileAppBarState extends State<FileAppBar> {
- final _logger = Logger("FadingAppBar");
- @override
- Widget build(BuildContext context) {
- return CustomAppBar(
- ValueListenableBuilder(
- valueListenable: widget.enableFullScreenNotifier,
- builder: (context, bool isFullScreen, _) {
- return IgnorePointer(
- ignoring: isFullScreen,
- child: AnimatedOpacity(
- opacity: isFullScreen ? 0 : 1,
- duration: const Duration(milliseconds: 150),
- child: Container(
- decoration: BoxDecoration(
- gradient: LinearGradient(
- begin: Alignment.topCenter,
- end: Alignment.bottomCenter,
- colors: [
- Colors.black.withOpacity(0.72),
- Colors.black.withOpacity(0.6),
- Colors.transparent,
- ],
- stops: const [0, 0.2, 1],
- ),
- ),
- child: _buildAppBar(),
- ),
- ),
- );
- },
- ),
- Size.fromHeight(Platform.isAndroid ? 84 : 96),
- );
- }
- AppBar _buildAppBar() {
- _logger.fine("building app bar ${widget.file.generatedID?.toString()}");
- final List<Widget> actions = [];
- final isTrashedFile = widget.file is TrashFile;
- final shouldShowActions = widget.shouldShowActions && !isTrashedFile;
- final bool isOwnedByUser = widget.file.isOwner;
- final bool isFileUploaded = widget.file.isUploaded;
- bool isFileHidden = false;
- if (isOwnedByUser && isFileUploaded) {
- isFileHidden = CollectionsService.instance
- .getCollectionByID(widget.file.collectionID!)
- ?.isHidden() ??
- false;
- }
- if (kDebugMode) {
- actions.add(
- Text(
- widget.file.generatedID?.toString() ?? 'null',
- style: const TextStyle(color: Colors.white),
- ),
- );
- }
- if (widget.file.isLiveOrMotionPhoto) {
- actions.add(
- IconButton(
- icon: const Icon(Icons.album_outlined),
- onPressed: () {
- showShortToast(
- context,
- S.of(context).pressAndHoldToPlayVideoDetailed,
- );
- },
- ),
- );
- }
- // only show fav option for files owned by the user
- if (isOwnedByUser && !isFileHidden && isFileUploaded) {
- actions.add(
- Padding(
- padding: const EdgeInsets.all(8),
- child: FavoriteWidget(widget.file),
- ),
- );
- }
- if (!isFileUploaded) {
- actions.add(
- UploadIconWidget(
- file: widget.file,
- key: ValueKey(widget.file.tag),
- ),
- );
- }
- actions.add(
- PopupMenuButton(
- itemBuilder: (context) {
- final List<PopupMenuItem> items = [];
- if (widget.file.isRemoteFile) {
- items.add(
- PopupMenuItem(
- value: 1,
- child: Row(
- children: [
- Icon(
- Platform.isAndroid
- ? Icons.download
- : CupertinoIcons.cloud_download,
- color: Theme.of(context).iconTheme.color,
- ),
- const Padding(
- padding: EdgeInsets.all(8),
- ),
- Text(S.of(context).download),
- ],
- ),
- ),
- );
- }
- // options for files owned by the user
- if (isOwnedByUser && !isFileHidden && isFileUploaded) {
- final bool isArchived =
- widget.file.magicMetadata.visibility == archiveVisibility;
- items.add(
- PopupMenuItem(
- value: 2,
- child: Row(
- children: [
- Icon(
- isArchived ? Icons.unarchive : Icons.archive_outlined,
- color: Theme.of(context).iconTheme.color,
- ),
- const Padding(
- padding: EdgeInsets.all(8),
- ),
- Text(
- isArchived
- ? S.of(context).unarchive
- : S.of(context).archive,
- ),
- ],
- ),
- ),
- );
- }
- if ((widget.file.fileType == FileType.image ||
- widget.file.fileType == FileType.livePhoto) &&
- Platform.isAndroid) {
- items.add(
- PopupMenuItem(
- value: 3,
- child: Row(
- children: [
- Icon(
- Icons.wallpaper_outlined,
- color: Theme.of(context).iconTheme.color,
- ),
- const Padding(
- padding: EdgeInsets.all(8),
- ),
- Text(S.of(context).setAs),
- ],
- ),
- ),
- );
- }
- if (isOwnedByUser && widget.file.isUploaded) {
- if (!isFileHidden) {
- items.add(
- PopupMenuItem(
- value: 4,
- child: Row(
- children: [
- Icon(
- Icons.visibility_off,
- color: Theme.of(context).iconTheme.color,
- ),
- const Padding(
- padding: EdgeInsets.all(8),
- ),
- Text(S.of(context).hide),
- ],
- ),
- ),
- );
- } else {
- items.add(
- PopupMenuItem(
- value: 5,
- child: Row(
- children: [
- Icon(
- Icons.visibility,
- color: Theme.of(context).iconTheme.color,
- ),
- const Padding(
- padding: EdgeInsets.all(8),
- ),
- Text(S.of(context).unhide),
- ],
- ),
- ),
- );
- }
- }
- return items;
- },
- onSelected: (dynamic value) async {
- if (value == 1) {
- await _download(widget.file);
- } else if (value == 2) {
- await _toggleFileArchiveStatus(widget.file);
- } else if (value == 3) {
- await _setAs(widget.file);
- } else if (value == 4) {
- await _handleHideRequest(context);
- } else if (value == 5) {
- await _handleUnHideRequest(context);
- }
- },
- ),
- );
- return AppBar(
- iconTheme:
- const IconThemeData(color: Colors.white), //same for both themes
- actions: shouldShowActions ? actions : [],
- elevation: 0,
- backgroundColor: const Color(0x00000000),
- );
- }
- Future<void> _handleHideRequest(BuildContext context) async {
- try {
- final hideResult =
- await CollectionsService.instance.hideFiles(context, [widget.file]);
- if (hideResult) {
- widget.onFileRemoved(widget.file);
- }
- } catch (e, s) {
- _logger.severe("failed to update file visibility", e, s);
- await showGenericErrorDialog(context: context, error: e);
- }
- }
- Future<void> _handleUnHideRequest(BuildContext context) async {
- final selectedFiles = SelectedFiles();
- selectedFiles.files.add(widget.file);
- showCollectionActionSheet(
- context,
- selectedFiles: selectedFiles,
- actionType: CollectionActionType.unHide,
- );
- }
- Future<void> _toggleFileArchiveStatus(EnteFile file) async {
- final bool isArchived =
- widget.file.magicMetadata.visibility == archiveVisibility;
- await changeVisibility(
- context,
- [widget.file],
- isArchived ? visibleVisibility : archiveVisibility,
- );
- if (mounted) {
- setState(() {});
- }
- }
- Future<void> _download(EnteFile file) async {
- final dialog = createProgressDialog(
- context,
- context.l10n.downloading,
- isDismissible: true,
- );
- await dialog.show();
- try {
- final FileType type = file.fileType;
- final bool downloadLivePhotoOnDroid =
- type == FileType.livePhoto && Platform.isAndroid;
- AssetEntity? savedAsset;
- final File? fileToSave = await getFile(file);
- //Disabling notifications for assets changing to insert the file into
- //files db before triggering a sync.
- PhotoManager.stopChangeNotify();
- if (type == FileType.image) {
- savedAsset = await PhotoManager.editor
- .saveImageWithPath(fileToSave!.path, title: file.title!);
- } else if (type == FileType.video) {
- savedAsset = await PhotoManager.editor
- .saveVideo(fileToSave!, title: file.title!);
- } else if (type == FileType.livePhoto) {
- final File? liveVideoFile =
- await getFileFromServer(file, liveVideo: true);
- if (liveVideoFile == null) {
- throw AssertionError("Live video can not be null");
- }
- if (downloadLivePhotoOnDroid) {
- await _saveLivePhotoOnDroid(fileToSave!, liveVideoFile, file);
- } else {
- savedAsset = await PhotoManager.editor.darwin.saveLivePhoto(
- imageFile: fileToSave!,
- videoFile: liveVideoFile,
- title: file.title!,
- );
- }
- }
- if (savedAsset != null) {
- file.localID = savedAsset.id;
- await FilesDB.instance.insert(file);
- Bus.instance.fire(
- LocalPhotosUpdatedEvent(
- [file],
- source: "download",
- ),
- );
- } else if (!downloadLivePhotoOnDroid && savedAsset == null) {
- _logger.severe('Failed to save assert of type $type');
- }
- showToast(context, S.of(context).fileSavedToGallery);
- await dialog.hide();
- } catch (e) {
- _logger.warning("Failed to save file", e);
- await dialog.hide();
- await showGenericErrorDialog(context: context, error: e);
- } finally {
- PhotoManager.startChangeNotify();
- LocalSyncService.instance.checkAndSync().ignore();
- }
- }
- Future<void> _saveLivePhotoOnDroid(
- File image,
- File video,
- EnteFile enteFile,
- ) async {
- debugPrint("Downloading LivePhoto on Droid");
- AssetEntity? savedAsset = await (PhotoManager.editor
- .saveImageWithPath(image.path, title: enteFile.title!));
- if (savedAsset == null) {
- throw Exception("Failed to save image of live photo");
- }
- IgnoredFile ignoreVideoFile = IgnoredFile(
- savedAsset.id,
- savedAsset.title ?? '',
- savedAsset.relativePath ?? 'remoteDownload',
- "remoteDownload",
- );
- await IgnoredFilesService.instance.cacheAndInsert([ignoreVideoFile]);
- final videoTitle = file_path.basenameWithoutExtension(enteFile.title!) +
- file_path.extension(video.path);
- savedAsset = (await (PhotoManager.editor.saveVideo(
- video,
- title: videoTitle,
- )));
- if (savedAsset == null) {
- throw Exception("Failed to save video of live photo");
- }
- ignoreVideoFile = IgnoredFile(
- savedAsset.id,
- savedAsset.title ?? videoTitle,
- savedAsset.relativePath ?? 'remoteDownload',
- "remoteDownload",
- );
- await IgnoredFilesService.instance.cacheAndInsert([ignoreVideoFile]);
- }
- Future<void> _setAs(EnteFile file) async {
- final dialog = createProgressDialog(context, S.of(context).pleaseWait);
- await dialog.show();
- try {
- final File? fileToSave = await (getFile(file));
- if (fileToSave == null) {
- throw Exception("Fail to get file for setAs operation");
- }
- final m = MediaExtension();
- final bool result = await m.setAs("file://${fileToSave.path}", "image/*");
- if (result == false) {
- showShortToast(context, S.of(context).somethingWentWrong);
- }
- dialog.hide();
- } catch (e) {
- dialog.hide();
- _logger.severe("Failed to use as", e);
- await showGenericErrorDialog(context: context, error: e);
- }
- }
- }
|