AppDelegate.m 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281
  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 "CCMain.h"
  26. #import "NCBridgeSwift.h"
  27. #import "NCAutoUpload.h"
  28. #import "NCPushNotificationEncryption.h"
  29. #import <QuartzCore/QuartzCore.h>
  30. @import Sentry;
  31. @class NCViewerRichdocument;
  32. @interface AppDelegate() <TOPasscodeViewControllerDelegate>
  33. @end
  34. @implementation AppDelegate
  35. + (void)initialize
  36. {
  37. [[NSUserDefaults standardUserDefaults] registerDefaults:@{@"UserAgent": [CCUtility getUserAgent]}];
  38. }
  39. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  40. {
  41. if ([[NCUtility shared] 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] capabilitiesGroup:[NCBrandOptions sharedInstance].capabilitiesGroups];
  61. // Set account, if no exists clear all
  62. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
  63. if (tableAccount == nil) {
  64. // remove all the keys Chain
  65. [CCUtility deleteAllChainStore];
  66. // remove all the App group key
  67. [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:[[NSBundle mainBundle] bundleIdentifier]];
  68. } else {
  69. [self settingAccount:tableAccount.account urlBase:tableAccount.urlBase user:tableAccount.user userID:tableAccount.userID password:[CCUtility getPassword:tableAccount.account]];
  70. }
  71. // UserDefaults
  72. self.ncUserDefaults = [[NSUserDefaults alloc] initWithSuiteName:[NCBrandOptions sharedInstance].capabilitiesGroups];
  73. // Background Fetch
  74. [application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
  75. self.listProgressMetadata = [NSMutableDictionary new];
  76. self.listMainVC = [NSMutableDictionary new];
  77. // Push Notification
  78. [application registerForRemoteNotifications];
  79. // Display notification
  80. [UNUserNotificationCenter currentNotificationCenter].delegate = self;
  81. UNAuthorizationOptions authOptions = UNAuthorizationOptionAlert | UNAuthorizationOptionSound | UNAuthorizationOptionBadge;
  82. [[UNUserNotificationCenter currentNotificationCenter] requestAuthorizationWithOptions:authOptions completionHandler:^(BOOL granted, NSError * _Nullable error) { }];
  83. //AV Session
  84. [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:nil];
  85. [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
  86. // ProgressView Detail
  87. self.progressViewDetail = [[UIProgressView alloc] initWithProgressViewStyle: UIProgressViewStyleBar];
  88. // Quick Actions
  89. if([[UIApplicationShortcutItem class] respondsToSelector:@selector(new)]) {
  90. [self configDynamicShortcutItems];
  91. UIApplicationShortcutItem *shortcutItem = [launchOptions objectForKeyedSubscript:UIApplicationLaunchOptionsShortcutItemKey];
  92. if (shortcutItem)
  93. [self handleShortCutItem:shortcutItem];
  94. }
  95. // Start Timer
  96. self.timerUpdateApplicationIconBadgeNumber = [NSTimer scheduledTimerWithTimeInterval:k_timerUpdateApplicationIconBadgeNumber target:self selector:@selector(updateApplicationIconBadgeNumber) userInfo:nil repeats:YES];
  97. [self startTimerErrorNetworking];
  98. // Store review
  99. if ([[NCUtility shared] isSimulatorOrTestFlight] == false) {
  100. NCStoreReview *review = [NCStoreReview new];
  101. [review incrementAppRuns];
  102. [review showStoreReview];
  103. }
  104. // Detect Dark mode
  105. if (@available(iOS 13.0, *)) {
  106. if ([CCUtility getDarkModeDetect]) {
  107. if ([[UITraitCollection currentTraitCollection] userInterfaceStyle] == UIUserInterfaceStyleDark) {
  108. [CCUtility setDarkMode:YES];
  109. } else {
  110. [CCUtility setDarkMode:NO];
  111. }
  112. }
  113. }
  114. if ([NCBrandOptions sharedInstance].disable_intro) {
  115. [CCUtility setIntro:YES];
  116. if (self.account.length == 0) {
  117. [self openLoginView:nil selector:k_intro_login openLoginWeb:false];
  118. }
  119. } else {
  120. if ([CCUtility getIntro] == NO) {
  121. UIViewController *introViewController = [[UIStoryboard storyboardWithName:@"NCIntro" bundle:[NSBundle mainBundle]] instantiateInitialViewController];
  122. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController: introViewController];
  123. self.window.rootViewController = navController;
  124. [self.window makeKeyAndVisible];
  125. }
  126. }
  127. // init home
  128. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
  129. // Passcode
  130. dispatch_async(dispatch_get_main_queue(), ^{
  131. [self passcodeWithAutomaticallyPromptForBiometricValidation:true];
  132. });
  133. // Auto upload
  134. self.networkingAutoUpload = [NCNetworkingAutoUpload new];
  135. return YES;
  136. }
  137. //
  138. // L' applicazione si dimetterà dallo stato di attivo
  139. //
  140. - (void)applicationWillResignActive:(UIApplication *)application
  141. {
  142. // Test Maintenance
  143. if (self.account.length == 0 || self.maintenanceMode)
  144. return;
  145. [self updateApplicationIconBadgeNumber];
  146. }
  147. //
  148. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  149. //
  150. - (void)applicationWillEnterForeground:(UIApplication *)application
  151. {
  152. if (self.account.length == 0 || self.maintenanceMode) { return; }
  153. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_applicationWillEnterForeground object:nil];
  154. NSLog(@"[LOG] Request Passcode");
  155. [self passcodeWithAutomaticallyPromptForBiometricValidation:true];
  156. NSLog(@"[LOG] Request Service Server Nextcloud");
  157. [[NCService shared] startRequestServicesServer];
  158. NSLog(@"[LOG] Initialize Auto upload");
  159. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  160. NSLog(@"[LOG] Read active directory");
  161. [self.activeMain readFileReloadFolder];
  162. NSLog(@"[LOG] Required unsubscribing / subscribing");
  163. [self pushNotification];
  164. NSLog(@"[LOG] RichDocument");
  165. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_richdocumentGrabFocus object:nil];
  166. }
  167. //
  168. // L' applicazione entrerà in primo piano (attivo sempre)
  169. //
  170. - (void)applicationDidBecomeActive:(UIApplication *)application
  171. {
  172. if (self.account.length == 0 || self.maintenanceMode) { return; }
  173. // Brand
  174. #if defined(HC)
  175. tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  176. if (account.hcIsTrial == true || account.hcTrialExpired == true || account.hcNextGroupExpirationGroupExpired == true) {
  177. HCTrial *vc = [[UIStoryboard storyboardWithName:@"HCTrial" bundle:nil] instantiateInitialViewController];
  178. vc.account = account;
  179. [self.window.rootViewController presentViewController:vc animated:YES completion:nil];
  180. }
  181. #endif
  182. [[NCNetworking shared] verifyUploadZombie];
  183. }
  184. //
  185. // L' applicazione è entrata nello sfondo
  186. //
  187. - (void)applicationDidEnterBackground:(UIApplication *)application
  188. {
  189. if (self.account.length == 0 || self.maintenanceMode) { return; }
  190. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_applicationDidEnterBackground object:nil];
  191. [self passcodeWithAutomaticallyPromptForBiometricValidation:false];
  192. }
  193. //
  194. // L'applicazione terminerà
  195. //
  196. - (void)applicationWillTerminate:(UIApplication *)application
  197. {
  198. NSLog(@"[LOG] bye bye, Nextcloud !");
  199. }
  200. #pragma --------------------------------------------------------------------------------------------
  201. #pragma mark ===== Login / checkErrorNetworking =====
  202. #pragma --------------------------------------------------------------------------------------------
  203. - (void)checkErrorNetworking
  204. {
  205. // test
  206. if (self.account.length == 0 || self.maintenanceMode)
  207. return;
  208. // check unauthorized server (401)
  209. if ([CCUtility getPassword:self.account].length == 0) {
  210. [self openLoginView:self.window.rootViewController selector:k_intro_login openLoginWeb:true];
  211. }
  212. // check certificate untrusted (-1202)
  213. if ([CCUtility getCertificateError:self.account]) {
  214. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_ssl_certificate_untrusted_", nil) message:NSLocalizedString(@"_connect_server_anyway_", nil) preferredStyle:UIAlertControllerStyleAlert];
  215. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_yes_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  216. [[NCNetworking shared] wrtiteCertificateWithDirectoryCertificate:[CCUtility getDirectoryCerificates]];
  217. [self startTimerErrorNetworking];
  218. }]];
  219. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_no_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  220. [self startTimerErrorNetworking];
  221. }]];
  222. [self.window.rootViewController presentViewController:alertController animated:YES completion:^{
  223. // Stop timer error network
  224. [self.timerErrorNetworking invalidate];
  225. }];
  226. }
  227. }
  228. - (void)openLoginView:(UIViewController *)viewController selector:(NSInteger)selector openLoginWeb:(BOOL)openLoginWeb
  229. {
  230. // use appConfig [MDM]
  231. if ([NCBrandOptions sharedInstance].use_configuration) {
  232. if (!(_appConfigView.isViewLoaded && _appConfigView.view.window)) {
  233. self.appConfigView = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCAppConfigView"];
  234. [self showLoginViewController:self.appConfigView forContext:viewController];
  235. }
  236. return;
  237. }
  238. // only for personalized LoginWeb [customer]
  239. if ([NCBrandOptions sharedInstance].use_login_web_personalized) {
  240. if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
  241. self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
  242. self.activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] loginBaseUrl];
  243. [self showLoginViewController:self.activeLoginWeb forContext:viewController];
  244. }
  245. return;
  246. }
  247. // normal login
  248. if (selector == k_intro_signup) {
  249. if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
  250. self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
  251. if (selector == k_intro_signup) {
  252. self.activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] linkloginPreferredProviders];
  253. } else {
  254. self.activeLoginWeb.urlBase = self.urlBase;
  255. }
  256. [self showLoginViewController:self.activeLoginWeb forContext:viewController];
  257. }
  258. } else if ([NCBrandOptions sharedInstance].disable_intro && [NCBrandOptions sharedInstance].disable_request_login_url) {
  259. self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
  260. self.activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] loginBaseUrl];
  261. [self showLoginViewController:self.activeLoginWeb forContext:viewController];
  262. } else if (openLoginWeb) {
  263. if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
  264. self.activeLoginWeb = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"NCLoginWeb"];
  265. self.activeLoginWeb.urlBase = self.urlBase;
  266. [self showLoginViewController:self.activeLoginWeb forContext:viewController];
  267. }
  268. } else {
  269. if (!(_activeLogin.isViewLoaded && _activeLogin.view.window)) {
  270. _activeLogin = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"CCLoginNextcloud"];
  271. [self showLoginViewController:_activeLogin forContext:viewController];
  272. }
  273. }
  274. }
  275. -(void)showLoginViewController:(UIViewController *)viewController forContext:(UIViewController *)contextViewController
  276. {
  277. if (contextViewController == NULL) {
  278. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
  279. navController.navigationBar.barStyle = UIBarStyleBlack;
  280. navController.navigationBar.tintColor = NCBrandColor.sharedInstance.customerText;
  281. navController.navigationBar.barTintColor = NCBrandColor.sharedInstance.customer;
  282. [navController.navigationBar setTranslucent:false];
  283. self.window.rootViewController = navController;
  284. [self.window makeKeyAndVisible];
  285. } else if ([contextViewController isKindOfClass:[UINavigationController class]]) {
  286. UINavigationController *navController = ((UINavigationController *)contextViewController);
  287. [navController pushViewController:viewController animated:true];
  288. } else {
  289. UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
  290. navController.modalPresentationStyle = UIModalPresentationFullScreen;
  291. navController.navigationBar.barStyle = UIBarStyleBlack;
  292. navController.navigationBar.tintColor = NCBrandColor.sharedInstance.customerText;
  293. navController.navigationBar.barTintColor = NCBrandColor.sharedInstance.customer;
  294. [navController.navigationBar setTranslucent:false];
  295. [contextViewController presentViewController:navController animated:true completion:nil];
  296. }
  297. }
  298. - (void)startTimerErrorNetworking
  299. {
  300. self.timerErrorNetworking = [NSTimer scheduledTimerWithTimeInterval:k_timerErrorNetworking target:self selector:@selector(checkErrorNetworking) userInfo:nil repeats:YES];
  301. }
  302. #pragma --------------------------------------------------------------------------------------------
  303. #pragma mark ===== Account & Communication =====
  304. #pragma --------------------------------------------------------------------------------------------
  305. - (void)settingAccount:(NSString *)account urlBase:(NSString *)urlBase user:(NSString *)user userID:(NSString *)userID password:(NSString *)password
  306. {
  307. self.account = account;
  308. self.urlBase = urlBase;
  309. self.user = user;
  310. self.userID = userID;
  311. self.password = password;
  312. (void)[NCNetworkingNotificationCenter shared];
  313. [[NCCommunicationCommon shared] setupWithAccount:account user:user userId:userID password:password urlBase:urlBase];
  314. [self settingSetupCommunication:account];
  315. }
  316. - (void)deleteAccount:(NSString *)account wipe:(BOOL)wipe
  317. {
  318. // Push Notification
  319. tableAccount *accountPN = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", account]];
  320. [self unsubscribingNextcloudServerPushNotification:accountPN.account urlBase:accountPN.urlBase user:accountPN.user withSubscribing:false];
  321. [self settingAccount:nil urlBase:nil user:nil userID:nil password:nil];
  322. /* DELETE ALL FILES LOCAL FS */
  323. NSArray *results = [[NCManageDatabase sharedInstance] getTableLocalFilesWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", account] sorted:@"ocId" ascending:NO];
  324. for (tableLocalFile *result in results) {
  325. [CCUtility removeFileAtPath:[CCUtility getDirectoryProviderStorageOcId:result.ocId]];
  326. }
  327. // Clear database
  328. [[NCManageDatabase sharedInstance] clearDatabaseWithAccount:account removeAccount:true];
  329. [CCUtility clearAllKeysEndToEnd:account];
  330. [CCUtility clearAllKeysPushNotification:account];
  331. [CCUtility setCertificateError:account error:false];
  332. [CCUtility setPassword:account password:nil];
  333. if (wipe) {
  334. NSArray *listAccount = [[NCManageDatabase sharedInstance] getAccounts];
  335. if ([listAccount count] > 0) {
  336. NSString *newAccount = listAccount[0];
  337. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] setAccountActive:newAccount];
  338. [self settingAccount:newAccount urlBase:tableAccount.urlBase user:tableAccount.user userID:tableAccount.userID password:[CCUtility getPassword:tableAccount.account]];
  339. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
  340. } else {
  341. [self openLoginView:self.window.rootViewController selector:k_intro_login openLoginWeb:false];
  342. }
  343. }
  344. }
  345. - (void)settingSetupCommunication:(NSString *)account
  346. {
  347. NSInteger serverVersionMajor = [[NCManageDatabase sharedInstance] getCapabilitiesServerIntWithAccount:account elements:NCElementsJSON.shared.capabilitiesVersionMajor];
  348. if (serverVersionMajor > 0) {
  349. [[NCCommunicationCommon shared] setupWithNextcloudVersion:serverVersionMajor];
  350. }
  351. [[NCCommunicationCommon shared] setupWithWebDav:[[NCUtility shared] getWebDAVWithAccount:account]];
  352. [[NCCommunicationCommon shared] setupWithDav:[[NCUtility shared] getDAV]];
  353. }
  354. #pragma --------------------------------------------------------------------------------------------
  355. #pragma mark ===== Push Notifications =====
  356. #pragma --------------------------------------------------------------------------------------------
  357. - (void)pushNotification
  358. {
  359. // test
  360. if (self.account.length == 0 || self.maintenanceMode || self.pushKitToken.length == 0)
  361. return;
  362. for (tableAccount *result in [[NCManageDatabase sharedInstance] getAllAccount]) {
  363. NSString *token = [CCUtility getPushNotificationToken:result.account];
  364. if (![token isEqualToString:self.pushKitToken]) {
  365. if (token != nil) {
  366. // unsubscribing + subscribing
  367. [self unsubscribingNextcloudServerPushNotification:result.account urlBase:result.urlBase user:result.user withSubscribing:true];
  368. } else {
  369. [self subscribingNextcloudServerPushNotification:result.account urlBase:result.urlBase user:result.user];
  370. }
  371. }
  372. }
  373. }
  374. - (void)subscribingNextcloudServerPushNotification:(NSString *)account urlBase:(NSString *)urlBase user:(NSString *)user
  375. {
  376. // test
  377. if (self.account.length == 0 || self.maintenanceMode || self.pushKitToken.length == 0)
  378. return;
  379. [[NCPushNotificationEncryption sharedInstance] generatePushNotificationsKeyPair:account];
  380. NSString *pushTokenHash = [[NCEndToEndEncryption sharedManager] createSHA512:self.pushKitToken];
  381. NSData *pushPublicKey = [CCUtility getPushNotificationPublicKey:account];
  382. NSString *pushDevicePublicKey = [[NSString alloc] initWithData:pushPublicKey encoding:NSUTF8StringEncoding];
  383. NSString *proxyServerPath = [NCBrandOptions sharedInstance].pushNotificationServerProxy;
  384. [[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) {
  385. if (errorCode == 0) {
  386. NSString *userAgent = [NSString stringWithFormat:@"%@ (Strict VoIP)", [CCUtility getUserAgent]];
  387. [[NCCommunication shared] subscribingPushProxyWithProxyServerUrl:proxyServerPath pushToken:self.pushKitToken deviceIdentifier:deviceIdentifier signature:signature publicKey:publicKey userAgent:userAgent completionHandler:^(NSInteger errorCode, NSString *errorDescription) {
  388. if (errorCode == 0) {
  389. NSLog(@"[LOG] Subscribed to Push Notification server & proxy successfully.");
  390. [CCUtility setPushNotificationToken:account token:self.pushKitToken];
  391. [CCUtility setPushNotificationDeviceIdentifier:account deviceIdentifier:deviceIdentifier];
  392. [CCUtility setPushNotificationDeviceIdentifierSignature:account deviceIdentifierSignature:signature];
  393. [CCUtility setPushNotificationSubscribingPublicKey:account publicKey:publicKey];
  394. }
  395. }];
  396. }
  397. }];
  398. }
  399. - (void)unsubscribingNextcloudServerPushNotification:(NSString *)account urlBase:(NSString *)urlBase user:(NSString *)user withSubscribing:(BOOL)subscribing
  400. {
  401. // test
  402. if (self.account.length == 0 || self.maintenanceMode)
  403. return;
  404. NSString *deviceIdentifier = [CCUtility getPushNotificationDeviceIdentifier:account];
  405. NSString *signature = [CCUtility getPushNotificationDeviceIdentifierSignature:account];
  406. NSString *publicKey = [CCUtility getPushNotificationSubscribingPublicKey:account];
  407. [[NCCommunication shared] unsubscribingPushNotificationWithServerUrl:urlBase account:account user:user password:[CCUtility getPassword:account] customUserAgent:nil addCustomHeaders:nil completionHandler:^(NSString *account, NSInteger errorCode, NSString *errorDescription) {
  408. if (errorCode == 0) {
  409. NSString *userAgent = [NSString stringWithFormat:@"%@ (Strict VoIP)", [CCUtility getUserAgent]];
  410. NSString *proxyServerPath = [NCBrandOptions sharedInstance].pushNotificationServerProxy;
  411. [[NCCommunication shared] unsubscribingPushProxyWithProxyServerUrl:proxyServerPath deviceIdentifier:deviceIdentifier signature:signature publicKey:publicKey userAgent:userAgent completionHandler:^(NSInteger errorCode, NSString *errorDescription) {
  412. if (errorCode == 0) {
  413. NSLog(@"[LOG] Unsubscribed to Push Notification server & proxy successfully.");
  414. [CCUtility setPushNotificationPublicKey:account data:nil];
  415. [CCUtility setPushNotificationSubscribingPublicKey:account publicKey:nil];
  416. [CCUtility setPushNotificationPrivateKey:account data:nil];
  417. [CCUtility setPushNotificationToken:account token:nil];
  418. [CCUtility setPushNotificationDeviceIdentifier:account deviceIdentifier:nil];
  419. [CCUtility setPushNotificationDeviceIdentifierSignature:account deviceIdentifierSignature:nil];
  420. if (self.pushKitToken != nil && subscribing) {
  421. [self subscribingNextcloudServerPushNotification:account urlBase:urlBase user:user];
  422. }
  423. }
  424. }];
  425. }
  426. }];
  427. }
  428. -(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler
  429. {
  430. //Called when a notification is delivered to a foreground app.
  431. completionHandler(UNNotificationPresentationOptionAlert);
  432. }
  433. -(void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(nonnull UNNotificationResponse *)response withCompletionHandler:(nonnull void (^)(void))completionHandler
  434. {
  435. completionHandler();
  436. }
  437. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
  438. {
  439. self.pushKitToken = [self stringWithDeviceToken:deviceToken];
  440. [self pushNotification];
  441. }
  442. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  443. {
  444. NSString *message = [userInfo objectForKey:@"subject"];
  445. if (message) {
  446. NSArray *results = [[NCManageDatabase sharedInstance] getAllAccount];
  447. for (tableAccount *result in results) {
  448. if ([CCUtility getPushNotificationPrivateKey:result.account]) {
  449. NSData *decryptionKey = [CCUtility getPushNotificationPrivateKey:result.account];
  450. NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey:decryptionKey];
  451. if (decryptedMessage) {
  452. NSData *data = [decryptedMessage dataUsingEncoding:NSUTF8StringEncoding];
  453. NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
  454. NSInteger nid = [[json objectForKey:@"nid"] integerValue];
  455. BOOL delete = [[json objectForKey:@"delete"] boolValue];
  456. BOOL deleteAll = [[json objectForKey:@"delete-all"] boolValue];
  457. if (delete) {
  458. [self removeNotificationWithNotificationId:nid usingDecryptionKey:decryptionKey];
  459. } else if (deleteAll) {
  460. [self cleanAllNotifications];
  461. }
  462. }
  463. }
  464. }
  465. }
  466. completionHandler(UIBackgroundFetchResultNoData);
  467. }
  468. - (void)cleanAllNotifications
  469. {
  470. [[UNUserNotificationCenter currentNotificationCenter] removeAllDeliveredNotifications];
  471. }
  472. - (void)removeNotificationWithNotificationId:(NSInteger)notificationId usingDecryptionKey:(NSData *)key
  473. {
  474. // Check in pending notifications
  475. [[UNUserNotificationCenter currentNotificationCenter] getPendingNotificationRequestsWithCompletionHandler:^(NSArray<UNNotificationRequest *> * _Nonnull requests) {
  476. for (UNNotificationRequest *notificationRequest in requests) {
  477. NSString *message = [notificationRequest.content.userInfo objectForKey:@"subject"];
  478. NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey:key];
  479. if (decryptedMessage) {
  480. NSData *data = [decryptedMessage dataUsingEncoding:NSUTF8StringEncoding];
  481. NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
  482. NSInteger nid = [[json objectForKey:@"nid"] integerValue];
  483. if (nid == notificationId) {
  484. [[UNUserNotificationCenter currentNotificationCenter] removePendingNotificationRequestsWithIdentifiers:@[notificationRequest.identifier]];
  485. }
  486. }
  487. }
  488. }];
  489. // Check in delivered notifications
  490. [[UNUserNotificationCenter currentNotificationCenter] getDeliveredNotificationsWithCompletionHandler:^(NSArray<UNNotification *> * _Nonnull notifications) {
  491. for (UNNotification *notification in notifications) {
  492. NSString *message = [notification.request.content.userInfo objectForKey:@"subject"];
  493. NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey:key];
  494. if (decryptedMessage) {
  495. NSData *data = [decryptedMessage dataUsingEncoding:NSUTF8StringEncoding];
  496. NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
  497. NSInteger nid = [[json objectForKey:@"nid"] integerValue];
  498. if (nid == notificationId) {
  499. [[UNUserNotificationCenter currentNotificationCenter] removeDeliveredNotificationsWithIdentifiers:@[notification.request.identifier]];
  500. }
  501. }
  502. }
  503. }];
  504. }
  505. - (NSString *)stringWithDeviceToken:(NSData *)deviceToken
  506. {
  507. const char *data = [deviceToken bytes];
  508. NSMutableString *token = [NSMutableString string];
  509. for (NSUInteger i = 0; i < [deviceToken length]; i++) {
  510. [token appendFormat:@"%02.2hhX", data[i]];
  511. }
  512. return [token copy];
  513. }
  514. #pragma --------------------------------------------------------------------------------------------
  515. #pragma mark ===== Quick Actions - ShotcutItem =====
  516. #pragma --------------------------------------------------------------------------------------------
  517. - (void)configDynamicShortcutItems
  518. {
  519. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  520. UIApplicationShortcutIcon *shortcutMediaIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:@"media"];
  521. UIApplicationShortcutItem *shortcutMedia = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.media", bundleId] localizedTitle:NSLocalizedString(@"_media_", nil) localizedSubtitle:nil icon:shortcutMediaIcon userInfo:nil];
  522. // add the array to our app
  523. if (shortcutMedia)
  524. [UIApplication sharedApplication].shortcutItems = @[shortcutMedia];
  525. }
  526. - (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL))completionHandler
  527. {
  528. BOOL handledShortCutItem = [self handleShortCutItem:shortcutItem];
  529. completionHandler(handledShortCutItem);
  530. }
  531. - (BOOL)handleShortCutItem:(UIApplicationShortcutItem *)shortcutItem
  532. {
  533. BOOL handled = NO;
  534. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  535. NSString *shortcutMedia = [NSString stringWithFormat:@"%@.media", bundleId];
  536. if ([shortcutItem.type isEqualToString:shortcutMedia] && self.account) {
  537. dispatch_async(dispatch_get_main_queue(), ^{
  538. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  539. if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
  540. UINavigationController *navigationControllerMaster = (UINavigationController *)splitViewController.viewControllers.firstObject;
  541. if ([navigationControllerMaster isKindOfClass:[UINavigationController class]]) {
  542. UITabBarController *tabBarController = (UITabBarController *)navigationControllerMaster.topViewController;
  543. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  544. if (splitViewController.isCollapsed) {
  545. [navigationControllerMaster popToRootViewControllerAnimated:false];
  546. UINavigationController *navigationControllerMaster = (UINavigationController *)splitViewController.viewControllers.firstObject;
  547. if ([navigationControllerMaster isKindOfClass:[UINavigationController class]]) {
  548. UITabBarController *tabBarController = (UITabBarController *)navigationControllerMaster.topViewController;
  549. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  550. [tabBarController setSelectedIndex: k_tabBarApplicationIndexMedia];
  551. }
  552. }
  553. } else {
  554. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  555. [tabBarController setSelectedIndex: k_tabBarApplicationIndexMedia];
  556. }
  557. }
  558. }
  559. }
  560. }
  561. });
  562. handled = YES;
  563. }
  564. return handled;
  565. }
  566. #pragma --------------------------------------------------------------------------------------------
  567. #pragma mark ===== ApplicationIconBadgeNumber =====
  568. #pragma --------------------------------------------------------------------------------------------
  569. - (void)updateApplicationIconBadgeNumber
  570. {
  571. if (self.account.length == 0 || self.maintenanceMode) return;
  572. NSInteger counterDownload = [[NCOperationQueue shared] downloadCount];
  573. 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;
  574. NSInteger total = counterDownload + counterUpload;
  575. [UIApplication sharedApplication].applicationIconBadgeNumber = total;
  576. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  577. if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
  578. UINavigationController *navigationController = (UINavigationController *)[splitViewController.viewControllers firstObject];
  579. if ([navigationController isKindOfClass:[UINavigationController class]]) {
  580. UITabBarController *tabBarController = (UITabBarController *)navigationController.topViewController;
  581. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  582. UITabBarItem *tabBarItem = [tabBarController.tabBar.items objectAtIndex:0];
  583. if (total > 0) {
  584. [tabBarItem setBadgeValue:[NSString stringWithFormat:@"%li", (unsigned long)total]];
  585. } else {
  586. [tabBarItem setBadgeValue:nil];
  587. }
  588. }
  589. }
  590. }
  591. }
  592. #pragma --------------------------------------------------------------------------------------------
  593. #pragma mark ===== TabBarController =====
  594. #pragma --------------------------------------------------------------------------------------------
  595. - (void)createTabBarController:(UITabBarController *)tabBarController
  596. {
  597. UITabBarItem *item;
  598. NSLayoutConstraint *constraint;
  599. CGFloat safeAreaBottom = safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  600. // File
  601. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexFile];
  602. [item setTitle:NSLocalizedString(@"_home_", nil)];
  603. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarFiles"] width:50 height:50 color:NCBrandColor.sharedInstance.brandElement];
  604. item.selectedImage = item.image;
  605. // Favorites
  606. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexFavorite];
  607. [item setTitle:NSLocalizedString(@"_favorites_", nil)];
  608. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"favorite"] width:50 height:50 color:NCBrandColor.sharedInstance.brandElement];
  609. item.selectedImage = item.image;
  610. // (PLUS INVISIBLE)
  611. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexPlusHide];
  612. item.title = @"";
  613. item.image = nil;
  614. item.enabled = false;
  615. // Media
  616. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexMedia];
  617. [item setTitle:NSLocalizedString(@"_media_", nil)];
  618. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"media"] width:50 height:50 color:NCBrandColor.sharedInstance.brandElement];
  619. item.selectedImage = item.image;
  620. // More
  621. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexMore];
  622. [item setTitle:NSLocalizedString(@"_more_", nil)];
  623. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarMore"] width:50 height:50 color:NCBrandColor.sharedInstance.brandElement];
  624. item.selectedImage = item.image;
  625. // Plus Button
  626. int buttonSize = 57;
  627. UIImage *buttonImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarPlus"] width:120 height:120 color:UIColor.whiteColor];
  628. UIButton *buttonPlus = [UIButton buttonWithType:UIButtonTypeCustom];
  629. buttonPlus.tag = 99;
  630. [buttonPlus setImage:buttonImage forState:UIControlStateNormal];
  631. buttonPlus.backgroundColor = NCBrandColor.sharedInstance.brandElement;
  632. buttonPlus.layer.cornerRadius = buttonSize / 2;
  633. buttonPlus.layer.masksToBounds = NO;
  634. buttonPlus.layer.shadowOffset = CGSizeMake(0, 0);
  635. buttonPlus.layer.shadowRadius = 3.0f;
  636. buttonPlus.layer.shadowOpacity = 0.5;
  637. [buttonPlus addTarget:self action:@selector(handleTouchTabbarCenter:) forControlEvents:UIControlEventTouchUpInside];
  638. [buttonPlus setTranslatesAutoresizingMaskIntoConstraints:NO];
  639. [tabBarController.tabBar addSubview:buttonPlus];
  640. if (safeAreaBottom > 0) {
  641. // X
  642. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0];
  643. [tabBarController.view addConstraint:constraint];
  644. // Y
  645. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeTop multiplier:1.0 constant:-(buttonSize / 2)];
  646. [tabBarController.view addConstraint:constraint];
  647. // Width
  648. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:1.0 constant:buttonSize];
  649. [tabBarController.view addConstraint:constraint];
  650. // Height
  651. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:1.0 constant:buttonSize];
  652. [tabBarController.view addConstraint:constraint];
  653. } else {
  654. // X
  655. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0];
  656. [tabBarController.view addConstraint:constraint];
  657. // Y
  658. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:-(buttonSize / 2)];
  659. [tabBarController.view addConstraint:constraint];
  660. // Width
  661. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:1.0 constant:buttonSize];
  662. [tabBarController.view addConstraint:constraint];
  663. // Height
  664. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:1.0 constant:buttonSize];
  665. [tabBarController.view addConstraint:constraint];
  666. }
  667. }
  668. - (void)handleTouchTabbarCenter:(id)sender
  669. {
  670. // Test Maintenance
  671. if (self.maintenanceMode)
  672. return;
  673. tableDirectory *tableDirectory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", self.account, self.activeMain.serverUrl]];
  674. if ([tableDirectory.permissions containsString:@"CK"]) {
  675. UIViewController *vc = _activeMain.splitViewController.viewControllers[0];
  676. [self showMenuInViewController: vc];
  677. } else {
  678. [[NCContentPresenter shared] messageNotification:@"_warning_" description:@"_no_permission_add_file_" delay:k_dismissAfterSecond type:messageTypeInfo errorCode:k_CCErrorInternalError forced:false];
  679. }
  680. }
  681. - (NSString *)getTabBarControllerActiveServerUrl
  682. {
  683. NSString *serverUrl = [[NCUtility shared] getHomeServerWithUrlBase:self.urlBase account:self.account];
  684. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  685. if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
  686. UINavigationController *masterNavigationController = [splitViewController.viewControllers firstObject];
  687. if ([masterNavigationController isKindOfClass:[UINavigationController class]]) {
  688. UITabBarController *tabBarController = [masterNavigationController.viewControllers firstObject];
  689. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  690. NSInteger index = tabBarController.selectedIndex;
  691. // select active serverUrl
  692. if (index == k_tabBarApplicationIndexFile) {
  693. serverUrl = self.activeMain.serverUrl;
  694. } else if (index == k_tabBarApplicationIndexFavorite) {
  695. if (self.activeFavorites.serverUrl)
  696. serverUrl = self.activeFavorites.serverUrl;
  697. } else if (index == k_tabBarApplicationIndexMedia) {
  698. serverUrl = [[NCManageDatabase sharedInstance] getAccountAutoUploadPathWithUrlBase:self.urlBase account:self.account];
  699. }
  700. }
  701. }
  702. }
  703. return serverUrl;
  704. }
  705. #pragma --------------------------------------------------------------------------------------------
  706. #pragma mark ===== Theming Color =====
  707. #pragma --------------------------------------------------------------------------------------------
  708. - (void)settingThemingColorBrand
  709. {
  710. if (self.account.length == 0 || self.maintenanceMode)
  711. return;
  712. if ([NCBrandOptions sharedInstance].use_themingColor) {
  713. NSString *themingColor = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.account elements:NCElementsJSON.shared.capabilitiesThemingColor];
  714. NSString *themingColorElement = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.account elements:NCElementsJSON.shared.capabilitiesThemingColorElement];
  715. NSString *themingColorText = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.account elements:NCElementsJSON.shared.capabilitiesThemingColorText];
  716. [CCGraphics settingThemingColor:themingColor themingColorElement:themingColorElement themingColorText:themingColorText];
  717. BOOL isTooLight = NCBrandColor.sharedInstance.brandElement.isTooLight;
  718. BOOL isTooDark = NCBrandColor.sharedInstance.brandElement.isTooDark;
  719. if (isTooLight) {
  720. NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.brandElement darkerBy:10];
  721. } else if (isTooDark) {
  722. NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.brandElement lighterBy:25];
  723. }
  724. } else {
  725. BOOL isTooLight = NCBrandColor.sharedInstance.customer.isTooLight;
  726. BOOL isTooDark = NCBrandColor.sharedInstance.customer.isTooDark;
  727. if (isTooLight) {
  728. NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.customer darkerBy:10];
  729. } else if (isTooDark) {
  730. NCBrandColor.sharedInstance.brandElement = [NCBrandColor.sharedInstance.customer lighterBy:25];
  731. } else {
  732. NCBrandColor.sharedInstance.brandElement = NCBrandColor.sharedInstance.customer;
  733. }
  734. NCBrandColor.sharedInstance.brand = NCBrandColor.sharedInstance.customer;
  735. NCBrandColor.sharedInstance.brandText = NCBrandColor.sharedInstance.customerText;
  736. }
  737. [NCBrandColor.sharedInstance setDarkMode];
  738. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  739. [[NCMainCommon sharedInstance] createImagesThemingColor];
  740. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_changeTheming object:nil];
  741. });
  742. }
  743. - (void)changeTheming:(UIViewController *)viewController tableView:(UITableView *)tableView collectionView:(UICollectionView *)collectionView form:(BOOL)form
  744. {
  745. [NCBrandColor.sharedInstance setDarkMode];
  746. [self.window setTintColor:NCBrandColor.sharedInstance.textView];
  747. //Tab bar
  748. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  749. if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
  750. UINavigationController *masterNavigationController = [splitViewController.viewControllers firstObject];
  751. if ([masterNavigationController isKindOfClass:[UINavigationController class]]) {
  752. UITabBarController *tabBarController = [masterNavigationController.viewControllers firstObject];
  753. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  754. tabBarController.tabBar.barTintColor = NCBrandColor.sharedInstance.backgroundView;
  755. tabBarController.tabBar.backgroundColor = NCBrandColor.sharedInstance.tabBar;
  756. tabBarController.tabBar.tintColor = NCBrandColor.sharedInstance.brandElement;
  757. [tabBarController.tabBar viewWithTag:99].backgroundColor = NCBrandColor.sharedInstance.brandElement;
  758. }
  759. }
  760. }
  761. // Nav bar
  762. [self configureNavBarForViewController:viewController];
  763. // View
  764. if (form) viewController.view.backgroundColor = NCBrandColor.sharedInstance.backgroundForm;
  765. else viewController.view.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
  766. // TableView
  767. if (tableView) {
  768. if (form) tableView.backgroundColor = NCBrandColor.sharedInstance.backgroundForm;
  769. else tableView.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
  770. tableView.separatorColor = NCBrandColor.sharedInstance.separator;
  771. [tableView reloadData];
  772. }
  773. // CollectionView
  774. if (collectionView) {
  775. if (form) collectionView.backgroundColor = NCBrandColor.sharedInstance.backgroundForm;
  776. else collectionView.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
  777. [collectionView reloadData];
  778. }
  779. }
  780. #pragma --------------------------------------------------------------------------------------------
  781. #pragma mark ===== Fetch =====
  782. #pragma --------------------------------------------------------------------------------------------
  783. - (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  784. {
  785. // Test Maintenance
  786. if (self.account.length == 0 || self.maintenanceMode) {
  787. completionHandler(UIBackgroundFetchResultNoData);
  788. return;
  789. }
  790. NSLog(@"[LOG] Start perform Fetch With Completion Handler");
  791. // Verify new photo
  792. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  793. // after 20 sec
  794. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  795. NSInteger results = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session != ''"] page:0 limit:0 sorted:@"fileName" ascending:NO].count;
  796. if (results > 0) {
  797. completionHandler(UIBackgroundFetchResultNewData);
  798. } else {
  799. completionHandler(UIBackgroundFetchResultNoData);
  800. }
  801. NSLog(@"[LOG] End 20 sec. perform Fetch With Completion Handler");
  802. });
  803. }
  804. #pragma --------------------------------------------------------------------------------------------
  805. #pragma mark ===== Operation Networking & Session =====
  806. #pragma --------------------------------------------------------------------------------------------
  807. //
  808. // Method called by the system when all the background task has end
  809. //
  810. - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler
  811. {
  812. NSLog(@"[LOG] Start handle Events For Background URLSession: %@", identifier);
  813. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  814. self.backgroundSessionCompletionHandler = completionHandler;
  815. void (^completionHandler)() = self.backgroundSessionCompletionHandler;
  816. self.backgroundSessionCompletionHandler = nil;
  817. completionHandler();
  818. });
  819. }
  820. #pragma --------------------------------------------------------------------------------------------
  821. #pragma mark ===== OpenURL =====
  822. #pragma --------------------------------------------------------------------------------------------
  823. // Method called from iOS system to send a file from other app.
  824. - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<NSString *,id> *)options
  825. {
  826. if (self.account.length == 0 || self.maintenanceMode)
  827. return YES;
  828. NSString *scheme = url.scheme;
  829. dispatch_time_t timer = 0;
  830. if (self.activeMain == nil) timer = 1;
  831. if ([scheme isEqualToString:@"nextcloud"]) {
  832. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, timer * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  833. NSString *action = url.host;
  834. if ([action isEqualToString:@"open-file"]) {
  835. NSURLComponents *urlComponents = [NSURLComponents componentsWithURL:url resolvingAgainstBaseURL:NO];
  836. NSArray *queryItems = urlComponents.queryItems;
  837. NSString *user = [CCUtility valueForKey:@"user" fromQueryItems:queryItems];
  838. NSString *path = [CCUtility valueForKey:@"path" fromQueryItems:queryItems];
  839. NSString *link = [CCUtility valueForKey:@"link" fromQueryItems:queryItems];
  840. tableAccount *matchedAccount = nil;
  841. // verify parameter
  842. if (user.length == 0 || path.length == 0 || [[NSURL URLWithString:link] host].length == 0) {
  843. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_error_parameter_schema_", nil) preferredStyle:UIAlertControllerStyleAlert];
  844. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  845. [alertController addAction:okAction];
  846. [self.window.rootViewController presentViewController:alertController animated:YES completion:nil];
  847. } else {
  848. tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  849. if (account) {
  850. NSURL *accountURL = [NSURL URLWithString:account.urlBase];
  851. NSString *accountUser = account.user;
  852. if ([link containsString:accountURL.host] && [user isEqualToString:accountUser]) {
  853. matchedAccount = account;
  854. } else {
  855. NSArray *accounts = [[NCManageDatabase sharedInstance] getAllAccount];
  856. for (tableAccount *account in accounts) {
  857. NSURL *accountURL = [NSURL URLWithString:account.urlBase];
  858. NSString *accountUser = account.user;
  859. if ([link containsString:accountURL.host] && [user isEqualToString:accountUser]) {
  860. matchedAccount = [[NCManageDatabase sharedInstance] setAccountActive:account.account];
  861. [self settingAccount:matchedAccount.account urlBase:matchedAccount.urlBase user:matchedAccount.user userID:matchedAccount.userID password:[CCUtility getPassword:matchedAccount.account]];
  862. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_notificationCenter_initializeMain object:nil userInfo:nil];
  863. }
  864. }
  865. }
  866. if (matchedAccount) {
  867. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  868. if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
  869. UINavigationController *navigationControllerMaster = (UINavigationController *)splitViewController.viewControllers.firstObject;
  870. if ([navigationControllerMaster isKindOfClass:[UINavigationController class]]) {
  871. UITabBarController *tabBarController = (UITabBarController *)navigationControllerMaster.topViewController;
  872. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  873. if (splitViewController.isCollapsed) {
  874. [navigationControllerMaster popToRootViewControllerAnimated:false];
  875. UINavigationController *navigationControllerMaster = (UINavigationController *)splitViewController.viewControllers.firstObject;
  876. if ([navigationControllerMaster isKindOfClass:[UINavigationController class]]) {
  877. UITabBarController *tabBarController = (UITabBarController *)navigationControllerMaster.topViewController;
  878. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  879. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  880. [tabBarController setSelectedIndex: k_tabBarApplicationIndexFile];
  881. }
  882. }
  883. }
  884. } else {
  885. if ([tabBarController isKindOfClass:[UITabBarController class]]) {
  886. [tabBarController setSelectedIndex: k_tabBarApplicationIndexFile];
  887. }
  888. }
  889. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  890. [self.activeMain.navigationController popToRootViewControllerAnimated:NO];
  891. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  892. NSString *webDAV = [[NCUtility shared] getWebDAVWithAccount:self.account];
  893. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@/%@", matchedAccount.urlBase, webDAV, path];
  894. if ([path containsString:@"/"]) {
  895. // Push
  896. NSString *fileName = [[path stringByDeletingLastPathComponent] lastPathComponent];
  897. NSString *serverUrl = [CCUtility deletingLastPathComponentFromServerUrl:[NSString stringWithFormat:@"%@%@/%@", matchedAccount.urlBase, webDAV, [path stringByDeletingLastPathComponent]]];
  898. tableMetadata *metadata = [[NCManageDatabase sharedInstance] createMetadataWithAccount:matchedAccount.account fileName:fileName ocId:[[NSUUID UUID] UUIDString] serverUrl:serverUrl urlBase: @"" url:@"" contentType:@"" livePhoto:false];
  899. [self.activeMain performSegueDirectoryWithMetadata:metadata blinkFileNamePath:fileNamePath];
  900. } else {
  901. // Reload folder
  902. NSString *serverUrl = [NSString stringWithFormat:@"%@%@", matchedAccount.urlBase, webDAV];
  903. self.activeMain.blinkFileNamePath = fileNamePath;
  904. [self.activeMain readFolder:serverUrl];
  905. }
  906. });
  907. });
  908. }
  909. }
  910. }
  911. } else {
  912. NSString *domain = [[NSURL URLWithString:link] host];
  913. NSString *fileName = [path lastPathComponent];
  914. NSString *message = [NSString stringWithFormat:NSLocalizedString(@"_account_not_available_", nil), user, domain, fileName];
  915. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_info_", nil) message:message preferredStyle:UIAlertControllerStyleAlert];
  916. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  917. [alertController addAction:okAction];
  918. [self.window.rootViewController presentViewController:alertController animated:YES completion:nil];
  919. }
  920. }
  921. }
  922. }
  923. });
  924. return YES;
  925. }
  926. NSError *error;
  927. NSLog(@"[LOG] the path is: %@", url.path);
  928. NSArray *splitedUrl = [url.path componentsSeparatedByString:@"/"];
  929. self.fileNameUpload = [NSString stringWithFormat:@"%@",[splitedUrl objectAtIndex:([splitedUrl count]-1)]];
  930. if (self.account) {
  931. [[NSFileManager defaultManager]removeItemAtPath:[NSTemporaryDirectory() stringByAppendingString:self.fileNameUpload] error:nil];
  932. [[NSFileManager defaultManager]moveItemAtPath:url.path toPath:[NSTemporaryDirectory() stringByAppendingString:self.fileNameUpload] error:&error];
  933. if (error == nil) {
  934. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  935. if ([splitViewController isKindOfClass:[UISplitViewController class]]) {
  936. UINavigationController *navigationControllerMaster = (UINavigationController *)splitViewController.viewControllers.firstObject;
  937. if ([navigationControllerMaster isKindOfClass:[UINavigationController class]]) {
  938. UIViewController *uploadNavigationViewController = [[UIStoryboard storyboardWithName:@"CCUploadFromOtherUpp" bundle:nil] instantiateViewControllerWithIdentifier:@"CCUploadNavigationViewController"];
  939. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, timer * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  940. [navigationControllerMaster presentViewController:uploadNavigationViewController animated:YES completion:nil];
  941. });
  942. }
  943. }
  944. }
  945. }
  946. return YES;
  947. }
  948. #pragma --------------------------------------------------------------------------------------------
  949. #pragma mark ===== Passcode + Delegate =====
  950. #pragma --------------------------------------------------------------------------------------------
  951. - (void)passcodeWithAutomaticallyPromptForBiometricValidation:(BOOL)automaticallyPromptForBiometricValidation
  952. {
  953. LAContext *laContext = [LAContext new];
  954. NSError *error;
  955. BOOL isBiometryAvailable = false;
  956. if ([[CCUtility getPasscode] length] == 0 || [self.account length] == 0 || [CCUtility getNotPasscodeAtStart]) return;
  957. if (self.passcodeViewController == nil) {
  958. self.passcodeViewController = [[TOPasscodeViewController alloc] initWithStyle:TOPasscodeViewStyleTranslucentLight passcodeType:TOPasscodeTypeSixDigits];
  959. if (@available(iOS 13.0, *)) {
  960. if ([[UITraitCollection currentTraitCollection] userInterfaceStyle] == UIUserInterfaceStyleDark) {
  961. self.passcodeViewController.style = TOPasscodeViewStyleTranslucentDark;
  962. }
  963. }
  964. self.passcodeViewController.delegate = self;
  965. self.passcodeViewController.keypadButtonShowLettering = false;
  966. if (CCUtility.getEnableTouchFaceID && [laContext canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) {
  967. if (error == NULL) {
  968. if (laContext.biometryType == LABiometryTypeFaceID) {
  969. self.passcodeViewController.biometryType = TOPasscodeBiometryTypeFaceID;
  970. self.passcodeViewController.allowBiometricValidation = true;
  971. isBiometryAvailable = true;
  972. } else if (laContext.biometryType == LABiometryTypeTouchID) {
  973. self.passcodeViewController.biometryType = TOPasscodeBiometryTypeTouchID;
  974. self.passcodeViewController.allowBiometricValidation = true;
  975. isBiometryAvailable = true;
  976. } else {
  977. isBiometryAvailable = false;
  978. NSLog(@"No Biometric support");
  979. }
  980. }
  981. }
  982. [self.window.rootViewController presentViewController:self.passcodeViewController animated:YES completion:nil];
  983. }
  984. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  985. if (CCUtility.getEnableTouchFaceID && automaticallyPromptForBiometricValidation && self.passcodeViewController.view.window) {
  986. [[LAContext new] evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:[[NCBrandOptions sharedInstance] brand] reply:^(BOOL success, NSError * _Nullable error) {
  987. if (success) {
  988. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  989. [self.passcodeViewController dismissViewControllerAnimated:YES completion:^{
  990. self.passcodeViewController = nil;
  991. }];
  992. });
  993. }
  994. }];
  995. }
  996. });
  997. }
  998. - (void)didInputCorrectPasscodeInPasscodeViewController:(TOPasscodeViewController *)passcodeViewController
  999. {
  1000. [passcodeViewController dismissViewControllerAnimated:YES completion:^{
  1001. self.passcodeViewController = nil;
  1002. }];
  1003. }
  1004. - (BOOL)passcodeViewController:(TOPasscodeViewController *)passcodeViewController isCorrectCode:(NSString *)code
  1005. {
  1006. return [code isEqualToString:[CCUtility getPasscode]];
  1007. }
  1008. - (void)didPerformBiometricValidationRequestInPasscodeViewController:(TOPasscodeViewController *)passcodeViewController
  1009. {
  1010. [[LAContext new] evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:[[NCBrandOptions sharedInstance] brand] reply:^(BOOL success, NSError * _Nullable error) {
  1011. if (success) {
  1012. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  1013. [passcodeViewController dismissViewControllerAnimated:YES completion:^{
  1014. self.passcodeViewController = nil;
  1015. }];
  1016. });
  1017. }
  1018. }];
  1019. }
  1020. #pragma --------------------------------------------------------------------------------------------
  1021. #pragma mark ===== Maintenance Mode =====
  1022. #pragma --------------------------------------------------------------------------------------------
  1023. - (void)maintenanceMode:(BOOL)mode
  1024. {
  1025. self.maintenanceMode = mode;
  1026. }
  1027. @end