| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | // Copyright (c) 2015 GitHub, Inc.
 | 
					
						
							|  |  |  | // Use of this source code is governed by the MIT license that can be
 | 
					
						
							|  |  |  | // found in the LICENSE file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "atom/browser/atom_download_manager_delegate.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2019-03-05 13:48:20 -08:00
										 |  |  | #include <utility>
 | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-24 15:55:45 +08:00
										 |  |  | #include "atom/browser/api/atom_api_download_item.h"
 | 
					
						
							| 
									
										
										
										
											2015-07-26 16:30:02 +08:00
										 |  |  | #include "atom/browser/atom_browser_context.h"
 | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | #include "atom/browser/native_window.h"
 | 
					
						
							|  |  |  | #include "atom/browser/ui/file_dialog.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-03 12:19:35 +09:00
										 |  |  | #include "atom/browser/web_contents_preferences.h"
 | 
					
						
							| 
									
										
										
										
											2019-03-05 13:48:20 -08:00
										 |  |  | #include "atom/common/native_mate_converters/callback.h"
 | 
					
						
							| 
									
										
										
										
											2018-05-29 10:09:51 +02:00
										 |  |  | #include "atom/common/options_switches.h"
 | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | #include "base/bind.h"
 | 
					
						
							|  |  |  | #include "base/files/file_util.h"
 | 
					
						
							| 
									
										
										
										
											2018-10-25 17:09:49 +11:00
										 |  |  | #include "base/task/post_task.h"
 | 
					
						
							| 
									
										
										
										
											2015-07-26 16:30:02 +08:00
										 |  |  | #include "chrome/common/pref_names.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-10 17:58:49 +02:00
										 |  |  | #include "components/download/public/common/download_danger_type.h"
 | 
					
						
							| 
									
										
										
										
											2016-08-26 15:30:02 -07:00
										 |  |  | #include "components/prefs/pref_service.h"
 | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | #include "content/public/browser/browser_context.h"
 | 
					
						
							|  |  |  | #include "content/public/browser/browser_thread.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-10 17:29:26 +02:00
										 |  |  | #include "content/public/browser/download_item_utils.h"
 | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | #include "content/public/browser/download_manager.h"
 | 
					
						
							|  |  |  | #include "net/base/filename_util.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace atom { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-10 17:00:43 +05:30
										 |  |  | namespace { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Generate default file path to save the download.
 | 
					
						
							| 
									
										
										
										
											2018-04-09 14:46:52 +05:30
										 |  |  | 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 17:00:43 +05:30
										 |  |  |   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 14:46:52 +05:30
										 |  |  |   return default_download_path.Append(generated_name); | 
					
						
							| 
									
										
										
										
											2017-12-10 17:00:43 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  // namespace
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | AtomDownloadManagerDelegate::AtomDownloadManagerDelegate( | 
					
						
							|  |  |  |     content::DownloadManager* manager) | 
					
						
							| 
									
										
										
										
											2018-04-17 21:55:30 -04:00
										 |  |  |     : download_manager_(manager), weak_ptr_factory_(this) {} | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | AtomDownloadManagerDelegate::~AtomDownloadManagerDelegate() { | 
					
						
							|  |  |  |   if (download_manager_) { | 
					
						
							|  |  |  |     DCHECK_EQ(static_cast<content::DownloadManagerDelegate*>(this), | 
					
						
							|  |  |  |               download_manager_->GetDelegate()); | 
					
						
							|  |  |  |     download_manager_->SetDelegate(nullptr); | 
					
						
							|  |  |  |     download_manager_ = nullptr; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-10 17:29:26 +02:00
										 |  |  | void AtomDownloadManagerDelegate::GetItemSavePath(download::DownloadItem* item, | 
					
						
							| 
									
										
										
										
											2016-08-25 14:34:48 -07:00
										 |  |  |                                                   base::FilePath* path) { | 
					
						
							|  |  |  |   v8::Isolate* isolate = v8::Isolate::GetCurrent(); | 
					
						
							|  |  |  |   v8::Locker locker(isolate); | 
					
						
							|  |  |  |   v8::HandleScope handle_scope(isolate); | 
					
						
							| 
									
										
										
										
											2018-04-17 21:55:30 -04:00
										 |  |  |   api::DownloadItem* download = | 
					
						
							|  |  |  |       api::DownloadItem::FromWrappedClass(isolate, item); | 
					
						
							| 
									
										
										
										
											2016-08-25 14:34:48 -07:00
										 |  |  |   if (download) | 
					
						
							|  |  |  |     *path = download->GetSavePath(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-08 15:51:06 +01:00
										 |  |  | void AtomDownloadManagerDelegate::GetItemSaveDialogOptions( | 
					
						
							|  |  |  |     download::DownloadItem* item, | 
					
						
							|  |  |  |     file_dialog::DialogSettings* options) { | 
					
						
							|  |  |  |   v8::Isolate* isolate = v8::Isolate::GetCurrent(); | 
					
						
							|  |  |  |   v8::Locker locker(isolate); | 
					
						
							|  |  |  |   v8::HandleScope handle_scope(isolate); | 
					
						
							|  |  |  |   api::DownloadItem* download = | 
					
						
							|  |  |  |       api::DownloadItem::FromWrappedClass(isolate, item); | 
					
						
							|  |  |  |   if (download) | 
					
						
							|  |  |  |     *options = download->GetSaveDialogOptions(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | void AtomDownloadManagerDelegate::OnDownloadPathGenerated( | 
					
						
							| 
									
										
										
										
											2016-03-07 20:40:10 -08:00
										 |  |  |     uint32_t download_id, | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  |     const content::DownloadTargetCallback& callback, | 
					
						
							|  |  |  |     const base::FilePath& default_path) { | 
					
						
							|  |  |  |   DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-17 15:41:47 -07:00
										 |  |  |   auto* item = download_manager_->GetDownload(download_id); | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  |   if (!item) | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-24 22:14:46 +08:00
										 |  |  |   NativeWindow* window = nullptr; | 
					
						
							| 
									
										
										
										
											2018-04-10 17:29:26 +02:00
										 |  |  |   content::WebContents* web_contents = | 
					
						
							|  |  |  |       content::DownloadItemUtils::GetWebContents(item); | 
					
						
							| 
									
										
										
										
											2018-04-17 15:41:47 -07:00
										 |  |  |   auto* relay = | 
					
						
							| 
									
										
										
										
											2018-04-17 21:55:30 -04:00
										 |  |  |       web_contents ? NativeWindowRelay::FromWebContents(web_contents) : nullptr; | 
					
						
							| 
									
										
										
										
											2015-06-24 22:14:46 +08:00
										 |  |  |   if (relay) | 
					
						
							| 
									
										
										
										
											2018-10-02 15:14:43 -07:00
										 |  |  |     window = relay->GetNativeWindow(); | 
					
						
							| 
									
										
										
										
											2015-06-24 22:14:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-31 04:06:55 +02:00
										 |  |  |   // Show save dialog if save path was not set already on item
 | 
					
						
							| 
									
										
										
										
											2015-09-21 14:03:36 +08:00
										 |  |  |   base::FilePath path; | 
					
						
							| 
									
										
										
										
											2016-08-25 14:34:48 -07:00
										 |  |  |   GetItemSavePath(item, &path); | 
					
						
							| 
									
										
										
										
											2019-01-31 04:06:55 +02: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 21:11:20 +03:00
										 |  |  |     if (settings.default_path.empty()) | 
					
						
							| 
									
										
										
										
											2019-01-31 04:06:55 +02: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 13:48:20 -08:00
										 |  |  |     v8::Isolate* isolate = v8::Isolate::GetCurrent(); | 
					
						
							|  |  |  |     atom::util::Promise dialog_promise(isolate); | 
					
						
							| 
									
										
										
										
											2019-01-31 04:06:55 +02:00
										 |  |  |     auto dialog_callback = | 
					
						
							| 
									
										
										
										
											2019-05-02 16:49:27 -07:00
										 |  |  |         base::BindOnce(&AtomDownloadManagerDelegate::OnDownloadSaveDialogDone, | 
					
						
							|  |  |  |                        base::Unretained(this), download_id, callback); | 
					
						
							| 
									
										
										
										
											2019-03-05 13:48:20 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-02 16:49:27 -07:00
										 |  |  |     ignore_result(dialog_promise.Then(std::move(dialog_callback))); | 
					
						
							| 
									
										
										
										
											2019-05-14 15:46:53 -07:00
										 |  |  |     file_dialog::ShowSaveDialog(settings, std::move(dialog_promise)); | 
					
						
							| 
									
										
										
										
											2019-01-31 04:06:55 +02:00
										 |  |  |   } else { | 
					
						
							|  |  |  |     callback.Run(path, download::DownloadItem::TARGET_DISPOSITION_PROMPT, | 
					
						
							|  |  |  |                  download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS, path, | 
					
						
							|  |  |  |                  download::DOWNLOAD_INTERRUPT_REASON_NONE); | 
					
						
							| 
									
										
										
										
											2019-01-31 13:18:20 +02:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-01-31 04:06:55 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AtomDownloadManagerDelegate::OnDownloadSaveDialogDone( | 
					
						
							|  |  |  |     uint32_t download_id, | 
					
						
							|  |  |  |     const content::DownloadTargetCallback& download_callback, | 
					
						
							| 
									
										
										
										
											2019-05-14 15:46:53 -07:00
										 |  |  |     mate::Dictionary result) { | 
					
						
							| 
									
										
										
										
											2019-01-31 04:06:55 +02:00
										 |  |  |   DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   auto* item = download_manager_->GetDownload(download_id); | 
					
						
							|  |  |  |   if (!item) | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-14 15:46:53 -07:00
										 |  |  |   bool canceled = true; | 
					
						
							|  |  |  |   result.Get("canceled", &canceled); | 
					
						
							| 
									
										
										
										
											2016-07-27 17:31:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-14 15:46:53 -07:00
										 |  |  |   base::FilePath path; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (!canceled) { | 
					
						
							|  |  |  |     if (result.Get("filePath", &path)) { | 
					
						
							|  |  |  |       // Remember the last selected download directory.
 | 
					
						
							|  |  |  |       AtomBrowserContext* browser_context = static_cast<AtomBrowserContext*>( | 
					
						
							|  |  |  |           download_manager_->GetBrowserContext()); | 
					
						
							|  |  |  |       browser_context->prefs()->SetFilePath(prefs::kDownloadDefaultDirectory, | 
					
						
							|  |  |  |                                             path.DirName()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       v8::Isolate* isolate = v8::Isolate::GetCurrent(); | 
					
						
							|  |  |  |       v8::Locker locker(isolate); | 
					
						
							|  |  |  |       v8::HandleScope handle_scope(isolate); | 
					
						
							|  |  |  |       api::DownloadItem* download_item = | 
					
						
							|  |  |  |           api::DownloadItem::FromWrappedClass(isolate, item); | 
					
						
							|  |  |  |       if (download_item) | 
					
						
							|  |  |  |         download_item->SetSavePath(path); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-21 14:03:36 +08:00
										 |  |  |   // Running the DownloadTargetCallback with an empty FilePath signals that the
 | 
					
						
							| 
									
										
										
										
											2019-01-31 04:06:55 +02: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 15:46:53 -07:00
										 |  |  |       path.empty() ? download::DOWNLOAD_INTERRUPT_REASON_USER_CANCELED | 
					
						
							|  |  |  |                    : download::DOWNLOAD_INTERRUPT_REASON_NONE; | 
					
						
							|  |  |  |   download_callback.Run(path, download::DownloadItem::TARGET_DISPOSITION_PROMPT, | 
					
						
							|  |  |  |                         download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS, path, | 
					
						
							|  |  |  |                         interrupt_reason); | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AtomDownloadManagerDelegate::Shutdown() { | 
					
						
							|  |  |  |   weak_ptr_factory_.InvalidateWeakPtrs(); | 
					
						
							|  |  |  |   download_manager_ = nullptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool AtomDownloadManagerDelegate::DetermineDownloadTarget( | 
					
						
							| 
									
										
										
										
											2018-04-10 17:29:26 +02:00
										 |  |  |     download::DownloadItem* download, | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  |     const content::DownloadTargetCallback& callback) { | 
					
						
							|  |  |  |   DCHECK_CURRENTLY_ON(content::BrowserThread::UI); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-24 15:55:45 +08:00
										 |  |  |   if (!download->GetForcedFilePath().empty()) { | 
					
						
							|  |  |  |     callback.Run(download->GetForcedFilePath(), | 
					
						
							| 
									
										
										
										
											2018-04-10 17:29:26 +02:00
										 |  |  |                  download::DownloadItem::TARGET_DISPOSITION_OVERWRITE, | 
					
						
							| 
									
										
										
										
											2018-04-10 17:58:49 +02:00
										 |  |  |                  download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS, | 
					
						
							| 
									
										
										
										
											2017-06-17 00:57:28 +03:00
										 |  |  |                  download->GetForcedFilePath(), | 
					
						
							| 
									
										
										
										
											2018-04-10 18:08:50 +02:00
										 |  |  |                  download::DOWNLOAD_INTERRUPT_REASON_NONE); | 
					
						
							| 
									
										
										
										
											2015-09-24 15:55:45 +08:00
										 |  |  |     return true; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-02-02 20:11:39 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Try to get the save path from JS wrapper.
 | 
					
						
							| 
									
										
										
										
											2016-08-25 14:34:48 -07:00
										 |  |  |   base::FilePath save_path; | 
					
						
							|  |  |  |   GetItemSavePath(download, &save_path); | 
					
						
							|  |  |  |   if (!save_path.empty()) { | 
					
						
							| 
									
										
										
										
											2018-04-10 17:29:26 +02:00
										 |  |  |     callback.Run(save_path, | 
					
						
							|  |  |  |                  download::DownloadItem::TARGET_DISPOSITION_OVERWRITE, | 
					
						
							| 
									
										
										
										
											2018-09-19 13:10:26 +02:00
										 |  |  |                  download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS, save_path, | 
					
						
							|  |  |  |                  download::DOWNLOAD_INTERRUPT_REASON_NONE); | 
					
						
							| 
									
										
										
										
											2016-08-25 14:34:48 -07:00
										 |  |  |     return true; | 
					
						
							| 
									
										
										
										
											2015-09-24 15:55:45 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-17 21:55:30 -04:00
										 |  |  |   AtomBrowserContext* browser_context = | 
					
						
							|  |  |  |       static_cast<AtomBrowserContext*>(download_manager_->GetBrowserContext()); | 
					
						
							|  |  |  |   base::FilePath default_download_path = | 
					
						
							|  |  |  |       browser_context->prefs()->GetFilePath(prefs::kDownloadDefaultDirectory); | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-09 14:46:52 +05:30
										 |  |  |   base::PostTaskWithTraitsAndReplyWithResult( | 
					
						
							|  |  |  |       FROM_HERE, | 
					
						
							| 
									
										
										
										
											2018-10-26 01:00:06 +05:30
										 |  |  |       {base::MayBlock(), base::TaskPriority::BEST_EFFORT, | 
					
						
							| 
									
										
										
										
											2018-04-09 14:46:52 +05:30
										 |  |  |        base::TaskShutdownBehavior::SKIP_ON_SHUTDOWN}, | 
					
						
							| 
									
										
										
										
											2018-04-20 16:25:05 +05:30
										 |  |  |       base::BindOnce(&CreateDownloadPath, download->GetURL(), | 
					
						
							|  |  |  |                      download->GetContentDisposition(), | 
					
						
							|  |  |  |                      download->GetSuggestedFilename(), download->GetMimeType(), | 
					
						
							| 
									
										
										
										
											2018-04-09 14:46:52 +05:30
										 |  |  |                      default_download_path), | 
					
						
							|  |  |  |       base::BindOnce(&AtomDownloadManagerDelegate::OnDownloadPathGenerated, | 
					
						
							|  |  |  |                      weak_ptr_factory_.GetWeakPtr(), download->GetId(), | 
					
						
							|  |  |  |                      callback)); | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  |   return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool AtomDownloadManagerDelegate::ShouldOpenDownload( | 
					
						
							| 
									
										
										
										
											2018-04-10 17:29:26 +02:00
										 |  |  |     download::DownloadItem* download, | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  |     const content::DownloadOpenDelayedCallback& callback) { | 
					
						
							|  |  |  |   return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AtomDownloadManagerDelegate::GetNextId( | 
					
						
							|  |  |  |     const content::DownloadIdCallback& callback) { | 
					
						
							| 
									
										
										
										
											2018-04-10 17:29:26 +02:00
										 |  |  |   static uint32_t next_id = download::DownloadItem::kInvalidId + 1; | 
					
						
							| 
									
										
										
										
											2015-06-22 17:13:49 +05:30
										 |  |  |   callback.Run(next_id++); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  // namespace atom
 |