2017-04-23 12:16:19 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/atom_api_notification.h"
|
|
|
|
|
2018-04-08 19:24:08 +00:00
|
|
|
#include "base/guid.h"
|
2017-05-29 11:18:18 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/atom_api_menu.h"
|
|
|
|
#include "shell/browser/atom_browser_client.h"
|
|
|
|
#include "shell/browser/browser.h"
|
2019-10-02 00:30:55 +00:00
|
|
|
#include "shell/common/gin_converters/image_converter.h"
|
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
|
|
|
#include "shell/common/gin_helper/object_template_builder.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
2017-05-29 11:18:18 +00:00
|
|
|
#include "url/gurl.h"
|
2017-04-23 12:16:19 +00:00
|
|
|
|
2019-10-02 00:30:55 +00:00
|
|
|
namespace gin {
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
template <>
|
2019-06-19 21:23:04 +00:00
|
|
|
struct Converter<electron::NotificationAction> {
|
2018-04-18 01:55:30 +00:00
|
|
|
static bool FromV8(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val,
|
2019-06-19 21:23:04 +00:00
|
|
|
electron::NotificationAction* out) {
|
2019-10-02 00:30:55 +00:00
|
|
|
gin::Dictionary dict(isolate);
|
2017-06-23 10:39:42 +00:00
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!dict.Get("type", &(out->type))) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-23 11:04:39 +00:00
|
|
|
dict.Get("text", &(out->text));
|
2017-06-23 10:39:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
|
2019-06-19 21:23:04 +00:00
|
|
|
electron::NotificationAction val) {
|
2019-10-02 00:30:55 +00:00
|
|
|
gin::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
|
2017-06-23 11:04:39 +00:00
|
|
|
dict.Set("text", val.text);
|
2017-06-23 10:39:42 +00:00
|
|
|
dict.Set("type", val.type);
|
2019-10-02 00:30:55 +00:00
|
|
|
return ConvertToV8(isolate, dict);
|
2017-06-23 10:39:42 +00:00
|
|
|
}
|
|
|
|
};
|
2019-10-02 00:30:55 +00:00
|
|
|
|
|
|
|
} // namespace gin
|
2017-06-23 10:39:42 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2017-04-23 12:16:19 +00:00
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2019-10-15 01:15:23 +00:00
|
|
|
Notification::Notification(gin::Arguments* args) {
|
|
|
|
InitWithArgs(args);
|
2017-04-23 12:16:19 +00:00
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
presenter_ = static_cast<AtomBrowserClient*>(AtomBrowserClient::Get())
|
|
|
|
->GetNotificationPresenter();
|
2017-05-31 07:17:29 +00:00
|
|
|
|
2019-10-02 00:30:55 +00:00
|
|
|
gin::Dictionary opts(nullptr);
|
2017-04-23 12:16:19 +00:00
|
|
|
if (args->GetNext(&opts)) {
|
|
|
|
opts.Get("title", &title_);
|
2017-06-30 13:59:46 +00:00
|
|
|
opts.Get("subtitle", &subtitle_);
|
2017-04-23 12:16:19 +00:00
|
|
|
opts.Get("body", &body_);
|
|
|
|
has_icon_ = opts.Get("icon", &icon_);
|
2017-04-23 14:18:31 +00:00
|
|
|
if (has_icon_) {
|
|
|
|
opts.Get("icon", &icon_path_);
|
|
|
|
}
|
2017-04-23 12:16:19 +00:00
|
|
|
opts.Get("silent", &silent_);
|
|
|
|
opts.Get("replyPlaceholder", &reply_placeholder_);
|
2019-09-19 05:35:20 +00:00
|
|
|
opts.Get("urgency", &urgency_);
|
2017-04-23 12:16:19 +00:00
|
|
|
opts.Get("hasReply", &has_reply_);
|
2019-10-09 15:22:21 +00:00
|
|
|
opts.Get("timeoutType", &timeout_type_);
|
2017-06-23 10:39:42 +00:00
|
|
|
opts.Get("actions", &actions_);
|
2017-08-18 00:28:14 +00:00
|
|
|
opts.Get("sound", &sound_);
|
2018-01-16 19:26:41 +00:00
|
|
|
opts.Get("closeButtonText", &close_button_text_);
|
2017-04-23 12:16:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-30 09:06:51 +00:00
|
|
|
Notification::~Notification() {
|
2017-05-31 07:17:29 +00:00
|
|
|
if (notification_)
|
|
|
|
notification_->set_delegate(nullptr);
|
2017-05-30 09:06:51 +00:00
|
|
|
}
|
2017-04-23 12:16:19 +00:00
|
|
|
|
|
|
|
// static
|
2019-10-15 01:15:23 +00:00
|
|
|
mate::WrappableBase* Notification::New(gin_helper::ErrorThrower thrower,
|
|
|
|
gin::Arguments* args) {
|
2017-04-23 12:16:19 +00:00
|
|
|
if (!Browser::Get()->is_ready()) {
|
2019-10-15 01:15:23 +00:00
|
|
|
thrower.ThrowError("Cannot create Notification before app is ready");
|
2017-04-23 12:16:19 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2019-10-15 01:15:23 +00:00
|
|
|
return new Notification(args);
|
2017-04-23 12:16:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Getters
|
2017-06-30 14:04:59 +00:00
|
|
|
base::string16 Notification::GetTitle() const {
|
2017-04-24 03:07:42 +00:00
|
|
|
return title_;
|
|
|
|
}
|
2017-05-31 07:17:29 +00:00
|
|
|
|
2017-06-30 14:04:59 +00:00
|
|
|
base::string16 Notification::GetSubtitle() const {
|
2017-06-30 13:59:46 +00:00
|
|
|
return subtitle_;
|
|
|
|
}
|
|
|
|
|
2017-06-30 14:04:59 +00:00
|
|
|
base::string16 Notification::GetBody() const {
|
2017-04-24 03:07:42 +00:00
|
|
|
return body_;
|
|
|
|
}
|
2017-05-31 07:17:29 +00:00
|
|
|
|
2017-06-30 14:04:59 +00:00
|
|
|
bool Notification::GetSilent() const {
|
2017-04-24 03:07:42 +00:00
|
|
|
return silent_;
|
|
|
|
}
|
2017-05-31 07:17:29 +00:00
|
|
|
|
2017-06-30 14:04:59 +00:00
|
|
|
bool Notification::GetHasReply() const {
|
2017-04-24 03:07:42 +00:00
|
|
|
return has_reply_;
|
|
|
|
}
|
2017-04-23 12:16:19 +00:00
|
|
|
|
2019-10-09 15:22:21 +00:00
|
|
|
base::string16 Notification::GetTimeoutType() const {
|
|
|
|
return timeout_type_;
|
|
|
|
}
|
|
|
|
|
2018-01-22 18:48:12 +00:00
|
|
|
base::string16 Notification::GetReplyPlaceholder() const {
|
|
|
|
return reply_placeholder_;
|
2017-06-30 14:04:59 +00:00
|
|
|
}
|
|
|
|
|
2017-08-21 20:53:50 +00:00
|
|
|
base::string16 Notification::GetSound() const {
|
2017-08-18 00:28:14 +00:00
|
|
|
return sound_;
|
2017-08-17 07:06:27 +00:00
|
|
|
}
|
|
|
|
|
2019-09-19 05:35:20 +00:00
|
|
|
base::string16 Notification::GetUrgency() const {
|
|
|
|
return urgency_;
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
std::vector<electron::NotificationAction> Notification::GetActions() const {
|
2018-01-22 18:48:12 +00:00
|
|
|
return actions_;
|
|
|
|
}
|
|
|
|
|
2018-01-16 19:26:41 +00:00
|
|
|
base::string16 Notification::GetCloseButtonText() const {
|
|
|
|
return close_button_text_;
|
|
|
|
}
|
|
|
|
|
2017-04-23 12:16:19 +00:00
|
|
|
// Setters
|
2017-05-30 09:06:51 +00:00
|
|
|
void Notification::SetTitle(const base::string16& new_title) {
|
2017-04-24 03:07:42 +00:00
|
|
|
title_ = new_title;
|
|
|
|
}
|
2017-05-31 07:17:29 +00:00
|
|
|
|
2017-06-30 13:59:46 +00:00
|
|
|
void Notification::SetSubtitle(const base::string16& new_subtitle) {
|
|
|
|
subtitle_ = new_subtitle;
|
|
|
|
}
|
|
|
|
|
2017-05-30 09:06:51 +00:00
|
|
|
void Notification::SetBody(const base::string16& new_body) {
|
2017-04-24 03:07:42 +00:00
|
|
|
body_ = new_body;
|
|
|
|
}
|
2017-05-31 07:17:29 +00:00
|
|
|
|
2017-04-24 03:07:42 +00:00
|
|
|
void Notification::SetSilent(bool new_silent) {
|
|
|
|
silent_ = new_silent;
|
|
|
|
}
|
2017-05-31 07:17:29 +00:00
|
|
|
|
2018-01-22 18:48:12 +00:00
|
|
|
void Notification::SetHasReply(bool new_has_reply) {
|
|
|
|
has_reply_ = new_has_reply;
|
|
|
|
}
|
|
|
|
|
2019-10-09 15:22:21 +00:00
|
|
|
void Notification::SetTimeoutType(const base::string16& new_timeout_type) {
|
|
|
|
timeout_type_ = new_timeout_type;
|
|
|
|
}
|
|
|
|
|
2017-05-30 09:12:36 +00:00
|
|
|
void Notification::SetReplyPlaceholder(const base::string16& new_placeholder) {
|
|
|
|
reply_placeholder_ = new_placeholder;
|
2017-04-24 03:07:42 +00:00
|
|
|
}
|
2017-05-31 07:17:29 +00:00
|
|
|
|
2018-01-22 18:48:12 +00:00
|
|
|
void Notification::SetSound(const base::string16& new_sound) {
|
|
|
|
sound_ = new_sound;
|
2017-04-24 03:07:42 +00:00
|
|
|
}
|
2017-04-23 12:16:19 +00:00
|
|
|
|
2019-09-19 05:35:20 +00:00
|
|
|
void Notification::SetUrgency(const base::string16& new_urgency) {
|
|
|
|
urgency_ = new_urgency;
|
|
|
|
}
|
|
|
|
|
2017-06-23 10:39:42 +00:00
|
|
|
void Notification::SetActions(
|
2019-06-19 21:23:04 +00:00
|
|
|
const std::vector<electron::NotificationAction>& actions) {
|
2017-06-23 10:39:42 +00:00
|
|
|
actions_ = actions;
|
|
|
|
}
|
|
|
|
|
2018-01-16 19:26:41 +00:00
|
|
|
void Notification::SetCloseButtonText(const base::string16& text) {
|
|
|
|
close_button_text_ = text;
|
|
|
|
}
|
|
|
|
|
2017-06-23 10:39:42 +00:00
|
|
|
void Notification::NotificationAction(int index) {
|
|
|
|
Emit("action", index);
|
|
|
|
}
|
|
|
|
|
2017-05-30 09:06:51 +00:00
|
|
|
void Notification::NotificationClick() {
|
2017-04-23 12:16:19 +00:00
|
|
|
Emit("click");
|
|
|
|
}
|
|
|
|
|
2017-05-31 07:17:29 +00:00
|
|
|
void Notification::NotificationReplied(const std::string& reply) {
|
2017-04-23 12:16:19 +00:00
|
|
|
Emit("reply", reply);
|
|
|
|
}
|
|
|
|
|
2017-05-30 09:06:51 +00:00
|
|
|
void Notification::NotificationDisplayed() {
|
2017-04-23 12:16:19 +00:00
|
|
|
Emit("show");
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void Notification::NotificationDestroyed() {}
|
2017-05-29 11:33:43 +00:00
|
|
|
|
2017-05-31 07:17:29 +00:00
|
|
|
void Notification::NotificationClosed() {
|
2017-10-24 05:37:03 +00:00
|
|
|
Emit("close");
|
2017-05-31 07:17:29 +00:00
|
|
|
}
|
2017-05-29 11:18:18 +00:00
|
|
|
|
2017-10-27 03:22:21 +00:00
|
|
|
void Notification::Close() {
|
|
|
|
if (notification_) {
|
|
|
|
notification_->Dismiss();
|
|
|
|
notification_.reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-29 11:18:18 +00:00
|
|
|
// Showing notifications
|
|
|
|
void Notification::Show() {
|
2017-10-27 03:22:21 +00:00
|
|
|
Close();
|
2017-05-30 09:06:51 +00:00
|
|
|
if (presenter_) {
|
2018-04-08 19:24:08 +00:00
|
|
|
notification_ = presenter_->CreateNotification(this, base::GenerateGUID());
|
2017-05-30 09:06:51 +00:00
|
|
|
if (notification_) {
|
2019-06-19 21:23:04 +00:00
|
|
|
electron::NotificationOptions options;
|
2017-06-24 11:03:27 +00:00
|
|
|
options.title = title_;
|
2017-06-30 13:59:46 +00:00
|
|
|
options.subtitle = subtitle_;
|
2017-06-24 11:03:27 +00:00
|
|
|
options.msg = body_;
|
|
|
|
options.icon_url = GURL();
|
|
|
|
options.icon = icon_.AsBitmap();
|
|
|
|
options.silent = silent_;
|
|
|
|
options.has_reply = has_reply_;
|
2019-10-09 15:22:21 +00:00
|
|
|
options.timeout_type = timeout_type_;
|
2017-06-24 11:03:27 +00:00
|
|
|
options.reply_placeholder = reply_placeholder_;
|
|
|
|
options.actions = actions_;
|
2017-08-18 00:28:14 +00:00
|
|
|
options.sound = sound_;
|
2018-01-16 19:26:41 +00:00
|
|
|
options.close_button_text = close_button_text_;
|
2019-09-19 05:35:20 +00:00
|
|
|
options.urgency = urgency_;
|
2017-06-24 11:03:27 +00:00
|
|
|
notification_->Show(options);
|
2017-05-30 09:06:51 +00:00
|
|
|
}
|
2017-05-29 11:18:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-30 10:27:24 +00:00
|
|
|
bool Notification::IsSupported() {
|
2018-10-17 18:01:11 +00:00
|
|
|
return !!static_cast<AtomBrowserClient*>(AtomBrowserClient::Get())
|
|
|
|
->GetNotificationPresenter();
|
2017-05-30 10:27:24 +00:00
|
|
|
}
|
|
|
|
|
2017-04-23 12:16:19 +00:00
|
|
|
// static
|
|
|
|
void Notification::BuildPrototype(v8::Isolate* isolate,
|
2017-04-24 03:07:42 +00:00
|
|
|
v8::Local<v8::FunctionTemplate> prototype) {
|
2019-10-02 00:30:55 +00:00
|
|
|
prototype->SetClassName(gin::StringToV8(isolate, "Notification"));
|
2019-09-04 02:14:16 +00:00
|
|
|
gin_helper::Destroyable::MakeDestroyable(isolate, prototype);
|
2019-10-02 00:30:55 +00:00
|
|
|
gin_helper::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
2017-04-23 12:16:19 +00:00
|
|
|
.SetMethod("show", &Notification::Show)
|
2017-10-27 03:22:21 +00:00
|
|
|
.SetMethod("close", &Notification::Close)
|
2017-04-23 12:16:19 +00:00
|
|
|
.SetProperty("title", &Notification::GetTitle, &Notification::SetTitle)
|
2017-06-30 13:59:46 +00:00
|
|
|
.SetProperty("subtitle", &Notification::GetSubtitle,
|
|
|
|
&Notification::SetSubtitle)
|
2017-04-23 12:16:19 +00:00
|
|
|
.SetProperty("body", &Notification::GetBody, &Notification::SetBody)
|
2018-04-18 01:55:30 +00:00
|
|
|
.SetProperty("silent", &Notification::GetSilent, &Notification::SetSilent)
|
2017-04-24 03:07:42 +00:00
|
|
|
.SetProperty("hasReply", &Notification::GetHasReply,
|
2017-06-23 10:39:42 +00:00
|
|
|
&Notification::SetHasReply)
|
2019-10-09 15:22:21 +00:00
|
|
|
.SetProperty("timeoutType", &Notification::GetTimeoutType,
|
|
|
|
&Notification::SetTimeoutType)
|
2018-01-22 18:48:12 +00:00
|
|
|
.SetProperty("replyPlaceholder", &Notification::GetReplyPlaceholder,
|
|
|
|
&Notification::SetReplyPlaceholder)
|
2019-09-19 05:35:20 +00:00
|
|
|
.SetProperty("urgency", &Notification::GetUrgency,
|
|
|
|
&Notification::SetUrgency)
|
2018-04-18 01:55:30 +00:00
|
|
|
.SetProperty("sound", &Notification::GetSound, &Notification::SetSound)
|
2018-01-22 18:48:12 +00:00
|
|
|
.SetProperty("actions", &Notification::GetActions,
|
|
|
|
&Notification::SetActions)
|
2018-01-16 19:26:41 +00:00
|
|
|
.SetProperty("closeButtonText", &Notification::GetCloseButtonText,
|
|
|
|
&Notification::SetCloseButtonText);
|
2017-04-23 12:16:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2017-04-23 12:16:19 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
using electron::api::Notification;
|
2017-04-23 12:16:19 +00:00
|
|
|
|
2017-04-24 03:07:42 +00:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2017-04-23 12:16:19 +00:00
|
|
|
v8::Isolate* isolate = context->GetIsolate();
|
2019-04-24 18:29:59 +00:00
|
|
|
Notification::SetConstructor(isolate,
|
|
|
|
base::BindRepeating(&Notification::New));
|
2017-04-23 12:16:19 +00:00
|
|
|
|
2019-10-02 00:30:55 +00:00
|
|
|
gin_helper::Dictionary dict(isolate, exports);
|
2019-01-09 19:17:05 +00:00
|
|
|
dict.Set("Notification", Notification::GetConstructor(isolate)
|
|
|
|
->GetFunction(context)
|
|
|
|
.ToLocalChecked());
|
2017-05-30 10:27:24 +00:00
|
|
|
|
|
|
|
dict.SetMethod("isSupported", &Notification::IsSupported);
|
2017-04-23 12:16:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2019-03-08 18:29:52 +00:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(atom_common_notification, Initialize)
|