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-03-16 01:13:06 +00:00
|
|
|
#include <string>
|
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-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-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
|
|
|
#include "shell/common/promise_util.h"
|
2014-04-16 07:14:44 +00:00
|
|
|
|
2013-05-03 11:31:24 +00:00
|
|
|
namespace {
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
int ShowMessageBoxSync(const electron::MessageBoxSettings& settings) {
|
|
|
|
return electron::ShowMessageBoxSync(settings);
|
2019-03-12 18:06:59 +00:00
|
|
|
}
|
|
|
|
|
2019-08-23 00:03:28 +00:00
|
|
|
void ResolvePromiseObject(electron::util::Promise<gin::Dictionary> promise,
|
2019-03-12 18:06:59 +00:00
|
|
|
int result,
|
|
|
|
bool checkbox_checked) {
|
2019-08-01 14:57:41 +00:00
|
|
|
v8::Isolate* isolate = promise.isolate();
|
|
|
|
gin::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
|
2019-03-12 18:06:59 +00:00
|
|
|
|
|
|
|
dict.Set("response", result);
|
|
|
|
dict.Set("checkboxChecked", checkbox_checked);
|
|
|
|
|
2019-08-23 00:03:28 +00:00
|
|
|
promise.ResolveWithGin(dict);
|
2019-03-12 18:06:59 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +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-08-23 00:03:28 +00:00
|
|
|
electron::util::Promise<gin::Dictionary> promise(isolate);
|
2019-03-12 18:06:59 +00:00
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
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-08-23 00:03:28 +00:00
|
|
|
electron::util::Promise<mate::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-08-23 00:03:28 +00:00
|
|
|
electron::util::Promise<mate::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);
|
|
|
|
dict.SetMethod("showErrorBox", &electron::ShowErrorBox);
|
|
|
|
dict.SetMethod("showOpenDialogSync", &ShowOpenDialogSync);
|
|
|
|
dict.SetMethod("showOpenDialog", &ShowOpenDialog);
|
|
|
|
dict.SetMethod("showSaveDialogSync", &ShowSaveDialogSync);
|
|
|
|
dict.SetMethod("showSaveDialog", &ShowSaveDialog);
|
2017-04-06 01:09:58 +00:00
|
|
|
#if defined(OS_MACOSX) || defined(OS_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
|
|
|
|
2019-03-08 18:29:52 +00:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(atom_browser_dialog, Initialize)
|