2014-10-31 12:17:05 -06:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 03:49:37 -06:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-03 05:31:24 -06:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-08-05 22:44:02 -06:00
|
|
|
#include <utility>
|
2014-03-15 19:13:06 -06:00
|
|
|
#include <vector>
|
|
|
|
|
2019-06-19 14:46:59 -06:00
|
|
|
#include "shell/browser/ui/certificate_trust.h"
|
|
|
|
#include "shell/browser/ui/file_dialog.h"
|
|
|
|
#include "shell/browser/ui/message_box.h"
|
2019-09-04 09:45:25 -06:00
|
|
|
#include "shell/common/gin_converters/callback_converter.h"
|
2019-08-12 23:49:48 -06:00
|
|
|
#include "shell/common/gin_converters/file_dialog_converter.h"
|
2019-09-05 23:52:54 -06:00
|
|
|
#include "shell/common/gin_converters/file_path_converter.h"
|
2019-08-01 08:57:41 -06:00
|
|
|
#include "shell/common/gin_converters/message_box_converter.h"
|
2019-08-09 14:43:18 -06:00
|
|
|
#include "shell/common/gin_converters/native_window_converter.h"
|
2019-08-13 23:15:34 -06:00
|
|
|
#include "shell/common/gin_converters/net_converter.h"
|
2019-09-04 09:45:25 -06:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-11-01 00:10:32 -06:00
|
|
|
#include "shell/common/gin_helper/promise.h"
|
2019-06-19 14:46:59 -06:00
|
|
|
#include "shell/common/node_includes.h"
|
2014-04-16 01:14:44 -06:00
|
|
|
|
2013-05-03 05:31:24 -06:00
|
|
|
namespace {
|
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
int ShowMessageBoxSync(const electron::MessageBoxSettings& settings) {
|
|
|
|
return electron::ShowMessageBoxSync(settings);
|
2019-03-12 12:06:59 -06:00
|
|
|
}
|
|
|
|
|
2019-11-01 00:10:32 -06:00
|
|
|
void ResolvePromiseObject(gin_helper::Promise<gin_helper::Dictionary> promise,
|
|
|
|
int result,
|
|
|
|
bool checkbox_checked) {
|
2019-08-01 08:57:41 -06:00
|
|
|
v8::Isolate* isolate = promise.isolate();
|
2020-03-12 12:17:47 -06:00
|
|
|
v8::HandleScope handle_scope(isolate);
|
2023-08-20 19:43:41 -06:00
|
|
|
auto dict = gin_helper::Dictionary::CreateEmpty(isolate);
|
2019-03-12 12:06:59 -06:00
|
|
|
|
|
|
|
dict.Set("response", result);
|
|
|
|
dict.Set("checkboxChecked", checkbox_checked);
|
|
|
|
|
2019-11-01 00:10:32 -06:00
|
|
|
promise.Resolve(dict);
|
2019-03-12 12:06:59 -06:00
|
|
|
}
|
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
v8::Local<v8::Promise> ShowMessageBox(
|
|
|
|
const electron::MessageBoxSettings& settings,
|
2019-08-01 08:57:41 -06:00
|
|
|
gin::Arguments* args) {
|
2019-03-12 12:06:59 -06:00
|
|
|
v8::Isolate* isolate = args->isolate();
|
2019-11-01 00:10:32 -06:00
|
|
|
gin_helper::Promise<gin_helper::Dictionary> promise(isolate);
|
2019-03-12 12:06:59 -06:00
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
electron::ShowMessageBox(
|
2019-06-14 09:26:25 -06:00
|
|
|
settings, base::BindOnce(&ResolvePromiseObject, std::move(promise)));
|
2019-03-12 12:06:59 -06:00
|
|
|
|
|
|
|
return handle;
|
2013-05-03 07:03:26 -06:00
|
|
|
}
|
|
|
|
|
2019-03-05 06:54:48 -07:00
|
|
|
void ShowOpenDialogSync(const file_dialog::DialogSettings& settings,
|
2019-08-01 08:57:41 -06:00
|
|
|
gin::Arguments* args) {
|
2019-03-05 06:54:48 -07:00
|
|
|
std::vector<base::FilePath> paths;
|
|
|
|
if (file_dialog::ShowOpenDialogSync(settings, &paths))
|
|
|
|
args->Return(paths);
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Promise> ShowOpenDialog(
|
|
|
|
const file_dialog::DialogSettings& settings,
|
2019-08-01 08:57:41 -06:00
|
|
|
gin::Arguments* args) {
|
2019-11-01 00:10:32 -06:00
|
|
|
gin_helper::Promise<gin_helper::Dictionary> promise(args->isolate());
|
2019-03-05 06:54:48 -07:00
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
file_dialog::ShowOpenDialog(settings, std::move(promise));
|
|
|
|
return handle;
|
2013-05-03 05:31:24 -06:00
|
|
|
}
|
|
|
|
|
2019-03-05 14:48:20 -07:00
|
|
|
void ShowSaveDialogSync(const file_dialog::DialogSettings& settings,
|
2019-08-01 08:57:41 -06:00
|
|
|
gin::Arguments* args) {
|
2019-03-05 14:48:20 -07:00
|
|
|
base::FilePath path;
|
|
|
|
if (file_dialog::ShowSaveDialogSync(settings, &path))
|
|
|
|
args->Return(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Promise> ShowSaveDialog(
|
|
|
|
const file_dialog::DialogSettings& settings,
|
2019-08-01 08:57:41 -06:00
|
|
|
gin::Arguments* args) {
|
2019-11-01 00:10:32 -06:00
|
|
|
gin_helper::Promise<gin_helper::Dictionary> promise(args->isolate());
|
2019-03-05 14:48:20 -07:00
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
|
|
|
|
file_dialog::ShowSaveDialog(settings, std::move(promise));
|
|
|
|
return handle;
|
2013-05-03 05:31:24 -06:00
|
|
|
}
|
|
|
|
|
2018-04-17 19:55:30 -06:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2019-08-01 08:57:41 -06:00
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
2019-09-04 09:45:25 -06:00
|
|
|
gin_helper::Dictionary dict(isolate, exports);
|
|
|
|
dict.SetMethod("showMessageBoxSync", &ShowMessageBoxSync);
|
|
|
|
dict.SetMethod("showMessageBox", &ShowMessageBox);
|
2021-07-14 16:59:27 -06:00
|
|
|
dict.SetMethod("_closeMessageBox", &electron::CloseMessageBox);
|
2019-09-04 09:45:25 -06:00
|
|
|
dict.SetMethod("showErrorBox", &electron::ShowErrorBox);
|
|
|
|
dict.SetMethod("showOpenDialogSync", &ShowOpenDialogSync);
|
|
|
|
dict.SetMethod("showOpenDialog", &ShowOpenDialog);
|
|
|
|
dict.SetMethod("showSaveDialogSync", &ShowSaveDialogSync);
|
|
|
|
dict.SetMethod("showSaveDialog", &ShowSaveDialog);
|
2022-02-09 19:58:52 -07:00
|
|
|
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
|
2019-09-04 09:45:25 -06:00
|
|
|
dict.SetMethod("showCertificateTrustDialog",
|
|
|
|
&certificate_trust::ShowCertificateTrust);
|
2017-04-03 13:25:09 -06:00
|
|
|
#endif
|
2014-04-16 01:14:44 -06:00
|
|
|
}
|
2013-05-03 05:31:24 -06:00
|
|
|
|
2014-04-16 01:14:44 -06:00
|
|
|
} // namespace
|
2013-05-03 05:31:24 -06:00
|
|
|
|
2023-02-08 18:31:38 -07:00
|
|
|
NODE_LINKED_BINDING_CONTEXT_AWARE(electron_browser_dialog, Initialize)
|