2015-12-22 12:45:09 +01:00
|
|
|
//
|
2017-02-02 23:28:41 +01:00
|
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
2015-12-22 12:45:09 +01:00
|
|
|
//
|
|
|
|
|
2016-10-10 22:02:09 +02:00
|
|
|
#import "NotificationsManager.h"
|
|
|
|
#import "Environment.h"
|
2016-11-12 18:22:29 +01:00
|
|
|
#import "OWSContactsManager.h"
|
2016-10-10 22:02:09 +02:00
|
|
|
#import "PropertyListPreferences.h"
|
|
|
|
#import "PushManager.h"
|
2016-11-12 18:22:29 +01:00
|
|
|
#import "Signal-Swift.h"
|
2015-12-22 12:45:09 +01:00
|
|
|
#import <AudioToolbox/AudioServices.h>
|
2016-04-08 09:47:41 +02:00
|
|
|
#import <SignalServiceKit/TSCall.h>
|
|
|
|
#import <SignalServiceKit/TSContactThread.h>
|
|
|
|
#import <SignalServiceKit/TSErrorMessage.h>
|
|
|
|
#import <SignalServiceKit/TSIncomingMessage.h>
|
|
|
|
#import <SignalServiceKit/TextSecureKitEnv.h>
|
2017-05-17 21:45:00 +02:00
|
|
|
#import <SignalServiceKit/Threading.h>
|
2015-12-22 12:45:09 +01:00
|
|
|
|
|
|
|
@interface NotificationsManager ()
|
|
|
|
|
2017-04-01 05:25:30 +02:00
|
|
|
@property (nonatomic) SystemSoundID newMessageSound;
|
2017-02-02 23:28:41 +01:00
|
|
|
@property (nonatomic, readonly) NSMutableDictionary<NSString *, UILocalNotification *> *currentNotifications;
|
2016-11-12 18:22:29 +01:00
|
|
|
@property (nonatomic, readonly) NotificationType notificationPreviewType;
|
2015-12-22 12:45:09 +01:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2017-04-01 05:25:30 +02:00
|
|
|
#pragma mark -
|
|
|
|
|
2015-12-22 12:45:09 +01:00
|
|
|
@implementation NotificationsManager
|
|
|
|
|
2016-07-19 18:12:18 +02:00
|
|
|
- (instancetype)init
|
|
|
|
{
|
2015-12-22 12:45:09 +01:00
|
|
|
self = [super init];
|
2016-07-19 18:12:18 +02:00
|
|
|
if (!self) {
|
|
|
|
return self;
|
2015-12-22 12:45:09 +01:00
|
|
|
}
|
|
|
|
|
2016-11-12 18:22:29 +01:00
|
|
|
_currentNotifications = [NSMutableDictionary new];
|
2016-09-11 22:53:12 +02:00
|
|
|
|
2016-07-19 18:12:18 +02:00
|
|
|
NSURL *newMessageURL = [[NSBundle mainBundle] URLForResource:@"NewMessage" withExtension:@"aifc"];
|
|
|
|
AudioServicesCreateSystemSoundID((__bridge CFURLRef)newMessageURL, &_newMessageSound);
|
|
|
|
|
2017-04-01 00:45:51 +02:00
|
|
|
OWSSingletonAssert();
|
|
|
|
|
2015-12-22 12:45:09 +01:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2016-11-12 18:22:29 +01:00
|
|
|
#pragma mark - Signal Calls
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify user for incoming WebRTC Call
|
|
|
|
*/
|
|
|
|
- (void)presentIncomingCall:(SignalCall *)call callerName:(NSString *)callerName
|
|
|
|
{
|
|
|
|
DDLogDebug(@"%@ incoming call from: %@", self.tag, call.remotePhoneNumber);
|
|
|
|
|
|
|
|
UILocalNotification *notification = [UILocalNotification new];
|
|
|
|
notification.category = PushManagerCategoriesIncomingCall;
|
2017-01-18 15:50:22 +01:00
|
|
|
// Rather than using notification sounds, we control the ringtone and repeat vibrations with the CallAudioManager.
|
|
|
|
// notification.soundName = @"r.caf";
|
2016-11-12 18:22:29 +01:00
|
|
|
NSString *localCallId = call.localId.UUIDString;
|
|
|
|
notification.userInfo = @{ PushManagerUserInfoKeysLocalCallId : localCallId };
|
|
|
|
|
|
|
|
NSString *alertMessage;
|
|
|
|
switch (self.notificationPreviewType) {
|
|
|
|
case NotificationNoNameNoPreview: {
|
|
|
|
alertMessage = NSLocalizedString(@"INCOMING_CALL", @"notification body");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case NotificationNameNoPreview:
|
|
|
|
case NotificationNamePreview: {
|
|
|
|
alertMessage =
|
|
|
|
[NSString stringWithFormat:NSLocalizedString(@"INCOMING_CALL_FROM", @"notification body"), callerName];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
notification.alertBody = [NSString stringWithFormat:@"☎️ %@", alertMessage];
|
|
|
|
|
|
|
|
[self presentNotification:notification identifier:localCallId];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify user for missed WebRTC Call
|
|
|
|
*/
|
|
|
|
- (void)presentMissedCall:(SignalCall *)call callerName:(NSString *)callerName
|
|
|
|
{
|
|
|
|
UILocalNotification *notification = [UILocalNotification new];
|
|
|
|
notification.category = PushManagerCategoriesMissedCall;
|
|
|
|
NSString *localCallId = call.localId.UUIDString;
|
|
|
|
notification.userInfo = @{
|
|
|
|
PushManagerUserInfoKeysLocalCallId : localCallId,
|
|
|
|
PushManagerUserInfoKeysCallBackSignalRecipientId : call.remotePhoneNumber
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
NSString *alertMessage;
|
|
|
|
switch (self.notificationPreviewType) {
|
|
|
|
case NotificationNoNameNoPreview: {
|
2017-02-02 23:42:06 +01:00
|
|
|
alertMessage = [CallStrings missedCallNotificationBody];
|
2016-11-12 18:22:29 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case NotificationNameNoPreview:
|
|
|
|
case NotificationNamePreview: {
|
2017-03-26 15:13:06 +02:00
|
|
|
alertMessage = (([UIDevice currentDevice].supportsCallKit &&
|
|
|
|
[[Environment getCurrent].preferences isCallKitPrivacyEnabled])
|
2017-03-21 18:21:31 +01:00
|
|
|
? [CallStrings missedCallNotificationBodyWithoutCallerName]
|
|
|
|
: [NSString stringWithFormat:[CallStrings missedCallNotificationBodyWithCallerName], callerName]);
|
2016-11-12 18:22:29 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
notification.alertBody = [NSString stringWithFormat:@"☎️ %@", alertMessage];
|
|
|
|
|
|
|
|
[self presentNotification:notification identifier:localCallId];
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - Signal Messages
|
|
|
|
|
2015-12-22 12:45:09 +01:00
|
|
|
- (void)notifyUserForErrorMessage:(TSErrorMessage *)message inThread:(TSThread *)thread {
|
|
|
|
NSString *messageDescription = message.description;
|
|
|
|
|
|
|
|
if (([UIApplication sharedApplication].applicationState != UIApplicationStateActive) && messageDescription) {
|
|
|
|
UILocalNotification *notification = [[UILocalNotification alloc] init];
|
|
|
|
notification.userInfo = @{Signal_Thread_UserInfo_Key : thread.uniqueId};
|
|
|
|
notification.soundName = @"NewMessage.aifc";
|
|
|
|
|
|
|
|
NSString *alertBodyString = @"";
|
|
|
|
|
|
|
|
NSString *authorName = [thread name];
|
2016-11-12 18:22:29 +01:00
|
|
|
switch (self.notificationPreviewType) {
|
2015-12-22 12:45:09 +01:00
|
|
|
case NotificationNamePreview:
|
|
|
|
case NotificationNameNoPreview:
|
|
|
|
alertBodyString = [NSString stringWithFormat:@"%@: %@", authorName, messageDescription];
|
|
|
|
break;
|
|
|
|
case NotificationNoNameNoPreview:
|
|
|
|
alertBodyString = messageDescription;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
notification.alertBody = alertBodyString;
|
|
|
|
|
2017-04-05 17:13:09 +02:00
|
|
|
[[PushManager sharedManager] presentNotification:notification checkForCancel:NO];
|
2015-12-22 12:45:09 +01:00
|
|
|
} else {
|
|
|
|
if ([Environment.preferences soundInForeground]) {
|
|
|
|
AudioServicesPlayAlertSound(_newMessageSound);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-12 18:22:29 +01:00
|
|
|
- (void)notifyUserForIncomingMessage:(TSIncomingMessage *)message
|
|
|
|
inThread:(TSThread *)thread
|
|
|
|
contactsManager:(id<ContactsManagerProtocol>)contactsManager
|
|
|
|
{
|
2017-04-17 21:13:15 +02:00
|
|
|
if (thread.isMuted) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-12-22 12:45:09 +01:00
|
|
|
NSString *messageDescription = message.description;
|
2017-05-19 22:30:43 +02:00
|
|
|
NSString *senderName = [contactsManager displayNameForPhoneIdentifier:message.authorId];
|
|
|
|
NSString *groupName = [thread.name stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
|
|
|
|
if (groupName.length < 1) {
|
2017-05-24 17:13:09 +02:00
|
|
|
groupName = NSLocalizedString(@"NEW_GROUP_DEFAULT_TITLE", @"");
|
2017-05-19 22:30:43 +02:00
|
|
|
}
|
2015-12-22 12:45:09 +01:00
|
|
|
|
|
|
|
if ([UIApplication sharedApplication].applicationState != UIApplicationStateActive && messageDescription) {
|
|
|
|
UILocalNotification *notification = [[UILocalNotification alloc] init];
|
|
|
|
notification.soundName = @"NewMessage.aifc";
|
|
|
|
|
2016-11-12 18:22:29 +01:00
|
|
|
switch (self.notificationPreviewType) {
|
2015-12-22 12:45:09 +01:00
|
|
|
case NotificationNamePreview:
|
|
|
|
notification.category = Signal_Full_New_Message_Category;
|
|
|
|
notification.userInfo =
|
|
|
|
@{Signal_Thread_UserInfo_Key : thread.uniqueId, Signal_Message_UserInfo_Key : message.uniqueId};
|
|
|
|
|
|
|
|
if ([thread isGroupThread]) {
|
2017-05-19 22:30:43 +02:00
|
|
|
NSString *threadName = [NSString stringWithFormat:@"\"%@\"", groupName];
|
|
|
|
// TODO: Format parameters might change order in l10n. We should use named parameters.
|
2015-12-22 12:45:09 +01:00
|
|
|
notification.alertBody =
|
|
|
|
[NSString stringWithFormat:NSLocalizedString(@"APN_MESSAGE_IN_GROUP_DETAILED", nil),
|
2017-05-19 22:30:43 +02:00
|
|
|
senderName,
|
|
|
|
threadName,
|
|
|
|
messageDescription];
|
2015-12-22 12:45:09 +01:00
|
|
|
} else {
|
2017-05-19 22:30:43 +02:00
|
|
|
notification.alertBody = [NSString stringWithFormat:@"%@: %@", senderName, messageDescription];
|
2015-12-22 12:45:09 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NotificationNameNoPreview: {
|
|
|
|
notification.userInfo = @{Signal_Thread_UserInfo_Key : thread.uniqueId};
|
|
|
|
if ([thread isGroupThread]) {
|
2017-05-19 22:30:43 +02:00
|
|
|
notification.alertBody = [NSString
|
|
|
|
stringWithFormat:@"%@ \"%@\"", NSLocalizedString(@"APN_MESSAGE_IN_GROUP", nil), groupName];
|
2015-12-22 12:45:09 +01:00
|
|
|
} else {
|
|
|
|
notification.alertBody =
|
2017-05-19 22:30:43 +02:00
|
|
|
[NSString stringWithFormat:@"%@ %@", NSLocalizedString(@"APN_MESSAGE_FROM", nil), senderName];
|
2015-12-22 12:45:09 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case NotificationNoNameNoPreview:
|
|
|
|
notification.alertBody = NSLocalizedString(@"APN_Message", nil);
|
|
|
|
break;
|
|
|
|
default:
|
2016-11-12 18:22:29 +01:00
|
|
|
DDLogWarn(@"unknown notification preview type: %lu", (unsigned long)self.notificationPreviewType);
|
2015-12-22 12:45:09 +01:00
|
|
|
notification.alertBody = NSLocalizedString(@"APN_Message", nil);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-04-05 17:13:09 +02:00
|
|
|
[[PushManager sharedManager] presentNotification:notification checkForCancel:YES];
|
2015-12-22 12:45:09 +01:00
|
|
|
} else {
|
|
|
|
if ([Environment.preferences soundInForeground]) {
|
|
|
|
AudioServicesPlayAlertSound(_newMessageSound);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-12 18:22:29 +01:00
|
|
|
#pragma mark - Util
|
|
|
|
|
|
|
|
- (NotificationType)notificationPreviewType
|
|
|
|
{
|
|
|
|
PropertyListPreferences *prefs = [Environment getCurrent].preferences;
|
|
|
|
return prefs.notificationPreviewType;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)presentNotification:(UILocalNotification *)notification identifier:(NSString *)identifier
|
|
|
|
{
|
2017-05-17 21:45:00 +02:00
|
|
|
DispatchMainThreadSafe(^{
|
2017-04-14 21:27:31 +02:00
|
|
|
// Replace any existing notification
|
|
|
|
// e.g. when an "Incoming Call" notification gets replaced with a "Missed Call" notification.
|
|
|
|
if (self.currentNotifications[identifier]) {
|
2017-05-17 21:45:00 +02:00
|
|
|
[self cancelNotificationWithIdentifier:identifier];
|
2017-04-14 21:27:31 +02:00
|
|
|
}
|
2016-11-12 18:22:29 +01:00
|
|
|
|
2017-04-14 21:27:31 +02:00
|
|
|
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
|
|
|
|
DDLogDebug(@"%@ presenting notification with identifier: %@", self.tag, identifier);
|
2016-11-12 18:22:29 +01:00
|
|
|
|
2017-04-14 21:27:31 +02:00
|
|
|
self.currentNotifications[identifier] = notification;
|
|
|
|
});
|
2016-11-12 18:22:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)cancelNotificationWithIdentifier:(NSString *)identifier
|
|
|
|
{
|
2017-05-17 21:45:00 +02:00
|
|
|
DispatchMainThreadSafe(^{
|
|
|
|
UILocalNotification *notification = self.currentNotifications[identifier];
|
|
|
|
if (!notification) {
|
|
|
|
DDLogWarn(
|
|
|
|
@"%@ Couldn't cancel notification because none was found with identifier: %@", self.tag, identifier);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
[self.currentNotifications removeObjectForKey:identifier];
|
2017-05-17 21:44:49 +02:00
|
|
|
|
2017-05-17 21:45:00 +02:00
|
|
|
[[UIApplication sharedApplication] cancelLocalNotification:notification];
|
|
|
|
});
|
2017-05-17 21:44:49 +02:00
|
|
|
}
|
|
|
|
|
2016-11-12 18:22:29 +01:00
|
|
|
#pragma mark - Logging
|
|
|
|
|
|
|
|
+ (NSString *)tag
|
|
|
|
{
|
|
|
|
return [NSString stringWithFormat:@"[%@]", self.class];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *)tag
|
|
|
|
{
|
|
|
|
return self.class.tag;
|
|
|
|
}
|
|
|
|
|
2015-12-22 12:45:09 +01:00
|
|
|
@end
|