electron/atom/browser/api/atom_api_notification.cc

175 lines
4.7 KiB
C++
Raw Normal View History

// Copyright (c) 2014 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/browser/api/atom_api_notification.h"
#include "atom/browser/api/atom_api_menu.h"
#include "atom/browser/browser.h"
#include "atom/common/native_mate_converters/gfx_converter.h"
#include "atom/common/native_mate_converters/image_converter.h"
#include "atom/common/native_mate_converters/string16_converter.h"
#include "atom/common/node_includes.h"
2017-05-29 11:18:18 +00:00
#include "base/strings/utf_string_conversions.h"
2017-05-30 09:06:51 +00:00
#include "brightray/browser/browser_client.h"
#include "native_mate/constructor.h"
#include "native_mate/dictionary.h"
2017-05-29 11:18:18 +00:00
#include "url/gurl.h"
namespace atom {
namespace api {
2017-04-24 03:07:42 +00:00
Notification::Notification(v8::Isolate* isolate,
v8::Local<v8::Object> wrapper,
mate::Arguments* args) {
InitWith(isolate, wrapper);
2017-05-31 07:17:29 +00:00
presenter_ = brightray::BrowserClient::Get()->GetNotificationPresenter();
mate::Dictionary opts;
if (args->GetNext(&opts)) {
opts.Get("title", &title_);
opts.Get("body", &body_);
has_icon_ = opts.Get("icon", &icon_);
if (has_icon_) {
opts.Get("icon", &icon_path_);
}
opts.Get("silent", &silent_);
opts.Get("replyPlaceholder", &reply_placeholder_);
opts.Get("hasReply", &has_reply_);
}
}
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
}
// static
mate::WrappableBase* Notification::New(mate::Arguments* args) {
if (!Browser::Get()->is_ready()) {
args->ThrowError("Cannot create Notification before app is ready");
return nullptr;
}
return new Notification(args->isolate(), args->GetThis(), args);
}
// Getters
2017-04-24 03:07:42 +00:00
base::string16 Notification::GetTitle() {
return title_;
}
2017-05-31 07:17:29 +00:00
2017-04-24 03:07:42 +00:00
base::string16 Notification::GetBody() {
return body_;
}
2017-05-31 07:17:29 +00:00
2017-04-24 03:07:42 +00:00
bool Notification::GetSilent() {
return silent_;
}
2017-05-31 07:17:29 +00:00
2017-04-24 03:07:42 +00:00
base::string16 Notification::GetReplyPlaceholder() {
return reply_placeholder_;
}
2017-05-31 07:17:29 +00:00
2017-04-24 03:07:42 +00:00
bool Notification::GetHasReply() {
return has_reply_;
}
// 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-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
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
2017-04-24 03:07:42 +00:00
void Notification::SetHasReply(bool new_has_reply) {
has_reply_ = new_has_reply;
}
2017-05-30 09:06:51 +00:00
void Notification::NotificationClick() {
Emit("click");
}
2017-05-31 07:17:29 +00:00
void Notification::NotificationReplied(const std::string& reply) {
Emit("reply", reply);
}
2017-05-30 09:06:51 +00:00
void Notification::NotificationDisplayed() {
Emit("show");
}
2017-05-30 09:06:51 +00:00
void Notification::NotificationDestroyed() {
2017-05-29 11:33:43 +00:00
Emit("close");
}
2017-05-31 07:17:29 +00:00
void Notification::NotificationClosed() {
}
2017-05-29 11:18:18 +00:00
// Showing notifications
void Notification::Show() {
2017-05-30 09:06:51 +00:00
if (presenter_) {
notification_ = presenter_->CreateNotification(this);
if (notification_) {
2017-05-30 09:12:36 +00:00
notification_->Show(title_, body_, "", GURL(), icon_.AsBitmap(), silent_,
has_reply_, reply_placeholder_);
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() {
return !!brightray::BrowserClient::Get()->GetNotificationPresenter();
}
// static
void Notification::BuildPrototype(v8::Isolate* isolate,
2017-04-24 03:07:42 +00:00
v8::Local<v8::FunctionTemplate> prototype) {
prototype->SetClassName(mate::StringToV8(isolate, "Notification"));
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
.MakeDestroyable()
.SetMethod("show", &Notification::Show)
.SetProperty("title", &Notification::GetTitle, &Notification::SetTitle)
.SetProperty("body", &Notification::GetBody, &Notification::SetBody)
.SetProperty("silent", &Notification::GetSilent, &Notification::SetSilent)
2017-04-24 03:07:42 +00:00
.SetProperty("replyPlaceholder", &Notification::GetReplyPlaceholder,
&Notification::SetReplyPlaceholder)
.SetProperty("hasReply", &Notification::GetHasReply,
&Notification::SetHasReply);
}
} // namespace api
} // namespace atom
namespace {
using atom::api::Notification;
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) {
v8::Isolate* isolate = context->GetIsolate();
Notification::SetConstructor(isolate, base::Bind(&Notification::New));
mate::Dictionary dict(isolate, exports);
2017-04-24 03:07:42 +00:00
dict.Set("Notification",
Notification::GetConstructor(isolate)->GetFunction());
2017-05-30 10:27:24 +00:00
dict.SetMethod("isSupported", &Notification::IsSupported);
}
} // namespace
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_common_notification, Initialize)