2013-03-28 22:03:58 +00:00
|
|
|
#import "browser/notification_presenter_mac.h"
|
2013-03-28 21:17:46 +00:00
|
|
|
|
|
|
|
#import "base/strings/sys_string_conversions.h"
|
2013-03-28 21:20:06 +00:00
|
|
|
#import "content/public/browser/render_view_host.h"
|
2013-03-28 21:17:46 +00:00
|
|
|
#import "content/public/common/show_desktop_notification_params.h"
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
2013-03-28 22:08:34 +00:00
|
|
|
@interface BRYUserNotificationCenterDelegate : NSObject <NSUserNotificationCenterDelegate>
|
|
|
|
@end
|
|
|
|
|
2013-03-28 21:17:46 +00:00
|
|
|
namespace brightray {
|
|
|
|
|
2013-03-29 12:32:00 +00:00
|
|
|
namespace {
|
|
|
|
|
2013-03-29 12:59:21 +00:00
|
|
|
struct NotificationID {
|
|
|
|
int render_process_id;
|
|
|
|
int render_view_id;
|
|
|
|
int notification_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
NSString * const kRenderProcessIDKey = @"RenderProcessID";
|
|
|
|
NSString * const kRenderViewIDKey = @"RenderViewID";
|
|
|
|
NSString * const kNotificationIDKey = @"NotificationID";
|
|
|
|
|
2013-03-29 12:32:00 +00:00
|
|
|
scoped_nsobject<NSUserNotification> CreateUserNotification(
|
|
|
|
const content::ShowDesktopNotificationHostMsgParams& params,
|
|
|
|
int render_process_id,
|
|
|
|
int render_view_id) {
|
|
|
|
auto notification = [[NSUserNotification alloc] init];
|
|
|
|
notification.title = base::SysUTF16ToNSString(params.title);
|
|
|
|
notification.informativeText = base::SysUTF16ToNSString(params.body);
|
2013-03-29 12:59:21 +00:00
|
|
|
notification.userInfo = @{
|
|
|
|
kRenderProcessIDKey: @(render_process_id),
|
|
|
|
kRenderViewIDKey: @(render_view_id),
|
|
|
|
kNotificationIDKey: @(params.notification_id),
|
|
|
|
};
|
|
|
|
|
2013-03-29 12:32:00 +00:00
|
|
|
return scoped_nsobject<NSUserNotification>(notification);
|
|
|
|
}
|
|
|
|
|
2013-03-29 12:59:21 +00:00
|
|
|
NotificationID GetID(NSUserNotification* notification) {
|
|
|
|
NotificationID ID;
|
|
|
|
ID.render_process_id = [[notification.userInfo objectForKey:kRenderProcessIDKey] intValue];
|
|
|
|
ID.render_view_id = [[notification.userInfo objectForKey:kRenderViewIDKey] intValue];
|
|
|
|
ID.notification_id = [[notification.userInfo objectForKey:kNotificationIDKey] intValue];
|
|
|
|
return ID;
|
|
|
|
}
|
|
|
|
|
2013-03-29 12:32:00 +00:00
|
|
|
}
|
|
|
|
|
2013-03-28 22:03:58 +00:00
|
|
|
NotificationPresenter* NotificationPresenter::Create() {
|
|
|
|
return new NotificationPresenterMac;
|
|
|
|
}
|
|
|
|
|
2013-03-28 22:08:34 +00:00
|
|
|
NotificationPresenterMac::NotificationPresenterMac()
|
|
|
|
: delegate_([[BRYUserNotificationCenterDelegate alloc] init]) {
|
|
|
|
NSUserNotificationCenter.defaultUserNotificationCenter.delegate = delegate_;
|
2013-03-28 22:03:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NotificationPresenterMac::~NotificationPresenterMac() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotificationPresenterMac::ShowNotification(
|
2013-03-28 21:17:46 +00:00
|
|
|
const content::ShowDesktopNotificationHostMsgParams& params,
|
|
|
|
int render_process_id,
|
2013-03-28 21:49:29 +00:00
|
|
|
int render_view_id) {
|
2013-03-29 12:32:00 +00:00
|
|
|
auto notification = CreateUserNotification(params, render_process_id, render_view_id);
|
2013-03-28 21:17:46 +00:00
|
|
|
[NSUserNotificationCenter.defaultUserNotificationCenter deliverNotification:notification];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2013-03-28 22:08:34 +00:00
|
|
|
|
|
|
|
@implementation BRYUserNotificationCenterDelegate
|
|
|
|
|
2013-03-29 12:59:21 +00:00
|
|
|
- (void)userNotificationCenter:(NSUserNotificationCenter *)center didDeliverNotification:(NSUserNotification *)notification {
|
|
|
|
auto ID = brightray::GetID(notification);
|
|
|
|
|
|
|
|
auto host = content::RenderViewHost::FromID(ID.render_process_id, ID.render_view_id);
|
|
|
|
if (!host)
|
|
|
|
return;
|
|
|
|
|
|
|
|
host->DesktopNotificationPostDisplay(ID.notification_id);
|
|
|
|
}
|
|
|
|
|
2013-03-29 13:02:40 +00:00
|
|
|
- (void)userNotificationCenter:(NSUserNotificationCenter *)center didActivateNotification:(NSUserNotification *)notification {
|
|
|
|
auto ID = brightray::GetID(notification);
|
|
|
|
|
|
|
|
auto host = content::RenderViewHost::FromID(ID.render_process_id, ID.render_view_id);
|
|
|
|
if (!host)
|
|
|
|
return;
|
|
|
|
|
|
|
|
host->DesktopNotificationPostClick(ID.notification_id);
|
|
|
|
}
|
|
|
|
|
2013-03-28 22:08:34 +00:00
|
|
|
- (BOOL)userNotificationCenter:(NSUserNotificationCenter *)center shouldPresentNotification:(NSUserNotification *)notification {
|
|
|
|
// Display notifications even if the app is active.
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|