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