2015-06-22 11:43:49 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/electron_download_manager_delegate.h"
|
2015-06-22 11:43:49 +00:00
|
|
|
|
|
|
|
#include <string>
|
2019-03-05 21:48:20 +00:00
|
|
|
#include <utility>
|
2015-06-22 11:43:49 +00:00
|
|
|
|
|
|
|
#include "base/bind.h"
|
|
|
|
#include "base/files/file_util.h"
|
2018-10-25 06:09:49 +00:00
|
|
|
#include "base/task/post_task.h"
|
2015-07-26 08:30:02 +00:00
|
|
|
#include "chrome/common/pref_names.h"
|
2018-04-10 15:58:49 +00:00
|
|
|
#include "components/download/public/common/download_danger_type.h"
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "components/prefs/pref_service.h"
|
2015-06-22 11:43:49 +00:00
|
|
|
#include "content/public/browser/browser_context.h"
|
|
|
|
#include "content/public/browser/browser_thread.h"
|
2018-04-10 15:29:26 +00:00
|
|
|
#include "content/public/browser/download_item_utils.h"
|
2015-06-22 11:43:49 +00:00
|
|
|
#include "content/public/browser/download_manager.h"
|
|
|
|
#include "net/base/filename_util.h"
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/api/electron_api_download_item.h"
|
|
|
|
#include "shell/browser/electron_browser_context.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/native_window.h"
|
|
|
|
#include "shell/browser/ui/file_dialog.h"
|
|
|
|
#include "shell/browser/web_contents_preferences.h"
|
2019-09-06 05:52:54 +00:00
|
|
|
#include "shell/common/gin_converters/callback_converter.h"
|
|
|
|
#include "shell/common/gin_converters/file_path_converter.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/options_switches.h"
|
2015-06-22 11:43:49 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2015-06-22 11:43:49 +00:00
|
|
|
|
2017-12-10 11:30:43 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Generate default file path to save the download.
|
2018-04-09 09:16:52 +00:00
|
|
|
base::FilePath CreateDownloadPath(const GURL& url,
|
|
|
|
const std::string& content_disposition,
|
|
|
|
const std::string& suggested_filename,
|
|
|
|
const std::string& mime_type,
|
|
|
|
const base::FilePath& default_download_path) {
|
2017-12-10 11:30:43 +00:00
|
|
|
auto generated_name =
|
|
|
|
net::GenerateFileName(url, content_disposition, std::string(),
|
|
|
|
suggested_filename, mime_type, "download");
|
|
|
|
|
|
|
|
if (!base::PathExists(default_download_path))
|
|
|
|
base::CreateDirectory(default_download_path);
|
|
|
|
|
2018-04-09 09:16:52 +00:00
|
|
|
return default_download_path.Append(generated_name);
|
2017-12-10 11:30:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
ElectronDownloadManagerDelegate::ElectronDownloadManagerDelegate(
|
2015-06-22 11:43:49 +00:00
|
|
|
content::DownloadManager* manager)
|
2018-04-18 01:55:30 +00:00
|
|
|
: download_manager_(manager), weak_ptr_factory_(this) {}
|
2015-06-22 11:43:49 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
ElectronDownloadManagerDelegate::~ElectronDownloadManagerDelegate() {
|
2015-06-22 11:43:49 +00:00
|
|
|
if (download_manager_) {
|
|
|
|
DCHECK_EQ(static_cast<content::DownloadManagerDelegate*>(this),
|
|
|
|
download_manager_->GetDelegate());
|
|
|
|
download_manager_->SetDelegate(nullptr);
|
|
|
|
download_manager_ = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronDownloadManagerDelegate::GetItemSavePath(
|
|
|
|
download::DownloadItem* item,
|
|
|
|
base::FilePath* path) {
|
2020-04-03 00:22:46 +00:00
|
|
|
api::DownloadItem* download = api::DownloadItem::FromDownloadItem(item);
|
2016-08-25 21:34:48 +00:00
|
|
|
if (download)
|
|
|
|
*path = download->GetSavePath();
|
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronDownloadManagerDelegate::GetItemSaveDialogOptions(
|
2018-11-08 14:51:06 +00:00
|
|
|
download::DownloadItem* item,
|
|
|
|
file_dialog::DialogSettings* options) {
|
2020-04-03 00:22:46 +00:00
|
|
|
api::DownloadItem* download = api::DownloadItem::FromDownloadItem(item);
|
2018-11-08 14:51:06 +00:00
|
|
|
if (download)
|
|
|
|
*options = download->GetSaveDialogOptions();
|
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronDownloadManagerDelegate::OnDownloadPathGenerated(
|
2016-03-08 04:40:10 +00:00
|
|
|
uint32_t download_id,
|
2019-12-13 20:13:12 +00:00
|
|
|
content::DownloadTargetCallback callback,
|
2015-06-22 11:43:49 +00:00
|
|
|
const base::FilePath& default_path) {
|
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
2019-09-21 14:51:28 +00:00
|
|
|
base::ThreadRestrictions::ScopedAllowIO allow_io;
|
2015-06-22 11:43:49 +00:00
|
|
|
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* item = download_manager_->GetDownload(download_id);
|
2015-06-22 11:43:49 +00:00
|
|
|
if (!item)
|
|
|
|
return;
|
|
|
|
|
2015-06-24 14:14:46 +00:00
|
|
|
NativeWindow* window = nullptr;
|
2018-04-10 15:29:26 +00:00
|
|
|
content::WebContents* web_contents =
|
|
|
|
content::DownloadItemUtils::GetWebContents(item);
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* relay =
|
2018-04-18 01:55:30 +00:00
|
|
|
web_contents ? NativeWindowRelay::FromWebContents(web_contents) : nullptr;
|
2015-06-24 14:14:46 +00:00
|
|
|
if (relay)
|
2018-10-02 22:14:43 +00:00
|
|
|
window = relay->GetNativeWindow();
|
2015-06-24 14:14:46 +00:00
|
|
|
|
2019-01-31 02:06:55 +00:00
|
|
|
// Show save dialog if save path was not set already on item
|
2015-09-21 06:03:36 +00:00
|
|
|
base::FilePath path;
|
2016-08-25 21:34:48 +00:00
|
|
|
GetItemSavePath(item, &path);
|
2019-01-31 02:06:55 +00:00
|
|
|
if (path.empty()) {
|
|
|
|
file_dialog::DialogSettings settings;
|
|
|
|
GetItemSaveDialogOptions(item, &settings);
|
|
|
|
|
|
|
|
if (!settings.parent_window)
|
|
|
|
settings.parent_window = window;
|
|
|
|
if (settings.title.size() == 0)
|
|
|
|
settings.title = item->GetURL().spec();
|
2019-04-15 18:11:20 +00:00
|
|
|
if (settings.default_path.empty())
|
2019-01-31 02:06:55 +00:00
|
|
|
settings.default_path = default_path;
|
|
|
|
|
|
|
|
auto* web_preferences = WebContentsPreferences::From(web_contents);
|
|
|
|
const bool offscreen =
|
|
|
|
!web_preferences || web_preferences->IsEnabled(options::kOffscreen);
|
|
|
|
settings.force_detached = offscreen;
|
|
|
|
|
2019-03-05 21:48:20 +00:00
|
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
2020-04-08 19:47:43 +00:00
|
|
|
v8::HandleScope scope(isolate);
|
2019-11-01 06:10:32 +00:00
|
|
|
gin_helper::Promise<gin_helper::Dictionary> dialog_promise(isolate);
|
2019-12-13 20:13:12 +00:00
|
|
|
auto dialog_callback = base::BindOnce(
|
2020-02-04 20:19:40 +00:00
|
|
|
&ElectronDownloadManagerDelegate::OnDownloadSaveDialogDone,
|
2019-12-13 20:13:12 +00:00
|
|
|
base::Unretained(this), download_id, std::move(callback));
|
2019-03-05 21:48:20 +00:00
|
|
|
|
2019-05-02 23:49:27 +00:00
|
|
|
ignore_result(dialog_promise.Then(std::move(dialog_callback)));
|
2019-05-14 22:46:53 +00:00
|
|
|
file_dialog::ShowSaveDialog(settings, std::move(dialog_promise));
|
2019-01-31 02:06:55 +00:00
|
|
|
} else {
|
2019-12-13 20:13:12 +00:00
|
|
|
std::move(callback).Run(path,
|
|
|
|
download::DownloadItem::TARGET_DISPOSITION_PROMPT,
|
2020-01-21 17:39:37 +00:00
|
|
|
download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS,
|
|
|
|
item->GetMixedContentStatus(), path,
|
2019-12-13 20:13:12 +00:00
|
|
|
download::DOWNLOAD_INTERRUPT_REASON_NONE);
|
2019-01-31 11:18:20 +00:00
|
|
|
}
|
2019-01-31 02:06:55 +00:00
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronDownloadManagerDelegate::OnDownloadSaveDialogDone(
|
2019-01-31 02:06:55 +00:00
|
|
|
uint32_t download_id,
|
2019-12-13 20:13:12 +00:00
|
|
|
content::DownloadTargetCallback download_callback,
|
2019-09-08 15:10:18 +00:00
|
|
|
gin_helper::Dictionary result) {
|
2019-01-31 02:06:55 +00:00
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
|
|
|
|
|
|
|
auto* item = download_manager_->GetDownload(download_id);
|
|
|
|
if (!item)
|
|
|
|
return;
|
|
|
|
|
2019-05-14 22:46:53 +00:00
|
|
|
bool canceled = true;
|
|
|
|
result.Get("canceled", &canceled);
|
2016-07-28 00:31:26 +00:00
|
|
|
|
2019-05-14 22:46:53 +00:00
|
|
|
base::FilePath path;
|
|
|
|
|
|
|
|
if (!canceled) {
|
|
|
|
if (result.Get("filePath", &path)) {
|
|
|
|
// Remember the last selected download directory.
|
2020-02-04 20:19:40 +00:00
|
|
|
ElectronBrowserContext* browser_context =
|
|
|
|
static_cast<ElectronBrowserContext*>(
|
|
|
|
download_manager_->GetBrowserContext());
|
2019-05-14 22:46:53 +00:00
|
|
|
browser_context->prefs()->SetFilePath(prefs::kDownloadDefaultDirectory,
|
|
|
|
path.DirName());
|
|
|
|
|
2020-04-03 00:22:46 +00:00
|
|
|
api::DownloadItem* download = api::DownloadItem::FromDownloadItem(item);
|
|
|
|
if (download)
|
|
|
|
download->SetSavePath(path);
|
2019-05-14 22:46:53 +00:00
|
|
|
}
|
2015-06-22 11:43:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-21 06:03:36 +00:00
|
|
|
// Running the DownloadTargetCallback with an empty FilePath signals that the
|
2019-01-31 02:06:55 +00:00
|
|
|
// download should be cancelled. If user cancels the file save dialog, run
|
|
|
|
// the callback with empty FilePath.
|
|
|
|
const auto interrupt_reason =
|
2019-05-14 22:46:53 +00:00
|
|
|
path.empty() ? download::DOWNLOAD_INTERRUPT_REASON_USER_CANCELED
|
|
|
|
: download::DOWNLOAD_INTERRUPT_REASON_NONE;
|
2019-12-13 20:13:12 +00:00
|
|
|
std::move(download_callback)
|
|
|
|
.Run(path, download::DownloadItem::TARGET_DISPOSITION_PROMPT,
|
2020-01-21 17:39:37 +00:00
|
|
|
download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS,
|
|
|
|
item->GetMixedContentStatus(), path, interrupt_reason);
|
2015-06-22 11:43:49 +00:00
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronDownloadManagerDelegate::Shutdown() {
|
2015-06-22 11:43:49 +00:00
|
|
|
weak_ptr_factory_.InvalidateWeakPtrs();
|
|
|
|
download_manager_ = nullptr;
|
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
bool ElectronDownloadManagerDelegate::DetermineDownloadTarget(
|
2018-04-10 15:29:26 +00:00
|
|
|
download::DownloadItem* download,
|
2019-12-13 20:13:12 +00:00
|
|
|
content::DownloadTargetCallback* callback) {
|
2015-06-22 11:43:49 +00:00
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
|
|
|
|
2015-09-24 07:55:45 +00:00
|
|
|
if (!download->GetForcedFilePath().empty()) {
|
2019-12-13 20:13:12 +00:00
|
|
|
std::move(*callback).Run(
|
|
|
|
download->GetForcedFilePath(),
|
|
|
|
download::DownloadItem::TARGET_DISPOSITION_OVERWRITE,
|
|
|
|
download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS,
|
2020-01-21 17:39:37 +00:00
|
|
|
download::DownloadItem::MixedContentStatus::UNKNOWN,
|
2019-12-13 20:13:12 +00:00
|
|
|
download->GetForcedFilePath(),
|
|
|
|
download::DOWNLOAD_INTERRUPT_REASON_NONE);
|
2015-09-24 07:55:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
2016-02-02 12:11:39 +00:00
|
|
|
|
|
|
|
// Try to get the save path from JS wrapper.
|
2016-08-25 21:34:48 +00:00
|
|
|
base::FilePath save_path;
|
|
|
|
GetItemSavePath(download, &save_path);
|
|
|
|
if (!save_path.empty()) {
|
2019-12-13 20:13:12 +00:00
|
|
|
std::move(*callback).Run(
|
|
|
|
save_path, download::DownloadItem::TARGET_DISPOSITION_OVERWRITE,
|
2020-01-21 17:39:37 +00:00
|
|
|
download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS,
|
|
|
|
download::DownloadItem::MixedContentStatus::UNKNOWN, save_path,
|
2019-12-13 20:13:12 +00:00
|
|
|
download::DOWNLOAD_INTERRUPT_REASON_NONE);
|
2016-08-25 21:34:48 +00:00
|
|
|
return true;
|
2015-09-24 07:55:45 +00:00
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
ElectronBrowserContext* browser_context =
|
|
|
|
static_cast<ElectronBrowserContext*>(
|
|
|
|
download_manager_->GetBrowserContext());
|
2018-04-18 01:55:30 +00:00
|
|
|
base::FilePath default_download_path =
|
|
|
|
browser_context->prefs()->GetFilePath(prefs::kDownloadDefaultDirectory);
|
2015-06-22 11:43:49 +00:00
|
|
|
|
2020-03-09 16:13:59 +00:00
|
|
|
base::ThreadPool::PostTaskAndReplyWithResult(
|
2018-04-09 09:16:52 +00:00
|
|
|
FROM_HERE,
|
2020-03-09 16:13:59 +00:00
|
|
|
{base::MayBlock(), base::TaskPriority::BEST_EFFORT,
|
2018-04-09 09:16:52 +00:00
|
|
|
base::TaskShutdownBehavior::SKIP_ON_SHUTDOWN},
|
2018-04-20 10:55:05 +00:00
|
|
|
base::BindOnce(&CreateDownloadPath, download->GetURL(),
|
|
|
|
download->GetContentDisposition(),
|
|
|
|
download->GetSuggestedFilename(), download->GetMimeType(),
|
2018-04-09 09:16:52 +00:00
|
|
|
default_download_path),
|
2020-02-04 20:19:40 +00:00
|
|
|
base::BindOnce(&ElectronDownloadManagerDelegate::OnDownloadPathGenerated,
|
2018-04-09 09:16:52 +00:00
|
|
|
weak_ptr_factory_.GetWeakPtr(), download->GetId(),
|
2019-12-13 20:13:12 +00:00
|
|
|
std::move(*callback)));
|
2015-06-22 11:43:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
bool ElectronDownloadManagerDelegate::ShouldOpenDownload(
|
2018-04-10 15:29:26 +00:00
|
|
|
download::DownloadItem* download,
|
2019-12-13 20:13:12 +00:00
|
|
|
content::DownloadOpenDelayedCallback callback) {
|
2015-06-22 11:43:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronDownloadManagerDelegate::GetNextId(
|
2019-12-13 20:13:12 +00:00
|
|
|
content::DownloadIdCallback callback) {
|
2018-04-10 15:29:26 +00:00
|
|
|
static uint32_t next_id = download::DownloadItem::kInvalidId + 1;
|
2019-12-13 20:13:12 +00:00
|
|
|
std::move(callback).Run(next_id++);
|
2015-06-22 11:43:49 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|