2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-30 15:56:50 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/electron_javascript_dialog_manager.h"
|
2013-04-30 15:56:50 +00:00
|
|
|
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <string>
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <utility>
|
2017-01-05 00:46:50 +00:00
|
|
|
#include <vector>
|
2014-03-16 01:13:06 +00:00
|
|
|
|
2017-01-05 00:46:50 +00:00
|
|
|
#include "base/bind.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/api/electron_api_web_contents.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/native_window.h"
|
|
|
|
#include "shell/browser/ui/message_box.h"
|
|
|
|
#include "shell/browser/web_contents_preferences.h"
|
|
|
|
#include "shell/common/options_switches.h"
|
2017-01-05 00:46:50 +00:00
|
|
|
#include "ui/gfx/image/image_skia.h"
|
|
|
|
|
2017-04-04 04:50:44 +00:00
|
|
|
using content::JavaScriptDialogType;
|
2013-04-30 15:56:50 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2018-03-06 02:31:56 +00:00
|
|
|
|
2018-02-15 02:07:49 +00:00
|
|
|
namespace {
|
|
|
|
|
2018-03-06 02:31:56 +00:00
|
|
|
constexpr int kUserWantsNoMoreDialogs = -1;
|
|
|
|
|
|
|
|
} // namespace
|
2013-04-30 15:56:50 +00:00
|
|
|
|
2021-06-04 04:16:13 +00:00
|
|
|
ElectronJavaScriptDialogManager::ElectronJavaScriptDialogManager() = default;
|
2020-02-04 20:19:40 +00:00
|
|
|
ElectronJavaScriptDialogManager::~ElectronJavaScriptDialogManager() = default;
|
2017-04-28 00:28:48 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronJavaScriptDialogManager::RunJavaScriptDialog(
|
2014-03-01 11:53:50 +00:00
|
|
|
content::WebContents* web_contents,
|
2018-04-12 07:48:34 +00:00
|
|
|
content::RenderFrameHost* rfh,
|
2017-04-04 04:50:44 +00:00
|
|
|
JavaScriptDialogType dialog_type,
|
2021-03-16 16:18:45 +00:00
|
|
|
const std::u16string& message_text,
|
|
|
|
const std::u16string& default_prompt_text,
|
2017-12-18 01:24:13 +00:00
|
|
|
DialogClosedCallback callback,
|
2014-03-01 11:53:50 +00:00
|
|
|
bool* did_suppress_message) {
|
2018-04-12 07:48:34 +00:00
|
|
|
auto origin_url = rfh->GetLastCommittedURL();
|
2019-03-27 18:21:10 +00:00
|
|
|
|
|
|
|
std::string origin;
|
|
|
|
// For file:// URLs we do the alert filtering by the
|
|
|
|
// file path currently loaded
|
|
|
|
if (origin_url.SchemeIsFile()) {
|
|
|
|
origin = origin_url.path();
|
|
|
|
} else {
|
|
|
|
origin = origin_url.GetOrigin().spec();
|
|
|
|
}
|
|
|
|
|
2018-03-06 02:31:56 +00:00
|
|
|
if (origin_counts_[origin] == kUserWantsNoMoreDialogs) {
|
2021-03-16 16:18:45 +00:00
|
|
|
return std::move(callback).Run(false, std::u16string());
|
2018-01-25 02:50:00 +00:00
|
|
|
}
|
2018-01-10 06:07:56 +00:00
|
|
|
|
2017-04-04 04:50:44 +00:00
|
|
|
if (dialog_type != JavaScriptDialogType::JAVASCRIPT_DIALOG_TYPE_ALERT &&
|
|
|
|
dialog_type != JavaScriptDialogType::JAVASCRIPT_DIALOG_TYPE_CONFIRM) {
|
2021-03-16 16:18:45 +00:00
|
|
|
std::move(callback).Run(false, std::u16string());
|
2017-01-05 00:46:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:50:44 +00:00
|
|
|
auto* web_preferences = WebContentsPreferences::From(web_contents);
|
|
|
|
|
|
|
|
if (web_preferences && web_preferences->IsEnabled("disableDialogs")) {
|
2021-03-16 16:18:45 +00:00
|
|
|
return std::move(callback).Run(false, std::u16string());
|
2020-03-02 20:50:44 +00:00
|
|
|
}
|
|
|
|
|
2019-03-27 18:15:58 +00:00
|
|
|
// No default button
|
|
|
|
int default_id = -1;
|
|
|
|
int cancel_id = 0;
|
|
|
|
|
2017-01-06 16:53:06 +00:00
|
|
|
std::vector<std::string> buttons = {"OK"};
|
2017-04-04 04:50:44 +00:00
|
|
|
if (dialog_type == JavaScriptDialogType::JAVASCRIPT_DIALOG_TYPE_CONFIRM) {
|
2019-09-13 14:26:59 +00:00
|
|
|
buttons.emplace_back("Cancel");
|
2019-03-27 18:15:58 +00:00
|
|
|
// First button is default, second button is cancel
|
|
|
|
default_id = 0;
|
|
|
|
cancel_id = 1;
|
2017-01-05 00:46:50 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 06:07:56 +00:00
|
|
|
origin_counts_[origin]++;
|
|
|
|
|
2018-03-08 07:36:21 +00:00
|
|
|
std::string checkbox;
|
2018-04-18 01:55:30 +00:00
|
|
|
if (origin_counts_[origin] > 1 && web_preferences &&
|
2018-04-03 03:19:35 +00:00
|
|
|
web_preferences->IsEnabled("safeDialogs") &&
|
2018-08-03 21:23:07 +00:00
|
|
|
!web_preferences->GetPreference("safeDialogsMessage", &checkbox)) {
|
2018-04-03 03:19:35 +00:00
|
|
|
checkbox = "Prevent this app from creating additional dialogs";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't set parent for offscreen window.
|
|
|
|
NativeWindow* window = nullptr;
|
2018-05-29 08:09:51 +00:00
|
|
|
if (web_preferences && !web_preferences->IsEnabled(options::kOffscreen)) {
|
2018-04-03 03:19:35 +00:00
|
|
|
auto* relay = NativeWindowRelay::FromWebContents(web_contents);
|
|
|
|
if (relay)
|
2018-10-02 22:14:43 +00:00
|
|
|
window = relay->GetNativeWindow();
|
2018-01-10 06:07:56 +00:00
|
|
|
}
|
2018-03-06 06:18:45 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
electron::MessageBoxSettings settings;
|
2019-06-14 15:26:25 +00:00
|
|
|
settings.parent_window = window;
|
2020-02-25 16:47:59 +00:00
|
|
|
settings.checkbox_label = checkbox;
|
2019-06-14 15:26:25 +00:00
|
|
|
settings.buttons = buttons;
|
|
|
|
settings.default_id = default_id;
|
|
|
|
settings.cancel_id = cancel_id;
|
|
|
|
settings.message = base::UTF16ToUTF8(message_text);
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
electron::ShowMessageBox(
|
2019-06-14 15:26:25 +00:00
|
|
|
settings,
|
2020-02-04 20:19:40 +00:00
|
|
|
base::BindOnce(&ElectronJavaScriptDialogManager::OnMessageBoxCallback,
|
2020-04-13 20:52:07 +00:00
|
|
|
base::Unretained(this), std::move(callback), origin));
|
2014-03-01 11:53:50 +00:00
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronJavaScriptDialogManager::RunBeforeUnloadDialog(
|
2013-04-30 15:56:50 +00:00
|
|
|
content::WebContents* web_contents,
|
2018-04-12 07:48:34 +00:00
|
|
|
content::RenderFrameHost* rfh,
|
2013-04-30 15:56:50 +00:00
|
|
|
bool is_reload,
|
2017-12-18 01:24:13 +00:00
|
|
|
DialogClosedCallback callback) {
|
2020-07-16 23:16:05 +00:00
|
|
|
auto* api_web_contents = api::WebContents::From(web_contents);
|
|
|
|
if (api_web_contents) {
|
|
|
|
bool default_prevented = api_web_contents->Emit("will-prevent-unload");
|
2021-03-16 16:18:45 +00:00
|
|
|
std::move(callback).Run(default_prevented, std::u16string());
|
2020-07-16 23:16:05 +00:00
|
|
|
}
|
2013-04-30 15:56:50 +00:00
|
|
|
}
|
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronJavaScriptDialogManager::CancelDialogs(
|
2017-01-24 03:18:56 +00:00
|
|
|
content::WebContents* web_contents,
|
2018-04-18 01:55:30 +00:00
|
|
|
bool reset_state) {}
|
2017-01-24 03:18:56 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
void ElectronJavaScriptDialogManager::OnMessageBoxCallback(
|
2018-03-12 08:27:43 +00:00
|
|
|
DialogClosedCallback callback,
|
2018-01-10 06:07:56 +00:00
|
|
|
const std::string& origin,
|
2017-02-06 15:35:36 +00:00
|
|
|
int code,
|
|
|
|
bool checkbox_checked) {
|
2018-03-06 02:35:53 +00:00
|
|
|
if (checkbox_checked)
|
|
|
|
origin_counts_[origin] = kUserWantsNoMoreDialogs;
|
2021-03-16 16:18:45 +00:00
|
|
|
std::move(callback).Run(code == 0, std::u16string());
|
2017-01-05 00:46:50 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|