2015-12-25 03:52:19 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2017-05-18 22:58:12 +00:00
|
|
|
#include "brightray/browser/linux/libnotify_notification.h"
|
2015-12-25 03:52:19 +00:00
|
|
|
|
2018-02-20 13:53:10 +00:00
|
|
|
#include <set>
|
|
|
|
#include <string>
|
2017-06-23 10:39:42 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2018-03-12 00:33:06 +00:00
|
|
|
#include "base/environment.h"
|
2015-12-25 03:52:19 +00:00
|
|
|
#include "base/files/file_enumerator.h"
|
2018-02-20 13:53:10 +00:00
|
|
|
#include "base/logging.h"
|
2015-12-25 03:52:19 +00:00
|
|
|
#include "base/strings/string_util.h"
|
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2017-05-18 22:58:12 +00:00
|
|
|
#include "brightray/browser/notification_delegate.h"
|
|
|
|
#include "brightray/common/application_info.h"
|
2018-03-12 00:33:06 +00:00
|
|
|
#include "chrome/browser/ui/libgtkui/gtk_util.h"
|
2017-01-26 10:54:24 +00:00
|
|
|
#include "chrome/browser/ui/libgtkui/skia_utils_gtk.h"
|
2015-12-25 03:52:19 +00:00
|
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
namespace {
|
2016-05-17 11:30:53 +00:00
|
|
|
|
2016-04-13 02:43:22 +00:00
|
|
|
LibNotifyLoader libnotify_loader_;
|
2015-12-25 03:52:19 +00:00
|
|
|
|
2018-02-20 13:53:10 +00:00
|
|
|
const std::set<std::string>& GetServerCapabilities() {
|
|
|
|
static std::set<std::string> caps;
|
|
|
|
if (caps.empty()) {
|
|
|
|
auto capabilities = libnotify_loader_.notify_get_server_caps();
|
|
|
|
for (auto l=capabilities; l != nullptr; l=l->next)
|
|
|
|
caps.insert(static_cast<const char*>(l->data));
|
|
|
|
g_list_free_full(capabilities, g_free);
|
|
|
|
}
|
|
|
|
return caps;
|
|
|
|
}
|
2016-04-14 16:24:00 +00:00
|
|
|
|
2018-02-20 13:53:10 +00:00
|
|
|
bool HasCapability(const std::string& capability) {
|
|
|
|
return GetServerCapabilities().count(capability) != 0;
|
2016-04-14 16:24:00 +00:00
|
|
|
}
|
|
|
|
|
2016-04-13 02:43:22 +00:00
|
|
|
bool NotifierSupportsActions() {
|
2015-12-25 03:52:19 +00:00
|
|
|
if (getenv("ELECTRON_USE_UBUNTU_NOTIFIER"))
|
2016-04-13 02:43:22 +00:00
|
|
|
return false;
|
|
|
|
|
2018-02-20 13:53:10 +00:00
|
|
|
return HasCapability("actions");
|
2015-12-25 03:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void log_and_clear_error(GError* error, const char* context) {
|
|
|
|
LOG(ERROR) << context
|
|
|
|
<< ": domain=" << error->domain
|
|
|
|
<< " code=" << error->code
|
|
|
|
<< " message=\"" << error->message << '"';
|
|
|
|
g_error_free(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// static
|
|
|
|
bool LibnotifyNotification::Initialize() {
|
2016-05-17 11:30:53 +00:00
|
|
|
if (!libnotify_loader_.Load("libnotify.so.4") && // most common one
|
|
|
|
!libnotify_loader_.Load("libnotify.so.5") &&
|
2015-12-25 03:52:19 +00:00
|
|
|
!libnotify_loader_.Load("libnotify.so.1") &&
|
|
|
|
!libnotify_loader_.Load("libnotify.so")) {
|
2018-02-20 13:53:10 +00:00
|
|
|
LOG(WARNING) << "Unable to find libnotify; notifications disabled";
|
2015-12-25 03:52:19 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!libnotify_loader_.notify_is_initted() &&
|
|
|
|
!libnotify_loader_.notify_init(GetApplicationName().c_str())) {
|
2018-02-20 13:53:10 +00:00
|
|
|
LOG(WARNING) << "Unable to initialize libnotify; notifications disabled";
|
2015-12-25 03:52:19 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
LibnotifyNotification::LibnotifyNotification(NotificationDelegate* delegate,
|
|
|
|
NotificationPresenter* presenter)
|
|
|
|
: Notification(delegate, presenter),
|
|
|
|
notification_(nullptr) {
|
|
|
|
}
|
|
|
|
|
|
|
|
LibnotifyNotification::~LibnotifyNotification() {
|
2016-10-25 13:32:06 +00:00
|
|
|
if (notification_) {
|
|
|
|
g_signal_handlers_disconnect_by_data(notification_, this);
|
|
|
|
g_object_unref(notification_);
|
|
|
|
}
|
2015-12-25 03:52:19 +00:00
|
|
|
}
|
|
|
|
|
2017-06-24 11:03:27 +00:00
|
|
|
void LibnotifyNotification::Show(const NotificationOptions& options) {
|
2015-12-25 03:52:19 +00:00
|
|
|
notification_ = libnotify_loader_.notify_notification_new(
|
2017-06-24 11:03:27 +00:00
|
|
|
base::UTF16ToUTF8(options.title).c_str(),
|
|
|
|
base::UTF16ToUTF8(options.msg).c_str(),
|
2015-12-25 03:52:19 +00:00
|
|
|
nullptr);
|
|
|
|
|
|
|
|
g_signal_connect(
|
|
|
|
notification_, "closed", G_CALLBACK(OnNotificationClosedThunk), this);
|
|
|
|
|
2016-04-13 02:43:22 +00:00
|
|
|
// NB: On Unity and on any other DE using Notify-OSD, adding a notification
|
|
|
|
// action will cause the notification to display as a modal dialog box.
|
|
|
|
if (NotifierSupportsActions()) {
|
2015-12-25 03:52:19 +00:00
|
|
|
libnotify_loader_.notify_notification_add_action(
|
|
|
|
notification_, "default", "View", OnNotificationViewThunk, this,
|
|
|
|
nullptr);
|
|
|
|
}
|
|
|
|
|
2017-06-24 11:03:27 +00:00
|
|
|
if (!options.icon.drawsNothing()) {
|
|
|
|
GdkPixbuf* pixbuf = libgtkui::GdkPixbufFromSkBitmap(options.icon);
|
2015-12-25 03:52:19 +00:00
|
|
|
libnotify_loader_.notify_notification_set_image_from_pixbuf(
|
|
|
|
notification_, pixbuf);
|
|
|
|
libnotify_loader_.notify_notification_set_timeout(
|
|
|
|
notification_, NOTIFY_EXPIRES_DEFAULT);
|
|
|
|
g_object_unref(pixbuf);
|
|
|
|
}
|
|
|
|
|
2017-06-24 11:03:27 +00:00
|
|
|
if (!options.tag.empty()) {
|
|
|
|
GQuark id = g_quark_from_string(options.tag.c_str());
|
2016-04-13 04:08:35 +00:00
|
|
|
g_object_set(G_OBJECT(notification_), "id", id, NULL);
|
|
|
|
}
|
|
|
|
|
2016-04-14 16:31:02 +00:00
|
|
|
// Always try to append notifications.
|
|
|
|
// Unique tags can be used to prevent this.
|
|
|
|
if (HasCapability("append")) {
|
|
|
|
libnotify_loader_.notify_notification_set_hint_string(
|
|
|
|
notification_, "append", "true");
|
|
|
|
} else if (HasCapability("x-canonical-append")) {
|
|
|
|
libnotify_loader_.notify_notification_set_hint_string(
|
|
|
|
notification_, "x-canonical-append", "true");
|
|
|
|
}
|
|
|
|
|
2018-03-12 00:33:06 +00:00
|
|
|
// Send the desktop name to identify the application
|
|
|
|
// The desktop-entry is the part before the .desktop
|
|
|
|
std::unique_ptr<base::Environment> env(base::Environment::Create());
|
|
|
|
std::string desktop_id = libgtkui::GetDesktopName(env.get());
|
|
|
|
if (!desktop_id.empty()) {
|
|
|
|
const std::string suffix{".desktop"};
|
|
|
|
if (base::EndsWith(desktop_id, suffix,
|
|
|
|
base::CompareCase::INSENSITIVE_ASCII)) {
|
|
|
|
desktop_id.resize(desktop_id.size() - suffix.size());
|
|
|
|
}
|
|
|
|
libnotify_loader_.notify_notification_set_hint_string(
|
|
|
|
notification_, "desktop-entry", desktop_id.c_str());
|
|
|
|
}
|
|
|
|
|
2015-12-25 03:52:19 +00:00
|
|
|
GError* error = nullptr;
|
|
|
|
libnotify_loader_.notify_notification_show(notification_, &error);
|
|
|
|
if (error) {
|
|
|
|
log_and_clear_error(error, "notify_notification_show");
|
|
|
|
NotificationFailed();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-30 09:06:51 +00:00
|
|
|
if (delegate())
|
|
|
|
delegate()->NotificationDisplayed();
|
2015-12-25 03:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void LibnotifyNotification::Dismiss() {
|
2016-10-28 18:24:47 +00:00
|
|
|
if (!notification_) {
|
|
|
|
Destroy();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-12-25 03:52:19 +00:00
|
|
|
GError* error = nullptr;
|
|
|
|
libnotify_loader_.notify_notification_close(notification_, &error);
|
|
|
|
if (error) {
|
|
|
|
log_and_clear_error(error, "notify_notification_close");
|
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LibnotifyNotification::OnNotificationClosed(
|
|
|
|
NotifyNotification* notification) {
|
2016-04-15 07:14:13 +00:00
|
|
|
NotificationDismissed();
|
2015-12-25 03:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void LibnotifyNotification::OnNotificationView(
|
|
|
|
NotifyNotification* notification, char* action) {
|
2016-04-15 07:14:13 +00:00
|
|
|
NotificationClicked();
|
2015-12-25 03:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace brightray
|