aa23198ad8
* chore: in shell/renderer/renderer_client_base.h, remove include media/base/key_systems_support_registration.h
last use removed in c670e38b
(##41610)
* chore: iwyu electron/fuses.h
* chore: iwyu media/base/video_frame.h
* chore: iwyu base/functional/callback.h
* chore: iwyu base/task/cancelable_task_tracker.h
* chore: iwyu shell/browser/draggable_region_provider.h
* chore: iwyu shell/browser/ui/inspectable_web_contents_view.h
* chore: iwyu ui/aura/window.h
* chore: iwyu ui/base/win/shell.h
* chore: iwyu ui/display/win/screen_win.h
* chore: iwyu ui/gfx/geometry/insets.h
* chore: iwyu ui/display/display.h
* chore: iwyu ui/gfx/geometry/skia_conversions.h
* chore: iwyu ui/gfx/geometry/rect_conversions.h
* chore: iwyu ui/gfx/geometry/point.h
* chore: iwyu ui/gfx/scoped_canvas.h
* chore: iwyu ui/gfx/image/image.h
* chore: iwyu ui/accessibility/ax_node_data.h
* chore: iwyu ui/views/animation/ink_drop_highlight.h
* chore: iwyu ui/gfx/font_list.h
* chore: iwyu ui/linux/nav_button_provider.h
* chore: iwyu shell/browser/ui/views/frameless_view.h
* chore: iwyu services/metrics/public/cpp/ukm_source_id.h
* chore: iwyu net/http/http_util.h
* chore: iwyu net/base/mime_util.h
* chore: iwyu content/public/common/content_client.h
* chore: iwyu <list>
* chore: iwyu <optional>
* chore: iwyu <memory>
* chore: iwyu base/files/file_path.h
* chore: iwyu ui/base/cursor/cursor.h
* chore: iwyu build/build_config.h
* chore: iwyu content/public/browser/web_contents.h
* chore: iwyu shell/browser/hid/hid_chooser_context.h
* chore: iwyu shell/common/platform_util.h
* chore: iwyu base/task/single_thread_task_runner.h
* chore: iwyu content/browser/renderer_host/render_widget_host_impl.h
* chore: iwyu content/public/browser/render_widget_host.h
* chore: iwyu shell/browser/electron_browser_context.h
* chore: iwyu content/public/browser/web_contents_observer.h
* chore: iwyu content/public/browser/render_frame_host.h
* chore: iwyu content/public/browser/media_stream_request.h
* chore: iwyu chrome/common/chrome_paths.h
* chore: iwyu chrome/browser/icon_manager.h
* chore: iwyu printing/print_settings.h
* chore: iwyu renderer/pepper_helper.h
* chore: iwyu shell/browser/api/process_metric.h
* chore: iwyu shell/browser/electron_browser_client.h
* chore: iwyu shell/browser/electron_browser_context.h
* chore: iwyu shell/browser/api/electron_api_session.h
* chore: iwyu shell/browser/api/electron_api_app.h
* chore: iwyu shell/browser/ui/views/client_frame_view_linux.h
* chore: iwyu shell/browser/native_window_views.h
* chore: iwyu base/win/windows_version.h
* chore: iwyu shell/common/electron_paths.h
* chore: iwyu content/public/common/content_switches.h
* chore: iwyu third_party/skia/include/core/SkRRect.h
* chore: iwyu third_party/skia/include/core/SkBitmap.h
* chore: iwyu third_party/skia
* chore: iwyu shell/browser/osr/osr_host_display_client.h
* chore: iwyu shell/browser/login_handler.h
* chore: iwyu shell/browser/javascript_environment.h
* chore: iwyu shell/browser/event_emitter_mixin.h
* fix: mac
* fix: mac
* chore: iwyu base/nix/xdg_util.h
* fix: win
* fix: win
* fix: win
* fix: win
211 lines
8.4 KiB
C++
211 lines
8.4 KiB
C++
// Copyright (c) 2021 Microsoft. All rights reserved.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_FILE_SELECT_HELPER_H_
|
|
#define ELECTRON_SHELL_BROWSER_FILE_SELECT_HELPER_H_
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "base/memory/raw_ptr.h"
|
|
#include "build/build_config.h"
|
|
#include "content/public/browser/browser_thread.h"
|
|
#include "content/public/browser/web_contents_observer.h"
|
|
#include "net/base/directory_lister.h"
|
|
#include "third_party/blink/public/mojom/choosers/file_chooser.mojom.h"
|
|
#include "ui/shell_dialogs/select_file_dialog.h"
|
|
|
|
namespace content {
|
|
class FileSelectListener;
|
|
class WebContents;
|
|
} // namespace content
|
|
|
|
namespace ui {
|
|
struct SelectedFileInfo;
|
|
}
|
|
|
|
// This class handles file-selection requests coming from renderer processes.
|
|
// It implements both the initialisation and listener functions for
|
|
// file-selection dialogs.
|
|
//
|
|
// Since FileSelectHelper listens to observations of a widget, it needs to live
|
|
// on and be destroyed on the UI thread. References to FileSelectHelper may be
|
|
// passed on to other threads.
|
|
class FileSelectHelper : public base::RefCountedThreadSafe<
|
|
FileSelectHelper,
|
|
content::BrowserThread::DeleteOnUIThread>,
|
|
public ui::SelectFileDialog::Listener,
|
|
private content::WebContentsObserver,
|
|
private net::DirectoryLister::DirectoryListerDelegate {
|
|
public:
|
|
// disable copy
|
|
FileSelectHelper(const FileSelectHelper&) = delete;
|
|
FileSelectHelper& operator=(const FileSelectHelper&) = delete;
|
|
|
|
// Show the file chooser dialog.
|
|
static void RunFileChooser(
|
|
content::RenderFrameHost* render_frame_host,
|
|
scoped_refptr<content::FileSelectListener> listener,
|
|
const blink::mojom::FileChooserParams& params);
|
|
|
|
// Enumerates all the files in directory.
|
|
static void EnumerateDirectory(
|
|
content::WebContents* tab,
|
|
scoped_refptr<content::FileSelectListener> listener,
|
|
const base::FilePath& path);
|
|
|
|
private:
|
|
friend class base::RefCountedThreadSafe<FileSelectHelper>;
|
|
friend class base::DeleteHelper<FileSelectHelper>;
|
|
friend struct content::BrowserThread::DeleteOnThread<
|
|
content::BrowserThread::UI>;
|
|
|
|
FileSelectHelper();
|
|
~FileSelectHelper() override;
|
|
|
|
void RunFileChooser(content::RenderFrameHost* render_frame_host,
|
|
scoped_refptr<content::FileSelectListener> listener,
|
|
blink::mojom::FileChooserParamsPtr params);
|
|
void GetFileTypesInThreadPool(blink::mojom::FileChooserParamsPtr params);
|
|
void GetSanitizedFilenameOnUIThread(
|
|
blink::mojom::FileChooserParamsPtr params);
|
|
|
|
void RunFileChooserOnUIThread(const base::FilePath& default_path,
|
|
blink::mojom::FileChooserParamsPtr params);
|
|
|
|
// Cleans up and releases this instance. This must be called after the last
|
|
// callback is received from the file chooser dialog.
|
|
void RunFileChooserEnd();
|
|
|
|
// SelectFileDialog::Listener overrides.
|
|
void FileSelected(const ui::SelectedFileInfo& file, int index) override;
|
|
void MultiFilesSelected(
|
|
const std::vector<ui::SelectedFileInfo>& files) override;
|
|
void FileSelectionCanceled() override;
|
|
|
|
// content::WebContentsObserver overrides.
|
|
void RenderFrameHostChanged(content::RenderFrameHost* old_host,
|
|
content::RenderFrameHost* new_host) override;
|
|
void RenderFrameDeleted(content::RenderFrameHost* render_frame_host) override;
|
|
void WebContentsDestroyed() override;
|
|
|
|
void EnumerateDirectoryImpl(
|
|
content::WebContents* tab,
|
|
scoped_refptr<content::FileSelectListener> listener,
|
|
const base::FilePath& path);
|
|
|
|
// Kicks off a new directory enumeration.
|
|
void StartNewEnumeration(const base::FilePath& path);
|
|
|
|
// net::DirectoryLister::DirectoryListerDelegate overrides.
|
|
void OnListFile(
|
|
const net::DirectoryLister::DirectoryListerData& data) override;
|
|
void OnListDone(int error) override;
|
|
|
|
void LaunchConfirmationDialog(
|
|
const base::FilePath& path,
|
|
std::vector<ui::SelectedFileInfo> selected_files);
|
|
|
|
// Cleans up and releases this instance. This must be called after the last
|
|
// callback is received from the enumeration code.
|
|
void EnumerateDirectoryEnd();
|
|
|
|
#if BUILDFLAG(IS_MAC)
|
|
// Must be called from a MayBlock() task. Each selected file that is a package
|
|
// will be zipped, and the zip will be passed to the render view host in place
|
|
// of the package.
|
|
void ProcessSelectedFilesMac(const std::vector<ui::SelectedFileInfo>& files);
|
|
|
|
// Saves the paths of |zipped_files| for later deletion. Passes |files| to the
|
|
// render view host.
|
|
void ProcessSelectedFilesMacOnUIThread(
|
|
const std::vector<ui::SelectedFileInfo>& files,
|
|
const std::vector<base::FilePath>& zipped_files);
|
|
|
|
// Zips the package at |path| into a temporary destination. Returns the
|
|
// temporary destination, if the zip was successful. Otherwise returns an
|
|
// empty path.
|
|
static base::FilePath ZipPackage(const base::FilePath& path);
|
|
#endif // BUILDFLAG(IS_MAC)
|
|
|
|
void ConvertToFileChooserFileInfoList(
|
|
const std::vector<ui::SelectedFileInfo>& files);
|
|
|
|
// Checks to see if scans are required for the specified files.
|
|
void PerformContentAnalysisIfNeeded(
|
|
std::vector<blink::mojom::FileChooserFileInfoPtr> list);
|
|
|
|
// Finish the PerformContentAnalysisIfNeeded() handling after the
|
|
// deep scanning checks have been performed. Deep scanning may change the
|
|
// list of files chosen by the user, so the list of files passed here may be
|
|
// a subset of of the files passed to PerformContentAnalysisIfNeeded().
|
|
void NotifyListenerAndEnd(
|
|
std::vector<blink::mojom::FileChooserFileInfoPtr> list);
|
|
|
|
// Schedules the deletion of the files in |temporary_files_| and clears the
|
|
// vector.
|
|
void DeleteTemporaryFiles();
|
|
|
|
// Cleans up when the initiator of the file chooser is no longer valid.
|
|
void CleanUp();
|
|
|
|
// Calls RunFileChooserEnd() if the webcontents was destroyed. Returns true
|
|
// if the file chooser operation shouldn't proceed.
|
|
bool AbortIfWebContentsDestroyed();
|
|
|
|
void SetFileSelectListenerForTesting(
|
|
scoped_refptr<content::FileSelectListener> listener);
|
|
|
|
// Helper method to get allowed extensions for select file dialog from
|
|
// the specified accept types as defined in the spec:
|
|
// http://whatwg.org/html/number-state.html#attr-input-accept
|
|
// |accept_types| contains only valid lowercased MIME types or file extensions
|
|
// beginning with a period (.).
|
|
static std::unique_ptr<ui::SelectFileDialog::FileTypeInfo>
|
|
GetFileTypesFromAcceptType(const std::vector<std::u16string>& accept_types);
|
|
|
|
// Check the accept type is valid. It is expected to be all lower case with
|
|
// no whitespace.
|
|
static bool IsAcceptTypeValid(const std::string& accept_type);
|
|
|
|
// Get a sanitized filename suitable for use as a default filename.
|
|
static base::FilePath GetSanitizedFileName(
|
|
const base::FilePath& suggested_path);
|
|
|
|
// The RenderFrameHost and WebContents for the page showing a file dialog
|
|
// (may only be one such dialog).
|
|
raw_ptr<content::RenderFrameHost> render_frame_host_;
|
|
raw_ptr<content::WebContents> web_contents_;
|
|
|
|
// |listener_| receives the result of the FileSelectHelper.
|
|
scoped_refptr<content::FileSelectListener> listener_;
|
|
|
|
// Dialog box used for choosing files to upload from file form fields.
|
|
scoped_refptr<ui::SelectFileDialog> select_file_dialog_;
|
|
std::unique_ptr<ui::SelectFileDialog::FileTypeInfo> select_file_types_;
|
|
|
|
// The type of file dialog last shown. This is SELECT_NONE if an
|
|
// instance is created through the public EnumerateDirectory().
|
|
ui::SelectFileDialog::Type dialog_type_;
|
|
|
|
// The mode of file dialog last shown.
|
|
blink::mojom::FileChooserParams::Mode dialog_mode_;
|
|
|
|
// The enumeration root directory for EnumerateDirectory() and
|
|
// RunFileChooser with kUploadFolder.
|
|
base::FilePath base_dir_;
|
|
|
|
// Maintain an active directory enumeration. These could come from the file
|
|
// select dialog or from drag-and-drop of directories. There could not be
|
|
// more than one going on at a time.
|
|
struct ActiveDirectoryEnumeration;
|
|
std::unique_ptr<ActiveDirectoryEnumeration> directory_enumeration_;
|
|
|
|
// Temporary files only used on OSX. This class is responsible for deleting
|
|
// these files when they are no longer needed.
|
|
std::vector<base::FilePath> temporary_files_;
|
|
};
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_FILE_SELECT_HELPER_H_
|