164 lines
7.5 KiB
Objective-C
164 lines
7.5 KiB
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import "AppDelegate.h"
|
|
#import <AVFoundation/AVFoundation.h>
|
|
#import <React/RCTBundleURLProvider.h>
|
|
#import <React/RCTRootView.h>
|
|
#import <React/RCTLinkingManager.h>
|
|
#if __has_include(<React/RNSentry.h>)
|
|
#import <React/RNSentry.h> // This is used for versions of react >= 0.40
|
|
#else
|
|
#import "RNSentry.h" // This is used for versions of react < 0.40
|
|
#endif
|
|
#import "RCCManager.h"
|
|
#import "RNNotifications.h"
|
|
#import <UploadAttachments/UploadAttachments-Swift.h>
|
|
#import <UserNotifications/UserNotifications.h>
|
|
|
|
@implementation AppDelegate
|
|
|
|
NSString* const NotificationClearAction = @"clear";
|
|
|
|
-(void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler {
|
|
[[UploadSession shared] attachSessionWithIdentifier:identifier completionHandler:completionHandler];
|
|
}
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
// Clear keychain on first run in case of reinstallation
|
|
if (![[NSUserDefaults standardUserDefaults] objectForKey:@"FirstRun"]) {
|
|
|
|
NSString *service = [[NSBundle mainBundle] bundleIdentifier];
|
|
NSDictionary *query = @{
|
|
(__bridge NSString *)kSecClass: (__bridge id)(kSecClassGenericPassword),
|
|
(__bridge NSString *)kSecAttrService: service,
|
|
(__bridge NSString *)kSecReturnAttributes: (__bridge id)kCFBooleanTrue,
|
|
(__bridge NSString *)kSecReturnData: (__bridge id)kCFBooleanFalse
|
|
};
|
|
|
|
SecItemDelete((__bridge CFDictionaryRef) query);
|
|
|
|
[[NSUserDefaults standardUserDefaults] setValue:@YES forKey:@"FirstRun"];
|
|
[[NSUserDefaults standardUserDefaults] synchronize];
|
|
}
|
|
|
|
NSURL *jsCodeLocation;
|
|
|
|
jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
|
|
|
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
self.window.backgroundColor = [UIColor whiteColor];
|
|
[[RCCManager sharedInstance] initBridgeWithBundleURL:jsCodeLocation launchOptions:launchOptions];
|
|
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error: nil];
|
|
|
|
return YES;
|
|
}
|
|
|
|
// Required to register for notifications
|
|
- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
|
|
{
|
|
[RNNotifications didRegisterUserNotificationSettings:notificationSettings];
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
|
|
{
|
|
[RNNotifications didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
|
|
[RNNotifications didFailToRegisterForRemoteNotificationsWithError:error];
|
|
}
|
|
|
|
-(void)cleanNotificationsFromChannel:(NSString *)channelId andUpdateBadge:(BOOL)updateBadge {
|
|
if ([UNUserNotificationCenter class]) {
|
|
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
|
|
[center getDeliveredNotificationsWithCompletionHandler:^(NSArray<UNNotification *> * _Nonnull notifications) {
|
|
NSMutableArray<NSString *> *notificationIds = [NSMutableArray new];
|
|
|
|
for (UNNotification *prevNotification in notifications) {
|
|
UNNotificationRequest *notificationRequest = [prevNotification request];
|
|
UNNotificationContent *notificationContent = [notificationRequest content];
|
|
NSString *identifier = [notificationRequest identifier];
|
|
NSString* cId = [[notificationContent userInfo] objectForKey:@"channel_id"];
|
|
|
|
if ([cId isEqualToString: channelId]) {
|
|
[notificationIds addObject:identifier];
|
|
}
|
|
}
|
|
|
|
[center removeDeliveredNotificationsWithIdentifiers:notificationIds];
|
|
NSInteger removed = (NSInteger)[notificationIds count] + 1;
|
|
if (removed > 0 && updateBadge) {
|
|
NSInteger badge = [UIApplication sharedApplication].applicationIconBadgeNumber;
|
|
NSInteger count = badge - removed;
|
|
if (count > 0) {
|
|
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:count];
|
|
} else {
|
|
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
|
|
}
|
|
}
|
|
}];
|
|
}
|
|
}
|
|
|
|
// Required for the notification event.
|
|
-(void)application:(UIApplication *)application didReceiveRemoteNotification:(nonnull NSDictionary *)userInfo fetchCompletionHandler:(nonnull void (^)(UIBackgroundFetchResult))completionHandler {
|
|
UIApplicationState state = [UIApplication sharedApplication].applicationState;
|
|
NSString* action = [userInfo objectForKey:@"type"];
|
|
NSString* channelId = [userInfo objectForKey:@"channel_id"];
|
|
|
|
if (action && [action isEqualToString: NotificationClearAction]) {
|
|
// If received a notification that a channel was read, remove all notifications from that channel (only with app in foreground/background)
|
|
[self cleanNotificationsFromChannel:channelId andUpdateBadge:NO];
|
|
} else if (state == UIApplicationStateInactive) {
|
|
// When the notification is opened
|
|
[self cleanNotificationsFromChannel:channelId andUpdateBadge:NO];
|
|
}
|
|
|
|
[RNNotifications didReceiveRemoteNotification:userInfo];
|
|
completionHandler(UIBackgroundFetchResultNoData);
|
|
}
|
|
|
|
// Required for the localNotification event.
|
|
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
|
|
{
|
|
[RNNotifications didReceiveLocalNotification:notification];
|
|
}
|
|
|
|
// Required for the notification actions.
|
|
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forLocalNotification:(UILocalNotification *)notification withResponseInfo:(NSDictionary *)responseInfo completionHandler:(void (^)())completionHandler
|
|
{
|
|
[RNNotifications handleActionWithIdentifier:identifier forLocalNotification:notification withResponseInfo:responseInfo completionHandler:completionHandler];
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo withResponseInfo:(NSDictionary *)responseInfo completionHandler:(void (^)())completionHandler
|
|
{
|
|
[RNNotifications handleActionWithIdentifier:identifier forRemoteNotification:userInfo withResponseInfo:responseInfo completionHandler:completionHandler];
|
|
}
|
|
|
|
// Required for deeplinking
|
|
|
|
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
|
|
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
|
|
{
|
|
return [RCTLinkingManager application:application openURL:url
|
|
sourceApplication:sourceApplication annotation:annotation];
|
|
}
|
|
|
|
// Only if your app is using [Universal Links](https://developer.apple.com/library/prerelease/ios/documentation/General/Conceptual/AppSearch/UniversalLinks.html).
|
|
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity
|
|
restorationHandler:(void (^)(NSArray<id<UIUserActivityRestoring>> *restorableObjects))restorationHandler
|
|
{
|
|
return [RCTLinkingManager application:application
|
|
continueUserActivity:userActivity
|
|
restorationHandler:restorationHandler];
|
|
}
|
|
|
|
@end
|