AppDelegate.m 69 KB

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