AppDelegate.m 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572
  1. //
  2. // AppDelegate.m
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 04/09/14.
  6. // Copyright (c) 2017 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 <JDStatusBarNotification/JDStatusBarNotification.h>
  25. #import "AFURLSessionManager.h"
  26. #import "CCNetworking.h"
  27. #import "CCGraphics.h"
  28. #import "CCSynchronize.h"
  29. #import "CCMain.h"
  30. #import "CCDetail.h"
  31. #import <Fabric/Fabric.h>
  32. #import <Crashlytics/Crashlytics.h>
  33. #import "NCBridgeSwift.h"
  34. #import "NCAutoUpload.h"
  35. #import "Firebase.h"
  36. #import "NCPushNotificationEncryption.h"
  37. @interface AppDelegate () <UNUserNotificationCenterDelegate, FIRMessagingDelegate>
  38. @end
  39. @implementation AppDelegate
  40. + (void)initialize
  41. {
  42. [[NSUserDefaults standardUserDefaults] registerDefaults:@{@"UserAgent": [CCUtility getUserAgent]}];
  43. }
  44. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  45. {
  46. NSString *path;
  47. NSURL *dirGroup = [CCUtility getDirectoryGroup];
  48. NSLog(@"[LOG] Start program group -----------------");
  49. NSLog(@"%@", [dirGroup path]);
  50. NSLog(@"[LOG] Start program application -----------");
  51. NSLog(@"%@", [[CCUtility getDirectoryDocuments] stringByDeletingLastPathComponent]);
  52. NSLog(@"[LOG] -------------------------------------");
  53. // create Directory Documents
  54. path = [CCUtility getDirectoryDocuments];
  55. if (![[NSFileManager defaultManager] fileExistsAtPath: path])
  56. [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil];
  57. // create Directory audio => Library, Application Support, audio
  58. path = [CCUtility getDirectoryAudio];
  59. if (![[NSFileManager defaultManager] fileExistsAtPath: path])
  60. [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil];
  61. // create Directory database Nextcloud
  62. path = [[dirGroup URLByAppendingPathComponent:k_appDatabaseNextcloud] path];
  63. if (![[NSFileManager defaultManager] fileExistsAtPath:path])
  64. [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil];
  65. [[NSFileManager defaultManager] setAttributes:@{NSFileProtectionKey:NSFileProtectionNone} ofItemAtPath:path error:nil];
  66. // create Directory User Data
  67. path = [[dirGroup URLByAppendingPathComponent:k_appUserData] path];
  68. if (![[NSFileManager defaultManager] fileExistsAtPath:path])
  69. [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil];
  70. // create Directory Provider Storage
  71. path = [CCUtility getDirectoryProviderStorage];
  72. if (![[NSFileManager defaultManager] fileExistsAtPath: path])
  73. [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil];
  74. // create Directory Scan
  75. path = [[dirGroup URLByAppendingPathComponent:k_appScan] path];
  76. if (![[NSFileManager defaultManager] fileExistsAtPath:path])
  77. [[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil];
  78. // Directory Excluded From Backup
  79. [CCUtility addSkipBackupAttributeToItemAtURL:[[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject]];
  80. [CCUtility addSkipBackupAttributeToItemAtURL:[[CCUtility getDirectoryGroup] URLByAppendingPathComponent:k_DirectoryProviderStorage]];
  81. [CCUtility addSkipBackupAttributeToItemAtURL:[[CCUtility getDirectoryGroup] URLByAppendingPathComponent:k_appUserData]];
  82. // Verify upgrade
  83. if ([self upgrade]) {
  84. // Set account, if no exists clear all
  85. tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  86. if (account == nil) {
  87. // remove all the keys Chain
  88. [CCUtility deleteAllChainStore];
  89. // remove all the App group key
  90. [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:[[NSBundle mainBundle] bundleIdentifier]];
  91. } else {
  92. [self settingActiveAccount:account.account activeUrl:account.url activeUser:account.user activeUserID:account.userID activePassword:account.password];
  93. }
  94. }
  95. #ifdef DEBUG
  96. NSLog(@"[LOG] Copy DB on Documents directory");
  97. NSString *atPathDB = [NSString stringWithFormat:@"%@/nextcloud.realm", [[dirGroup URLByAppendingPathComponent:k_appDatabaseNextcloud] path]];
  98. NSString *toPathDB = [NSString stringWithFormat:@"%@/nextcloud.realm", [CCUtility getDirectoryDocuments]];
  99. [[NSFileManager defaultManager] removeItemAtPath:toPathDB error:nil];
  100. [[NSFileManager defaultManager] copyItemAtPath:atPathDB toPath:toPathDB error:nil];
  101. #endif
  102. // UserDefaults
  103. self.ncUserDefaults = [[NSUserDefaults alloc] initWithSuiteName:[NCBrandOptions sharedInstance].capabilitiesGroups];
  104. // Initialization Share
  105. self.sharesID = [NSMutableDictionary new];
  106. self.sharesLink = [NSMutableDictionary new];
  107. self.sharesUserAndGroup = [NSMutableDictionary new];
  108. // Filter fileID
  109. self.filterFileID = [NSMutableArray new];
  110. // Upload Pending In Upload (crash)
  111. self.sessionPendingStatusInUpload = [NSMutableArray new];
  112. // Initialization Notification
  113. self.listOfNotifications = [NSMutableArray new];
  114. // Background Fetch
  115. [application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
  116. // Initialization List
  117. self.listProgressMetadata = [[NSMutableDictionary alloc] init];
  118. self.listMainVC = [[NSMutableDictionary alloc] init];
  119. // Firebase - Push Notification
  120. @try {
  121. [FIRApp configure];
  122. } @catch (NSException *exception) {
  123. NSLog(@"[LOG] Something went wrong while configuring Firebase");
  124. }
  125. // Display notification (sent via APNS)
  126. [UNUserNotificationCenter currentNotificationCenter].delegate = self;
  127. UNAuthorizationOptions authOptions = UNAuthorizationOptionAlert | UNAuthorizationOptionSound | UNAuthorizationOptionBadge;
  128. [[UNUserNotificationCenter currentNotificationCenter] requestAuthorizationWithOptions:authOptions completionHandler:^(BOOL granted, NSError * _Nullable error) {
  129. }];
  130. [application registerForRemoteNotifications];
  131. [FIRMessaging messaging].delegate = self;
  132. // setting Reachable in back
  133. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  134. self.reachability = [Reachability reachabilityForInternetConnection];
  135. self.lastReachability = [self.reachability isReachable];
  136. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];
  137. [self.reachability startNotifier];
  138. });
  139. //AV Session
  140. [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:nil];
  141. // [[AVAudioSession sharedInstance] setActive:YES error:nil];
  142. [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
  143. // APPEARANCE: How to hide UINavigationBar 1px bottom line < iOS 11
  144. [[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init] forBarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault];
  145. [[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]];
  146. [UINavigationBar appearance].translucent = NO;
  147. // passcode
  148. [[BKPasscodeLockScreenManager sharedManager] setDelegate:self];
  149. dispatch_async(dispatch_get_main_queue(), ^{
  150. [[BKPasscodeLockScreenManager sharedManager] showLockScreen:NO];
  151. });
  152. // Quick Actions
  153. if([[UIApplicationShortcutItem class] respondsToSelector:@selector(new)]) {
  154. [self configDynamicShortcutItems];
  155. UIApplicationShortcutItem *shortcutItem = [launchOptions objectForKeyedSubscript:UIApplicationLaunchOptionsShortcutItemKey];
  156. if (shortcutItem)
  157. [self handleShortCutItem:shortcutItem];
  158. }
  159. // Start Timer
  160. self.timerProcessAutoDownloadUpload = [NSTimer scheduledTimerWithTimeInterval:k_timerProcessAutoDownloadUpload target:self selector:@selector(loadAutoDownloadUpload) userInfo:nil repeats:YES];
  161. self.timerUpdateApplicationIconBadgeNumber = [NSTimer scheduledTimerWithTimeInterval:k_timerUpdateApplicationIconBadgeNumber target:self selector:@selector(updateApplicationIconBadgeNumber) userInfo:nil repeats:YES];
  162. // Fabric
  163. [Fabric with:@[[Crashlytics class]]];
  164. // Store review
  165. if ([[NCUtility sharedInstance] isSimulatorOrTestFlight] == false) {
  166. NCStoreReview *review = [NCStoreReview new];
  167. [review incrementAppRuns];
  168. [review showStoreReview];
  169. }
  170. return YES;
  171. }
  172. //
  173. // L' applicazione si dimetterà dallo stato di attivo
  174. //
  175. - (void)applicationWillResignActive:(UIApplication *)application
  176. {
  177. [_activeMain closeAllMenu];
  178. [self updateApplicationIconBadgeNumber];
  179. }
  180. //
  181. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  182. //
  183. - (void)applicationWillEnterForeground:(UIApplication *)application
  184. {
  185. // Test Maintenance
  186. if (self.activeAccount.length == 0 || self.maintenanceMode)
  187. return;
  188. NSLog(@"[LOG] Request Service Server Nextcloud");
  189. [[NCService sharedInstance] startRequestServicesServer];
  190. NSLog(@"[LOG] Initialize Auto upload");
  191. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  192. NSLog(@"[LOG] Read active directory");
  193. [self.activeMain readFileReloadFolder];
  194. }
  195. //
  196. // L' applicazione entrerà in primo piano (attivo sempre)
  197. //
  198. - (void)applicationDidBecomeActive:(UIApplication *)application
  199. {
  200. // Test Maintenance
  201. if (self.activeAccount.length == 0 || self.maintenanceMode)
  202. return;
  203. // middelware ping
  204. if ([[NCBrandOptions sharedInstance] use_middlewarePing]) {
  205. NSLog(@"[LOG] Middleware Ping");
  206. [[NCService sharedInstance] middlewarePing];
  207. }
  208. }
  209. //
  210. // L' applicazione è entrata nello sfondo
  211. //
  212. - (void)applicationDidEnterBackground:(UIApplication *)application
  213. {
  214. NSLog(@"[LOG] Enter in Background");
  215. [[BKPasscodeLockScreenManager sharedManager] showLockScreen:YES];
  216. if([[UIDevice currentDevice] respondsToSelector:@selector(isMultitaskingSupported)]) {
  217. __block UIBackgroundTaskIdentifier background_task;
  218. background_task = [application beginBackgroundTaskWithExpirationHandler:^ {
  219. //Clean up code. Tell the system that we are done.
  220. [application endBackgroundTask: background_task];
  221. background_task = UIBackgroundTaskInvalid;
  222. }];
  223. }
  224. }
  225. //
  226. // L'applicazione terminerà
  227. //
  228. - (void)applicationWillTerminate:(UIApplication *)application
  229. {
  230. NSLog(@"[LOG] bye bye, Nextcloud !");
  231. }
  232. #pragma --------------------------------------------------------------------------------------------
  233. #pragma mark ===== Login =====
  234. #pragma --------------------------------------------------------------------------------------------
  235. - (void)openLoginView:(UIViewController *)viewController delegate:(id)delegate loginType:(NSInteger)loginType selector:(NSInteger)selector
  236. {
  237. BOOL loginWebFlow = NO;
  238. @synchronized (self) {
  239. // only for personalized LoginWeb [customer]
  240. if ([NCBrandOptions sharedInstance].use_login_web_personalized) {
  241. if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
  242. _activeLoginWeb = [CCLoginWeb new];
  243. _activeLoginWeb.delegate = delegate;
  244. _activeLoginWeb.loginType = loginType;
  245. _activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] loginBaseUrl];
  246. dispatch_async(dispatch_get_main_queue(), ^ {
  247. [_activeLoginWeb open:viewController];
  248. });
  249. }
  250. return;
  251. }
  252. // ------------------- Nextcloud -------------------------
  253. //
  254. // Login flow : LoginWeb
  255. if (loginType == k_login_Modify_Password) {
  256. tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  257. if (account.loginFlow)
  258. loginWebFlow = YES;
  259. }
  260. if (loginWebFlow || selector == k_intro_signup) {
  261. if (!(_activeLoginWeb.isViewLoaded && _activeLoginWeb.view.window)) {
  262. _activeLoginWeb = [CCLoginWeb new];
  263. _activeLoginWeb.delegate = delegate;
  264. _activeLoginWeb.loginType = loginType;
  265. if (selector == k_intro_signup) {
  266. _activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] linkloginPreferredProviders];
  267. } else {
  268. _activeLoginWeb.urlBase = self.activeUrl;
  269. }
  270. dispatch_async(dispatch_get_main_queue(), ^ {
  271. [_activeLoginWeb open:viewController];
  272. });
  273. }
  274. } else if ([NCBrandOptions sharedInstance].disable_intro && [NCBrandOptions sharedInstance].disable_request_login_url) {
  275. _activeLoginWeb = [CCLoginWeb new];
  276. _activeLoginWeb.delegate = delegate;
  277. _activeLoginWeb.loginType = loginType;
  278. _activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] loginBaseUrl];
  279. dispatch_async(dispatch_get_main_queue(), ^ {
  280. [_activeLoginWeb open:viewController];
  281. });
  282. } else {
  283. if (!(_activeLogin.isViewLoaded && _activeLogin.view.window)) {
  284. _activeLogin = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"CCLoginNextcloud"];
  285. _activeLogin.delegate = delegate;
  286. _activeLogin.loginType = loginType;
  287. dispatch_async(dispatch_get_main_queue(), ^ {
  288. [viewController presentViewController:_activeLogin animated:YES completion:nil];
  289. });
  290. }
  291. }
  292. }
  293. }
  294. #pragma --------------------------------------------------------------------------------------------
  295. #pragma mark ===== Setting Active Account for all APP =====
  296. #pragma --------------------------------------------------------------------------------------------
  297. - (void)settingActiveAccount:(NSString *)activeAccount activeUrl:(NSString *)activeUrl activeUser:(NSString *)activeUser activeUserID:(NSString *)activeUserID activePassword:(NSString *)activePassword
  298. {
  299. self.activeAccount = activeAccount;
  300. self.activeUrl = activeUrl;
  301. self.activeUser = activeUser;
  302. self.activeUserID = activeUserID;
  303. self.activePassword = activePassword;
  304. // Setting Account to CCNetworking
  305. [CCNetworking sharedNetworking].delegate = [NCNetworkingMain sharedInstance];
  306. }
  307. #pragma --------------------------------------------------------------------------------------------
  308. #pragma mark ===== Push Notification =====
  309. #pragma --------------------------------------------------------------------------------------------
  310. - (void)subscribingNextcloudServerPushNotification:(NSString *)account url:(NSString *)url
  311. {
  312. // test
  313. if (self.activeAccount.length == 0 || self.maintenanceMode)
  314. return;
  315. [[NCPushNotificationEncryption sharedInstance] generatePushNotificationsKeyPair:account];
  316. NSString *pushToken = [CCUtility getPushNotificationToken];
  317. NSString *pushTokenHash = [[NCEndToEndEncryption sharedManager] createSHA512:pushToken];
  318. NSData *ncPNPublicKey = [CCUtility getPushNotificationPublicKey:account];
  319. NSString *devicePublicKey = [[NSString alloc] initWithData:ncPNPublicKey encoding:NSUTF8StringEncoding];
  320. self.pnDeviceIdentifier = nil;
  321. self.pnDeviceIdentifierSignature = nil;
  322. self.pnPublicKey = nil;
  323. [[OCNetworking sharedManager] subscribingPushNotificationWithAccount:account url:url pushToken:pushToken Hash:pushTokenHash devicePublicKey:devicePublicKey completion:^(NSString *accountCompletion, NSString *deviceIdentifier, NSString *deviceIdentifierSignature, NSString *publicKey, NSString *message, NSInteger errorCode) {
  324. if (errorCode == 0 && [accountCompletion isEqualToString:account]) {
  325. NSLog(@"[LOG] Subscribed to Push Notification server & proxy successfully.");
  326. self.pnDeviceIdentifier = deviceIdentifier;
  327. self.pnDeviceIdentifierSignature = deviceIdentifierSignature;
  328. self.pnPublicKey = publicKey;
  329. } else if (errorCode != 0) {
  330. NSLog(@"[LOG] Subscribed to Push Notification server & proxy error.");
  331. } else {
  332. NSLog(@"[LOG] It has been changed user during networking process, error.");
  333. }
  334. }];
  335. }
  336. - (void)unsubscribingNextcloudServerPushNotification:(NSString *)account
  337. {
  338. // test
  339. if (self.activeAccount.length == 0 || self.maintenanceMode)
  340. return;
  341. [[OCNetworking sharedManager] unsubscribingPushNotificationWithAccount:account url:self.activeUrl deviceIdentifier:self.pnDeviceIdentifier deviceIdentifierSignature:self.pnDeviceIdentifierSignature publicKey:self.pnPublicKey completion:^(NSString *account, NSString *message, NSInteger errorCode) {
  342. if (errorCode == 0) {
  343. NSLog(@"[LOG] Unsubscribed to Push Notification server & proxy successfully.");
  344. } else if (errorCode != 0) {
  345. NSLog(@"[LOG] Unsubscribed to Push Notification server & proxy error.");
  346. } else {
  347. NSLog(@"[LOG] It has been changed user during networking process, error.");
  348. }
  349. }];
  350. }
  351. -(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler
  352. {
  353. //Called when a notification is delivered to a foreground app.
  354. completionHandler(UNNotificationPresentationOptionAlert);
  355. }
  356. -(void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(nonnull UNNotificationResponse *)response withCompletionHandler:(nonnull void (^)(void))completionHandler
  357. {
  358. /*
  359. NSString *message = [response.notification.request.content.userInfo objectForKey:@"subject"];
  360. if (message && [NCPushNotificationEncryption sharedInstance].ncPNPrivateKey) {
  361. NSData *privateKey = [CCUtility getPushNotificationPrivateKey];
  362. NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey:privateKey];
  363. if (decryptedMessage) {
  364. NSData *data = [decryptedMessage dataUsingEncoding:NSUTF8StringEncoding];
  365. NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
  366. NSString *app = [json objectForKey:@"app"];
  367. if ([app isEqualToString:@"spreed"] == NO) {
  368. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  369. UINavigationController *navigationControllerMore;
  370. UITabBarController *tabBarController;
  371. if (splitViewController.isCollapsed) {
  372. tabBarController = splitViewController.viewControllers.firstObject;
  373. for (UINavigationController *nvc in tabBarController.viewControllers) {
  374. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  375. [nvc popToRootViewControllerAnimated:NO];
  376. if ([nvc.topViewController isKindOfClass:[CCMore class]])
  377. navigationControllerMore = nvc;
  378. }
  379. } else {
  380. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  381. [nvcDetail popToRootViewControllerAnimated:NO];
  382. tabBarController = splitViewController.viewControllers.firstObject;
  383. }
  384. if (tabBarController)
  385. [tabBarController setSelectedIndex: k_tabBarApplicationIndexMore];
  386. if (navigationControllerMore)
  387. [navigationControllerMore performSegueWithIdentifier:@"segueActivity" sender:navigationControllerMore];
  388. }
  389. }
  390. }
  391. */
  392. completionHandler();
  393. }
  394. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  395. {
  396. NSLog(@"Push notification: %@", userInfo);
  397. NSString *message = [userInfo objectForKey:@"subject"];
  398. if (message && [CCUtility getPushNotificationPrivateKey:self.activeAccount]) {
  399. NSString *decryptedMessage = [[NCPushNotificationEncryption sharedInstance] decryptPushNotification:message withDevicePrivateKey: [CCUtility getPushNotificationPrivateKey:self.activeAccount]];
  400. if (decryptedMessage) {
  401. UNMutableNotificationContent *content = [UNMutableNotificationContent new];
  402. content.body = decryptedMessage;
  403. content.sound = [UNNotificationSound defaultSound];
  404. NSString *identifier = [NSString stringWithFormat:@"Notification-%@", [NSDate new]];
  405. UNTimeIntervalNotificationTrigger *trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:0.1 repeats:NO];
  406. UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier:identifier content:content trigger:trigger];
  407. [[UNUserNotificationCenter currentNotificationCenter] addNotificationRequest:request withCompletionHandler:nil];
  408. }
  409. }
  410. }
  411. #pragma FIREBASE
  412. - (void)messaging:(FIRMessaging *)messaging didReceiveRegistrationToken:(NSString *)fcmToken
  413. {
  414. // test
  415. if (self.activeAccount.length == 0 || self.maintenanceMode)
  416. return;
  417. NSLog(@"FCM registration token: %@", fcmToken);
  418. NSString *token = [CCUtility getPushNotificationToken];
  419. if (![token isEqualToString:fcmToken]) {
  420. // da fare per tutti gli utenti
  421. [CCUtility setPushNotificationToken:fcmToken];
  422. }
  423. //[self subscribingNextcloudServerPushNotification];
  424. }
  425. #pragma --------------------------------------------------------------------------------------------
  426. #pragma mark ===== Quick Actions - ShotcutItem =====
  427. #pragma --------------------------------------------------------------------------------------------
  428. - (void)configDynamicShortcutItems
  429. {
  430. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  431. UIApplicationShortcutIcon *shortcutMediaIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:@"media"];
  432. UIApplicationShortcutItem *shortcutMedia = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.media", bundleId] localizedTitle:NSLocalizedString(@"_media_", nil) localizedSubtitle:nil icon:shortcutMediaIcon userInfo:nil];
  433. // add the array to our app
  434. if (shortcutMedia)
  435. [UIApplication sharedApplication].shortcutItems = @[shortcutMedia];
  436. }
  437. - (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL))completionHandler
  438. {
  439. BOOL handledShortCutItem = [self handleShortCutItem:shortcutItem];
  440. completionHandler(handledShortCutItem);
  441. }
  442. - (BOOL)handleShortCutItem:(UIApplicationShortcutItem *)shortcutItem
  443. {
  444. BOOL handled = NO;
  445. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  446. NSString *shortcutMedia = [NSString stringWithFormat:@"%@.media", bundleId];
  447. if ([shortcutItem.type isEqualToString:shortcutMedia] && self.activeAccount) {
  448. dispatch_async(dispatch_get_main_queue(), ^{
  449. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  450. if (splitViewController.isCollapsed) {
  451. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  452. for (UINavigationController *nvc in tbc.viewControllers) {
  453. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  454. [nvc popToRootViewControllerAnimated:NO];
  455. }
  456. [tbc setSelectedIndex: k_tabBarApplicationIndexMedia];
  457. } else {
  458. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  459. [nvcDetail popToRootViewControllerAnimated:NO];
  460. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  461. [tbc setSelectedIndex: k_tabBarApplicationIndexMedia];
  462. }
  463. });
  464. handled = YES;
  465. }
  466. return handled;
  467. }
  468. #pragma --------------------------------------------------------------------------------------------
  469. #pragma mark ===== StatusBar & ApplicationIconBadgeNumber =====
  470. #pragma --------------------------------------------------------------------------------------------
  471. - (void)messageNotification:(NSString *)title description:(NSString *)description visible:(BOOL)visible delay:(NSTimeInterval)delay type:(TWMessageBarMessageType)type errorCode:(NSInteger)errorcode
  472. {
  473. static NSInteger errorCodePrev = 0;
  474. dispatch_async(dispatch_get_main_queue(), ^{
  475. if (visible) {
  476. switch (errorcode) {
  477. // JDStatusBarNotification
  478. case kCFURLErrorNotConnectedToInternet :
  479. if (errorCodePrev != errorcode)
  480. [JDStatusBarNotification showWithStatus:NSLocalizedString(title, nil) dismissAfter:delay styleName:JDStatusBarStyleDefault];
  481. errorCodePrev = errorcode;
  482. break;
  483. // TWMessageBarManager
  484. default:
  485. if (description.length > 0) {
  486. [TWMessageBarManager sharedInstance].styleSheet = self;
  487. [[TWMessageBarManager sharedInstance] showMessageWithTitle:[NSString stringWithFormat:@"%@\n", NSLocalizedString(title, nil)] description:NSLocalizedString(description, nil) type:type duration:delay];
  488. }
  489. break;
  490. }
  491. } else {
  492. [[TWMessageBarManager sharedInstance] hideAllAnimated:YES];
  493. }
  494. });
  495. }
  496. - (UIColor *)backgroundColorForMessageType:(TWMessageBarMessageType)type
  497. {
  498. UIColor *backgroundColor = nil;
  499. switch (type)
  500. {
  501. case TWMessageBarMessageTypeError:
  502. backgroundColor = [UIColor colorWithRed:1.0 green:0.0 blue:0.0 alpha:0.90];
  503. break;
  504. case TWMessageBarMessageTypeSuccess:
  505. backgroundColor = [UIColor colorWithRed:0.588 green:0.797 blue:0.000 alpha:0.90];
  506. break;
  507. case TWMessageBarMessageTypeInfo:
  508. backgroundColor = [NCBrandColor sharedInstance].brand;
  509. break;
  510. default:
  511. break;
  512. }
  513. return backgroundColor;
  514. }
  515. - (UIColor *)strokeColorForMessageType:(TWMessageBarMessageType)type
  516. {
  517. UIColor *strokeColor = nil;
  518. switch (type)
  519. {
  520. case TWMessageBarMessageTypeError:
  521. strokeColor = [UIColor colorWithRed:1.0 green:0.0 blue:0.0 alpha:1.0];
  522. break;
  523. case TWMessageBarMessageTypeSuccess:
  524. strokeColor = [UIColor colorWithRed:0.0 green:1.0 blue:0.0 alpha:1.0];
  525. break;
  526. case TWMessageBarMessageTypeInfo:
  527. strokeColor = [UIColor colorWithRed:0.0 green:0.0 blue:1.0 alpha:1.0];
  528. break;
  529. default:
  530. break;
  531. }
  532. return strokeColor;
  533. }
  534. - (UIImage *)iconImageForMessageType:(TWMessageBarMessageType)type
  535. {
  536. UIImage *iconImage = nil;
  537. switch (type)
  538. {
  539. case TWMessageBarMessageTypeError:
  540. iconImage = [UIImage imageNamed:@"icon-error.png"];
  541. break;
  542. case TWMessageBarMessageTypeSuccess:
  543. iconImage = [UIImage imageNamed:@"icon-success.png"];
  544. break;
  545. case TWMessageBarMessageTypeInfo:
  546. iconImage = [UIImage imageNamed:@"icon-info.png"];
  547. break;
  548. default:
  549. break;
  550. }
  551. return iconImage;
  552. }
  553. - (void)updateApplicationIconBadgeNumber
  554. {
  555. if (self.activeAccount.length == 0 || self.maintenanceMode)
  556. return;
  557. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  558. NSInteger counterDownload = [[[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"status = %d OR status == %d OR status == %d", k_metadataStatusWaitDownload, k_metadataStatusInDownload, k_metadataStatusDownloading] sorted:@"fileName" ascending:true] count];
  559. NSInteger counterUpload = [[[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"status == %d OR status == %d OR status == %d", k_metadataStatusWaitUpload, k_metadataStatusInUpload, k_metadataStatusUploading] sorted:@"fileName" ascending:true] count];
  560. NSInteger total = counterDownload + counterUpload;
  561. dispatch_async(dispatch_get_main_queue(), ^{
  562. [UIApplication sharedApplication].applicationIconBadgeNumber = total;
  563. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  564. if ([[splitViewController.viewControllers firstObject] isKindOfClass:[UITabBarController class]]) {
  565. UITabBarController *tbc = [splitViewController.viewControllers firstObject];
  566. UITabBarItem *tbItem = [tbc.tabBar.items objectAtIndex:0];
  567. if (total > 0) {
  568. [tbItem setBadgeValue:[NSString stringWithFormat:@"%li", (unsigned long)total]];
  569. } else {
  570. [tbItem setBadgeValue:nil];
  571. }
  572. }
  573. });
  574. });
  575. }
  576. #pragma --------------------------------------------------------------------------------------------
  577. #pragma mark ===== TabBarController =====
  578. #pragma --------------------------------------------------------------------------------------------
  579. - (void)createTabBarController:(UITabBarController *)tabBarController
  580. {
  581. UITabBarItem *item;
  582. NSLayoutConstraint *constraint;
  583. CGFloat multiplier = 0;
  584. CGFloat safeAreaBottom = 0;
  585. if (@available(iOS 11, *)) {
  586. UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
  587. if (orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight) {
  588. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.right/2;
  589. if (safeAreaBottom > 0) safeAreaBottom -= 5;
  590. } else {
  591. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom/2;
  592. }
  593. }
  594. [self aspectTabBar:tabBarController.tabBar hidden:NO];
  595. // File
  596. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexFile];
  597. [item setTitle:NSLocalizedString(@"_home_", nil)];
  598. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarFiles"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  599. item.selectedImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarFiles"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  600. // Favorites
  601. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexFavorite];
  602. [item setTitle:NSLocalizedString(@"_favorites_", nil)];
  603. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarFavorites"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  604. item.selectedImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarFavorites"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  605. // (PLUS)
  606. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexPlusHide];
  607. item.title = @"";
  608. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarPlus"] multiplier:3 color:[UIColor clearColor]];
  609. item.enabled = false;
  610. // Media
  611. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexMedia];
  612. [item setTitle:NSLocalizedString(@"_media_", nil)];
  613. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarMedia"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  614. item.selectedImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarMedia"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  615. // More
  616. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexMore];
  617. [item setTitle:NSLocalizedString(@"_more_", nil)];
  618. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarMore"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  619. item.selectedImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarMore"] multiplier:2 color:[NCBrandColor sharedInstance].brandElement];
  620. // Plus Button
  621. UIImage *buttonImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarPlus"] multiplier:3 color:[NCBrandColor sharedInstance].brandElement];
  622. UIButton *buttonPlus = [UIButton buttonWithType:UIButtonTypeCustom];
  623. buttonPlus.tag = 99;
  624. [buttonPlus setBackgroundImage:buttonImage forState:UIControlStateNormal];
  625. [buttonPlus setBackgroundImage:buttonImage forState:UIControlStateHighlighted];
  626. [buttonPlus addTarget:self action:@selector(handleTouchTabbarCenter:) forControlEvents:UIControlEventTouchUpInside];
  627. [buttonPlus setTranslatesAutoresizingMaskIntoConstraints:NO];
  628. [tabBarController.tabBar addSubview:buttonPlus];
  629. multiplier = 1.0;
  630. // X
  631. constraint =[NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterX multiplier:multiplier constant:0];
  632. [tabBarController.view addConstraint:constraint];
  633. // Y
  634. if (safeAreaBottom == 0) {
  635. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterY multiplier:multiplier constant:0];
  636. } else {
  637. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:5];
  638. }
  639. [tabBarController.view addConstraint:constraint];
  640. multiplier = 0.8 * (tabBarController.tabBar.frame.size.height - safeAreaBottom) / tabBarController.tabBar.frame.size.height;
  641. // Width
  642. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeHeight multiplier:multiplier constant:0];
  643. [tabBarController.view addConstraint:constraint];
  644. // Height
  645. constraint = [NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeHeight multiplier:multiplier constant:0];
  646. [tabBarController.view addConstraint:constraint];
  647. }
  648. - (void)aspectNavigationControllerBar:(UINavigationBar *)nav online:(BOOL)online hidden:(BOOL)hidden
  649. {
  650. nav.translucent = NO;
  651. nav.barTintColor = [NCBrandColor sharedInstance].brand;
  652. nav.tintColor = [NCBrandColor sharedInstance].brandText;
  653. [nav setTitleTextAttributes:@{NSForegroundColorAttributeName : [NCBrandColor sharedInstance].brandText}];
  654. // Change bar bottom line shadow
  655. nav.shadowImage = [CCGraphics generateSinglePixelImageWithColor:[NCBrandColor sharedInstance].brand];
  656. if (!online)
  657. [nav setTitleTextAttributes:@{NSForegroundColorAttributeName : [NCBrandColor sharedInstance].connectionNo}];
  658. nav.hidden = hidden;
  659. [nav setAlpha:1];
  660. }
  661. - (void)aspectTabBar:(UITabBar *)tab hidden:(BOOL)hidden
  662. {
  663. tab.translucent = NO;
  664. tab.barTintColor = [NCBrandColor sharedInstance].tabBar;
  665. tab.tintColor = [NCBrandColor sharedInstance].brandElement;
  666. tab.hidden = hidden;
  667. [tab setAlpha:1];
  668. }
  669. - (void)plusButtonVisibile:(BOOL)visible
  670. {
  671. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  672. UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  673. UIButton *buttonPlus = [tabBarController.view viewWithTag:99];
  674. UIImage *buttonImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarPlus"] multiplier:3 color:[NCBrandColor sharedInstance].brandElement];
  675. [buttonPlus setBackgroundImage:buttonImage forState:UIControlStateNormal];
  676. [buttonPlus setBackgroundImage:buttonImage forState:UIControlStateHighlighted];
  677. if (buttonPlus) {
  678. if (visible) {
  679. buttonPlus.hidden = false;
  680. } else {
  681. buttonPlus.hidden = true;
  682. }
  683. }
  684. }
  685. - (void)handleTouchTabbarCenter:(id)sender
  686. {
  687. // Test Maintenance
  688. if (self.maintenanceMode)
  689. return;
  690. UIView *view = [(UIButton *)sender superview];
  691. NCCreateMenuAdd *menuAdd = [[NCCreateMenuAdd alloc] initWithThemingColor:[NCBrandColor sharedInstance].brandElement];
  692. [menuAdd createMenuWithViewController:self.window.rootViewController view:view];
  693. }
  694. - (void)selectedTabBarController:(NSInteger)index
  695. {
  696. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  697. if (splitViewController.isCollapsed) {
  698. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  699. for (UINavigationController *nvc in tbc.viewControllers) {
  700. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  701. [nvc popToRootViewControllerAnimated:NO];
  702. }
  703. [tbc setSelectedIndex: index];
  704. } else {
  705. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  706. [nvcDetail popToRootViewControllerAnimated:NO];
  707. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  708. [tbc setSelectedIndex: index];
  709. }
  710. }
  711. - (NSString *)getTabBarControllerActiveServerUrl
  712. {
  713. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  714. UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  715. NSString *serverUrl = [CCUtility getHomeServerUrlActiveUrl:self.activeUrl];
  716. NSInteger index = tabBarController.selectedIndex;
  717. // select active serverUrl
  718. if (index == k_tabBarApplicationIndexFile) {
  719. serverUrl = self.activeMain.serverUrl;
  720. } else if (index == k_tabBarApplicationIndexFavorite) {
  721. if (self.activeFavorites.serverUrl)
  722. serverUrl = self.activeFavorites.serverUrl;
  723. } else if (index == k_tabBarApplicationIndexMedia) {
  724. serverUrl = [[NCManageDatabase sharedInstance] getAccountAutoUploadPath:self.activeUrl];
  725. }
  726. return serverUrl;
  727. }
  728. #pragma --------------------------------------------------------------------------------------------
  729. #pragma mark ===== Theming Color =====
  730. #pragma --------------------------------------------------------------------------------------------
  731. - (void)settingThemingColorBrand
  732. {
  733. if (self.activeAccount.length == 0 || self.maintenanceMode)
  734. return;
  735. if ([NCBrandOptions sharedInstance].use_themingColor) {
  736. tableCapabilities *capabilities = [[NCManageDatabase sharedInstance] getCapabilitesWithAccount:self.activeAccount];
  737. [CCGraphics settingThemingColor:capabilities.themingColor themingColorElement:capabilities.themingColorElement themingColorText:capabilities.themingColorText];
  738. } else {
  739. [NCBrandColor sharedInstance].brand = [NCBrandColor sharedInstance].customer;
  740. [NCBrandColor sharedInstance].brandElement = [NCBrandColor sharedInstance].customer;
  741. [NCBrandColor sharedInstance].brandText = [NCBrandColor sharedInstance].customerText;
  742. }
  743. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"changeTheming" object:nil];
  744. }
  745. - (void)changeTheming:(UIViewController *)vc
  746. {
  747. // Change Navigation & TabBar color
  748. vc.navigationController.navigationBar.barTintColor = [NCBrandColor sharedInstance].brand;
  749. vc.tabBarController.tabBar.tintColor = [NCBrandColor sharedInstance].brandElement;
  750. // Change bar bottom line shadow
  751. vc.navigationController.navigationBar.shadowImage = [CCGraphics generateSinglePixelImageWithColor:[NCBrandColor sharedInstance].brand];
  752. // Change button Plus
  753. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  754. UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  755. UIButton *button = [tabBarController.view viewWithTag:99];
  756. UIImage *buttonImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarPlus"] multiplier:3 color:[NCBrandColor sharedInstance].brandElement];
  757. [button setBackgroundImage:buttonImage forState:UIControlStateNormal];
  758. [button setBackgroundImage:buttonImage forState:UIControlStateHighlighted];
  759. // Tint Color GLOBAL WINDOW
  760. [self.window setTintColor:[NCBrandColor sharedInstance].textView];
  761. }
  762. #pragma --------------------------------------------------------------------------------------------
  763. #pragma mark ===== Manager Passcode =====
  764. #pragma --------------------------------------------------------------------------------------------
  765. - (BOOL)lockScreenManagerShouldShowLockScreen:(BKPasscodeLockScreenManager *)aManager
  766. {
  767. // ServerUrl active
  768. NSString *serverUrl = self.activeMain.serverUrl;
  769. BOOL isBlockZone = false;
  770. // fermiamo la data della sessione
  771. self.sessionePasscodeLock = nil;
  772. // se il block code è a zero esci con NON attivare la richiesta password
  773. if ([[CCUtility getBlockCode] length] == 0) return NO;
  774. // se non c'è attivo un account esci con NON attivare la richiesta password
  775. if ([self.activeAccount length] == 0) return NO;
  776. // se non è attivo il OnlyLockDir esci con NON attivare la richiesta password
  777. if (serverUrl && _activeUrl) {
  778. while (![serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:_activeUrl]]) {
  779. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", self.activeAccount, serverUrl]];
  780. if (directory.lock) {
  781. isBlockZone = true;
  782. break;
  783. } else {
  784. serverUrl = [CCUtility deletingLastPathComponentFromServerUrl:serverUrl];
  785. if (serverUrl == self.activeUrl)
  786. break;
  787. }
  788. }
  789. }
  790. if ([CCUtility getOnlyLockDir] && !isBlockZone) return NO;
  791. return YES;
  792. }
  793. - (UIViewController *)lockScreenManagerPasscodeViewController:(BKPasscodeLockScreenManager *)aManager
  794. {
  795. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  796. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  797. viewController.delegate = self;
  798. viewController.title = [NCBrandOptions sharedInstance].brand;
  799. viewController.fromType = CCBKPasscodeFromLockScreen;
  800. viewController.inputViewTitlePassword = YES;
  801. if ([CCUtility getSimplyBlockCode]) {
  802. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  803. viewController.passcodeInputView.maximumLength = 6;
  804. } else {
  805. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  806. viewController.passcodeInputView.maximumLength = 64;
  807. }
  808. viewController.touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName: k_serviceShareKeyChain];
  809. viewController.touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  810. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  811. return navigationController;
  812. }
  813. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  814. {
  815. [aViewController dismissViewControllerAnimated:YES completion:nil];
  816. // is a lock screen
  817. if (aViewController.fromType == CCBKPasscodeFromLockScreen) {
  818. [aViewController dismissViewControllerAnimated:YES completion:nil];
  819. // start session Passcode Lock
  820. BOOL isBlockZone = false;
  821. NSString *serverUrl = self.activeMain.serverUrl;
  822. while (![serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:_activeUrl]]) {
  823. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", self.activeAccount, serverUrl]];
  824. if (directory.lock) {
  825. isBlockZone = true;
  826. break;
  827. } else {
  828. serverUrl = [CCUtility deletingLastPathComponentFromServerUrl:serverUrl];
  829. if (serverUrl == self.activeUrl)
  830. break;
  831. }
  832. }
  833. if (isBlockZone)
  834. self.sessionePasscodeLock = [NSDate date];
  835. }
  836. }
  837. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  838. {
  839. if (aViewController.fromType == CCBKPasscodeFromLockScreen || aViewController.fromType == CCBKPasscodeFromInit) {
  840. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  841. //self.lockUntilDate = nil;
  842. //self.failedAttempts = 0;
  843. aResultHandler(YES);
  844. } else aResultHandler(NO);
  845. } else aResultHandler(YES);
  846. }
  847. #pragma --------------------------------------------------------------------------------------------
  848. #pragma mark ===== reachabilityChanged =====
  849. #pragma --------------------------------------------------------------------------------------------
  850. -(void)reachabilityChanged:(SCNetworkReachabilityFlags)flags
  851. {
  852. if ([self.reachability isReachable]) {
  853. if (self.lastReachability == NO) {
  854. NSLog(@"[LOG] Request Service Server Nextcloud");
  855. [[NCService sharedInstance] startRequestServicesServer];
  856. }
  857. NSLog(@"[LOG] Reachability Changed: Reachable");
  858. self.lastReachability = YES;
  859. } else {
  860. if (self.lastReachability == YES) {
  861. [self messageNotification:@"_network_not_available_" description:nil visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:kCFURLErrorNotConnectedToInternet];
  862. }
  863. NSLog(@"[LOG] Reachability Changed: NOT Reachable");
  864. self.lastReachability = NO;
  865. }
  866. if ([self.reachability isReachableViaWiFi]) NSLog(@"[LOG] Reachability Changed: WiFi");
  867. if ([self.reachability isReachableViaWWAN]) NSLog(@"[LOG] Reachability Changed: WWAn");
  868. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"setTitleMain" object:nil];
  869. }
  870. #pragma --------------------------------------------------------------------------------------------
  871. #pragma mark ===== Fetch =====
  872. #pragma --------------------------------------------------------------------------------------------
  873. - (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  874. {
  875. // Test Maintenance
  876. if (self.activeAccount.length == 0 || self.maintenanceMode) {
  877. completionHandler(UIBackgroundFetchResultNoData);
  878. return;
  879. }
  880. NSLog(@"[LOG] Start perform Fetch With Completion Handler");
  881. // Verify new photo
  882. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  883. // after 20 sec
  884. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  885. NSArray *records = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session != ''"] sorted:nil ascending:NO];
  886. if ([records count] > 0) {
  887. completionHandler(UIBackgroundFetchResultNewData);
  888. } else {
  889. completionHandler(UIBackgroundFetchResultNoData);
  890. }
  891. NSLog(@"[LOG] End 20 sec. perform Fetch With Completion Handler");
  892. });
  893. }
  894. #pragma --------------------------------------------------------------------------------------------
  895. #pragma mark ===== Operation Networking & Session =====
  896. #pragma --------------------------------------------------------------------------------------------
  897. //
  898. // Method called by the system when all the background task has end
  899. //
  900. - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler
  901. {
  902. NSLog(@"[LOG] Start handle Events For Background URLSession: %@", identifier);
  903. // after 20 sec
  904. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  905. self.backgroundSessionCompletionHandler = completionHandler;
  906. void (^completionHandler)() = self.backgroundSessionCompletionHandler;
  907. self.backgroundSessionCompletionHandler = nil;
  908. completionHandler();
  909. NSLog(@"[LOG] End 20 sec. Start handle Events For Background URLSession: %@", identifier);
  910. });
  911. }
  912. #pragma --------------------------------------------------------------------------------------------
  913. #pragma mark ===== Process Load Download/Upload < k_timerProcess seconds > =====
  914. #pragma --------------------------------------------------------------------------------------------
  915. - (void)loadAutoDownloadUpload
  916. {
  917. if (self.activeAccount.length == 0 || self.maintenanceMode)
  918. return;
  919. tableMetadata *metadataForUpload, *metadataForDownload;
  920. long counterDownload = 0, counterUpload = 0;
  921. NSUInteger sizeDownload = 0, sizeUpload = 0;
  922. BOOL isE2EE = false;
  923. long maxConcurrentOperationDownloadUpload = k_maxConcurrentOperation;
  924. // Detect E2EE
  925. NSString *saveserverUrl = @"";
  926. NSArray *metadatasForE2EE = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"status != %d", k_metadataStatusNormal] sorted:@"serverUrl" ascending:NO];
  927. for (tableMetadata *metadata in metadatasForE2EE) {
  928. if (![saveserverUrl isEqualToString:metadata.serverUrl]) {
  929. saveserverUrl = metadata.serverUrl;
  930. if ([[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND e2eEncrypted == 1", metadata.account, metadata.serverUrl]] != nil) {
  931. isE2EE = true;
  932. break;
  933. }
  934. }
  935. }
  936. // E2EE : not in background
  937. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground && isE2EE) {
  938. return;
  939. }
  940. // E2EE : only 1 operation
  941. if (isE2EE) {
  942. maxConcurrentOperationDownloadUpload = 1;
  943. }
  944. // Stop Timer
  945. [_timerProcessAutoDownloadUpload invalidate];
  946. NSArray *metadatasDownload = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"status == %d OR status == %d", k_metadataStatusInDownload, k_metadataStatusDownloading] sorted:nil ascending:true];
  947. NSArray *metadatasUpload = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"status == %d OR status == %d", k_metadataStatusInUpload, k_metadataStatusUploading] sorted:nil ascending:true];
  948. // Counter
  949. counterDownload = [metadatasDownload count];
  950. counterUpload = [metadatasUpload count];
  951. // Size
  952. for (tableMetadata *metadata in metadatasDownload) {
  953. sizeDownload = sizeDownload + metadata.size;
  954. }
  955. for (tableMetadata *metadata in metadatasUpload) {
  956. sizeUpload = sizeUpload + metadata.size;
  957. }
  958. NSLog(@"%@", [NSString stringWithFormat:@"[LOG] -PROCESS-AUTO-UPLOAD- | Download %ld - %@ | Upload %ld - %@", counterDownload, [CCUtility transformedSize:sizeDownload], counterUpload, [CCUtility transformedSize:sizeUpload]]);
  959. // ------------------------- <selector Download> -------------------------
  960. while (counterDownload < maxConcurrentOperationDownloadUpload) {
  961. metadataForDownload = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"status == %d", k_metadataStatusWaitDownload] sorted:@"session" ascending:YES];
  962. if (metadataForDownload) {
  963. metadataForDownload.status = k_metadataStatusInDownload;
  964. tableMetadata *metadata = [[NCManageDatabase sharedInstance] addMetadata:metadataForDownload];
  965. [[CCNetworking sharedNetworking] downloadFile:metadata taskStatus:k_taskStatusResume];
  966. counterDownload++;
  967. sizeDownload = sizeDownload + metadata.size;
  968. } else {
  969. break;
  970. }
  971. }
  972. // ------------------------- <selector Upload> -------------------------
  973. while (counterUpload < maxConcurrentOperationDownloadUpload) {
  974. if (sizeUpload > k_maxSizeOperationUpload) {
  975. break;
  976. }
  977. metadataForUpload = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"sessionSelector == %@ AND status == %d", selectorUploadFile, k_metadataStatusWaitUpload] sorted:@"session" ascending:YES];
  978. if (metadataForUpload) {
  979. if ([metadataForUpload.session isEqualToString:k_upload_session_extension]) {
  980. metadataForUpload.session = k_upload_session;
  981. }
  982. metadataForUpload.status = k_metadataStatusInUpload;
  983. tableMetadata *metadata = [[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  984. [[CCNetworking sharedNetworking] uploadFile:metadata taskStatus:k_taskStatusResume];
  985. counterUpload++;
  986. sizeUpload = sizeUpload + metadata.size;
  987. } else {
  988. break;
  989. }
  990. }
  991. // ------------------------- <selector Auto Upload> -------------------------
  992. while (counterUpload < maxConcurrentOperationDownloadUpload) {
  993. if (sizeUpload > k_maxSizeOperationUpload) {
  994. break;
  995. }
  996. metadataForUpload = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"sessionSelector == %@ AND status == %d", selectorUploadAutoUpload, k_metadataStatusWaitUpload] sorted:@"session" ascending:YES];
  997. if (metadataForUpload) {
  998. metadataForUpload.status = k_metadataStatusInUpload;
  999. tableMetadata *metadata = [[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  1000. [[CCNetworking sharedNetworking] uploadFile:metadata taskStatus:k_taskStatusResume];
  1001. counterUpload++;
  1002. sizeUpload = sizeUpload + metadata.size;
  1003. } else {
  1004. break;
  1005. }
  1006. }
  1007. // ------------------------- <selector Auto Upload All> ----------------------
  1008. // Verify num error k_maxErrorAutoUploadAll after STOP (100)
  1009. NSArray *metadatas = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"sessionSelector == %@ AND status == %i", selectorUploadAutoUploadAll, k_metadataStatusUploadError] sorted:nil ascending:NO];
  1010. NSInteger errorCount = [metadatas count];
  1011. if (errorCount >= k_maxErrorAutoUploadAll) {
  1012. [self messageNotification:@"_error_" description:@"_too_errors_automatic_all_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:k_CCErrorInternalError];
  1013. } else {
  1014. while (counterUpload < maxConcurrentOperationDownloadUpload) {
  1015. if (sizeUpload > k_maxSizeOperationUpload) {
  1016. break;
  1017. }
  1018. metadataForUpload = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"sessionSelector == %@ AND status == %d", selectorUploadAutoUploadAll, k_metadataStatusWaitUpload] sorted:@"session" ascending:YES];
  1019. if (metadataForUpload) {
  1020. metadataForUpload.status = k_metadataStatusInUpload;
  1021. tableMetadata *metadata = [[NCManageDatabase sharedInstance] addMetadata:metadataForUpload];
  1022. [[CCNetworking sharedNetworking] uploadFile:metadata taskStatus:k_taskStatusResume];
  1023. counterUpload++;
  1024. sizeUpload = sizeUpload + metadata.size;
  1025. } else {
  1026. break;
  1027. }
  1028. }
  1029. }
  1030. // No Download/upload available ? --> remove errors for retry
  1031. //
  1032. if (counterDownload+counterUpload < maxConcurrentOperationDownloadUpload+1) {
  1033. NSArray *metadatas = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"status == %d OR status == %d", k_metadataStatusDownloadError, k_metadataStatusUploadError] sorted:nil ascending:NO];
  1034. for (tableMetadata *metadata in metadatas) {
  1035. if (metadata.status == k_metadataStatusDownloadError)
  1036. metadata.status = k_metadataStatusWaitDownload;
  1037. else if (metadata.status == k_metadataStatusUploadError)
  1038. metadata.status = k_metadataStatusWaitUpload;
  1039. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1040. }
  1041. }
  1042. // Verify internal error download (lost task)
  1043. //
  1044. NSArray *matadatasInDownloading = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session != %@ AND status == %d", k_download_session_extension, k_metadataStatusDownloading] sorted:nil ascending:true];
  1045. for (tableMetadata *metadata in matadatasInDownloading) {
  1046. NSURLSession *session = [[CCNetworking sharedNetworking] getSessionfromSessionDescription:metadata.session];
  1047. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  1048. NSURLSessionTask *findTask;
  1049. for (NSURLSessionTask *task in downloadTasks) {
  1050. if (task.taskIdentifier == metadata.sessionTaskIdentifier) {
  1051. findTask = task;
  1052. }
  1053. }
  1054. if (!findTask) {
  1055. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  1056. metadata.status = k_metadataStatusWaitDownload;
  1057. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1058. }
  1059. }];
  1060. }
  1061. // Verify internal error upload (lost task)
  1062. //
  1063. NSArray *metadatasUploading = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session != %@ AND status == %d", k_upload_session_extension, k_metadataStatusUploading] sorted:nil ascending:true];
  1064. for (tableMetadata *metadata in metadatasUploading) {
  1065. NSURLSession *session = [[CCNetworking sharedNetworking] getSessionfromSessionDescription:metadata.session];
  1066. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  1067. NSURLSessionTask *findTask;
  1068. for (NSURLSessionTask *task in uploadTasks) {
  1069. if (task.taskIdentifier == metadata.sessionTaskIdentifier) {
  1070. findTask = task;
  1071. }
  1072. }
  1073. if (!findTask) {
  1074. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  1075. metadata.status = k_metadataStatusWaitUpload;
  1076. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1077. }
  1078. }];
  1079. }
  1080. // Upload in pending
  1081. //
  1082. NSArray *metadatasInUpload = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"session != %@ AND status == %d AND sessionTaskIdentifier == 0", k_upload_session_extension, k_metadataStatusInUpload] sorted:nil ascending:true];
  1083. for (tableMetadata *metadata in metadatasInUpload) {
  1084. if ([self.sessionPendingStatusInUpload containsObject:metadata.fileID]) {
  1085. metadata.status = k_metadataStatusWaitUpload;
  1086. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  1087. } else {
  1088. [self.sessionPendingStatusInUpload addObject:metadata.fileID];
  1089. }
  1090. }
  1091. if (metadatasInUpload.count == 0) {
  1092. [self.sessionPendingStatusInUpload removeAllObjects];
  1093. }
  1094. // Start Timer
  1095. _timerProcessAutoDownloadUpload = [NSTimer scheduledTimerWithTimeInterval:k_timerProcessAutoDownloadUpload target:self selector:@selector(loadAutoDownloadUpload) userInfo:nil repeats:YES];
  1096. }
  1097. - (void)startLoadAutoDownloadUpload
  1098. {
  1099. if (self.timerProcessAutoDownloadUpload.isValid) {
  1100. [self performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  1101. }
  1102. }
  1103. #pragma --------------------------------------------------------------------------------------------
  1104. #pragma mark ===== Open CCUploadFromOtherUpp =====
  1105. #pragma --------------------------------------------------------------------------------------------
  1106. - (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
  1107. {
  1108. return YES;
  1109. }
  1110. // Method called from iOS system to send a file from other app.
  1111. - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<NSString *,id> *)options
  1112. {
  1113. NSError *error;
  1114. NSLog(@"[LOG] the path is: %@", url.path);
  1115. NSArray *splitedUrl = [url.path componentsSeparatedByString:@"/"];
  1116. self.fileNameUpload = [NSString stringWithFormat:@"%@",[splitedUrl objectAtIndex:([splitedUrl count]-1)]];
  1117. if (self.activeAccount) {
  1118. [[NSFileManager defaultManager]removeItemAtPath:[NSTemporaryDirectory() stringByAppendingString:self.fileNameUpload] error:nil];
  1119. [[NSFileManager defaultManager]moveItemAtPath:url.path toPath:[NSTemporaryDirectory() stringByAppendingString:self.fileNameUpload] error:&error];
  1120. if (error == nil) {
  1121. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  1122. UINavigationController *splitNavigationController = [splitViewController.viewControllers firstObject];
  1123. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"CCUploadFromOtherUpp" bundle:nil] instantiateViewControllerWithIdentifier:@"CCUploadNavigationViewController"];
  1124. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  1125. [splitNavigationController presentViewController:navigationController animated:YES completion:nil];
  1126. });
  1127. }
  1128. }
  1129. return YES;
  1130. }
  1131. #pragma --------------------------------------------------------------------------------------------
  1132. #pragma mark ===== Maintenance Mode =====
  1133. #pragma --------------------------------------------------------------------------------------------
  1134. - (void)maintenanceMode:(BOOL)mode
  1135. {
  1136. self.maintenanceMode = mode;
  1137. }
  1138. #pragma --------------------------------------------------------------------------------------------
  1139. #pragma mark ===== UPGRADE =====
  1140. #pragma --------------------------------------------------------------------------------------------
  1141. - (BOOL)upgrade
  1142. {
  1143. #ifdef DEBUG
  1144. //self.maintenanceMode = YES;
  1145. #endif
  1146. NSString *actualVersion = [CCUtility getVersion];
  1147. NSString *actualBuild = [CCUtility getBuild];
  1148. /* ---------------------- UPGRADE VERSION ----------------------- */
  1149. // VERSION < 2.17.6
  1150. if (([actualVersion compare:@"2.17.6" options:NSNumericSearch] == NSOrderedAscending)) {
  1151. // Remove All old Photo Library
  1152. [[NCManageDatabase sharedInstance] clearTable:[tablePhotoLibrary class] account:nil];
  1153. }
  1154. // VERSION == 2.17.6
  1155. if ([actualVersion isEqualToString:@"2.17.6"]) {
  1156. // Build < 10
  1157. if (([actualBuild compare:@"10" options:NSNumericSearch] == NSOrderedAscending) || actualBuild == nil) {
  1158. // Remove All old Photo Library
  1159. //[[NCManageDatabase sharedInstance] clearTable:[tablePhotoLibrary class] account:nil];
  1160. }
  1161. }
  1162. if (([actualVersion compare:@"2.19.1" options:NSNumericSearch] == NSOrderedAscending)) {
  1163. [[NCManageDatabase sharedInstance] clearTable:[tableMetadata class] account:nil];
  1164. [[NCManageDatabase sharedInstance] setClearAllDateReadDirectory];
  1165. }
  1166. if (([actualVersion compare:@"2.22.0" options:NSNumericSearch] == NSOrderedAscending)) {
  1167. NSArray *records = [[NCManageDatabase sharedInstance] getTableLocalFilesWithPredicate:[NSPredicate predicateWithFormat:@"#size > 0"] sorted:@"account" ascending:NO];
  1168. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  1169. NSString *account = @"";
  1170. NSString *directoryUser = @"";
  1171. NSString *fileName;
  1172. for (tableLocalFile *record in records) {
  1173. if (![account isEqualToString:record.account]) {
  1174. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountWithPredicate:[NSPredicate predicateWithFormat:@"account == %@", record.account]];
  1175. if (tableAccount) {
  1176. directoryUser = [CCUtility getDirectoryActiveUser:tableAccount.user activeUrl:tableAccount.url];
  1177. account = record.account;
  1178. }
  1179. }
  1180. fileName = [NSString stringWithFormat:@"%@/%@", directoryUser, record.fileID];
  1181. if (![directoryUser isEqualToString:@""] && [[NSFileManager defaultManager] fileExistsAtPath:fileName]) {
  1182. [CCUtility moveFileAtPath:fileName toPath:[CCUtility getDirectoryProviderStorageFileID:record.fileID fileNameView:record.fileName]];
  1183. }
  1184. }
  1185. });
  1186. }
  1187. if ([actualVersion isEqualToString:@"2.22.9"]) {
  1188. if (([actualBuild compare:@"8" options:NSNumericSearch] == NSOrderedAscending) || actualBuild == nil) {
  1189. [[NCManageDatabase sharedInstance] clearTable:[tableActivity class] account:nil];
  1190. [[NCManageDatabase sharedInstance] clearTable:[tableActivitySubjectRich class] account:nil];
  1191. [[NCManageDatabase sharedInstance] clearTable:[tableActivityPreview class] account:nil];
  1192. }
  1193. }
  1194. return YES;
  1195. }
  1196. @end