123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308 |
- //
- // AppDelegate.m
- // Nextcloud
- //
- // Created by Marino Faggiana on 04/09/14.
- // Copyright (c) 2014 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- #import "AppDelegate.h"
- #import "CCGraphics.h"
- #import "CCMain.h"
- #import "NCBridgeSwift.h"
- #import "NCAutoUpload.h"
- #import "NCPushNotificationEncryption.h"
- #import <QuartzCore/QuartzCore.h>
- @import Sentry;
- @class NCViewerRichdocument;
- @interface AppDelegate() <TOPasscodeViewControllerDelegate>
- @end
- @implementation AppDelegate
- + (void)initialize
- {
- [[NSUserDefaults standardUserDefaults] registerDefaults:@{@"UserAgent": [CCUtility getUserAgent]}];
- }
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
- {
- BOOL isSimulatorOrTestFlight = [[NCUtility shared] isSimulatorOrTestFlight];
-
- if (isSimulatorOrTestFlight) {
- NCBrandOptions.sharedInstance.disable_crash_service = false;
- }
- if (![CCUtility getDisableCrashservice] && NCBrandOptions.sharedInstance.disable_crash_service == false) {
- [SentrySDK startWithOptions: @{
- @"dsn": @"https://42eaf570ec2646b1a564a4c4bfc8c279@o394108.ingest.sentry.io/5243836",
- @"debug": @(YES),
- @"enableAutoSessionTracking": @(YES)
- /* PRIVACY : https://github.com/getsentry/sentry-cocoa
- By default, we don’t apply the user identification provided to the SDK via the API. Instead, we use
- the installation ID generated with the first use of the application. The ID doesn’t contain any
- private or public data of your users or any public or shared data of their device.
- */
- }];
- }
-
- [CCUtility createDirectoryStandard];
- [CCUtility emptyTemporaryDirectory];
-
- // Networking
- [[NCCommunicationCommon shared] setupWithDelegate:[NCNetworking shared]];
- [[NCCommunicationCommon shared] setupWithUserAgent:[CCUtility getUserAgent]];
-
- NSInteger logLevel = [CCUtility getLogLevel];
- [[NCCommunicationCommon shared] setFileLogWithLevel:logLevel echo:true];
- NSString *versionApp = [NSString stringWithFormat:@"%@.%@", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
- NSString *versionNextcloudiOS = [NSString stringWithFormat:[NCBrandOptions sharedInstance].textCopyrightNextcloudiOS, versionApp];
- if (isSimulatorOrTestFlight) {
- [[NCCommunicationCommon shared] writeLog:[NSString stringWithFormat:@"Start session with level %lu %@ (Simulator / TestFlight)", (unsigned long)logLevel, versionNextcloudiOS]];
- } else {
- [[NCCommunicationCommon shared] writeLog:[NSString stringWithFormat:@"Start session with level %lu %@", (unsigned long)logLevel, versionNextcloudiOS]];
- }
-
- // Set account, if no exists clear all
- tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
- if (tableAccount == nil) {
- // remove all the keys Chain
- [CCUtility deleteAllChainStore];
- // remove all the App group key
- [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:[[NSBundle mainBundle] bundleIdentifier]];
- } else {
- // FIX 3.0.5 lost urlbase
- if (tableAccount.urlBase.length == 0) {
- NSString *user = [tableAccount.user stringByAppendingString:@" "];
- NSString *urlBase = [tableAccount.account stringByReplacingOccurrencesOfString:user withString:@""];
- tableAccount.urlBase = urlBase;
- [[NCManageDatabase sharedInstance] updateAccount:tableAccount];
-
- tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
- }
- [self settingAccount:tableAccount.account urlBase:tableAccount.urlBase user:tableAccount.user userID:tableAccount.userID password:[CCUtility getPassword:tableAccount.account]];
- }
-
- // UserDefaults
- self.ncUserDefaults = [[NSUserDefaults alloc] initWithSuiteName:[NCBrandOptions sharedInstance].capabilitiesGroups];
-
- // Background Fetch
- [application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
- self.listProgressMetadata = [NSMutableDictionary new];
- self.listMainVC = [NSMutableDictionary new];
-
- // Push Notification
- [application registerForRemoteNotifications];
-
- // Display notification
- [UNUserNotificationCenter currentNotificationCenter].delegate = self;
- UNAuthorizationOptions authOptions = UNAuthorizationOptionAlert | UNAuthorizationOptionSound | UNAuthorizationOptionBadge;
- [[UNUserNotificationCenter currentNotificationCenter] requestAuthorizationWithOptions:authOptions completionHandler:^(BOOL granted, NSError * _Nullable error) { }];
-
- //AV Session
- [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:nil];
- [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
- // ProgressView Detail
- self.progressViewDetail = [[UIProgressView alloc] initWithProgressViewStyle: UIProgressViewStyleBar];
-
- // Quick Actions
- if([[UIApplicationShortcutItem class] respondsToSelector:@selector(new)]) {
-
- [self configDynamicShortcutItems];
-
- UIApplicationShortcutItem *shortcutItem = [launchOptions objectForKeyedSubscript:UIApplicationLaunchOptionsShortcutItemKey];
-
- if (shortcutItem)
- [self handleShortCutItem:shortcutItem];
- }
-
- // Start Timer
- self.timerUpdateApplicationIconBadgeNumber = [NSTimer scheduledTimerWithTimeInterval:k_timerUpdateApplicationIconBadgeNumber target:self selector:@selector(updateApplicationIconBadgeNumber) userInfo:nil repeats:YES];
- [self startTimerErrorNetworking];
- // Store review
- if ([[NCUtility shared] isSimulatorOrTestFlight] == false) {
- NCStoreReview *review = [NCStoreReview new];
- [review incrementAppRuns];
- [review showStoreReview];
- }
-
- // Detect Dark mode
- if (@available(iOS 13.0, *)) {
- if ([CCUtility getDarkModeDetect]) {
- if ([[UITraitCollection currentTraitCollection] userInterfaceStyle] == UIUserInterfaceStyleDark) {
- [CCUtility setDarkMode:YES];
- } else {
- [CCUtility setDarkMode:NO];
- }
- }
- }
-
- if ([NCBrandOptions sharedInstance].disable_intro) {
- [CCUtility setIntro:YES];
-
- if (self.account.length == 0) {
- [self openLoginView:nil selector:k_intro_login openLoginWeb:false];
- }
- } else {
- if ([CCUtility getIntro] == NO) {
- UIViewController *introViewController = [[UIStoryboard storyboardWithName:@"NCIntro" bundle:[NSBundle mainBundle]] instantiateInitialViewController];
-
- UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController: introViewController];
- self.window.rootViewController = navController;
- [self.window makeKeyAndVisible];
- }
- }
- // init home
- [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
- // Passcode
- dispatch_async(dispatch_get_main_queue(), ^{
- [self passcodeWithAutomaticallyPromptForBiometricValidation:true];
- });
-
- // Auto upload
- self.networkingAutoUpload = [NCNetworkingAutoUpload new];
-
- return YES;
- }
- //
- // L' applicazione si dimetterà dallo stato di attivo
- //
- - (void)applicationWillResignActive:(UIApplication *)application
- {
- // Test Maintenance
- if (self.account.length == 0 || self.maintenanceMode)
- return;
-
- [self updateApplicationIconBadgeNumber];
- }
- //
- // L' applicazione entrerà in primo piano (attivo solo dopo il background)
- //
- - (void)applicationWillEnterForeground:(UIApplication *)application
- {
- if (self.account.length == 0 || self.maintenanceMode) { return; }
-
- [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_applicationWillEnterForeground object:nil];
-
- // Request Passcode
- [self passcodeWithAutomaticallyPromptForBiometricValidation:true];
-
- // Initialize Auto upload
- [[NCAutoUpload sharedInstance] initStateAutoUpload];
-
- // Read active directory
- [self.activeMain readFileReloadFolder];
-
- // Required unsubscribing / subscribing
- [self pushNotification];
-
- // RichDocument
- [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_richdocumentGrabFocus object:nil];
-
- // Request Service Server Nextcloud
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
- [[NCService shared] startRequestServicesServer];
- });
- }
- //
- // L' applicazione entrerà in primo piano (attivo sempre)
- //
- - (void)applicationDidBecomeActive:(UIApplication *)application
- {
- if (self.account.length == 0 || self.maintenanceMode) { return; }
-
- // Brand
- #if defined(HC)
- tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
- if (account.hcIsTrial == true || account.hcTrialExpired == true || account.hcNextGroupExpirationGroupExpired == true) {
-
- HCTrial *vc = [[UIStoryboard storyboardWithName:@"HCTrial" bundle:nil] instantiateInitialViewController];
- vc.account = account;
-
- [self.window.rootViewController presentViewController:vc animated:YES completion:nil];
- }
- #endif
-
- [[NCNetworking shared] verifyUploadZombie];
- }
- //
- // L' applicazione è entrata nello sfondo
- //
- - (void)applicationDidEnterBackground:(UIApplication *)application
- {
- if (self.account.length == 0 || self.maintenanceMode) { return; }
- [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_applicationDidEnterBackground object:nil];
-
- [self passcodeWithAutomaticallyPromptForBiometricValidation:false];
- }
- //
- // L'applicazione terminerà
- //
- - (void)applicationWillTerminate:(UIApplication *)application
- {
- [[NCCommunicationCommon shared] writeLog:@"bye bye"];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Login / checkErrorNetworking =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)checkErrorNetworking
- {
- // test
- if (self.account.length == 0 || self.maintenanceMode)
- return;
-
- // check unauthorized server (401)
- if ([CCUtility getPassword:self.account].length == 0) {
-
- [self openLoginView:self.window.rootViewController selector:k_intro_login openLoginWeb:true];
- }
-
- // check certificate untrusted (-1202)
- if ([CCUtility getCertificateError:self.account]) {
-
- UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_ssl_certificate_untrusted_", nil) message:NSLocalizedString(@"_connect_server_anyway_", nil) preferredStyle:UIAlertControllerStyleAlert];
- [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_yes_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
- [[NCNetworking shared] wrtiteCertificateWithDirectoryCertificate:[CCUtility getDirectoryCerificates]];
- [self startTimerErrorNetworking];
- }]];
-
- [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_no_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
- [self startTimerErrorNetworking];
- }]];
- [self.window.rootViewController presentViewController:alertController animated:YES completion:^{
- // Stop timer error network
- [self.timerErrorNetworking invalidate];
- }];
- }
- }
- - (void)openLoginView:(UIViewController *)viewController selector:(NSInteger)selector openLoginWeb:(BOOL)openLoginWeb
- {
- // use appConfig [MDM]
- if ([NCBrandOptions sharedInstance].use_configuration) {
-
- if (!(_appConfigView.isViewLoaded && _appConfigView.view.window)) {
-
- self.appConfigView = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCAppConfigView"];
-
- [self showLoginViewController:self.appConfigView forContext:viewController];
- }
-
- return;
- }
-
- // only for personalized LoginWeb [customer]
- if ([NCBrandOptions sharedInstance].use_login_web_personalized) {
-
- if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
-
- self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
- self.activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] loginBaseUrl];
- [self showLoginViewController:self.activeLoginWeb forContext:viewController];
- }
-
- return;
- }
-
- // normal login
- if (selector == k_intro_signup) {
-
- if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
-
- self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
-
- if (selector == k_intro_signup) {
- self.activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] linkloginPreferredProviders];
- } else {
- self.activeLoginWeb.urlBase = self.urlBase;
- }
-
- [self showLoginViewController:self.activeLoginWeb forContext:viewController];
- }
-
- } else if ([NCBrandOptions sharedInstance].disable_intro && [NCBrandOptions sharedInstance].disable_request_login_url) {
-
- self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
- self.activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] loginBaseUrl];
-
- [self showLoginViewController:self.activeLoginWeb forContext:viewController];
-
- } else if (openLoginWeb) {
-
- if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
- self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
- self.activeLoginWeb.urlBase = self.urlBase;
- [self showLoginViewController:self.activeLoginWeb forContext:viewController];
- }
-
- } else {
-
- if (!(_activeLogin.isViewLoaded && _activeLogin.view.window)) {
-
- _activeLogin = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"CCLoginNextcloud"];
-
- [self showLoginViewController:_activeLogin forContext:viewController];
- }
- }
- }
- -(void)showLoginViewController:(UIViewController *)viewController forContext:(UIViewController *)contextViewController
- {
- if (contextViewController == NULL) {
- UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
- navController.navigationBar.barStyle = UIBarStyleBlack;
- navController.navigationBar.tintColor = NCBrandColor.sharedInstance.customerText;
- navController.navigationBar.barTintColor = NCBrandColor.sharedInstance.customer;
- [navController.navigationBar setTranslucent:false];
- self.window.rootViewController = navController;
- [self.window makeKeyAndVisible];
-
- } else if ([contextViewController isKindOfClass:[UINavigationController class]]) {
- UINavigationController *navController = ((UINavigationController *)contextViewController);
- [navController pushViewController:viewController animated:true];
-
- } else {
- UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
- navController.modalPresentationStyle = UIModalPresentationFullScreen;
- navController.navigationBar.barStyle = UIBarStyleBlack;
- navController.navigationBar.tintColor = NCBrandColor.sharedInstance.customerText;
- navController.navigationBar.barTintColor = NCBrandColor.sharedInstance.customer;
- [navController.navigationBar setTranslucent:false];
- [contextViewController presentViewController:navController animated:true completion:nil];
- }
- }
- - (void)startTimerErrorNetworking
- {
- self.timerErrorNetworking = [NSTimer scheduledTimerWithTimeInterval:k_timerErrorNetworking target:self selector:@selector(checkErrorNetworking) userInfo:nil repeats:YES];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Account & Communication =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)settingAccount:(NSString *)account urlBase:(NSString *)urlBase user:(NSString *)user userID:(NSString *)userID password:(NSString *)password
- {
- self.account = account;
- self.urlBase = urlBase;
- self.user = user;
- self.userID = userID;
- self.password = password;
- (void)[NCNetworkingNotificationCenter shared];
- [[NCCommunicationCommon shared] setupWithAccount:account user:user userId:userID password:password urlBase:urlBase];
- [self settingSetupCommunication:account];
- }
- - (void)deleteAccount:(NSString *)account wipe:(BOOL)wipe
- {
- // Push Notification
- tableAccount *accountPN = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", account]];
- [self unsubscribingNextcloudServerPushNotification:accountPN.account urlBase:accountPN.urlBase user:accountPN.user withSubscribing:false];
- [self settingAccount:nil urlBase:nil user:nil userID:nil password:nil];
-
- /* DELETE ALL FILES LOCAL FS */
- NSArray *results = [[NCManageDatabase sharedInstance] getTableLocalFilesWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", account] sorted:@"ocId" ascending:NO];
- for (tableLocalFile *result in results) {
- [CCUtility removeFileAtPath:[CCUtility getDirectoryProviderStorageOcId:result.ocId]];
- }
- // Clear database
- [[NCManageDatabase sharedInstance] clearDatabaseWithAccount:account removeAccount:true];
- [CCUtility clearAllKeysEndToEnd:account];
- [CCUtility clearAllKeysPushNotification:account];
- [CCUtility setCertificateError:account error:false];
- [CCUtility setPassword:account password:nil];
-
- if (wipe) {
- NSArray *listAccount = [[NCManageDatabase sharedInstance] getAccounts];
- if ([listAccount count] > 0) {
- NSString *newAccount = listAccount[0];
- tableAccount *tableAccount = [[NCManageDatabase sharedInstance] setAccountActive:newAccount];
- [self settingAccount:newAccount urlBase:tableAccount.urlBase user:tableAccount.user userID:tableAccount.userID password:[CCUtility getPassword:tableAccount.account]];
- [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
- } else {
- [self openLoginView:self.window.rootViewController selector:k_intro_login openLoginWeb:false];
- }
- }
- }
- - (void)settingSetupCommunication:(NSString *)account
- {
- NSInteger serverVersionMajor = [[NCManageDatabase sharedInstance] getCapabilitiesServerIntWithAccount:account elements:NCElementsJSON.shared.capabilitiesVersionMajor];
- if (serverVersionMajor > 0) {
- [[NCCommunicationCommon shared] setupWithNextcloudVersion:serverVersionMajor];
- }
-
- [[NCCommunicationCommon shared] setupWithWebDav:[[NCUtility shared] getWebDAVWithAccount:account]];
- [[NCCommunicationCommon shared] setupWithDav:[[NCUtility shared] getDAV]];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Push Notifications =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)pushNotification
- {
- // test
- if (self.account.length == 0 || self.maintenanceMode || self.pushKitToken.length == 0)
- return;
-
- for (tableAccount *result in [[NCManageDatabase sharedInstance] getAllAccount]) {
-
- NSString *token = [CCUtility getPushNotificationToken:result.account];
-
- if (![token isEqualToString:self.pushKitToken]) {
- if (token != nil) {
- // unsubscribing + subscribing
- [self unsubscribingNextcloudServerPushNotification:result.account urlBase:result.urlBase user:result.user withSubscribing:true];
- } else {
- [self subscribingNextcloudServerPushNotification:result.account urlBase:result.urlBase user:result.user];
- }
- }
- }
- }
- - (void)subscribingNextcloudServerPushNotification:(NSString *)account urlBase:(NSString *)urlBase user:(NSString *)user
- {
- // test
- if (self.account.length == 0 || self.maintenanceMode || self.pushKitToken.length == 0)
- return;
-
- [[NCPushNotificationEncryption sharedInstance] generatePushNotificationsKeyPair:account];
- NSString *pushTokenHash = [[NCEndToEndEncryption sharedManager] createSHA512:self.pushKitToken];
- NSData *pushPublicKey = [CCUtility getPushNotificationPublicKey:account];
- NSString *pushDevicePublicKey = [[NSString alloc] initWithData:pushPublicKey encoding:NSUTF8StringEncoding];
- NSString *proxyServerPath = [NCBrandOptions sharedInstance].pushNotificationServerProxy;
-
- [[NCCommunication shared] subscribingPushNotificationWithServerUrl:urlBase account:account user:user password:[CCUtility getPassword:account] pushTokenHash:pushTokenHash devicePublicKey:pushDevicePublicKey proxyServerUrl:proxyServerPath customUserAgent:nil addCustomHeaders:nil completionHandler:^(NSString *account, NSString *deviceIdentifier, NSString *signature, NSString *publicKey, NSInteger errorCode, NSString *errorDescription) {
- if (errorCode == 0) {
- NSString *userAgent = [NSString stringWithFormat:@"%@ (Strict VoIP)", [CCUtility getUserAgent]];
- [[NCCommunication shared] subscribingPushProxyWithProxyServerUrl:proxyServerPath pushToken:self.pushKitToken deviceIdentifier:deviceIdentifier signature:signature publicKey:publicKey userAgent:userAgent completionHandler:^(NSInteger errorCode, NSString *errorDescription) {
- if (errorCode == 0) {
-
- [[NCCommunicationCommon shared] writeLog:@"Subscribed to Push Notification server & proxy successfully"];
- [CCUtility setPushNotificationToken:account token:self.pushKitToken];
- [CCUtility setPushNotificationDeviceIdentifier:account deviceIdentifier:deviceIdentifier];
- [CCUtility setPushNotificationDeviceIdentifierSignature:account deviceIdentifierSignature:signature];
- [CCUtility setPushNotificationSubscribingPublicKey:account publicKey:publicKey];
- }
- }];
- }
- }];
- }
- - (void)unsubscribingNextcloudServerPushNotification:(NSString *)account urlBase:(NSString *)urlBase user:(NSString *)user withSubscribing:(BOOL)subscribing
- {
- // test
- if (self.account.length == 0 || self.maintenanceMode)
- return;
-
- NSString *deviceIdentifier = [CCUtility getPushNotificationDeviceIdentifier:account];
- NSString *signature = [CCUtility getPushNotificationDeviceIdentifierSignature:account];
- NSString *publicKey = [CCUtility getPushNotificationSubscribingPublicKey:account];
- [[NCCommunication shared] unsubscribingPushNotificationWithServerUrl:urlBase account:account user:user password:[CCUtility getPassword:account] customUserAgent:nil addCustomHeaders:nil completionHandler:^(NSString *account, NSInteger errorCode, NSString *errorDescription) {
- if (errorCode == 0) {
- NSString *userAgent = [NSString stringWithFormat:@"%@ (Strict VoIP)", [CCUtility getUserAgent]];
- NSString *proxyServerPath = [NCBrandOptions sharedInstance].pushNotificationServerProxy;
- [[NCCommunication shared] unsubscribingPushProxyWithProxyServerUrl:proxyServerPath deviceIdentifier:deviceIdentifier signature:signature publicKey:publicKey userAgent:userAgent completionHandler:^(NSInteger errorCode, NSString *errorDescription) {
- if (errorCode == 0) {
-
- [[NCCommunicationCommon shared] writeLog:@"Unsubscribed to Push Notification server & proxy successfully."];
-
- [CCUtility setPushNotificationPublicKey:account data:nil];
- [CCUtility setPushNotificationSubscribingPublicKey:account publicKey:nil];
- [CCUtility setPushNotificationPrivateKey:account data:nil];
- [CCUtility setPushNotificationToken:account token:nil];
- [CCUtility setPushNotificationDeviceIdentifier:account deviceIdentifier:nil];
- [CCUtility setPushNotificationDeviceIdentifierSignature:account deviceIdentifierSignature:nil];
-
- if (self.pushKitToken != nil && subscribing) {
- [self subscribingNextcloudServerPushNotification:account urlBase:urlBase user:user];
- }
- }
- }];
- }
- }];
- }
- -(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler
- {
- //Called when a notification is delivered to a foreground app.
- completionHandler(UNNotificationPresentationOptionAlert);
- }
- -(void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(nonnull UNNotificationResponse *)response withCompletionHandler:(nonnull void (^)(void))completionHandler
- {
- completionHandler();
- }
- - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
- {
- self.pushKitToken = [self stringWithDeviceToken:deviceToken];
- [self pushNotification];
- }
- - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
- {
- NSString *message = [userInfo objectForKey:@"subject"];
- if (message) {
- NSArray *results = [[NCManageDatabase sharedInstance] getAllAccount];
- for (tableAccount *result in results) {
- if ([CCUtility getPushNotificationPrivateKey:result.account]) {
- NSData *decryptionKey = [CCUtility getPushNotificationPrivateKey:result.account];
- NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey:decryptionKey];
- if (decryptedMessage) {
- NSData *data = [decryptedMessage dataUsingEncoding:NSUTF8StringEncoding];
- NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
- NSInteger nid = [[json objectForKey:@"nid"] integerValue];
- BOOL delete = [[json objectForKey:@"delete"] boolValue];
- BOOL deleteAll = [[json objectForKey:@"delete-all"] boolValue];
- if (delete) {
- [self removeNotificationWithNotificationId:nid usingDecryptionKey:decryptionKey];
- } else if (deleteAll) {
- [self cleanAllNotifications];
- }
- }
- }
- }
- }
- completionHandler(UIBackgroundFetchResultNoData);
- }
- - (void)cleanAllNotifications
- {
- [[UNUserNotificationCenter currentNotificationCenter] removeAllDeliveredNotifications];
- }
- - (void)removeNotificationWithNotificationId:(NSInteger)notificationId usingDecryptionKey:(NSData *)key
- {
- // Check in pending notifications
- [[UNUserNotificationCenter currentNotificationCenter] getPendingNotificationRequestsWithCompletionHandler:^(NSArray<UNNotificationRequest *> * _Nonnull requests) {
- for (UNNotificationRequest *notificationRequest in requests) {
- NSString *message = [notificationRequest.content.userInfo objectForKey:@"subject"];
- NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey:key];
- if (decryptedMessage) {
- NSData *data = [decryptedMessage dataUsingEncoding:NSUTF8StringEncoding];
- NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
- NSInteger nid = [[json objectForKey:@"nid"] integerValue];
- if (nid == notificationId) {
- [[UNUserNotificationCenter currentNotificationCenter] removePendingNotificationRequestsWithIdentifiers:@[notificationRequest.identifier]];
- }
- }
- }
- }];
- // Check in delivered notifications
- [[UNUserNotificationCenter currentNotificationCenter] getDeliveredNotificationsWithCompletionHandler:^(NSArray<UNNotification *> * _Nonnull notifications) {
- for (UNNotification *notification in notifications) {
- NSString *message = [notification.request.content.userInfo objectForKey:@"subject"];
- NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey:key];
- if (decryptedMessage) {
- NSData *data = [decryptedMessage dataUsingEncoding:NSUTF8StringEncoding];
- NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
- NSInteger nid = [[json objectForKey:@"nid"] integerValue];
- if (nid == notificationId) {
- [[UNUserNotificationCenter currentNotificationCenter] removeDeliveredNotificationsWithIdentifiers:@[notification.request.identifier]];
- }
- }
- }
- }];
- }
- - (NSString *)stringWithDeviceToken:(NSData *)deviceToken
- {
- const char *data = [deviceToken bytes];
- NSMutableString *token = [NSMutableString string];
-
- for (NSUInteger i = 0; i < [deviceToken length]; i++) {
- [token appendFormat:@"%02.2hhX", data[i]];
- }
-
- return [token copy];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Quick Actions - ShotcutItem =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)configDynamicShortcutItems
- {
- NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
-
- UIApplicationShortcutIcon *shortcutMediaIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:@"media"];
- UIApplicationShortcutItem *shortcutMedia = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.media", bundleId] localizedTitle:NSLocalizedString(@"_media_", nil) localizedSubtitle:nil icon:shortcutMediaIcon userInfo:nil];
-
- // add the array to our app
- if (shortcutMedia)
- [UIApplication sharedApplication].shortcutItems = @[shortcutMedia];
- }
- - (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL))completionHandler
- {
- BOOL handledShortCutItem = [self handleShortCutItem:shortcutItem];
-
- completionHandler(handledShortCutItem);
- }
- - (BOOL)handleShortCutItem:(UIApplicationShortcutItem *)shortcutItem
- {
- BOOL handled = NO;
-
- NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
- NSString *shortcutMedia = [NSString stringWithFormat:@"%@.media", bundleId];
-
- if ([shortcutItem.type isEqualToString:shortcutMedia] && self.account) {
-
- dispatch_async(dispatch_get_main_queue(), ^{
- UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
- if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
- UINavigationController *navigationControllerMaster = (UINavigationController *)splitViewController.viewControllers.firstObject;
- if ([navigationControllerMaster isKindOfClass:[UINavigationController class]]) {
- UITabBarController *tabBarController = (UITabBarController *)navigationControllerMaster.topViewController;
- if ([tabBarController isKindOfClass:[UITabBarController class]]) {
-
- if (splitViewController.isCollapsed) {
-
- [navigationControllerMaster popToRootViewControllerAnimated:false];
- UINavigationController *navigationControllerMaster = (UINavigationController *)splitViewController.viewControllers.firstObject;
- if ([navigationControllerMaster isKindOfClass:[UINavigationController class]]) {
- UITabBarController *tabBarController = (UITabBarController *)navigationControllerMaster.topViewController;
- if ([tabBarController isKindOfClass:[UITabBarController class]]) {
- [tabBarController setSelectedIndex: k_tabBarApplicationIndexMedia];
- }
- }
-
- } else {
-
- if ([tabBarController isKindOfClass:[UITabBarController class]]) {
- [tabBarController setSelectedIndex: k_tabBarApplicationIndexMedia];
- }
- }
- }
- }
- }
- });
-
- handled = YES;
- }
-
- return handled;
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== ApplicationIconBadgeNumber =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)updateApplicationIconBadgeNumber
- {
- if (self.account.length == 0 || self.maintenanceMode) return;
-
- NSInteger counterDownload = [[NCOperationQueue shared] downloadCount];
- NSInteger counterUpload = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"status == %d OR status == %d OR status == %d", k_metadataStatusWaitUpload, k_metadataStatusInUpload, k_metadataStatusUploading] page:0 limit:0 sorted:@"fileName" ascending:NO].count;
- NSInteger total = counterDownload + counterUpload;
-
- [UIApplication sharedApplication].applicationIconBadgeNumber = total;
-
- UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
- if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
- UINavigationController *navigationController = (UINavigationController *)[splitViewController.viewControllers firstObject];
- if ([navigationController isKindOfClass:[UINavigationController class]]) {
- UITabBarController *tabBarController = (UITabBarController *)navigationController.topViewController;
- if ([tabBarController isKindOfClass:[UITabBarController class]]) {
- UITabBarItem *tabBarItem = [tabBarController.tabBar.items objectAtIndex:0];
-
- if (total > 0) {
- [tabBarItem setBadgeValue:[NSString stringWithFormat:@"%li", (unsigned long)total]];
- } else {
- [tabBarItem setBadgeValue:nil];
- }
- }
- }
- }
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== TabBarController =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)createTabBarController:(UITabBarController *)tabBarController
- {
- UITabBarItem *item;
- NSLayoutConstraint *constraint;
- CGFloat safeAreaBottom = safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
-
- // File
- item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexFile];
- [item setTitle:NSLocalizedString(@"_home_", nil)];
- item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarFiles"] width:50 height:50 color:NCBrandColor.sharedInstance.brandElement];
- item.selectedImage = item.image;
-
- // Favorites
- item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexFavorite];
- [item setTitle:NSLocalizedString(@"_favorites_", nil)];
- item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] width:50 height:50 color:NCBrandColor.sharedInstance.brandElement];
- item.selectedImage = item.image;
-
- // (PLUS INVISIBLE)
- item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexPlusHide];
- item.title = @"";
- item.image = nil;
- item.enabled = false;
-
- // Media
- item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexMedia];
- [item setTitle:NSLocalizedString(@"_media_", nil)];
- item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"media"] width:50 height:50 color:NCBrandColor.sharedInstance.brandElement];
- item.selectedImage = item.image;
-
- // More
- item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexMore];
- [item setTitle:NSLocalizedString(@"_more_", nil)];
- item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarMore"] width:50 height:50 color:NCBrandColor.sharedInstance.brandElement];
- item.selectedImage = item.image;
-
- // Plus Button
- int buttonSize = 57;
- UIImage *buttonImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarPlus"] width:120 height:120 color:UIColor.whiteColor];
- UIButton *buttonPlus = [UIButton buttonWithType:UIButtonTypeCustom];
- buttonPlus.tag = 99;
- buttonPlus.accessibilityLabel = NSLocalizedString(@"_accessibility_add_upload_", nil);
- [buttonPlus setImage:buttonImage forState:UIControlStateNormal];
- buttonPlus.backgroundColor = NCBrandColor.sharedInstance.brandElement;
- buttonPlus.layer.cornerRadius = buttonSize / 2;
- buttonPlus.layer.masksToBounds = NO;
- buttonPlus.layer.shadowOffset = CGSizeMake(0, 0);
- buttonPlus.layer.shadowRadius = 3.0f;
- buttonPlus.layer.shadowOpacity = 0.5;
-
- [buttonPlus addTarget:self action:@selector(handleTouchTabbarCenter:) forControlEvents:UIControlEventTouchUpInside];
-
- [buttonPlus setTranslatesAutoresizingMaskIntoConstraints:NO];
- [tabBarController.tabBar addSubview:buttonPlus];
-
- if (safeAreaBottom > 0) {
-
- // X
- constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0];
- [tabBarController.view addConstraint:constraint];
- // Y
- constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeTop multiplier:1.0 constant:-(buttonSize / 2)];
- [tabBarController.view addConstraint:constraint];
- // Width
- constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:1.0 constant:buttonSize];
- [tabBarController.view addConstraint:constraint];
- // Height
- constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:1.0 constant:buttonSize];
- [tabBarController.view addConstraint:constraint];
-
- } else {
-
- // X
- constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0];
- [tabBarController.view addConstraint:constraint];
- // Y
- constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:-(buttonSize / 2)];
- [tabBarController.view addConstraint:constraint];
- // Width
- constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:1.0 constant:buttonSize];
- [tabBarController.view addConstraint:constraint];
- // Height
- constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:1.0 constant:buttonSize];
- [tabBarController.view addConstraint:constraint];
- }
- }
- - (void)handleTouchTabbarCenter:(id)sender
- {
- // Test Maintenance
- if (self.maintenanceMode)
- return;
-
- tableDirectory *tableDirectory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", self.account, self.activeMain.serverUrl]];
-
- if ([tableDirectory.permissions containsString:@"CK"]) {
- UIViewController *vc = _activeMain.splitViewController.viewControllers[0];
- [self showMenuInViewController: vc];
- } else {
- [[NCContentPresenter shared] messageNotification:@"_warning_" description:@"_no_permission_add_file_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorInternalError forced:false];
- }
- }
- - (NSString *)getTabBarControllerActiveServerUrl
- {
- NSString *serverUrl = [[NCUtility shared] getHomeServerWithUrlBase:self.urlBase account:self.account];
- UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
- if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
- UINavigationController *masterNavigationController = [splitViewController.viewControllers firstObject];
- if ([masterNavigationController isKindOfClass:[UINavigationController class]]) {
- UITabBarController *tabBarController = [masterNavigationController.viewControllers firstObject];
- if ([tabBarController isKindOfClass:[UITabBarController class]]) {
- NSInteger index = tabBarController.selectedIndex;
-
- // select active serverUrl
- if (index == k_tabBarApplicationIndexFile) {
- serverUrl = self.activeMain.serverUrl;
- } else if (index == k_tabBarApplicationIndexFavorite) {
- if (self.activeFavorite.serverUrl)
- serverUrl = self.activeFavorite.serverUrl;
- } else if (index == k_tabBarApplicationIndexMedia) {
- serverUrl = [[NCManageDatabase sharedInstance] getAccountAutoUploadPathWithUrlBase:self.urlBase account:self.account];
- }
- }
- }
- }
-
- return serverUrl;
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Theming Color =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)settingThemingColorBrand
- {
- if (self.account.length == 0 || self.maintenanceMode)
- return;
-
- if ([NCBrandOptions sharedInstance].use_themingColor) {
-
- NSString *themingColor = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.account elements:NCElementsJSON.shared.capabilitiesThemingColor];
- NSString *themingColorElement = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.account elements:NCElementsJSON.shared.capabilitiesThemingColorElement];
- NSString *themingColorText = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.account elements:NCElementsJSON.shared.capabilitiesThemingColorText];
- [CCGraphics settingThemingColor:themingColor themingColorElement:themingColorElement themingColorText:themingColorText];
-
- BOOL isTooLight = NCBrandColor.sharedInstance.brandElement.isTooLight;
- BOOL isTooDark = NCBrandColor.sharedInstance.brandElement.isTooDark;
-
- if (isTooLight) {
- NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.brandElement darkerBy:10];
- } else if (isTooDark) {
- NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.brandElement lighterBy:25];
- }
-
- } else {
-
- BOOL isTooLight = NCBrandColor.sharedInstance.customer.isTooLight;
- BOOL isTooDark = NCBrandColor.sharedInstance.customer.isTooDark;
-
- if (isTooLight) {
- NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.customer darkerBy:10];
- } else if (isTooDark) {
- NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.customer lighterBy:25];
- } else {
- NCBrandColor.sharedInstance.brandElement = NCBrandColor.sharedInstance.customer;
- }
-
- NCBrandColor.sharedInstance.brand = NCBrandColor.sharedInstance.customer;
- NCBrandColor.sharedInstance.brandText = NCBrandColor.sharedInstance.customerText;
- }
-
- [NCBrandColor.sharedInstance setDarkMode];
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- [[NCMainCommon shared] createImagesThemingColor];
- [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_changeTheming object:nil];
- });
- }
- - (void)changeTheming:(UIViewController *)viewController tableView:(UITableView *)tableView collectionView:(UICollectionView *)collectionView form:(BOOL)form
- {
- [NCBrandColor.sharedInstance setDarkMode];
- [self.window setTintColor:NCBrandColor.sharedInstance.textView];
- //Tab bar
- UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
- if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
- UINavigationController *masterNavigationController = [splitViewController.viewControllers firstObject];
- if ([masterNavigationController isKindOfClass:[UINavigationController class]]) {
- UITabBarController *tabBarController = [masterNavigationController.viewControllers firstObject];
- if ([tabBarController isKindOfClass:[UITabBarController class]]) {
- tabBarController.tabBar.barTintColor = NCBrandColor.sharedInstance.backgroundView;
- tabBarController.tabBar.backgroundColor = NCBrandColor.sharedInstance.tabBar;
- tabBarController.tabBar.tintColor = NCBrandColor.sharedInstance.brandElement;
- [tabBarController.tabBar viewWithTag:99].backgroundColor = NCBrandColor.sharedInstance.brandElement;
- }
- }
- }
-
- // Nav bar
- [self configureNavBarForViewController:viewController];
- // View
- if (form) viewController.view.backgroundColor = NCBrandColor.sharedInstance.backgroundForm;
- else viewController.view.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
-
- // TableView
- if (tableView) {
- if (form) tableView.backgroundColor = NCBrandColor.sharedInstance.backgroundForm;
- else tableView.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
- tableView.separatorColor = NCBrandColor.sharedInstance.separator;
- [tableView reloadData];
- }
-
- // CollectionView
- if (collectionView) {
- if (form) collectionView.backgroundColor = NCBrandColor.sharedInstance.backgroundForm;
- else collectionView.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
- [collectionView reloadData];
- }
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Fetch =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
- {
- // Test Maintenance
- if (self.account.length == 0 || self.maintenanceMode) {
- completionHandler(UIBackgroundFetchResultNoData);
- return;
- }
-
- [[NCCommunicationCommon shared] writeLog:@"Start perform Fetch With Completion Handler"];
-
- // Verify new photo
- [[NCAutoUpload sharedInstance] initStateAutoUpload];
-
- // after 20 sec
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
- [[NCCommunicationCommon shared] writeLog:@"End 20 sec. perform Fetch With Completion Handler"];
- completionHandler(UIBackgroundFetchResultNoData);
- });
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Operation Networking & Session =====
- #pragma --------------------------------------------------------------------------------------------
- //
- // Method called by the system when all the background task has end
- //
- - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler
- {
- [[NCCommunicationCommon shared] writeLog:[NSString stringWithFormat:@"Start handle Events For Background URLSession: %@", identifier]];
-
- [self updateApplicationIconBadgeNumber];
-
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
- self.backgroundSessionCompletionHandler = completionHandler;
- void (^completionHandler)() = self.backgroundSessionCompletionHandler;
- self.backgroundSessionCompletionHandler = nil;
- completionHandler();
- });
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== OpenURL =====
- #pragma --------------------------------------------------------------------------------------------
- // Method called from iOS system to send a file from other app.
- - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<NSString *,id> *)options
- {
- if (self.account.length == 0 || self.maintenanceMode)
- return YES;
-
- NSString *scheme = url.scheme;
- dispatch_time_t timer = 0;
- if (self.activeMain == nil) timer = 1;
- if ([scheme isEqualToString:@"nextcloud"]) {
-
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, timer * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
-
- NSString *action = url.host;
- if ([action isEqualToString:@"open-file"]) {
- NSURLComponents *urlComponents = [NSURLComponents componentsWithURL:url resolvingAgainstBaseURL:NO];
- NSArray *queryItems = urlComponents.queryItems;
- NSString *user = [CCUtility valueForKey:@"user" fromQueryItems:queryItems];
- NSString *path = [CCUtility valueForKey:@"path" fromQueryItems:queryItems];
- NSString *link = [CCUtility valueForKey:@"link" fromQueryItems:queryItems];
- tableAccount *matchedAccount = nil;
- // verify parameter
- if (user.length == 0 || path.length == 0 || [[NSURL URLWithString:link] host].length == 0) {
-
- UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_error_parameter_schema_", nil) preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
-
- [alertController addAction:okAction];
- [self.window.rootViewController presentViewController:alertController animated:YES completion:nil];
-
- } else {
-
- tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
- if (account) {
- NSURL *accountURL = [NSURL URLWithString:account.urlBase];
- NSString *accountUser = account.user;
- if ([link containsString:accountURL.host] && [user isEqualToString:accountUser]) {
- matchedAccount = account;
- } else {
- NSArray *accounts = [[NCManageDatabase sharedInstance] getAllAccount];
- for (tableAccount *account in accounts) {
- NSURL *accountURL = [NSURL URLWithString:account.urlBase];
- NSString *accountUser = account.user;
- if ([link containsString:accountURL.host] && [user isEqualToString:accountUser]) {
- matchedAccount = [[NCManageDatabase sharedInstance] setAccountActive:account.account];
- [self settingAccount:matchedAccount.account urlBase:matchedAccount.urlBase user:matchedAccount.user userID:matchedAccount.userID password:[CCUtility getPassword:matchedAccount.account]];
- [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
- }
- }
- }
-
- if (matchedAccount) {
-
- UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
- if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
- UINavigationController *navigationControllerMaster = (UINavigationController *)splitViewController.viewControllers.firstObject;
- if ([navigationControllerMaster isKindOfClass:[UINavigationController class]]) {
- UITabBarController *tabBarController = (UITabBarController *)navigationControllerMaster.topViewController;
- if ([tabBarController isKindOfClass:[UITabBarController class]]) {
-
- if (splitViewController.isCollapsed) {
-
- [navigationControllerMaster popToRootViewControllerAnimated:false];
- UINavigationController *navigationControllerMaster = (UINavigationController *)splitViewController.viewControllers.firstObject;
- if ([navigationControllerMaster isKindOfClass:[UINavigationController class]]) {
- UITabBarController *tabBarController = (UITabBarController *)navigationControllerMaster.topViewController;
- if ([tabBarController isKindOfClass:[UITabBarController class]]) {
- if ([tabBarController isKindOfClass:[UITabBarController class]]) {
- [tabBarController setSelectedIndex: k_tabBarApplicationIndexFile];
- }
- }
- }
-
- } else {
-
- if ([tabBarController isKindOfClass:[UITabBarController class]]) {
- [tabBarController setSelectedIndex: k_tabBarApplicationIndexFile];
- }
- }
-
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
-
- [self.activeMain.navigationController popToRootViewControllerAnimated:NO];
-
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
-
- NSString *webDAV = [[NCUtility shared] getWebDAVWithAccount:self.account];
- NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@/%@", matchedAccount.urlBase, webDAV, path];
-
- if ([path containsString:@"/"]) {
-
- // Push
- NSString *fileName = [[path stringByDeletingLastPathComponent] lastPathComponent];
- NSString *serverUrl = [CCUtility deletingLastPathComponentFromServerUrl:[NSString stringWithFormat:@"%@/%@/%@", matchedAccount.urlBase, webDAV, [path stringByDeletingLastPathComponent]]];
- tableMetadata *metadata = [[NCManageDatabase sharedInstance] createMetadataWithAccount:matchedAccount.account fileName:fileName ocId:[[NSUUID UUID] UUIDString] serverUrl:serverUrl urlBase: @"" url:@"" contentType:@"" livePhoto:false];
- [self.activeMain performSegueDirectoryWithMetadata:metadata blinkFileNamePath:fileNamePath];
-
- } else {
-
- // Reload folder
- NSString *serverUrl = [NSString stringWithFormat:@"%@/%@", matchedAccount.urlBase, webDAV];
-
- self.activeMain.blinkFileNamePath = fileNamePath;
- [self.activeMain readFolder:serverUrl];
- }
- });
- });
- }
- }
- }
-
- } else {
-
- NSString *domain = [[NSURL URLWithString:link] host];
- NSString *fileName = [path lastPathComponent];
- NSString *message = [NSString stringWithFormat:NSLocalizedString(@"_account_not_available_", nil), user, domain, fileName];
-
- UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_info_", nil) message:message preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
-
- [alertController addAction:okAction];
- [self.window.rootViewController presentViewController:alertController animated:YES completion:nil];
- }
- }
- }
- }
- });
-
- return YES;
- }
-
- NSError *error;
- NSLog(@"[LOG] the path is: %@", url.path);
-
- NSArray *splitedUrl = [url.path componentsSeparatedByString:@"/"];
- self.fileNameUpload = [NSString stringWithFormat:@"%@",[splitedUrl objectAtIndex:([splitedUrl count]-1)]];
-
- if (self.account) {
-
- [[NSFileManager defaultManager]removeItemAtPath:[NSTemporaryDirectory() stringByAppendingString:self.fileNameUpload] error:nil];
- [[NSFileManager defaultManager]moveItemAtPath:url.path toPath:[NSTemporaryDirectory() stringByAppendingString:self.fileNameUpload] error:&error];
-
- if (error == nil) {
-
- UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
- if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
- UINavigationController *navigationControllerMaster = (UINavigationController *)splitViewController.viewControllers.firstObject;
- if ([navigationControllerMaster isKindOfClass:[UINavigationController class]]) {
- UIViewController *uploadNavigationViewController = [[UIStoryboard storyboardWithName:@"CCUploadFromOtherUpp" bundle:nil] instantiateViewControllerWithIdentifier:@"CCUploadNavigationViewController"];
-
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, timer * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
- [navigationControllerMaster presentViewController:uploadNavigationViewController animated:YES completion:nil];
- });
- }
- }
- }
- }
-
- return YES;
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Passcode + Delegate =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)passcodeWithAutomaticallyPromptForBiometricValidation:(BOOL)automaticallyPromptForBiometricValidation
- {
- LAContext *laContext = [LAContext new];
- NSError *error;
- BOOL isBiometryAvailable = false;
-
- if ([[CCUtility getPasscode] length] == 0 || [self.account length] == 0 || [CCUtility getNotPasscodeAtStart]) return;
-
- if (self.passcodeViewController == nil) {
-
- self.passcodeViewController = [[TOPasscodeViewController alloc] initWithStyle:TOPasscodeViewStyleTranslucentLight passcodeType:TOPasscodeTypeSixDigits];
- if (@available(iOS 13.0, *)) {
- if ([[UITraitCollection currentTraitCollection] userInterfaceStyle] == UIUserInterfaceStyleDark) {
- self.passcodeViewController.style = TOPasscodeViewStyleTranslucentDark;
- }
- }
- self.passcodeViewController.delegate = self;
- self.passcodeViewController.keypadButtonShowLettering = false;
-
- if (CCUtility.getEnableTouchFaceID && [laContext canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) {
- if (error == NULL) {
- if (laContext.biometryType == LABiometryTypeFaceID) {
- self.passcodeViewController.biometryType = TOPasscodeBiometryTypeFaceID;
- self.passcodeViewController.allowBiometricValidation = true;
- isBiometryAvailable = true;
- } else if (laContext.biometryType == LABiometryTypeTouchID) {
- self.passcodeViewController.biometryType = TOPasscodeBiometryTypeTouchID;
- self.passcodeViewController.allowBiometricValidation = true;
- isBiometryAvailable = true;
- } else {
- isBiometryAvailable = false;
- NSLog(@"No Biometric support");
- }
- }
- }
-
- [self.window.rootViewController presentViewController:self.passcodeViewController animated:YES completion:^{
- [self enableTouchFaceID:automaticallyPromptForBiometricValidation];
- }];
-
- } else {
-
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
- [self enableTouchFaceID:automaticallyPromptForBiometricValidation];
- });
- }
- }
- - (void)didInputCorrectPasscodeInPasscodeViewController:(TOPasscodeViewController *)passcodeViewController
- {
- [passcodeViewController dismissViewControllerAnimated:YES completion:^{
- self.passcodeViewController = nil;
- }];
- }
- - (BOOL)passcodeViewController:(TOPasscodeViewController *)passcodeViewController isCorrectCode:(NSString *)code
- {
- return [code isEqualToString:[CCUtility getPasscode]];
- }
- - (void)didPerformBiometricValidationRequestInPasscodeViewController:(TOPasscodeViewController *)passcodeViewController
- {
- [[LAContext new] evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:[[NCBrandOptions sharedInstance] brand] reply:^(BOOL success, NSError * _Nullable error) {
- if (success) {
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
- [passcodeViewController dismissViewControllerAnimated:YES completion:^{
- self.passcodeViewController = nil;
- }];
- });
- }
- }];
- }
- - (void)enableTouchFaceID:(BOOL)automaticallyPromptForBiometricValidation
- {
- if (CCUtility.getEnableTouchFaceID && automaticallyPromptForBiometricValidation && self.passcodeViewController.view.window) {
- [[LAContext new] evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:[[NCBrandOptions sharedInstance] brand] reply:^(BOOL success, NSError * _Nullable error) {
- if (success) {
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
- [self.passcodeViewController dismissViewControllerAnimated:YES completion:^{
- self.passcodeViewController = nil;
- }];
- });
- }
- }];
- }
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Maintenance Mode =====
- #pragma --------------------------------------------------------------------------------------------
- - (void)maintenanceMode:(BOOL)mode
- {
- self.maintenanceMode = mode;
- }
- @end
|