2015-12-24 19:16:07 -07: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.
|
2015-12-24 06:55:18 -07:00
|
|
|
|
2020-07-13 19:13:34 -06:00
|
|
|
#include "base/logging.h"
|
|
|
|
|
2019-06-19 14:46:59 -06:00
|
|
|
#include "shell/browser/notifications/mac/notification_presenter_mac.h"
|
2015-12-24 06:55:18 -07:00
|
|
|
|
2019-06-19 14:46:59 -06:00
|
|
|
#include "shell/browser/notifications/mac/cocoa_notification.h"
|
|
|
|
#include "shell/browser/notifications/mac/notification_center_delegate.h"
|
2015-12-24 06:55:18 -07:00
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
namespace electron {
|
2015-12-24 06:55:18 -07:00
|
|
|
|
2015-12-24 19:16:07 -07:00
|
|
|
// static
|
2015-12-24 06:55:18 -07:00
|
|
|
NotificationPresenter* NotificationPresenter::Create() {
|
|
|
|
return new NotificationPresenterMac;
|
|
|
|
}
|
|
|
|
|
2015-12-24 19:16:07 -07:00
|
|
|
CocoaNotification* NotificationPresenterMac::GetNotification(
|
|
|
|
NSUserNotification* ns_notification) {
|
|
|
|
for (Notification* notification : notifications()) {
|
2018-04-17 16:41:47 -06:00
|
|
|
auto* native_notification = static_cast<CocoaNotification*>(notification);
|
2017-10-06 21:45:46 -06:00
|
|
|
if ([native_notification->notification().identifier
|
2018-04-20 12:47:04 -06:00
|
|
|
isEqual:ns_notification.identifier])
|
2015-12-24 19:16:07 -07:00
|
|
|
return native_notification;
|
|
|
|
}
|
2017-12-13 11:31:59 -07:00
|
|
|
|
|
|
|
if (getenv("ELECTRON_DEBUG_NOTIFICATIONS")) {
|
2018-04-20 12:47:04 -06:00
|
|
|
LOG(INFO) << "Could not find notification for "
|
|
|
|
<< [ns_notification.identifier UTF8String];
|
2017-12-13 11:31:59 -07:00
|
|
|
}
|
|
|
|
|
2015-12-24 19:16:07 -07:00
|
|
|
return nullptr;
|
2015-12-24 06:55:18 -07:00
|
|
|
}
|
|
|
|
|
2015-12-24 19:16:07 -07:00
|
|
|
NotificationPresenterMac::NotificationPresenterMac()
|
|
|
|
: notification_center_delegate_(
|
|
|
|
[[NotificationCenterDelegate alloc] initWithPresenter:this]) {
|
|
|
|
NSUserNotificationCenter.defaultUserNotificationCenter.delegate =
|
|
|
|
notification_center_delegate_;
|
2015-12-24 06:55:18 -07:00
|
|
|
}
|
|
|
|
|
2015-12-24 19:16:07 -07:00
|
|
|
NotificationPresenterMac::~NotificationPresenterMac() {
|
|
|
|
NSUserNotificationCenter.defaultUserNotificationCenter.delegate = nil;
|
2015-12-24 06:55:18 -07:00
|
|
|
}
|
|
|
|
|
2017-04-03 02:38:21 -06:00
|
|
|
Notification* NotificationPresenterMac::CreateNotificationObject(
|
|
|
|
NotificationDelegate* delegate) {
|
2017-01-10 08:34:41 -07:00
|
|
|
return new CocoaNotification(delegate, this);
|
|
|
|
}
|
|
|
|
|
2019-06-19 15:23:04 -06:00
|
|
|
} // namespace electron
|