2015-12-24 13:55:18 +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.
|
|
|
|
|
|
|
|
#include "browser/mac/cocoa_notification.h"
|
|
|
|
|
|
|
|
#include "base/mac/mac_util.h"
|
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2015-12-25 02:16:07 +00:00
|
|
|
#include "browser/notification_delegate.h"
|
|
|
|
#include "browser/notification_presenter.h"
|
2015-12-24 13:55:18 +00:00
|
|
|
#include "skia/ext/skia_utils_mac.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
// static
|
2015-12-25 02:16:07 +00:00
|
|
|
Notification* Notification::Create(NotificationDelegate* delegate,
|
|
|
|
NotificationPresenter* presenter) {
|
|
|
|
return new CocoaNotification(delegate, presenter);
|
2015-12-24 13:55:18 +00:00
|
|
|
}
|
|
|
|
|
2015-12-25 02:16:07 +00:00
|
|
|
CocoaNotification::CocoaNotification(NotificationDelegate* delegate,
|
|
|
|
NotificationPresenter* presenter)
|
|
|
|
: Notification(delegate, presenter) {
|
2015-12-24 13:55:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CocoaNotification::~CocoaNotification() {
|
2015-12-25 03:12:25 +00:00
|
|
|
[NSUserNotificationCenter.defaultUserNotificationCenter
|
|
|
|
removeDeliveredNotification:notification_];
|
2015-12-24 13:55:18 +00:00
|
|
|
}
|
|
|
|
|
2015-12-25 02:16:07 +00:00
|
|
|
void CocoaNotification::Show(const base::string16& title,
|
|
|
|
const base::string16& body,
|
2016-04-13 03:31:56 +00:00
|
|
|
const std::string& tag,
|
2015-12-25 03:05:48 +00:00
|
|
|
const GURL& icon_url,
|
2016-01-21 00:36:41 +00:00
|
|
|
const SkBitmap& icon,
|
|
|
|
const bool silent) {
|
2015-12-24 13:55:18 +00:00
|
|
|
notification_.reset([[NSUserNotification alloc] init]);
|
|
|
|
[notification_ setTitle:base::SysUTF16ToNSString(title)];
|
|
|
|
[notification_ setInformativeText:base::SysUTF16ToNSString(body)];
|
|
|
|
|
|
|
|
if ([notification_ respondsToSelector:@selector(setContentImage:)] &&
|
|
|
|
!icon.drawsNothing()) {
|
2016-03-08 11:59:29 +00:00
|
|
|
NSImage* image = skia::SkBitmapToNSImageWithColorSpace(
|
2015-12-24 13:55:18 +00:00
|
|
|
icon, base::mac::GetGenericRGBColorSpace());
|
|
|
|
[notification_ setContentImage:image];
|
|
|
|
}
|
2016-03-08 11:59:29 +00:00
|
|
|
|
2016-01-21 00:36:41 +00:00
|
|
|
if (silent) {
|
|
|
|
[notification_ setSoundName:nil];
|
|
|
|
} else {
|
|
|
|
[notification_ setSoundName:NSUserNotificationDefaultSoundName];
|
|
|
|
}
|
2015-12-24 13:55:18 +00:00
|
|
|
|
|
|
|
[NSUserNotificationCenter.defaultUserNotificationCenter
|
|
|
|
deliverNotification:notification_];
|
|
|
|
}
|
|
|
|
|
2015-12-25 02:16:07 +00:00
|
|
|
void CocoaNotification::Dismiss() {
|
2015-12-25 03:12:25 +00:00
|
|
|
[NSUserNotificationCenter.defaultUserNotificationCenter
|
|
|
|
removeDeliveredNotification:notification_];
|
2016-04-15 07:14:13 +00:00
|
|
|
NotificationDismissed();
|
2015-12-24 13:55:18 +00:00
|
|
|
}
|
|
|
|
|
2016-04-15 07:14:13 +00:00
|
|
|
void CocoaNotification::NotificationDisplayed() {
|
2015-12-25 02:16:07 +00:00
|
|
|
delegate()->NotificationDisplayed();
|
2015-12-24 13:55:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace brightray
|