2016-02-22 22:04:42 +00:00
|
|
|
/**
|
2019-03-04 12:38:41 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-02-22 22:04:42 +00:00
|
|
|
* 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"
|
2021-05-24 14:25:05 +00:00
|
|
|
#import <ReactNativeNavigation/ReactNativeNavigation.h>
|
2016-02-22 22:04:42 +00:00
|
|
|
|
2017-09-09 15:14:40 +00:00
|
|
|
#import <asl.h>
|
2023-04-12 09:55:19 +00:00
|
|
|
#import "RNCConfig.h"
|
2017-09-08 08:13:26 +00:00
|
|
|
#import "React/RCTLog.h"
|
2016-07-20 09:03:05 +00:00
|
|
|
#import "RCTBundleURLProvider.h"
|
2018-08-23 01:54:29 +00:00
|
|
|
#import "RNSplashScreen.h"
|
2018-06-28 19:31:31 +00:00
|
|
|
#import "RCTLinkingManager.h"
|
2017-08-30 09:34:30 +00:00
|
|
|
|
2020-05-01 07:20:06 +00:00
|
|
|
#import <React/RCTBundleURLProvider.h>
|
2022-01-24 13:18:01 +00:00
|
|
|
#import <React/RCTHTTPRequestHandler.h>
|
2020-05-01 07:20:06 +00:00
|
|
|
|
2020-06-12 08:54:28 +00:00
|
|
|
#import <UserNotifications/UserNotifications.h>
|
|
|
|
#import <RNCPushNotificationIOS.h>
|
|
|
|
|
2022-01-24 13:18:01 +00:00
|
|
|
#import <SDWebImage/SDWebImageDownloaderConfig.h>
|
|
|
|
#import <SDWebImage/SDWebImageDownloaderOperation.h>
|
|
|
|
|
|
|
|
#import <Security/Security.h>
|
2023-06-14 01:47:41 +00:00
|
|
|
#import <react/config/ReactNativeConfig.h>
|
|
|
|
|
2022-01-24 13:18:01 +00:00
|
|
|
//TODO: properly import the framework
|
2023-06-14 01:47:41 +00:00
|
|
|
extern "C" NSString* StatusgoImageServerTLSCert();
|
2022-01-24 13:18:01 +00:00
|
|
|
|
|
|
|
@interface StatusDownloaderOperation : SDWebImageDownloaderOperation
|
|
|
|
+ (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation AppDelegate
|
2019-05-08 12:26:39 +00:00
|
|
|
{
|
|
|
|
UIView *_blankView;
|
|
|
|
}
|
2016-02-22 22:04:42 +00:00
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
|
|
{
|
2023-06-14 01:47:41 +00:00
|
|
|
|
2023-12-11 15:52:23 +00:00
|
|
|
if (!self.bridge) {
|
|
|
|
self.bridge = [self createBridgeWithDelegate:self launchOptions:launchOptions];
|
|
|
|
}
|
2023-06-14 01:47:41 +00:00
|
|
|
|
2023-12-11 15:52:23 +00:00
|
|
|
[ReactNativeNavigation bootstrapWithBridge:self.bridge];
|
2023-06-14 01:47:41 +00:00
|
|
|
|
2016-12-11 11:09:12 +00:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2016-02-22 22:04:42 +00:00
|
|
|
NSURL *jsCodeLocation;
|
|
|
|
|
2021-01-14 12:46:22 +00:00
|
|
|
/* Set logging level from React Native */
|
2023-04-12 09:55:19 +00:00
|
|
|
NSString *logLevel = [RNCConfig envFor:@"LOG_LEVEL"];
|
2021-01-14 12:46:22 +00:00
|
|
|
if([logLevel isEqualToString:@"error"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelError);
|
|
|
|
}
|
|
|
|
else if([logLevel isEqualToString:@"warn"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelWarning);
|
|
|
|
}
|
|
|
|
else if([logLevel isEqualToString:@"info"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelInfo);
|
|
|
|
}
|
|
|
|
else if([logLevel isEqualToString:@"debug"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelTrace);
|
|
|
|
}
|
|
|
|
|
2019-05-08 12:26:39 +00:00
|
|
|
NSDictionary *appDefaults = [NSDictionary
|
|
|
|
dictionaryWithObject:[NSNumber numberWithBool:NO] forKey:@"BLANK_PREVIEW"];
|
|
|
|
[[NSUserDefaults standardUserDefaults] registerDefaults:appDefaults];
|
|
|
|
|
2018-08-23 01:54:29 +00:00
|
|
|
[RNSplashScreen show];
|
2017-08-30 09:34:30 +00:00
|
|
|
|
2020-06-12 08:54:28 +00:00
|
|
|
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
|
|
|
|
center.delegate = self;
|
|
|
|
|
2022-01-24 13:18:01 +00:00
|
|
|
SDWebImageDownloaderConfig.defaultDownloaderConfig.operationClass = [StatusDownloaderOperation class];
|
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2018-06-28 19:31:31 +00:00
|
|
|
- (BOOL)application:(UIApplication *)application
|
|
|
|
openURL:(NSURL *)url
|
|
|
|
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
|
|
|
|
{
|
|
|
|
return [RCTLinkingManager application:application openURL:url options:options];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity
|
|
|
|
restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler
|
|
|
|
{
|
|
|
|
return [RCTLinkingManager application:application
|
|
|
|
continueUserActivity:userActivity
|
|
|
|
restorationHandler:restorationHandler];
|
|
|
|
}
|
|
|
|
|
2021-05-24 14:25:05 +00:00
|
|
|
- (NSArray<id<RCTBridgeModule>> *)extraModulesForBridge:(RCTBridge *)bridge {
|
|
|
|
return [ReactNativeNavigation extraModulesForBridge:bridge];
|
|
|
|
}
|
|
|
|
|
2023-06-14 01:47:41 +00:00
|
|
|
|
2019-03-04 12:38:41 +00:00
|
|
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
|
|
{
|
|
|
|
#if DEBUG
|
2023-06-14 01:47:41 +00:00
|
|
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
|
2019-03-04 12:38:41 +00:00
|
|
|
#else
|
|
|
|
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-05-08 12:26:39 +00:00
|
|
|
- (void)applicationWillResignActive:(UIApplication *)application {
|
|
|
|
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"BLANK_PREVIEW"]) {
|
|
|
|
[self.window addSubview:_blankView];
|
|
|
|
[self.window bringSubviewToFront:_blankView];
|
|
|
|
|
|
|
|
[UIView animateWithDuration:0.5 animations:^{
|
|
|
|
_blankView.alpha = 1;
|
|
|
|
}];
|
2022-01-24 13:18:01 +00:00
|
|
|
}
|
2019-05-08 12:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)applicationDidBecomeActive:(UIApplication *)application {
|
|
|
|
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"BLANK_PREVIEW"]) {
|
|
|
|
[UIView animateWithDuration:0.5 animations:^{
|
|
|
|
_blankView.alpha = 0;
|
|
|
|
} completion:^(BOOL finished) {
|
|
|
|
[_blankView removeFromSuperview];
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-12 08:54:28 +00:00
|
|
|
// Required to register for notifications
|
|
|
|
- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
|
|
|
|
{
|
|
|
|
[RNCPushNotificationIOS didRegisterUserNotificationSettings:notificationSettings];
|
|
|
|
}
|
|
|
|
// Required for the register event.
|
|
|
|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
|
|
|
|
{
|
|
|
|
[RNCPushNotificationIOS didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
|
|
|
|
}
|
|
|
|
// Required for the registrationError event.
|
|
|
|
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
|
|
|
|
{
|
|
|
|
[RNCPushNotificationIOS didFailToRegisterForRemoteNotificationsWithError:error];
|
|
|
|
}
|
|
|
|
// IOS 10+ Required for localNotification event
|
|
|
|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center
|
|
|
|
didReceiveNotificationResponse:(UNNotificationResponse *)response
|
|
|
|
withCompletionHandler:(void (^)(void))completionHandler
|
|
|
|
{
|
|
|
|
[RNCPushNotificationIOS didReceiveNotificationResponse:response];
|
|
|
|
completionHandler();
|
|
|
|
}
|
|
|
|
// IOS 4-10 Required for the localNotification event.
|
|
|
|
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
|
|
|
|
{
|
|
|
|
[RNCPushNotificationIOS didReceiveLocalNotification:notification];
|
|
|
|
}
|
2020-09-25 12:35:10 +00:00
|
|
|
// Manage notifications while app is in the foreground
|
|
|
|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler
|
|
|
|
{
|
|
|
|
NSDictionary *userInfo = notification.request.content.userInfo;
|
2022-01-24 13:18:01 +00:00
|
|
|
|
2020-09-25 12:35:10 +00:00
|
|
|
NSString *notificationType = userInfo[@"notificationType"]; // check your notification type
|
|
|
|
if (![notificationType isEqual: @"local-notification"]) { // we silence all notifications which are not local
|
|
|
|
completionHandler(UNNotificationPresentationOptionNone);
|
|
|
|
return;
|
|
|
|
}
|
2022-01-24 13:18:01 +00:00
|
|
|
|
2020-09-25 12:35:10 +00:00
|
|
|
completionHandler(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionBadge);
|
|
|
|
}
|
2020-06-12 08:54:28 +00:00
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
@end
|
2022-01-24 13:18:01 +00:00
|
|
|
|
|
|
|
@implementation StatusDownloaderOperation
|
|
|
|
|
|
|
|
+ (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler {
|
|
|
|
NSURLSessionAuthChallengeDisposition disposition = NSURLSessionAuthChallengeCancelAuthenticationChallenge;
|
|
|
|
__block NSURLCredential *credential = nil;
|
|
|
|
|
|
|
|
NSString *pemCert = StatusgoImageServerTLSCert();
|
|
|
|
pemCert = [pemCert stringByReplacingOccurrencesOfString:@"-----BEGIN CERTIFICATE-----\n" withString:@""];
|
|
|
|
pemCert = [pemCert stringByReplacingOccurrencesOfString:@"\n-----END CERTIFICATE-----" withString:@""];
|
|
|
|
NSData *derCert = [[NSData alloc] initWithBase64EncodedString:pemCert options:NSDataBase64DecodingIgnoreUnknownCharacters];
|
|
|
|
SecCertificateRef certRef = SecCertificateCreateWithData(NULL, (__bridge_retained CFDataRef) derCert);
|
2023-06-14 01:47:41 +00:00
|
|
|
CFArrayRef certArrayRef = CFArrayCreate(NULL, (const void **)&(certRef), 1, NULL);
|
2022-01-24 13:18:01 +00:00
|
|
|
SecTrustSetAnchorCertificates(challenge.protectionSpace.serverTrust, certArrayRef);
|
|
|
|
|
|
|
|
SecTrustResultType trustResult;
|
|
|
|
SecTrustEvaluate(challenge.protectionSpace.serverTrust, &trustResult);
|
|
|
|
|
|
|
|
if ((trustResult == kSecTrustResultProceed) || (trustResult == kSecTrustResultUnspecified)) {
|
|
|
|
disposition = NSURLSessionAuthChallengeUseCredential;
|
|
|
|
credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (completionHandler) {
|
|
|
|
completionHandler(disposition, credential);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler {
|
|
|
|
if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust] &&
|
|
|
|
[challenge.protectionSpace.host isEqualToString:@"localhost"]) {
|
|
|
|
[StatusDownloaderOperation URLSession:session task:task didReceiveChallenge:challenge completionHandler:completionHandler];
|
|
|
|
} else {
|
|
|
|
[super URLSession:session task:task didReceiveChallenge:challenge completionHandler:completionHandler];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation RCTHTTPRequestHandler (SelfSigned)
|
|
|
|
|
|
|
|
- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler {
|
|
|
|
if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust] &&
|
|
|
|
[challenge.protectionSpace.host isEqualToString:@"localhost"]) {
|
|
|
|
[StatusDownloaderOperation URLSession:session task:task didReceiveChallenge:challenge completionHandler:completionHandler];
|
|
|
|
} else {
|
|
|
|
if (completionHandler) {
|
|
|
|
completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-12 09:55:19 +00:00
|
|
|
@end
|