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.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/atom_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"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/atom_api_web_contents.h"
|
|
|
|
#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
|
|
|
|
2017-04-28 00:28:48 +00:00
|
|
|
AtomJavaScriptDialogManager::AtomJavaScriptDialogManager(
|
|
|
|
api::WebContents* api_web_contents)
|
|
|
|
: api_web_contents_(api_web_contents) {}
|
2018-04-17 23:37:22 +00:00
|
|
|
AtomJavaScriptDialogManager::~AtomJavaScriptDialogManager() = default;
|
2017-04-28 00:28:48 +00:00
|
|
|
|
2014-03-01 11:53:50 +00:00
|
|
|
void AtomJavaScriptDialogManager::RunJavaScriptDialog(
|
|
|
|
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,
|
2014-06-28 11:36:57 +00:00
|
|
|
const base::string16& message_text,
|
|
|
|
const base::string16& 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) {
|
2018-03-12 08:27:43 +00:00
|
|
|
return std::move(callback).Run(false, base::string16());
|
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) {
|
2017-12-18 01:31:00 +00:00
|
|
|
std::move(callback).Run(false, base::string16());
|
2017-01-05 00:46:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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) {
|
2017-01-05 00:46:50 +00:00
|
|
|
buttons.push_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-04-03 03:19:35 +00:00
|
|
|
auto* web_preferences = WebContentsPreferences::From(web_contents);
|
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;
|
|
|
|
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,
|
2019-05-29 20:02:15 +00:00
|
|
|
base::BindOnce(&AtomJavaScriptDialogManager::OnMessageBoxCallback,
|
|
|
|
base::Unretained(this), base::Passed(std::move(callback)),
|
|
|
|
origin));
|
2014-03-01 11:53:50 +00:00
|
|
|
}
|
|
|
|
|
2013-04-30 15:56:50 +00:00
|
|
|
void AtomJavaScriptDialogManager::RunBeforeUnloadDialog(
|
|
|
|
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) {
|
2017-04-28 00:28:48 +00:00
|
|
|
bool default_prevented = api_web_contents_->Emit("will-prevent-unload");
|
2017-12-18 01:31:00 +00:00
|
|
|
std::move(callback).Run(default_prevented, base::string16());
|
2017-04-28 00:28:48 +00:00
|
|
|
return;
|
2013-04-30 15:56:50 +00:00
|
|
|
}
|
|
|
|
|
2017-01-24 03:18:56 +00:00
|
|
|
void AtomJavaScriptDialogManager::CancelDialogs(
|
|
|
|
content::WebContents* web_contents,
|
2018-04-18 01:55:30 +00:00
|
|
|
bool reset_state) {}
|
2017-01-24 03:18:56 +00:00
|
|
|
|
2017-01-05 00:46:50 +00:00
|
|
|
void AtomJavaScriptDialogManager::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;
|
2018-03-12 08:27:43 +00:00
|
|
|
std::move(callback).Run(code == 0, base::string16());
|
2017-01-05 00:46:50 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|