blob: 34228fe74b92238deaf07bb775cab344285b0b34 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_DOWNLOAD_CHROME_DOWNLOAD_MANAGER_DELEGATE_H_
#define CHROME_BROWSER_DOWNLOAD_CHROME_DOWNLOAD_MANAGER_DELEGATE_H_
#include <stdint.h>
#include <deque>
#include <memory>
#include <string>
#include <vector>
#include "base/compiler_specific.h"
#include "base/containers/flat_map.h"
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/task/sequenced_task_runner.h"
#include "build/build_config.h"
#include "chrome/browser/download/download_completion_blocker.h"
#include "chrome/browser/download/download_target_determiner_delegate.h"
#include "chrome/browser/download/download_target_info.h"
#include "chrome/browser/safe_browsing/download_protection/download_protection_service.h"
#include "chrome/browser/safe_browsing/download_protection/download_protection_util.h"
#include "components/download/public/common/download_danger_type.h"
#include "components/download/public/common/download_item.h"
#include "components/download/public/common/download_path_reservation_tracker.h"
#include "components/safe_browsing/buildflags.h"
#include "content/public/browser/download_manager_delegate.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "extensions/buildflags/buildflags.h"
#include "ui/gfx/native_widget_types.h"
#if defined(OS_ANDROID)
#include "chrome/browser/download/android/download_dialog_bridge.h"
#endif
class DownloadPrefs;
class Profile;
namespace content {
class DownloadManager;
}
namespace extensions {
class CrxInstaller;
}
// This is the Chrome side helper for the download system.
class ChromeDownloadManagerDelegate
: public content::DownloadManagerDelegate,
public content::NotificationObserver,
public DownloadTargetDeterminerDelegate {
public:
explicit ChromeDownloadManagerDelegate(Profile* profile);
ChromeDownloadManagerDelegate(const ChromeDownloadManagerDelegate&) = delete;
ChromeDownloadManagerDelegate& operator=(
const ChromeDownloadManagerDelegate&) = delete;
~ChromeDownloadManagerDelegate() override;
// Should be called before the first call to ShouldCompleteDownload() to
// disable SafeBrowsing checks for |item|.
static void DisableSafeBrowsing(download::DownloadItem* item);
// True when |danger_type| is one that is blocked for policy reasons (e.g.
// "file too large") as opposed to malicious content reasons.
static bool IsDangerTypeBlocked(download::DownloadDangerType danger_type);
void SetDownloadManager(content::DownloadManager* dm);
#if defined(OS_ANDROID)
void ShowDownloadDialog(gfx::NativeWindow native_window,
int64_t total_bytes,
DownloadLocationDialogType dialog_type,
const base::FilePath& suggested_path,
bool supports_later_dialog,
DownloadDialogBridge::DialogCallback callback);
void SetDownloadDialogBridgeForTesting(DownloadDialogBridge* bridge);
#endif
// Callbacks passed to GetNextId() will not be called until the returned
// callback is called.
content::DownloadIdCallback GetDownloadIdReceiverCallback();
// content::DownloadManagerDelegate
void Shutdown() override;
void GetNextId(content::DownloadIdCallback callback) override;
bool DetermineDownloadTarget(
download::DownloadItem* item,
content::DownloadTargetCallback* callback) override;
bool ShouldAutomaticallyOpenFile(const GURL& url,
const base::FilePath& path) override;
bool ShouldAutomaticallyOpenFileByPolicy(const GURL& url,
const base::FilePath& path) override;
bool ShouldCompleteDownload(download::DownloadItem* item,
base::OnceClosure complete_callback) override;
bool ShouldOpenDownload(
download::DownloadItem* item,
content::DownloadOpenDelayedCallback callback) override;
bool InterceptDownloadIfApplicable(
const GURL& url,
const std::string& user_agent,
const std::string& content_disposition,
const std::string& mime_type,
const std::string& request_origin,
int64_t content_length,
bool is_transient,
content::WebContents* web_contents) override;
void GetSaveDir(content::BrowserContext* browser_context,
base::FilePath* website_save_dir,
base::FilePath* download_save_dir) override;
void ChooseSavePath(content::WebContents* web_contents,
const base::FilePath& suggested_path,
const base::FilePath::StringType& default_extension,
bool can_save_as_complete,
content::SavePackagePathPickedCallback callback) override;
void SanitizeSavePackageResourceName(base::FilePath* filename) override;
void SanitizeDownloadParameters(
download::DownloadUrlParameters* params) override;
void OpenDownload(download::DownloadItem* download) override;
void ShowDownloadInShell(download::DownloadItem* download) override;
std::string ApplicationClientIdForFileScanning() override;
void CheckDownloadAllowed(
const content::WebContents::Getter& web_contents_getter,
const GURL& url,
const std::string& request_method,
absl::optional<url::Origin> request_initiator,
bool from_download_cross_origin_redirect,
bool content_initiated,
content::CheckDownloadAllowedCallback check_download_allowed_cb) override;
download::QuarantineConnectionCallback GetQuarantineConnectionCallback()
override;
std::unique_ptr<download::DownloadItemRenameHandler>
GetRenameHandlerForDownload(download::DownloadItem* download_item) override;
void CheckSavePackageAllowed(
download::DownloadItem* download_item,
base::flat_map<base::FilePath, base::FilePath> save_package_files,
content::SavePackageAllowedCallback callback) override;
// Opens a download using the platform handler. DownloadItem::OpenDownload,
// which ends up being handled by OpenDownload(), will open a download in the
// browser if doing so is preferred.
void OpenDownloadUsingPlatformHandler(download::DownloadItem* download);
DownloadPrefs* download_prefs() { return download_prefs_.get(); }
#if BUILDFLAG(FULL_SAFE_BROWSING)
// The state of a safebrowsing check.
class SafeBrowsingState : public DownloadCompletionBlocker {
public:
SafeBrowsingState() = default;
SafeBrowsingState(const SafeBrowsingState&) = delete;
SafeBrowsingState& operator=(const SafeBrowsingState&) = delete;
~SafeBrowsingState() override;
// String pointer used for identifying safebrowing data associated with
// a download item.
static const char kSafeBrowsingUserDataKey[];
};
#endif // FULL_SAFE_BROWSING
// Callback function after the DownloadProtectionService completes.
void CheckClientDownloadDone(uint32_t download_id,
safe_browsing::DownloadCheckResult result);
// Callback function after scanning completes for a save package.
void CheckSavePackageScanningDone(uint32_t download_id,
safe_browsing::DownloadCheckResult result);
base::WeakPtr<ChromeDownloadManagerDelegate> GetWeakPtr();
static void ConnectToQuarantineService(
mojo::PendingReceiver<quarantine::mojom::Quarantine> receiver);
// Return true if the downloaded file should be blocked based on the current
// download restriction pref and |danger_type|.
bool ShouldBlockFile(download::DownloadDangerType danger_type,
download::DownloadItem* item) const;
protected:
virtual safe_browsing::DownloadProtectionService*
GetDownloadProtectionService();
// Show file picker for |download|.
virtual void ShowFilePickerForDownload(
download::DownloadItem* download,
const base::FilePath& suggested_path,
DownloadTargetDeterminerDelegate::ConfirmationCallback callback);
// DownloadTargetDeterminerDelegate. Protected for testing.
void GetMixedContentStatus(download::DownloadItem* download,
const base::FilePath& virtual_path,
GetMixedContentStatusCallback callback) override;
void NotifyExtensions(download::DownloadItem* download,
const base::FilePath& suggested_virtual_path,
NotifyExtensionsCallback callback) override;
void ReserveVirtualPath(
download::DownloadItem* download,
const base::FilePath& virtual_path,
bool create_directory,
download::DownloadPathReservationTracker::FilenameConflictAction
conflict_action,
ReservedPathCallback callback) override;
void RequestConfirmation(download::DownloadItem* download,
const base::FilePath& suggested_virtual_path,
DownloadConfirmationReason reason,
ConfirmationCallback callback) override;
void DetermineLocalPath(download::DownloadItem* download,
const base::FilePath& virtual_path,
LocalPathCallback callback) override;
void CheckDownloadUrl(download::DownloadItem* download,
const base::FilePath& suggested_virtual_path,
CheckDownloadUrlCallback callback) override;
void GetFileMimeType(const base::FilePath& path,
GetFileMimeTypeCallback callback) override;
#if defined(OS_ANDROID)
virtual void OnDownloadCanceled(download::DownloadItem* download,
bool has_no_external_storage);
#endif
// Called when the file picker returns the confirmation result.
void OnConfirmationCallbackComplete(
DownloadTargetDeterminerDelegate::ConfirmationCallback callback,
DownloadConfirmationResult result,
const base::FilePath& virtual_path);
// So that test classes that inherit from this for override purposes
// can call back into the DownloadManager.
content::DownloadManager* download_manager_;
private:
friend class base::RefCountedThreadSafe<ChromeDownloadManagerDelegate>;
FRIEND_TEST_ALL_PREFIXES(ChromeDownloadManagerDelegateTest,
RequestConfirmation_Android);
FRIEND_TEST_ALL_PREFIXES(DownloadLaterTriggerTest, DownloadLaterTrigger);
using IdCallbackVector = std::vector<content::DownloadIdCallback>;
// Called to show a file picker for download with |guid|
void ShowFilePicker(
const std::string& guid,
const base::FilePath& suggested_path,
DownloadTargetDeterminerDelegate::ConfirmationCallback callback);
// content::NotificationObserver implementation.
void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
// Internal gateways for ShouldCompleteDownload().
bool IsDownloadReadyForCompletion(
download::DownloadItem* item,
base::OnceClosure internal_complete_callback);
void ShouldCompleteDownloadInternal(uint32_t download_id,
base::OnceClosure user_complete_callback);
// Sets the next download id based on download database records, and runs all
// cached id callbacks.
void SetNextId(uint32_t id);
// Runs the |callback| with next id. Results in the download being started.
void ReturnNextId(content::DownloadIdCallback callback);
void OnDownloadTargetDetermined(
uint32_t download_id,
content::DownloadTargetCallback callback,
std::unique_ptr<DownloadTargetInfo> target_info);
// Returns true if |path| should open in the browser.
bool IsOpenInBrowserPreferreredForFile(const base::FilePath& path);
void MaybeSendDangerousDownloadOpenedReport(download::DownloadItem* download,
bool show_download_in_folder);
void OnCheckDownloadAllowedComplete(
content::CheckDownloadAllowedCallback check_download_allowed_cb,
bool storage_permission_granted,
bool allow);
// Returns whether this is the most recent download in the rare event where
// multiple downloads are associated with the same file path.
bool IsMostRecentDownloadItemAtFilePath(download::DownloadItem* download);
#if defined(OS_ANDROID)
// Called after a unique file name is generated in the case that there is a
// TARGET_CONFLICT and the new file name should be displayed to the user.
void GenerateUniqueFileNameDone(
gfx::NativeWindow native_window,
bool show_download_later_dialog,
DownloadTargetDeterminerDelegate::ConfirmationCallback callback,
download::PathValidationResult result,
const base::FilePath& target_path);
// Returns whether to show download later dialog.
bool ShouldShowDownloadLaterDialog(
const download::DownloadItem* download) const;
#endif
Profile* profile_;
#if defined(OS_ANDROID)
std::unique_ptr<DownloadDialogBridge> download_dialog_bridge_;
#endif
// If history database fails to initialize, this will always be kInvalidId.
// Otherwise, the first available download id is assigned from history
// database, and incremented by one for each download.
uint32_t next_download_id_;
// Whether |next_download_id_| is retrieved from history db.
bool next_id_retrieved_;
// The |GetNextId| callbacks that may be cached before loading the download
// database.
IdCallbackVector id_callbacks_;
std::unique_ptr<DownloadPrefs> download_prefs_;
#if BUILDFLAG(ENABLE_EXTENSIONS)
// Maps from pending extension installations to DownloadItem IDs.
typedef base::flat_map<extensions::CrxInstaller*,
content::DownloadOpenDelayedCallback>
CrxInstallerMap;
CrxInstallerMap crx_installers_;
#endif
// Outstanding callbacks to open file selection dialog.
std::deque<base::OnceClosure> file_picker_callbacks_;
// Whether a file picker dialog is showing.
bool is_file_picker_showing_;
content::NotificationRegistrar registrar_;
base::WeakPtrFactory<ChromeDownloadManagerDelegate> weak_ptr_factory_{this};
};
#endif // CHROME_BROWSER_DOWNLOAD_CHROME_DOWNLOAD_MANAGER_DELEGATE_H_