AppDelegate.m 67 KB

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