AppDelegate.m 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047
  1. //
  2. // AppDelegate.m
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/09/14.
  6. // Copyright (c) 2014 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "AppDelegate.h"
  24. #import "CCGraphics.h"
  25. #import "NCBridgeSwift.h"
  26. #import "NCAutoUpload.h"
  27. #import "NCPushNotificationEncryption.h"
  28. #import <QuartzCore/QuartzCore.h>
  29. @import Sentry;
  30. @class NCViewerRichdocument;
  31. @interface AppDelegate() <TOPasscodeViewControllerDelegate>
  32. @end
  33. @implementation AppDelegate
  34. + (void)initialize
  35. {
  36. [[NSUserDefaults standardUserDefaults] registerDefaults:@{@"UserAgent": [CCUtility getUserAgent]}];
  37. }
  38. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  39. {
  40. BOOL isSimulatorOrTestFlight = [[NCUtility shared] isSimulatorOrTestFlight];
  41. if (isSimulatorOrTestFlight) {
  42. NCBrandOptions.sharedInstance.disable_crash_service = false;
  43. }
  44. if (![CCUtility getDisableCrashservice] && NCBrandOptions.sharedInstance.disable_crash_service == false) {
  45. [SentrySDK startWithOptions: @{
  46. @"dsn": @"https://42eaf570ec2646b1a564a4c4bfc8c279@o394108.ingest.sentry.io/5243836",
  47. @"debug": @(YES),
  48. @"enableAutoSessionTracking": @(YES)
  49. /* PRIVACY : https://github.com/getsentry/sentry-cocoa
  50. By default, we don’t apply the user identification provided to the SDK via the API. Instead, we use
  51. the installation ID generated with the first use of the application. The ID doesn’t contain any
  52. private or public data of your users or any public or shared data of their device.
  53. */
  54. }];
  55. }
  56. [CCUtility createDirectoryStandard];
  57. [CCUtility emptyTemporaryDirectory];
  58. // Networking
  59. [[NCCommunicationCommon shared] setupWithDelegate:[NCNetworking shared]];
  60. [[NCCommunicationCommon shared] setupWithUserAgent:[CCUtility getUserAgent]];
  61. NSInteger logLevel = [CCUtility getLogLevel];
  62. [[NCCommunicationCommon shared] setFileLogWithLevel:logLevel];
  63. NSString *versionApp = [NSString stringWithFormat:@"%@.%@", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
  64. NSString *versionNextcloudiOS = [NSString stringWithFormat:[NCBrandOptions sharedInstance].textCopyrightNextcloudiOS, versionApp];
  65. if (isSimulatorOrTestFlight) {
  66. [[NCCommunicationCommon shared] writeLog:[NSString stringWithFormat:@"Start session with level %lu %@ (Simulator / TestFlight)", (unsigned long)logLevel, versionNextcloudiOS]];
  67. } else {
  68. [[NCCommunicationCommon shared] writeLog:[NSString stringWithFormat:@"Start session with level %lu %@", (unsigned long)logLevel, versionNextcloudiOS]];
  69. }
  70. //
  71. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initializeMain:) name:k_notificationCenter_initializeMain object:nil];
  72. // Set account, if no exists clear all
  73. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
  74. if (tableAccount == nil) {
  75. // remove all the keys Chain
  76. [CCUtility deleteAllChainStore];
  77. // remove all the App group key
  78. [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:[[NSBundle mainBundle] bundleIdentifier]];
  79. } else {
  80. // FIX 3.0.5 lost urlbase
  81. if (tableAccount.urlBase.length == 0) {
  82. NSString *user = [tableAccount.user stringByAppendingString:@" "];
  83. NSString *urlBase = [tableAccount.account stringByReplacingOccurrencesOfString:user withString:@""];
  84. tableAccount.urlBase = urlBase;
  85. [[NCManageDatabase sharedInstance] updateAccount:tableAccount];
  86. tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
  87. }
  88. [self settingAccount:tableAccount.account urlBase:tableAccount.urlBase user:tableAccount.user userID:tableAccount.userID password:[CCUtility getPassword:tableAccount.account]];
  89. }
  90. // UserDefaults
  91. self.ncUserDefaults = [[NSUserDefaults alloc] initWithSuiteName:[NCBrandOptions sharedInstance].capabilitiesGroups];
  92. // Background Fetch
  93. [application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
  94. self.listProgressMetadata = [NSMutableDictionary new];
  95. self.listFilesVC = [NSMutableDictionary new];
  96. self.listMainVC = [NSMutableDictionary new];
  97. self.listFavoriteVC = [NSMutableDictionary new];
  98. self.listOfflineVC = [NSMutableDictionary new];
  99. // Push Notification
  100. [application registerForRemoteNotifications];
  101. // Display notification
  102. [UNUserNotificationCenter currentNotificationCenter].delegate = self;
  103. UNAuthorizationOptions authOptions = UNAuthorizationOptionAlert | UNAuthorizationOptionSound | UNAuthorizationOptionBadge;
  104. [[UNUserNotificationCenter currentNotificationCenter] requestAuthorizationWithOptions:authOptions completionHandler:^(BOOL granted, NSError * _Nullable error) { }];
  105. //AV Session
  106. [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:nil];
  107. [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
  108. // ProgressView Detail
  109. self.progressViewDetail = [[UIProgressView alloc] initWithProgressViewStyle: UIProgressViewStyleBar];
  110. // Start Timer
  111. self.timerUpdateApplicationIconBadgeNumber = [NSTimer scheduledTimerWithTimeInterval:k_timerUpdateApplicationIconBadgeNumber target:self selector:@selector(updateApplicationIconBadgeNumber) userInfo:nil repeats:YES];
  112. [self startTimerErrorNetworking];
  113. // Store review
  114. if ([[NCUtility shared] isSimulatorOrTestFlight] == false) {
  115. NCStoreReview *review = [NCStoreReview new];
  116. [review incrementAppRuns];
  117. [review showStoreReview];
  118. }
  119. // Detect Dark mode
  120. if (@available(iOS 13.0, *)) {
  121. if ([CCUtility getDarkModeDetect]) {
  122. if ([[UITraitCollection currentTraitCollection] userInterfaceStyle] == UIUserInterfaceStyleDark) {
  123. [CCUtility setDarkMode:YES];
  124. } else {
  125. [CCUtility setDarkMode:NO];
  126. }
  127. }
  128. }
  129. if ([NCBrandOptions sharedInstance].disable_intro) {
  130. [CCUtility setIntro:YES];
  131. if (self.account.length == 0) {
  132. [self openLoginView:nil selector:k_intro_login openLoginWeb:false];
  133. }
  134. } else {
  135. if ([CCUtility getIntro] == NO) {
  136. UIViewController *introViewController = [[UIStoryboard storyboardWithName:@"NCIntro" bundle:[NSBundle mainBundle]] instantiateInitialViewController];
  137. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController: introViewController];
  138. self.window.rootViewController = navController;
  139. [self.window makeKeyAndVisible];
  140. }
  141. }
  142. // init home
  143. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
  144. // Passcode
  145. dispatch_async(dispatch_get_main_queue(), ^{
  146. [self passcodeWithAutomaticallyPromptForBiometricValidation:true];
  147. });
  148. // Auto upload
  149. self.networkingAutoUpload = [NCNetworkingAutoUpload new];
  150. [[NCCommunicationCommon shared] writeLog:@"Application did finish launching"];
  151. return YES;
  152. }
  153. //
  154. // L' applicazione si dimetterà dallo stato di attivo
  155. //
  156. - (void)applicationWillResignActive:(UIApplication *)application
  157. {
  158. // Test Maintenance
  159. if (self.account.length == 0 || self.maintenanceMode)
  160. return;
  161. // Dismiss FileViewInFolder
  162. if (self.activeFileViewInFolder != nil ) {
  163. [self.activeFileViewInFolder dismissViewControllerAnimated:false completion:^{
  164. self.activeFileViewInFolder = nil;
  165. }];
  166. }
  167. [self updateApplicationIconBadgeNumber];
  168. }
  169. //
  170. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  171. //
  172. - (void)applicationWillEnterForeground:(UIApplication *)application
  173. {
  174. if (self.account.length == 0 || self.maintenanceMode) { return; }
  175. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_applicationWillEnterForeground object:nil];
  176. // Request Passcode
  177. [self passcodeWithAutomaticallyPromptForBiometricValidation:true];
  178. // Initialize Auto upload
  179. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  180. // Read active directory
  181. [self.activeFiles reloadDataSourceNetworkWithForced:true];
  182. // Required unsubscribing / subscribing
  183. [self pushNotification];
  184. // RichDocument
  185. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_richdocumentGrabFocus object:nil];
  186. // Request Service Server Nextcloud
  187. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  188. [[NCService shared] startRequestServicesServer];
  189. });
  190. [[NCCommunicationCommon shared] writeLog:@"The application Will enter in foreground"];
  191. }
  192. //
  193. // L' applicazione entrerà in primo piano (attivo sempre)
  194. //
  195. - (void)applicationDidBecomeActive:(UIApplication *)application
  196. {
  197. if (self.account.length == 0 || self.maintenanceMode) { return; }
  198. // Brand
  199. #if defined(HC)
  200. tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  201. if (account.hcIsTrial == true || account.hcTrialExpired == true || account.hcNextGroupExpirationGroupExpired == true) {
  202. HCTrial *vc = [[UIStoryboard storyboardWithName:@"HCTrial" bundle:nil] instantiateInitialViewController];
  203. vc.account = account;
  204. [self.window.rootViewController presentViewController:vc animated:YES completion:nil];
  205. }
  206. #endif
  207. [[NCNetworking shared] verifyUploadZombie];
  208. [[NCCommunicationCommon shared] writeLog:@"The application did become active"];
  209. }
  210. //
  211. // L' applicazione è entrata nello sfondo
  212. //
  213. - (void)applicationDidEnterBackground:(UIApplication *)application
  214. {
  215. if (self.account.length == 0 || self.maintenanceMode) { return; }
  216. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_applicationDidEnterBackground object:nil];
  217. [self passcodeWithAutomaticallyPromptForBiometricValidation:false];
  218. }
  219. //
  220. // L'applicazione terminerà
  221. //
  222. - (void)applicationWillTerminate:(UIApplication *)application
  223. {
  224. [[NCCommunicationCommon shared] writeLog:@"bye bye"];
  225. }
  226. // NotificationCenter
  227. - (void)initializeMain:(NSNotification *)notification
  228. {
  229. if (self.account.length == 0) return;
  230. // Clear error certificate
  231. [CCUtility setCertificateError:self.account error:NO];
  232. // Setting Theming
  233. [self settingThemingColorBrand];
  234. // If AVPlayer in play -> Stop
  235. if (self.player != nil && self.player.rate != 0) {
  236. [self.player pause];
  237. }
  238. // close detail
  239. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_menuDetailClose object:nil];
  240. // Not Photos Video in library ? then align and Init Auto Upload
  241. NSArray *recordsPhotoLibrary = [[NCManageDatabase sharedInstance] getPhotoLibraryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", self.account]];
  242. if ([recordsPhotoLibrary count] == 0) {
  243. [[NCAutoUpload sharedInstance] alignPhotoLibrary];
  244. }
  245. // Start Auto Upload
  246. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  247. // Start services
  248. [[NCCommunicationCommon shared] writeLog:@"Request Service Server Nextcloud"];
  249. [[NCService shared] startRequestServicesServer];
  250. // Registeration push notification
  251. [self pushNotification];
  252. // Registeration domain File Provider
  253. FileProviderDomain *fileProviderDomain = [FileProviderDomain new];
  254. [fileProviderDomain removeAllDomains];
  255. //[fileProviderDomain registerDomains];
  256. [[NCCommunicationCommon shared] writeLog:@"initialize Main"];
  257. }
  258. #pragma --------------------------------------------------------------------------------------------
  259. #pragma mark ===== Login / checkErrorNetworking =====
  260. #pragma --------------------------------------------------------------------------------------------
  261. - (void)checkErrorNetworking
  262. {
  263. // test
  264. if (self.account.length == 0 || self.maintenanceMode)
  265. return;
  266. // check unauthorized server (401)
  267. if ([CCUtility getPassword:self.account].length == 0) {
  268. [self openLoginView:self.window.rootViewController selector:k_intro_login openLoginWeb:true];
  269. }
  270. // check certificate untrusted (-1202)
  271. if ([CCUtility getCertificateError:self.account]) {
  272. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_ssl_certificate_untrusted_", nil) message:NSLocalizedString(@"_connect_server_anyway_", nil) preferredStyle:UIAlertControllerStyleAlert];
  273. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_yes_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  274. [[NCNetworking shared] wrtiteCertificateWithDirectoryCertificate:[CCUtility getDirectoryCerificates]];
  275. [self startTimerErrorNetworking];
  276. }]];
  277. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_no_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  278. [self startTimerErrorNetworking];
  279. }]];
  280. [self.window.rootViewController presentViewController:alertController animated:YES completion:^{
  281. // Stop timer error network
  282. [self.timerErrorNetworking invalidate];
  283. }];
  284. }
  285. }
  286. - (void)openLoginView:(UIViewController *)viewController selector:(NSInteger)selector openLoginWeb:(BOOL)openLoginWeb
  287. {
  288. // use appConfig [MDM]
  289. if ([NCBrandOptions sharedInstance].use_configuration) {
  290. if (!(_appConfigView.isViewLoaded && _appConfigView.view.window)) {
  291. self.appConfigView = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCAppConfigView"];
  292. [self showLoginViewController:self.appConfigView forContext:viewController];
  293. }
  294. return;
  295. }
  296. // only for personalized LoginWeb [customer]
  297. if ([NCBrandOptions sharedInstance].use_login_web_personalized) {
  298. if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
  299. self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
  300. self.activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] loginBaseUrl];
  301. [self showLoginViewController:self.activeLoginWeb forContext:viewController];
  302. }
  303. return;
  304. }
  305. // normal login
  306. if (selector == k_intro_signup) {
  307. if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
  308. self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
  309. if (selector == k_intro_signup) {
  310. self.activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] linkloginPreferredProviders];
  311. } else {
  312. self.activeLoginWeb.urlBase = self.urlBase;
  313. }
  314. [self showLoginViewController:self.activeLoginWeb forContext:viewController];
  315. }
  316. } else if ([NCBrandOptions sharedInstance].disable_intro && [NCBrandOptions sharedInstance].disable_request_login_url) {
  317. self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
  318. self.activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] loginBaseUrl];
  319. [self showLoginViewController:self.activeLoginWeb forContext:viewController];
  320. } else if (openLoginWeb) {
  321. if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
  322. self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
  323. self.activeLoginWeb.urlBase = self.urlBase;
  324. [self showLoginViewController:self.activeLoginWeb forContext:viewController];
  325. }
  326. } else {
  327. if (!(_activeLogin.isViewLoaded && _activeLogin.view.window)) {
  328. _activeLogin = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"CCLoginNextcloud"];
  329. [self showLoginViewController:_activeLogin forContext:viewController];
  330. }
  331. }
  332. }
  333. -(void)showLoginViewController:(UIViewController *)viewController forContext:(UIViewController *)contextViewController
  334. {
  335. if (contextViewController == NULL) {
  336. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
  337. navController.navigationBar.barStyle = UIBarStyleBlack;
  338. navController.navigationBar.tintColor = NCBrandColor.sharedInstance.customerText;
  339. navController.navigationBar.barTintColor = NCBrandColor.sharedInstance.customer;
  340. [navController.navigationBar setTranslucent:false];
  341. self.window.rootViewController = navController;
  342. [self.window makeKeyAndVisible];
  343. } else if ([contextViewController isKindOfClass:[UINavigationController class]]) {
  344. UINavigationController *navController = ((UINavigationController *)contextViewController);
  345. [navController pushViewController:viewController animated:true];
  346. } else {
  347. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
  348. navController.modalPresentationStyle = UIModalPresentationFullScreen;
  349. navController.navigationBar.barStyle = UIBarStyleBlack;
  350. navController.navigationBar.tintColor = NCBrandColor.sharedInstance.customerText;
  351. navController.navigationBar.barTintColor = NCBrandColor.sharedInstance.customer;
  352. [navController.navigationBar setTranslucent:false];
  353. [contextViewController presentViewController:navController animated:true completion:nil];
  354. }
  355. }
  356. - (void)startTimerErrorNetworking
  357. {
  358. self.timerErrorNetworking = [NSTimer scheduledTimerWithTimeInterval:k_timerErrorNetworking target:self selector:@selector(checkErrorNetworking) userInfo:nil repeats:YES];
  359. }
  360. #pragma --------------------------------------------------------------------------------------------
  361. #pragma mark ===== Account & Communication =====
  362. #pragma --------------------------------------------------------------------------------------------
  363. - (void)settingAccount:(NSString *)account urlBase:(NSString *)urlBase user:(NSString *)user userID:(NSString *)userID password:(NSString *)password
  364. {
  365. self.account = account;
  366. self.urlBase = urlBase;
  367. self.user = user;
  368. self.userID = userID;
  369. self.password = password;
  370. (void)[NCNetworkingNotificationCenter shared];
  371. [[NCCommunicationCommon shared] setupWithAccount:account user:user userId:userID password:password urlBase:urlBase];
  372. [self settingSetupCommunication:account];
  373. }
  374. - (void)deleteAccount:(NSString *)account wipe:(BOOL)wipe
  375. {
  376. // Push Notification
  377. tableAccount *accountPN = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", account]];
  378. [self unsubscribingNextcloudServerPushNotification:accountPN.account urlBase:accountPN.urlBase user:accountPN.user withSubscribing:false];
  379. [self settingAccount:nil urlBase:nil user:nil userID:nil password:nil];
  380. /* DELETE ALL FILES LOCAL FS */
  381. NSArray *results = [[NCManageDatabase sharedInstance] getTableLocalFilesWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", account] sorted:@"ocId" ascending:NO];
  382. for (tableLocalFile *result in results) {
  383. [CCUtility removeFileAtPath:[CCUtility getDirectoryProviderStorageOcId:result.ocId]];
  384. }
  385. // Clear database
  386. [[NCManageDatabase sharedInstance] clearDatabaseWithAccount:account removeAccount:true];
  387. [CCUtility clearAllKeysEndToEnd:account];
  388. [CCUtility clearAllKeysPushNotification:account];
  389. [CCUtility setCertificateError:account error:false];
  390. [CCUtility setPassword:account password:nil];
  391. if (wipe) {
  392. NSArray *listAccount = [[NCManageDatabase sharedInstance] getAccounts];
  393. if ([listAccount count] > 0) {
  394. NSString *newAccount = listAccount[0];
  395. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] setAccountActive:newAccount];
  396. [self settingAccount:newAccount urlBase:tableAccount.urlBase user:tableAccount.user userID:tableAccount.userID password:[CCUtility getPassword:tableAccount.account]];
  397. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
  398. } else {
  399. [self openLoginView:self.window.rootViewController selector:k_intro_login openLoginWeb:false];
  400. }
  401. }
  402. }
  403. - (void)settingSetupCommunication:(NSString *)account
  404. {
  405. NSInteger serverVersionMajor = [[NCManageDatabase sharedInstance] getCapabilitiesServerIntWithAccount:account elements:NCElementsJSON.shared.capabilitiesVersionMajor];
  406. if (serverVersionMajor > 0) {
  407. [[NCCommunicationCommon shared] setupWithNextcloudVersion:serverVersionMajor];
  408. }
  409. [[NCCommunicationCommon shared] setupWithWebDav:[[NCUtility shared] getWebDAVWithAccount:account]];
  410. [[NCCommunicationCommon shared] setupWithDav:[[NCUtility shared] getDAV]];
  411. }
  412. #pragma --------------------------------------------------------------------------------------------
  413. #pragma mark ===== Push Notifications =====
  414. #pragma --------------------------------------------------------------------------------------------
  415. - (void)pushNotification
  416. {
  417. // test
  418. if (self.account.length == 0 || self.maintenanceMode || self.pushKitToken.length == 0)
  419. return;
  420. for (tableAccount *result in [[NCManageDatabase sharedInstance] getAllAccount]) {
  421. NSString *token = [CCUtility getPushNotificationToken:result.account];
  422. if (![token isEqualToString:self.pushKitToken]) {
  423. if (token != nil) {
  424. // unsubscribing + subscribing
  425. [self unsubscribingNextcloudServerPushNotification:result.account urlBase:result.urlBase user:result.user withSubscribing:true];
  426. } else {
  427. [self subscribingNextcloudServerPushNotification:result.account urlBase:result.urlBase user:result.user];
  428. }
  429. }
  430. }
  431. }
  432. - (void)subscribingNextcloudServerPushNotification:(NSString *)account urlBase:(NSString *)urlBase user:(NSString *)user
  433. {
  434. // test
  435. if (self.account.length == 0 || self.maintenanceMode || self.pushKitToken.length == 0)
  436. return;
  437. [[NCPushNotificationEncryption sharedInstance] generatePushNotificationsKeyPair:account];
  438. NSString *pushTokenHash = [[NCEndToEndEncryption sharedManager] createSHA512:self.pushKitToken];
  439. NSData *pushPublicKey = [CCUtility getPushNotificationPublicKey:account];
  440. NSString *pushDevicePublicKey = [[NSString alloc] initWithData:pushPublicKey encoding:NSUTF8StringEncoding];
  441. NSString *proxyServerPath = [NCBrandOptions sharedInstance].pushNotificationServerProxy;
  442. [[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) {
  443. if (errorCode == 0) {
  444. NSString *userAgent = [NSString stringWithFormat:@"%@ (Strict VoIP)", [CCUtility getUserAgent]];
  445. [[NCCommunication shared] subscribingPushProxyWithProxyServerUrl:proxyServerPath pushToken:self.pushKitToken deviceIdentifier:deviceIdentifier signature:signature publicKey:publicKey userAgent:userAgent completionHandler:^(NSInteger errorCode, NSString *errorDescription) {
  446. if (errorCode == 0) {
  447. [[NCCommunicationCommon shared] writeLog:@"Subscribed to Push Notification server & proxy successfully"];
  448. [CCUtility setPushNotificationToken:account token:self.pushKitToken];
  449. [CCUtility setPushNotificationDeviceIdentifier:account deviceIdentifier:deviceIdentifier];
  450. [CCUtility setPushNotificationDeviceIdentifierSignature:account deviceIdentifierSignature:signature];
  451. [CCUtility setPushNotificationSubscribingPublicKey:account publicKey:publicKey];
  452. }
  453. }];
  454. }
  455. }];
  456. }
  457. - (void)unsubscribingNextcloudServerPushNotification:(NSString *)account urlBase:(NSString *)urlBase user:(NSString *)user withSubscribing:(BOOL)subscribing
  458. {
  459. // test
  460. if (self.account.length == 0 || self.maintenanceMode)
  461. return;
  462. NSString *deviceIdentifier = [CCUtility getPushNotificationDeviceIdentifier:account];
  463. NSString *signature = [CCUtility getPushNotificationDeviceIdentifierSignature:account];
  464. NSString *publicKey = [CCUtility getPushNotificationSubscribingPublicKey:account];
  465. [[NCCommunication shared] unsubscribingPushNotificationWithServerUrl:urlBase account:account user:user password:[CCUtility getPassword:account] customUserAgent:nil addCustomHeaders:nil completionHandler:^(NSString *account, NSInteger errorCode, NSString *errorDescription) {
  466. if (errorCode == 0) {
  467. NSString *userAgent = [NSString stringWithFormat:@"%@ (Strict VoIP)", [CCUtility getUserAgent]];
  468. NSString *proxyServerPath = [NCBrandOptions sharedInstance].pushNotificationServerProxy;
  469. [[NCCommunication shared] unsubscribingPushProxyWithProxyServerUrl:proxyServerPath deviceIdentifier:deviceIdentifier signature:signature publicKey:publicKey userAgent:userAgent completionHandler:^(NSInteger errorCode, NSString *errorDescription) {
  470. if (errorCode == 0) {
  471. [[NCCommunicationCommon shared] writeLog:@"Unsubscribed to Push Notification server & proxy successfully."];
  472. [CCUtility setPushNotificationPublicKey:account data:nil];
  473. [CCUtility setPushNotificationSubscribingPublicKey:account publicKey:nil];
  474. [CCUtility setPushNotificationPrivateKey:account data:nil];
  475. [CCUtility setPushNotificationToken:account token:nil];
  476. [CCUtility setPushNotificationDeviceIdentifier:account deviceIdentifier:nil];
  477. [CCUtility setPushNotificationDeviceIdentifierSignature:account deviceIdentifierSignature:nil];
  478. if (self.pushKitToken != nil && subscribing) {
  479. [self subscribingNextcloudServerPushNotification:account urlBase:urlBase user:user];
  480. }
  481. }
  482. }];
  483. }
  484. }];
  485. }
  486. -(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler
  487. {
  488. //Called when a notification is delivered to a foreground app.
  489. completionHandler(UNNotificationPresentationOptionAlert);
  490. }
  491. -(void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(nonnull UNNotificationResponse *)response withCompletionHandler:(nonnull void (^)(void))completionHandler
  492. {
  493. completionHandler();
  494. }
  495. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
  496. {
  497. self.pushKitToken = [self stringWithDeviceToken:deviceToken];
  498. [self pushNotification];
  499. }
  500. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  501. {
  502. NSString *message = [userInfo objectForKey:@"subject"];
  503. if (message) {
  504. NSArray *results = [[NCManageDatabase sharedInstance] getAllAccount];
  505. for (tableAccount *result in results) {
  506. if ([CCUtility getPushNotificationPrivateKey:result.account]) {
  507. NSData *decryptionKey = [CCUtility getPushNotificationPrivateKey:result.account];
  508. NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey:decryptionKey];
  509. if (decryptedMessage) {
  510. NSData *data = [decryptedMessage dataUsingEncoding:NSUTF8StringEncoding];
  511. NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
  512. NSInteger nid = [[json objectForKey:@"nid"] integerValue];
  513. BOOL delete = [[json objectForKey:@"delete"] boolValue];
  514. BOOL deleteAll = [[json objectForKey:@"delete-all"] boolValue];
  515. if (delete) {
  516. [self removeNotificationWithNotificationId:nid usingDecryptionKey:decryptionKey];
  517. } else if (deleteAll) {
  518. [self cleanAllNotifications];
  519. }
  520. }
  521. }
  522. }
  523. }
  524. completionHandler(UIBackgroundFetchResultNoData);
  525. }
  526. - (void)cleanAllNotifications
  527. {
  528. [[UNUserNotificationCenter currentNotificationCenter] removeAllDeliveredNotifications];
  529. }
  530. - (void)removeNotificationWithNotificationId:(NSInteger)notificationId usingDecryptionKey:(NSData *)key
  531. {
  532. // Check in pending notifications
  533. [[UNUserNotificationCenter currentNotificationCenter] getPendingNotificationRequestsWithCompletionHandler:^(NSArray<UNNotificationRequest *> * _Nonnull requests) {
  534. for (UNNotificationRequest *notificationRequest in requests) {
  535. NSString *message = [notificationRequest.content.userInfo objectForKey:@"subject"];
  536. NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey:key];
  537. if (decryptedMessage) {
  538. NSData *data = [decryptedMessage dataUsingEncoding:NSUTF8StringEncoding];
  539. NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
  540. NSInteger nid = [[json objectForKey:@"nid"] integerValue];
  541. if (nid == notificationId) {
  542. [[UNUserNotificationCenter currentNotificationCenter] removePendingNotificationRequestsWithIdentifiers:@[notificationRequest.identifier]];
  543. }
  544. }
  545. }
  546. }];
  547. // Check in delivered notifications
  548. [[UNUserNotificationCenter currentNotificationCenter] getDeliveredNotificationsWithCompletionHandler:^(NSArray<UNNotification *> * _Nonnull notifications) {
  549. for (UNNotification *notification in notifications) {
  550. NSString *message = [notification.request.content.userInfo objectForKey:@"subject"];
  551. NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey:key];
  552. if (decryptedMessage) {
  553. NSData *data = [decryptedMessage dataUsingEncoding:NSUTF8StringEncoding];
  554. NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
  555. NSInteger nid = [[json objectForKey:@"nid"] integerValue];
  556. if (nid == notificationId) {
  557. [[UNUserNotificationCenter currentNotificationCenter] removeDeliveredNotificationsWithIdentifiers:@[notification.request.identifier]];
  558. }
  559. }
  560. }
  561. }];
  562. }
  563. - (NSString *)stringWithDeviceToken:(NSData *)deviceToken
  564. {
  565. const char *data = [deviceToken bytes];
  566. NSMutableString *token = [NSMutableString string];
  567. for (NSUInteger i = 0; i < [deviceToken length]; i++) {
  568. [token appendFormat:@"%02.2hhX", data[i]];
  569. }
  570. return [token copy];
  571. }
  572. #pragma --------------------------------------------------------------------------------------------
  573. #pragma mark ===== ApplicationIconBadgeNumber =====
  574. #pragma --------------------------------------------------------------------------------------------
  575. - (void)updateApplicationIconBadgeNumber
  576. {
  577. if (self.account.length == 0 || self.maintenanceMode) return;
  578. NSInteger counterDownload = [[NCOperationQueue shared] downloadCount];
  579. NSInteger counterUpload = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"status == %d OR status == %d OR status == %d", k_metadataStatusWaitUpload, k_metadataStatusInUpload, k_metadataStatusUploading]].count;
  580. NSInteger total = counterDownload + counterUpload;
  581. [UIApplication sharedApplication].applicationIconBadgeNumber = total;
  582. UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
  583. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  584. UITabBarItem *tabBarItem = [tabBarController.tabBar.items objectAtIndex:0];
  585. if (total > 0) {
  586. [tabBarItem setBadgeValue:[NSString stringWithFormat:@"%li", (unsigned long)total]];
  587. } else {
  588. [tabBarItem setBadgeValue:nil];
  589. }
  590. }
  591. }
  592. #pragma --------------------------------------------------------------------------------------------
  593. #pragma mark ===== Theming Color =====
  594. #pragma --------------------------------------------------------------------------------------------
  595. - (void)settingThemingColorBrand
  596. {
  597. if (self.account.length == 0 || self.maintenanceMode)
  598. return;
  599. if ([NCBrandOptions sharedInstance].use_themingColor) {
  600. NSString *themingColor = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.account elements:NCElementsJSON.shared.capabilitiesThemingColor];
  601. NSString *themingColorElement = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.account elements:NCElementsJSON.shared.capabilitiesThemingColorElement];
  602. NSString *themingColorText = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.account elements:NCElementsJSON.shared.capabilitiesThemingColorText];
  603. [CCGraphics settingThemingColor:themingColor themingColorElement:themingColorElement themingColorText:themingColorText];
  604. BOOL isTooLight = NCBrandColor.sharedInstance.brandElement.isTooLight;
  605. BOOL isTooDark = NCBrandColor.sharedInstance.brandElement.isTooDark;
  606. if (isTooLight) {
  607. NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.brandElement darkerBy:10];
  608. } else if (isTooDark) {
  609. NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.brandElement lighterBy:40];
  610. }
  611. } else {
  612. BOOL isTooLight = NCBrandColor.sharedInstance.customer.isTooLight;
  613. BOOL isTooDark = NCBrandColor.sharedInstance.customer.isTooDark;
  614. if (isTooLight) {
  615. NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.customer darkerBy:10];
  616. } else if (isTooDark) {
  617. NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.customer lighterBy:40];
  618. } else {
  619. NCBrandColor.sharedInstance.brandElement = NCBrandColor.sharedInstance.customer;
  620. }
  621. NCBrandColor.sharedInstance.brand = NCBrandColor.sharedInstance.customer;
  622. NCBrandColor.sharedInstance.brandText = NCBrandColor.sharedInstance.customerText;
  623. }
  624. [NCBrandColor.sharedInstance setDarkMode];
  625. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  626. [[NCCollectionCommon shared] createImagesThemingColor];
  627. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_changeTheming object:nil];
  628. });
  629. }
  630. #pragma --------------------------------------------------------------------------------------------
  631. #pragma mark ===== Fetch =====
  632. #pragma --------------------------------------------------------------------------------------------
  633. - (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  634. {
  635. // Test Maintenance
  636. if (self.account.length == 0 || self.maintenanceMode) {
  637. completionHandler(UIBackgroundFetchResultNoData);
  638. return;
  639. }
  640. [[NCCommunicationCommon shared] writeLog:@"Start perform Fetch With Completion Handler"];
  641. // Verify new photo
  642. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  643. // after 20 sec
  644. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  645. [[NCCommunicationCommon shared] writeLog:@"End 20 sec. perform Fetch With Completion Handler"];
  646. completionHandler(UIBackgroundFetchResultNoData);
  647. });
  648. }
  649. #pragma --------------------------------------------------------------------------------------------
  650. #pragma mark ===== Operation Networking & Session =====
  651. #pragma --------------------------------------------------------------------------------------------
  652. //
  653. // Method called by the system when all the background task has end
  654. //
  655. - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler
  656. {
  657. [[NCCommunicationCommon shared] writeLog:[NSString stringWithFormat:@"Start handle Events For Background URLSession: %@", identifier]];
  658. [self updateApplicationIconBadgeNumber];
  659. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  660. self.backgroundSessionCompletionHandler = completionHandler;
  661. void (^completionHandler)() = self.backgroundSessionCompletionHandler;
  662. self.backgroundSessionCompletionHandler = nil;
  663. completionHandler();
  664. });
  665. }
  666. #pragma --------------------------------------------------------------------------------------------
  667. #pragma mark ===== OpenURL =====
  668. #pragma --------------------------------------------------------------------------------------------
  669. // Method called from iOS system to send a file from other app.
  670. - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<NSString *,id> *)options
  671. {
  672. if (self.account.length == 0 || self.maintenanceMode)
  673. return YES;
  674. NSString *scheme = url.scheme;
  675. NSString *fileName;
  676. NSString *serverUrl;
  677. if ([scheme isEqualToString:@"nextcloud"]) {
  678. NSString *action = url.host;
  679. if ([action isEqualToString:@"open-file"]) {
  680. NSURLComponents *urlComponents = [NSURLComponents componentsWithURL:url resolvingAgainstBaseURL:NO];
  681. NSArray *queryItems = urlComponents.queryItems;
  682. NSString *user = [CCUtility valueForKey:@"user" fromQueryItems:queryItems];
  683. NSString *path = [CCUtility valueForKey:@"path" fromQueryItems:queryItems];
  684. NSString *link = [CCUtility valueForKey:@"link" fromQueryItems:queryItems];
  685. tableAccount *matchedAccount = nil;
  686. // verify parameter
  687. if (user.length == 0 || path.length == 0 || [[NSURL URLWithString:link] host].length == 0) {
  688. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_error_parameter_schema_", nil) preferredStyle:UIAlertControllerStyleAlert];
  689. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  690. [alertController addAction:okAction];
  691. [self.window.rootViewController presentViewController:alertController animated:YES completion:nil];
  692. } else {
  693. tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  694. if (account) {
  695. NSURL *accountURL = [NSURL URLWithString:account.urlBase];
  696. NSString *accountUser = account.user;
  697. if ([link containsString:accountURL.host] && [user isEqualToString:accountUser]) {
  698. matchedAccount = account;
  699. } else {
  700. NSArray *accounts = [[NCManageDatabase sharedInstance] getAllAccount];
  701. for (tableAccount *account in accounts) {
  702. NSURL *accountURL = [NSURL URLWithString:account.urlBase];
  703. NSString *accountUser = account.user;
  704. if ([link containsString:accountURL.host] && [user isEqualToString:accountUser]) {
  705. matchedAccount = [[NCManageDatabase sharedInstance] setAccountActive:account.account];
  706. [self settingAccount:matchedAccount.account urlBase:matchedAccount.urlBase user:matchedAccount.user userID:matchedAccount.userID password:[CCUtility getPassword:matchedAccount.account]];
  707. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
  708. }
  709. }
  710. }
  711. if (matchedAccount) {
  712. NSString *webDAV = [[NCUtility shared] getWebDAVWithAccount:self.account];
  713. if ([path containsString:@"/"]) {
  714. fileName = [path lastPathComponent];
  715. serverUrl = [NSString stringWithFormat:@"%@/%@/%@", matchedAccount.urlBase, webDAV, [path stringByDeletingLastPathComponent]];
  716. } else {
  717. fileName = path;
  718. serverUrl = [NSString stringWithFormat:@"%@/%@", matchedAccount.urlBase, webDAV];
  719. }
  720. [[NCCollectionCommon shared] openFileViewInFolderWithServerUrl:serverUrl fileName:fileName];
  721. } else {
  722. NSString *domain = [[NSURL URLWithString:link] host];
  723. NSString *fileName = [path lastPathComponent];
  724. NSString *message = [NSString stringWithFormat:NSLocalizedString(@"_account_not_available_", nil), user, domain, fileName];
  725. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_info_", nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  726. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  727. [alertController addAction:okAction];
  728. [self.window.rootViewController presentViewController:alertController animated:YES completion:nil];
  729. }
  730. }
  731. }
  732. }
  733. return YES;
  734. }
  735. NSError *error;
  736. NSLog(@"[LOG] the path is: %@", url.path);
  737. NSArray *splitedUrl = [url.path componentsSeparatedByString:@"/"];
  738. self.fileNameUpload = [NSString stringWithFormat:@"%@",[splitedUrl objectAtIndex:([splitedUrl count]-1)]];
  739. if (self.account) {
  740. [[NSFileManager defaultManager]removeItemAtPath:[NSTemporaryDirectory() stringByAppendingString:self.fileNameUpload] error:nil];
  741. [[NSFileManager defaultManager]moveItemAtPath:url.path toPath:[NSTemporaryDirectory() stringByAppendingString:self.fileNameUpload] error:&error];
  742. if (error == nil) {
  743. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  744. UIViewController *uploadNavigationViewController = [[UIStoryboard storyboardWithName:@"CCUploadFromOtherUpp" bundle:nil] instantiateViewControllerWithIdentifier:@"CCUploadNavigationViewController"];
  745. [self.window.rootViewController presentViewController:uploadNavigationViewController animated:YES completion:nil];
  746. });
  747. }
  748. }
  749. return YES;
  750. }
  751. #pragma --------------------------------------------------------------------------------------------
  752. #pragma mark ===== Passcode + Delegate =====
  753. #pragma --------------------------------------------------------------------------------------------
  754. - (void)passcodeWithAutomaticallyPromptForBiometricValidation:(BOOL)automaticallyPromptForBiometricValidation
  755. {
  756. LAContext *laContext = [LAContext new];
  757. NSError *error;
  758. BOOL isBiometryAvailable = false;
  759. if ([[CCUtility getPasscode] length] == 0 || [self.account length] == 0 || [CCUtility getNotPasscodeAtStart]) return;
  760. if (self.passcodeViewController == nil) {
  761. self.passcodeViewController = [[TOPasscodeViewController alloc] initWithStyle:TOPasscodeViewStyleTranslucentLight passcodeType:TOPasscodeTypeSixDigits];
  762. if (@available(iOS 13.0, *)) {
  763. if ([[UITraitCollection currentTraitCollection] userInterfaceStyle] == UIUserInterfaceStyleDark) {
  764. self.passcodeViewController.style = TOPasscodeViewStyleTranslucentDark;
  765. }
  766. }
  767. self.passcodeViewController.delegate = self;
  768. self.passcodeViewController.keypadButtonShowLettering = false;
  769. if (CCUtility.getEnableTouchFaceID && [laContext canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) {
  770. if (error == NULL) {
  771. if (laContext.biometryType == LABiometryTypeFaceID) {
  772. self.passcodeViewController.biometryType = TOPasscodeBiometryTypeFaceID;
  773. self.passcodeViewController.allowBiometricValidation = true;
  774. isBiometryAvailable = true;
  775. } else if (laContext.biometryType == LABiometryTypeTouchID) {
  776. self.passcodeViewController.biometryType = TOPasscodeBiometryTypeTouchID;
  777. self.passcodeViewController.allowBiometricValidation = true;
  778. isBiometryAvailable = true;
  779. } else {
  780. isBiometryAvailable = false;
  781. NSLog(@"No Biometric support");
  782. }
  783. }
  784. }
  785. [self.window.rootViewController presentViewController:self.passcodeViewController animated:YES completion:^{
  786. [self enableTouchFaceID:automaticallyPromptForBiometricValidation];
  787. }];
  788. } else {
  789. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  790. [self enableTouchFaceID:automaticallyPromptForBiometricValidation];
  791. });
  792. }
  793. }
  794. - (void)didInputCorrectPasscodeInPasscodeViewController:(TOPasscodeViewController *)passcodeViewController
  795. {
  796. [passcodeViewController dismissViewControllerAnimated:YES completion:^{
  797. self.passcodeViewController = nil;
  798. }];
  799. }
  800. - (BOOL)passcodeViewController:(TOPasscodeViewController *)passcodeViewController isCorrectCode:(NSString *)code
  801. {
  802. return [code isEqualToString:[CCUtility getPasscode]];
  803. }
  804. - (void)didPerformBiometricValidationRequestInPasscodeViewController:(TOPasscodeViewController *)passcodeViewController
  805. {
  806. [[LAContext new] evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:[[NCBrandOptions sharedInstance] brand] reply:^(BOOL success, NSError * _Nullable error) {
  807. if (success) {
  808. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  809. [passcodeViewController dismissViewControllerAnimated:YES completion:^{
  810. self.passcodeViewController = nil;
  811. }];
  812. });
  813. }
  814. }];
  815. }
  816. - (void)enableTouchFaceID:(BOOL)automaticallyPromptForBiometricValidation
  817. {
  818. if (CCUtility.getEnableTouchFaceID && automaticallyPromptForBiometricValidation && self.passcodeViewController.view.window) {
  819. [[LAContext new] evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:[[NCBrandOptions sharedInstance] brand] reply:^(BOOL success, NSError * _Nullable error) {
  820. if (success) {
  821. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  822. [self.passcodeViewController dismissViewControllerAnimated:YES completion:^{
  823. self.passcodeViewController = nil;
  824. }];
  825. });
  826. }
  827. }];
  828. }
  829. }
  830. #pragma --------------------------------------------------------------------------------------------
  831. #pragma mark ===== Maintenance Mode =====
  832. #pragma --------------------------------------------------------------------------------------------
  833. - (void)maintenanceMode:(BOOL)mode
  834. {
  835. self.maintenanceMode = mode;
  836. }
  837. @end