AppDelegate.m 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560
  1. //
  2. // AppDelegate.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 04/09/14.
  6. // Copyright (c) 2014 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 "CCCoreData.h"
  28. #import "CCCrypto.h"
  29. #import "CCManageAsset.h"
  30. #import "CCGraphics.h"
  31. #import "CCPhotosCameraUpload.h"
  32. #import "CCSynchronize.h"
  33. #import "CCMain.h"
  34. #import "CCDetail.h"
  35. #import "Firebase.h"
  36. #ifdef CUSTOM_BUILD
  37. #import "CustomSwift.h"
  38. #else
  39. #import "Nextcloud-Swift.h"
  40. #endif
  41. @interface AppDelegate () <UNUserNotificationCenterDelegate, FIRMessagingDelegate>
  42. {
  43. }
  44. @end
  45. @implementation AppDelegate
  46. + (void)initialize
  47. {
  48. [iRate sharedInstance].daysUntilPrompt = 10;
  49. [iRate sharedInstance].usesUntilPrompt = 10;
  50. [iRate sharedInstance].promptForNewVersionIfUserRated = true;
  51. //enable preview mode
  52. //[iRate sharedInstance].previewMode = YES;
  53. }
  54. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  55. {
  56. #ifdef OPTION_FIREBASE_ENABLE
  57. /*
  58. In order for this to work, proper GoogleService-Info.plist must be included
  59. */
  60. @try {
  61. [FIRApp configure];
  62. } @catch (NSException *exception) {
  63. NSLog(@"[LOG] Something went wrong while configuring Firebase");
  64. }
  65. if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_9_x_Max) {
  66. UIUserNotificationType allNotificationTypes =(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge);
  67. UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:allNotificationTypes categories:nil];
  68. [[UIApplication sharedApplication] registerUserNotificationSettings:settings];
  69. } else {
  70. // iOS 10 or later
  71. #if defined(__IPHONE_10_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
  72. // For iOS 10 display notification (sent via APNS)
  73. [UNUserNotificationCenter currentNotificationCenter].delegate = self;
  74. UNAuthorizationOptions authOptions = UNAuthorizationOptionAlert | UNAuthorizationOptionSound | UNAuthorizationOptionBadge;
  75. [[UNUserNotificationCenter currentNotificationCenter] requestAuthorizationWithOptions:authOptions completionHandler:^(BOOL granted, NSError * _Nullable error) {
  76. }];
  77. // For iOS 10 data message (sent via FCM)
  78. [FIRMessaging messaging].remoteMessageDelegate = self;
  79. #endif
  80. }
  81. #endif // OPTION_FIREBASE_ENABLE
  82. NSString *dir;
  83. NSURL *dirGroup = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:k_capabilitiesGroups];
  84. NSLog(@"[LOG] Start program group -----------------");
  85. NSLog(@"%@", dirGroup);
  86. NSLog(@"[LOG] Start program application -----------");
  87. NSLog(@"%@", [[CCUtility getDirectoryLocal] stringByDeletingLastPathComponent]);
  88. NSLog(@"[LOG] -------------------------------------");
  89. // create Directory local => Documents
  90. dir = [CCUtility getDirectoryLocal];
  91. if (![[NSFileManager defaultManager] fileExistsAtPath: dir] && [dir length])
  92. [[NSFileManager defaultManager] createDirectoryAtPath:dir withIntermediateDirectories:YES attributes:nil error:nil];
  93. // create Directory audio => Library, Application Support, audio
  94. dir = [CCUtility getDirectoryAudio];
  95. if (![[NSFileManager defaultManager] fileExistsAtPath: dir] && [dir length])
  96. [[NSFileManager defaultManager] createDirectoryAtPath:dir withIntermediateDirectories:YES attributes:nil error:nil];
  97. // create Crypto Cloud in Group => Library, Application Support, Crypto Cloud
  98. dir = [[dirGroup URLByAppendingPathComponent:appDatabase] path];
  99. if (![[NSFileManager defaultManager] fileExistsAtPath:dir])
  100. [[NSFileManager defaultManager] createDirectoryAtPath:dir withIntermediateDirectories:YES attributes:nil error:nil];
  101. //[CCCoreData verifyVersionCoreData];
  102. [MagicalRecord setupCoreDataStackWithAutoMigratingSqliteStoreNamed:(id)[dirGroup URLByAppendingPathComponent:[appDatabase stringByAppendingPathComponent:@"cryptocloud"]]];
  103. #ifdef DEBUG
  104. [MagicalRecord setLoggingLevel:MagicalRecordLoggingLevelWarn];
  105. #else
  106. [MagicalRecord setLoggingLevel:MagicalRecordLoggingLevelOff];
  107. #endif
  108. // Verify upgrade
  109. [self upgrade];
  110. // Set account, if no exists clear all
  111. TableAccount *recordAccount = [CCCoreData getActiveAccount];
  112. if (recordAccount == nil) {
  113. // remove all the keys Chain
  114. [CCUtility deleteAllChainStore];
  115. // remove all the App group key
  116. [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:[[NSBundle mainBundle] bundleIdentifier]];
  117. } else {
  118. [self settingActiveAccount:recordAccount.account activeUrl:recordAccount.url activeUser:recordAccount.user activePassword:recordAccount.password];
  119. }
  120. // Operation Queue OC Networking
  121. _netQueue = [[NSOperationQueue alloc] init];
  122. _netQueue.name = k_queue;
  123. _netQueue.maxConcurrentOperationCount = k_maxConcurrentOperation;
  124. _netQueueDownload = [[NSOperationQueue alloc] init];
  125. _netQueueDownload.name = k_download_queue;
  126. _netQueueDownload.maxConcurrentOperationCount = k_maxConcurrentOperationDownloadUpload;
  127. _netQueueDownloadWWan = [[NSOperationQueue alloc] init];
  128. _netQueueDownloadWWan.name = k_download_queuewwan;
  129. _netQueueDownloadWWan.maxConcurrentOperationCount = k_maxConcurrentOperationDownloadUpload;
  130. _netQueueUpload = [[NSOperationQueue alloc] init];
  131. _netQueueUpload.name = k_upload_queue;
  132. _netQueueUpload.maxConcurrentOperationCount = k_maxConcurrentOperationDownloadUpload;
  133. _netQueueUploadWWan = [[NSOperationQueue alloc] init];
  134. _netQueueUploadWWan.name = k_upload_queuewwan;
  135. _netQueueUploadWWan.maxConcurrentOperationCount = k_maxConcurrentOperationDownloadUpload;
  136. // Add notification change session
  137. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sessionChanged:) name:k_networkingSessionNotification object:nil];
  138. // Initialization Share
  139. self.sharesID = [[NSMutableDictionary alloc] init];
  140. self.sharesLink = [[NSMutableDictionary alloc] init];
  141. self.sharesUserAndGroup = [[NSMutableDictionary alloc] init];
  142. // Initialization Notification
  143. self.listOfNotifications = [[NSMutableArray alloc] init];
  144. // Verify Session in progress and Init date task
  145. self.sessionDateLastDownloadTasks = [NSDate date];
  146. self.sessionDateLastUploadTasks = [NSDate date];
  147. self.timerVerifySessionInProgress = [NSTimer scheduledTimerWithTimeInterval:k_timerVerifySession target:self selector:@selector(verifyDownloadUploadInProgress) userInfo:nil repeats:YES];
  148. // Background Fetch
  149. [application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
  150. // Initialization List
  151. self.listProgressMetadata = [[NSMutableDictionary alloc] init];
  152. self.listChangeTask = [[NSMutableDictionary alloc] init];
  153. self.listMainVC = [[NSMutableDictionary alloc] init];
  154. // Player audio
  155. self.player = [LMMediaPlayerView sharedPlayerView];
  156. self.player.delegate = self;
  157. // ico Image Cache
  158. self.icoImagesCache = [[NSMutableDictionary alloc] init];
  159. // Page Control
  160. UIPageControl *pageControl = [UIPageControl appearance];
  161. pageControl.pageIndicatorTintColor = [UIColor whiteColor];
  162. pageControl.currentPageIndicatorTintColor = COLOR_PAGECONTROL_INDICATOR;
  163. pageControl.backgroundColor = COLOR_BACKGROUND_PAGECONTROL;
  164. // remove tmp & cache
  165. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  166. NSArray* tmpDirectory = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:NSTemporaryDirectory() error:NULL];
  167. for (NSString *file in tmpDirectory) {
  168. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@%@", NSTemporaryDirectory(), file] error:NULL];
  169. }
  170. [[NSURLCache sharedURLCache] removeAllCachedResponses];
  171. });
  172. // setting Reachable in back
  173. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  174. self.reachability = [Reachability reachabilityForInternetConnection];
  175. self.lastReachability = [self.reachability isReachable];
  176. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];
  177. [self.reachability startNotifier];
  178. });
  179. //AV Session
  180. [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:nil];
  181. //[[AVAudioSession sharedInstance] setActive:YES error:nil];
  182. [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
  183. // Tint Color GLOBAL WINDOW
  184. [self.window setTintColor:COLOR_WINDOW_TINTCOLOR];
  185. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  186. //UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  187. UINavigationController *navigationController = [splitViewController.viewControllers lastObject];
  188. navigationController.topViewController.navigationItem.leftBarButtonItem = splitViewController.displayModeButtonItem;
  189. splitViewController.preferredDisplayMode = UISplitViewControllerDisplayModeAllVisible;
  190. [CCAspect aspectNavigationControllerBar:navigationController.navigationBar encrypted:NO online:YES hidden:NO];
  191. // Settings TabBar
  192. [self createTabBarController];
  193. // passcode
  194. [[BKPasscodeLockScreenManager sharedManager] setDelegate:self];
  195. dispatch_async(dispatch_get_main_queue(), ^{
  196. [[BKPasscodeLockScreenManager sharedManager] showLockScreen:NO];
  197. });
  198. // Quick Actions
  199. if([[UIApplicationShortcutItem class] respondsToSelector:@selector(new)]) {
  200. [self configDynamicShortcutItems];
  201. UIApplicationShortcutItem *shortcutItem = [launchOptions objectForKeyedSubscript:UIApplicationLaunchOptionsShortcutItemKey];
  202. if (shortcutItem)
  203. [self handleShortCutItem:shortcutItem];
  204. }
  205. // Start timer Verify Process
  206. self.timerVerifyProcess = [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(verifyProcess) userInfo:nil repeats:YES];
  207. // Registration Push Notification
  208. UIUserNotificationType types = UIUserNotificationTypeSound | UIUserNotificationTypeBadge | UIUserNotificationTypeAlert;
  209. UIUserNotificationSettings *notificationSettings = [UIUserNotificationSettings settingsForTypes:types categories:nil];
  210. [application registerUserNotificationSettings:notificationSettings];
  211. return YES;
  212. }
  213. //
  214. // L' applicazione si dimetterà dallo stato di attivo
  215. //
  216. - (void)applicationWillResignActive:(UIApplication *)application
  217. {
  218. [_activeMain closeAllMenu];
  219. [self updateApplicationIconBadgeNumber];
  220. }
  221. //
  222. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  223. //
  224. - (void)applicationWillEnterForeground:(UIApplication *)application
  225. {
  226. // facciamo partire il timer per il controllo delle sessioni e dei Lock
  227. [self.timerVerifySessionInProgress invalidate];
  228. self.timerVerifySessionInProgress = [NSTimer scheduledTimerWithTimeInterval:k_timerVerifySession target:self selector:@selector(verifyDownloadUploadInProgress) userInfo:nil repeats:YES];
  229. // refresh active Main
  230. if (_activeMain)
  231. [_activeMain reloadDatasource];
  232. // Initializations
  233. [self applicationInitialized];
  234. }
  235. //
  236. // L' applicazione è entrata nello sfondo
  237. //
  238. - (void)applicationDidEnterBackground:(UIApplication *)application
  239. {
  240. NSLog(@"[LOG] Enter in Background");
  241. [[CCQuickActions quickActionsManager] closeAll];
  242. [[BKPasscodeLockScreenManager sharedManager] showLockScreen:YES];
  243. if([[UIDevice currentDevice] respondsToSelector:@selector(isMultitaskingSupported)]) {
  244. __block UIBackgroundTaskIdentifier background_task;
  245. background_task = [application beginBackgroundTaskWithExpirationHandler:^ {
  246. //Clean up code. Tell the system that we are done.
  247. [application endBackgroundTask: background_task];
  248. background_task = UIBackgroundTaskInvalid;
  249. }];
  250. }
  251. }
  252. //
  253. // L'applicazione terminerà
  254. //
  255. - (void)applicationWillTerminate:(UIApplication *)application
  256. {
  257. [MagicalRecord cleanUp];
  258. NSLog(@"[LOG] bye bye, Crypto Cloud !");
  259. }
  260. //
  261. // Application Initialized
  262. //
  263. - (void)applicationInitialized
  264. {
  265. // Execute : now
  266. NSLog(@"[LOG] Update Folder Photo");
  267. NSString *folderCameraUpload = [CCCoreData getCameraUploadFolderNamePathActiveAccount:self.activeAccount activeUrl:self.activeUrl];
  268. if ([folderCameraUpload length] > 0)
  269. [[CCSynchronize sharedSynchronize] readFolderServerUrl:folderCameraUpload directoryID:[CCCoreData getDirectoryIDFromServerUrl:folderCameraUpload activeAccount:self.activeAccount] selector:selectorReadFolder];
  270. // Execute : after 0.5 sec.
  271. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  272. NSLog(@"[LOG] Request Server Information");
  273. if (_activeMain)
  274. [_activeMain requestServerInformation];
  275. NSLog(@"[LOG] Initialize Camera Upload");
  276. [[NSNotificationCenter defaultCenter] postNotificationName:@"initStateCameraUpload" object:nil];
  277. NSLog(@"[LOG] Listning Favorites");
  278. [[CCSynchronize sharedSynchronize] readListingFavorites];
  279. });
  280. // Initialize Camera Upload
  281. //[[NSNotificationCenter defaultCenter] postNotificationName:@"initStateCameraUpload" object:@{@"afterDelay": @(2)}];
  282. }
  283. #pragma --------------------------------------------------------------------------------------------
  284. #pragma mark ===== Verify Process 5 seconds =====
  285. #pragma --------------------------------------------------------------------------------------------
  286. - (void)verifyProcess
  287. {
  288. // BACKGROND & FOREGROUND
  289. // ONLY BACKGROUND
  290. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) {
  291. } else {
  292. // ONLY FOREFROUND
  293. [app performSelectorOnMainThread:@selector(loadAutomaticUpload) withObject:nil waitUntilDone:NO];
  294. }
  295. }
  296. #pragma --------------------------------------------------------------------------------------------
  297. #pragma mark ===== Setting Active Account =====
  298. #pragma --------------------------------------------------------------------------------------------
  299. - (void)settingActiveAccount:(NSString *)activeAccount activeUrl:(NSString *)activeUrl activeUser:(NSString *)activeUser activePassword:(NSString *)activePassword
  300. {
  301. self.activeAccount = activeAccount;
  302. self.activeUrl = activeUrl;
  303. self.activeUser = activeUser;
  304. self.activePassword = activePassword;
  305. self.directoryUser = [CCUtility getDirectoryActiveUser:activeUser activeUrl:activeUrl];
  306. }
  307. #pragma --------------------------------------------------------------------------------------------
  308. #pragma mark ===== Push Notification =====
  309. #pragma --------------------------------------------------------------------------------------------
  310. - (void)subscribingNextcloudServerFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  311. {
  312. NSLog(@"[LOG] Error Subscribing Nextcloud Server %@", message);
  313. }
  314. - (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
  315. {
  316. [application registerForRemoteNotifications];
  317. }
  318. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
  319. {
  320. // test
  321. if (self.activeAccount.length == 0)
  322. return;
  323. // FIREBASE registered token
  324. [[FIRInstanceID instanceID] setAPNSToken:deviceToken type:FIRInstanceIDAPNSTokenTypeSandbox];
  325. NSString *pushToken = [[FIRInstanceID instanceID] token];
  326. // NSString *pushToken = [[[[deviceToken description] stringByReplacingOccurrencesOfString: @"<" withString: @""] stringByReplacingOccurrencesOfString: @">" withString: @""] stringByReplacingOccurrencesOfString: @" " withString: @""];
  327. NSString *pushTokenHash = [[CCCrypto sharedManager] createSHA512:pushToken];
  328. NSDictionary *devicePushKey = [NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"DevicePushKey-Info" ofType:@"plist"]];
  329. #ifdef DEBUG
  330. NSString *devicePublicKey = [devicePushKey objectForKey:@"devicePublicKeyDevelopment"];
  331. #else
  332. NSString *devicePublicKey = [devicePushKey objectForKey:@"devicePublicKeyProduction"];
  333. #endif
  334. if ([devicePublicKey length] > 0 && [pushTokenHash length] > 0) {
  335. NSLog(@"[LOG] Firebase InstanceID push token: %@", pushToken);
  336. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:app.activeAccount];
  337. NSDictionary *options = [[NSDictionary alloc] initWithObjectsAndKeys:pushToken, @"pushToken", pushTokenHash, @"pushTokenHash", devicePublicKey, @"devicePublicKey", nil];
  338. metadataNet.action = actionSubscribingNextcloudServer;
  339. metadataNet.options = options;
  340. [app addNetworkingOperationQueue:app.netQueue delegate:self metadataNet:metadataNet];
  341. }
  342. }
  343. - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
  344. {
  345. NSLog(@"[LOG] Error register remote notification %@", error);
  346. }
  347. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
  348. UIApplicationState state = [application applicationState];
  349. if (state == UIApplicationStateInactive || state == UIApplicationStateBackground) {
  350. NSLog(@"[LOG] Receive Notification on Inactive or Background state");
  351. } else {
  352. NSLog(@"[LOG] Receive Notification on Active state");
  353. }
  354. // If you are receiving a notification message while your app is in the background,
  355. // this callback will not be fired till the user taps on the notification launching the application.
  356. // TODO: Handle data of notification
  357. // Print message ID.
  358. //if (userInfo[kGCMMessageIDKey]) {
  359. // NSLog(@"Message ID: %@", userInfo[kGCMMessageIDKey]);
  360. //}
  361. // Print full message.
  362. NSLog(@"[LOG] %@", userInfo);
  363. }
  364. - (void) application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  365. {
  366. UIApplicationState state = [application applicationState];
  367. // Print message ID.
  368. //if (userInfo[kGCMMessageIDKey]) {
  369. // NSLog(@"Message ID: %@", userInfo[kGCMMessageIDKey]);
  370. //}
  371. // Print full message.
  372. NSLog(@"[LOG] %@", userInfo);
  373. if (state == UIApplicationStateBackground || (state == UIApplicationStateInactive)) {
  374. } else if (state == UIApplicationStateInactive) {
  375. // user tapped notification
  376. completionHandler(UIBackgroundFetchResultNewData);
  377. } else {
  378. // app is active
  379. completionHandler(UIBackgroundFetchResultNoData);
  380. }
  381. }
  382. #pragma FIREBASE
  383. - (void)tokenRefreshNotification:(NSNotification *)notification {
  384. // Note that this callback will be fired everytime a new token is generated, including the first
  385. // time. So if you need to retrieve the token as soon as it is available this is where that
  386. // should be done.
  387. NSString *refreshedToken = [[FIRInstanceID instanceID] token];
  388. NSLog(@"[LOG] InstanceID token: %@", refreshedToken);
  389. // Connect to FCM since connection may have failed when attempted before having a token.
  390. [self connectToFcm];
  391. // TODO: If necessary send token to application server.
  392. }
  393. - (void)connectToFcm {
  394. // Won't connect since there is no token
  395. if (![[FIRInstanceID instanceID] token]) {
  396. return;
  397. }
  398. // Disconnect previous FCM connection if it exists.
  399. [[FIRMessaging messaging] disconnect];
  400. [[FIRMessaging messaging] connectWithCompletion:^(NSError * _Nullable error) {
  401. if (error != nil) {
  402. NSLog(@"[LOG] Unable to connect to FCM. %@", error);
  403. } else {
  404. NSLog(@"[LOG] Connected to FCM.");
  405. }
  406. }];
  407. }
  408. #if defined(__IPHONE_10_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
  409. // Receive data message on iOS 10 devices while app is in the foreground.
  410. - (void)applicationReceivedRemoteMessage:(FIRMessagingRemoteMessage *)remoteMessage {
  411. // Print full message
  412. NSLog(@"[LOG] %@", remoteMessage.appData);
  413. }
  414. #endif
  415. #pragma --------------------------------------------------------------------------------------------
  416. #pragma mark ===== Quick Actions - ShotcutItem =====
  417. #pragma --------------------------------------------------------------------------------------------
  418. - (void)configDynamicShortcutItems
  419. {
  420. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  421. UIApplicationShortcutIcon *shortcutPhotosIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:image_quickActionPhotos];
  422. UIApplicationShortcutIcon *shortcutUploadIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:image_quickActionUpload];
  423. UIApplicationShortcutIcon *shortcutUploadEncryptedIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:image_quickActionUploadEncrypted];
  424. UIApplicationShortcutItem *shortcutPhotos = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.photos", bundleId] localizedTitle:NSLocalizedString(@"_photo_camera_", nil) localizedSubtitle:nil icon:shortcutPhotosIcon userInfo:nil];
  425. UIApplicationShortcutItem *shortcutUpload = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.upload", bundleId] localizedTitle:NSLocalizedString(@"_upload_file_", nil) localizedSubtitle:nil icon:shortcutUploadIcon userInfo:nil];
  426. UIApplicationShortcutItem *shortcutUploadEncrypted = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.uploadEncrypted", bundleId] localizedTitle:NSLocalizedString(@"_upload_encrypted_file_", nil) localizedSubtitle:nil icon:shortcutUploadEncryptedIcon userInfo:nil];
  427. if (app.isCryptoCloudMode) {
  428. // add the array to our app
  429. [UIApplication sharedApplication].shortcutItems = @[shortcutUploadEncrypted, shortcutUpload, shortcutPhotos];
  430. } else {
  431. // add the array to our app
  432. [UIApplication sharedApplication].shortcutItems = @[shortcutUpload, shortcutPhotos];
  433. }
  434. }
  435. - (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL))completionHandler
  436. {
  437. BOOL handledShortCutItem = [self handleShortCutItem:shortcutItem];
  438. completionHandler(handledShortCutItem);
  439. }
  440. - (BOOL)handleShortCutItem:(UIApplicationShortcutItem *)shortcutItem
  441. {
  442. BOOL handled = NO;
  443. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  444. NSString *shortcutPhotos = [NSString stringWithFormat:@"%@.photos", bundleId];
  445. NSString *shortcutUpload = [NSString stringWithFormat:@"%@.upload", bundleId];
  446. NSString *shortcutUploadEncrypted = [NSString stringWithFormat:@"%@.uploadEncrypted", bundleId];
  447. if ([shortcutItem.type isEqualToString:shortcutUpload] && self.activeAccount) {
  448. dispatch_async(dispatch_get_main_queue(), ^{
  449. if (_activeMain) {
  450. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  451. if (splitViewController.isCollapsed) {
  452. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  453. for (UINavigationController *nvc in tbc.viewControllers) {
  454. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  455. [nvc popToRootViewControllerAnimated:NO];
  456. }
  457. [tbc setSelectedIndex: k_tabBarApplicationIndexFile];
  458. } else {
  459. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  460. [nvcDetail popToRootViewControllerAnimated:NO];
  461. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  462. [tbc setSelectedIndex: k_tabBarApplicationIndexFile];
  463. }
  464. [_activeMain.navigationController popToRootViewControllerAnimated:NO];
  465. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  466. [[CCQuickActions quickActionsManager] startQuickActionsEncrypted:NO viewController:_activeMain];
  467. });
  468. }
  469. });
  470. handled = YES;
  471. }
  472. else if ([shortcutItem.type isEqualToString:shortcutUploadEncrypted] && self.activeAccount) {
  473. dispatch_async(dispatch_get_main_queue(), ^{
  474. if (_activeMain) {
  475. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  476. if (splitViewController.isCollapsed) {
  477. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  478. for (UINavigationController *nvc in tbc.viewControllers) {
  479. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  480. [nvc popToRootViewControllerAnimated:NO];
  481. }
  482. [tbc setSelectedIndex: k_tabBarApplicationIndexFile];
  483. } else {
  484. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  485. [nvcDetail popToRootViewControllerAnimated:NO];
  486. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  487. [tbc setSelectedIndex: k_tabBarApplicationIndexFile];
  488. }
  489. [_activeMain.navigationController popToRootViewControllerAnimated:NO];
  490. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  491. [[CCQuickActions quickActionsManager] startQuickActionsEncrypted:YES viewController:_activeMain];
  492. });
  493. }
  494. });
  495. handled = YES;
  496. }
  497. else if ([shortcutItem.type isEqualToString:shortcutPhotos] && self.activeAccount) {
  498. dispatch_async(dispatch_get_main_queue(), ^{
  499. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  500. if (splitViewController.isCollapsed) {
  501. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  502. for (UINavigationController *nvc in tbc.viewControllers) {
  503. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  504. [nvc popToRootViewControllerAnimated:NO];
  505. }
  506. [tbc setSelectedIndex: k_tabBarApplicationIndexPhotos];
  507. } else {
  508. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  509. [nvcDetail popToRootViewControllerAnimated:NO];
  510. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  511. [tbc setSelectedIndex: k_tabBarApplicationIndexPhotos];
  512. }
  513. });
  514. handled = YES;
  515. }
  516. return handled;
  517. }
  518. #pragma --------------------------------------------------------------------------------------------
  519. #pragma mark ===== StatusBar & ApplicationIconBadgeNumber =====
  520. #pragma --------------------------------------------------------------------------------------------
  521. - (void)messageNotification:(NSString *)title description:(NSString *)description visible:(BOOL)visible delay:(NSTimeInterval)delay type:(TWMessageBarMessageType)type
  522. {
  523. title = [NSString stringWithFormat:@"%@\n",[CCUtility localizableBrand:title table:nil]];
  524. dispatch_async(dispatch_get_main_queue(), ^{
  525. if (visible) {
  526. [TWMessageBarManager sharedInstance].styleSheet = self;
  527. [[TWMessageBarManager sharedInstance] showMessageWithTitle:title description:[CCUtility localizableBrand:description table:nil] type:type duration:delay];
  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 = COLOR_BACKGROUND_MESSAGE_INFO;
  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. #pragma --------------------------------------------------------------------------------------------
  591. #pragma mark ===== TabBarController =====
  592. #pragma --------------------------------------------------------------------------------------------
  593. - (void)createTabBarController
  594. {
  595. UITabBarItem *item;
  596. NSLayoutConstraint *constraint;
  597. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  598. UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  599. [CCAspect aspectTabBar:tabBarController.tabBar hidden:NO];
  600. // File
  601. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexFile];
  602. [item setTitle:NSLocalizedString(@"_home_", nil)];
  603. item.image = [UIImage imageNamed:image_tabBarFiles];
  604. item.selectedImage = [UIImage imageNamed:image_tabBarFiles];
  605. // Favorites
  606. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexOffline];
  607. [item setTitle:NSLocalizedString(@"_favorites_", nil)];
  608. item.image = [UIImage imageNamed:image_tabBarFavorite];
  609. item.selectedImage = [UIImage imageNamed:image_tabBarFavorite];
  610. // Hide (PLUS)
  611. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexHide];
  612. item.title = nil;
  613. item.image = nil;
  614. item.enabled = false;
  615. // Photos
  616. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexPhotos];
  617. [item setTitle:NSLocalizedString(@"_photo_camera_", nil)];
  618. item.image = [UIImage imageNamed:image_tabBarPhotos];
  619. item.selectedImage = [UIImage imageNamed:image_tabBarPhotos];
  620. // More
  621. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexMore];
  622. [item setTitle:NSLocalizedString(@"_more_", nil)];
  623. item.image = [UIImage imageNamed:image_tabBarMore];
  624. item.selectedImage = [UIImage imageNamed:image_tabBarMore];
  625. // Plus Button
  626. UIImage *buttonImage = [UIImage imageNamed:image_tabBarPlus];
  627. UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
  628. button.tag = 99;
  629. button.frame = CGRectMake(0.0, 0.0, buttonImage.size.width, buttonImage.size.height);
  630. [button setBackgroundImage:buttonImage forState:UIControlStateNormal];
  631. [button setBackgroundImage:buttonImage forState:UIControlStateHighlighted];
  632. [button addTarget:self action:@selector(handleTouchTabbarCenter:) forControlEvents:UIControlEventTouchUpInside];
  633. [button setTranslatesAutoresizingMaskIntoConstraints:NO];
  634. [tabBarController.view addSubview:button];
  635. constraint =[NSLayoutConstraint constraintWithItem:button attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:tabBarController.view attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0];
  636. [tabBarController.view addConstraint:constraint];
  637. constraint =[NSLayoutConstraint constraintWithItem:button attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:tabBarController.view attribute:NSLayoutAttributeBottom multiplier:1.0 constant:-5];
  638. [tabBarController.view addConstraint:constraint];
  639. }
  640. - (void)plusButtonVisibile:(BOOL)visible
  641. {
  642. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  643. UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  644. UIButton *buttonPlus = [tabBarController.view viewWithTag:99];
  645. if (buttonPlus) {
  646. if (visible) {
  647. buttonPlus.hidden = false;
  648. } else {
  649. buttonPlus.hidden = true;
  650. }
  651. }
  652. }
  653. - (void)handleTouchTabbarCenter:(id)sender
  654. {
  655. CreateMenuAdd *menuAdd = [[CreateMenuAdd alloc] init];
  656. if ([CCUtility getCreateMenuEncrypted])
  657. [menuAdd createMenuEncryptedWithView:self.window.rootViewController.view];
  658. else
  659. [menuAdd createMenuPlainWithView:self.window.rootViewController.view];
  660. }
  661. - (void)updateApplicationIconBadgeNumber
  662. {
  663. // Core Data
  664. _queueNunDownload = [[CCCoreData getTableMetadataDownloadAccount:self.activeAccount] count];
  665. _queueNumDownloadWWan = [[CCCoreData getTableMetadataDownloadWWanAccount:self.activeAccount] count];
  666. _queueNumUpload = [[CCCoreData getTableMetadataUploadAccount:self.activeAccount] count];
  667. _queueNumUploadWWan = [[CCCoreData getTableMetadataUploadWWanAccount:self.activeAccount] count];
  668. // netQueueDownload
  669. for (NSOperation *operation in [app.netQueueDownload operations]) {
  670. if (((OCnetworking *)operation).isExecuting == NO) _queueNunDownload++;
  671. }
  672. // netQueueDownloadWWan
  673. for (NSOperation *operation in [app.netQueueDownloadWWan operations]) {
  674. if (((OCnetworking *)operation).isExecuting == NO) _queueNumDownloadWWan++;
  675. }
  676. // netQueueUpload
  677. for (NSOperation *operation in [app.netQueueUpload operations]) {
  678. if (((OCnetworking *)operation).isExecuting == NO) _queueNumUpload++;
  679. }
  680. // netQueueUploadWWan
  681. for (NSOperation *operation in [app.netQueueUploadWWan operations]) {
  682. if (((OCnetworking *)operation).isExecuting == NO) _queueNumUploadWWan++;
  683. }
  684. // Total
  685. NSUInteger total = _queueNunDownload + _queueNumDownloadWWan + _queueNumUpload + _queueNumUploadWWan + [CCCoreData countTableAutomaticUploadForAccount:self.activeAccount selector:nil];
  686. [UIApplication sharedApplication].applicationIconBadgeNumber = total;
  687. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  688. if ([[splitViewController.viewControllers firstObject] isKindOfClass:[UITabBarController class]]) {
  689. UITabBarController *tbc = [splitViewController.viewControllers firstObject];
  690. UITabBarItem *tbItem = [tbc.tabBar.items objectAtIndex:0];
  691. if (total > 0)
  692. [tbItem setBadgeValue:[NSString stringWithFormat:@"%li", (unsigned long)total]];
  693. else
  694. [tbItem setBadgeValue:nil];
  695. }
  696. }
  697. #pragma --------------------------------------------------------------------------------------------
  698. #pragma mark ===== Media Player Control =====
  699. #pragma --------------------------------------------------------------------------------------------
  700. - (void)remoteControlReceivedWithEvent:(UIEvent *)event
  701. {
  702. switch (event.subtype) {
  703. case UIEventSubtypeRemoteControlPlay:
  704. if (self.player.mediaPlayer) {
  705. NSMutableDictionary *songInfo = [[NSMutableDictionary alloc] init];
  706. if (self.player.mediaPlayer.nowPlayingItem.title)
  707. [songInfo setObject:self.player.mediaPlayer.nowPlayingItem.title forKey:MPMediaItemPropertyTitle];
  708. if (self.player.mediaPlayer.nowPlayingItem.artist)
  709. [songInfo setObject:self.player.mediaPlayer.nowPlayingItem.artist forKey:MPMediaItemPropertyArtist];
  710. [[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:songInfo];
  711. [self.player.mediaPlayer play];
  712. }
  713. break;
  714. case UIEventSubtypeRemoteControlPause:
  715. if (self.player.mediaPlayer) {
  716. [self.player.mediaPlayer pause];
  717. }
  718. break;
  719. case UIEventSubtypeRemoteControlNextTrack:
  720. // handle it break;
  721. case UIEventSubtypeRemoteControlPreviousTrack:
  722. // handle it break;
  723. default:
  724. break;
  725. }
  726. }
  727. - (BOOL)mediaPlayerViewWillStartPlaying:(LMMediaPlayerView *)playerView media:(LMMediaItem *)media
  728. {
  729. return YES;
  730. }
  731. #pragma --------------------------------------------------------------------------------------------
  732. #pragma mark ===== Manager Passcode =====
  733. #pragma --------------------------------------------------------------------------------------------
  734. - (BOOL)lockScreenManagerShouldShowLockScreen:(BKPasscodeLockScreenManager *)aManager
  735. {
  736. // ServerUrl active
  737. NSString *serverUrl = self.activeMain.serverUrl;
  738. // fermiamo la data della sessione
  739. self.sessionePasscodeLock = nil;
  740. // se il block code è a zero esci con NON attivare la richiesta password
  741. if ([[CCUtility getBlockCode] length] == 0) return NO;
  742. // se non c'è attivo un account esci con NON attivare la richiesta password
  743. if ([self.activeAccount length] == 0) return NO;
  744. // se non è attivo il OnlyLockDir esci con NON attivare la richiesta password
  745. if ([CCUtility getOnlyLockDir] && ![CCCoreData isBlockZone:serverUrl activeAccount:self.activeAccount]) return NO;
  746. return YES;
  747. }
  748. - (UIViewController *)lockScreenManagerPasscodeViewController:(BKPasscodeLockScreenManager *)aManager
  749. {
  750. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  751. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  752. viewController.delegate = self;
  753. viewController.title = k_brand;
  754. viewController.fromType = CCBKPasscodeFromLockScreen;
  755. viewController.inputViewTitlePassword = YES;
  756. if ([CCUtility getSimplyBlockCode]) {
  757. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  758. viewController.passcodeInputView.maximumLength = 6;
  759. } else {
  760. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  761. viewController.passcodeInputView.maximumLength = 64;
  762. }
  763. viewController.touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName: k_serviceShareKeyChain];
  764. viewController.touchIDManager.promptText = [CCUtility localizableBrand:@"_scan_fingerprint_" table:nil];
  765. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  766. return navigationController;
  767. }
  768. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  769. {
  770. [aViewController dismissViewControllerAnimated:YES completion:nil];
  771. // is a lock screen
  772. if (aViewController.fromType == CCBKPasscodeFromLockScreen) {
  773. [aViewController dismissViewControllerAnimated:YES completion:nil];
  774. // start session Passcode Lock
  775. NSString *serverUrl = self.activeMain.serverUrl;
  776. if ([CCCoreData isBlockZone:serverUrl activeAccount:self.activeAccount])
  777. self.sessionePasscodeLock = [NSDate date];
  778. }
  779. }
  780. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  781. {
  782. if (aViewController.fromType == CCBKPasscodeFromLockScreen || aViewController.fromType == CCBKPasscodeFromInit) {
  783. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  784. //self.lockUntilDate = nil;
  785. //self.failedAttempts = 0;
  786. aResultHandler(YES);
  787. } else aResultHandler(NO);
  788. } else aResultHandler(YES);
  789. }
  790. #pragma --------------------------------------------------------------------------------------------
  791. #pragma mark ===== reachabilityChanged =====
  792. #pragma --------------------------------------------------------------------------------------------
  793. -(void)reachabilityChanged:(SCNetworkReachabilityFlags)flags
  794. {
  795. if ([self.reachability isReachable]) {
  796. if (self.lastReachability == NO) {
  797. [self messageNotification:@"_network_available_" description:nil visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo];
  798. if (_activeMain)
  799. [_activeMain performSelector:@selector(requestServerInformation) withObject:nil afterDelay:3];
  800. }
  801. NSLog(@"[LOG] Reachability Changed: Reachable");
  802. self.lastReachability = YES;
  803. } else {
  804. if (self.lastReachability == YES) {
  805. [self messageNotification:@"_network_not_available_" description:nil visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo];
  806. }
  807. NSLog(@"[LOG] Reachability Changed: NOT Reachable");
  808. self.lastReachability = NO;
  809. }
  810. if ([self.reachability isReachableViaWiFi]) NSLog(@"[LOG] Reachability Changed: WiFi");
  811. if ([self.reachability isReachableViaWWAN]) NSLog(@"[LOG] Reachability Changed: WWAn");
  812. [[NSNotificationCenter defaultCenter] postNotificationName:@"setTitleMain" object:nil];
  813. }
  814. #pragma --------------------------------------------------------------------------------------------
  815. #pragma mark ===== Fetch =====
  816. #pragma --------------------------------------------------------------------------------------------
  817. - (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  818. {
  819. NSLog(@"[LOG] Start Fetch");
  820. // Verify new photo
  821. [[NSNotificationCenter defaultCenter] postNotificationName:@"initStateCameraUpload" object:nil];
  822. // after 20 sec verify Re
  823. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  824. [[CCNetworking sharedNetworking] automaticDownloadInError];
  825. [[CCNetworking sharedNetworking] automaticUploadInError];
  826. NSLog(@"[LOG] End Fetch 20 sec.");
  827. });
  828. // after 25 sec
  829. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 25 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  830. NSArray *records = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (session != NULL) AND (session != '')", self.activeAccount] context:nil];
  831. if ([records count] > 0) {
  832. completionHandler(UIBackgroundFetchResultNewData);
  833. } else {
  834. completionHandler(UIBackgroundFetchResultNoData);
  835. }
  836. NSLog(@"[LOG] End Fetch 25 sec.");
  837. });
  838. }
  839. #pragma --------------------------------------------------------------------------------------------
  840. #pragma mark ===== Operation Networking & Session =====
  841. #pragma --------------------------------------------------------------------------------------------
  842. //
  843. // Method called by the system when all the background task has end
  844. //
  845. - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)())completionHandler
  846. {
  847. NSLog(@"[LOG] Start completition handler from background - identifier : %@", identifier);
  848. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 25 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  849. [[CCNetworking sharedNetworking] automaticDownloadInError];
  850. [[CCNetworking sharedNetworking] automaticUploadInError];
  851. self.backgroundSessionCompletionHandler = completionHandler;
  852. void (^completionHandler)() = self.backgroundSessionCompletionHandler;
  853. self.backgroundSessionCompletionHandler = nil;
  854. completionHandler();
  855. NSLog(@"[LOG] End 25 sec. completition handler - identifier : %@", identifier);
  856. });
  857. }
  858. - (void)cancelAllOperations
  859. {
  860. [_netQueue cancelAllOperations];
  861. [_netQueueDownload cancelAllOperations];
  862. [_netQueueDownloadWWan cancelAllOperations];
  863. [_netQueueUpload cancelAllOperations];
  864. [_netQueueUploadWWan cancelAllOperations];
  865. [self performSelector:@selector(updateApplicationIconBadgeNumber) withObject:nil afterDelay:0.5];
  866. }
  867. - (void)addNetworkingOperationQueue:(NSOperationQueue *)netQueue delegate:(id)delegate metadataNet:(CCMetadataNet *)metadataNet
  868. {
  869. id operation;
  870. operation = [[OCnetworking alloc] initWithDelegate:delegate metadataNet:metadataNet withUser:_activeUser withPassword:_activePassword withUrl:_activeUrl isCryptoCloudMode:_isCryptoCloudMode];
  871. [operation setQueuePriority:metadataNet.priority];
  872. [netQueue addOperation:operation];
  873. }
  874. - (NSMutableArray *)verifyExistsInQueuesDownloadSelector:(NSString *)selector
  875. {
  876. NSMutableArray *metadatasNet = [[NSMutableArray alloc] init];
  877. for (OCnetworking *operation in [self.netQueueDownload operations])
  878. if ([operation.metadataNet.selector isEqualToString:selector])
  879. [metadatasNet addObject:[operation.metadataNet copy]];
  880. for (OCnetworking *operation in [self.netQueueDownloadWWan operations])
  881. if ([operation.metadataNet.selector isEqualToString:selector])
  882. [metadatasNet addObject:[operation.metadataNet copy]];
  883. return metadatasNet;
  884. }
  885. - (void)loadAutomaticUpload
  886. {
  887. CCMetadataNet *metadataNet;
  888. // verify Lock pending
  889. /*
  890. NSArray *UploadAutomaticInQueue = [self verifyExistsInQueuesUploadSelector:selectorUploadAutomatic];
  891. NSArray *UploadAutomaticAllInQueue = [self verifyExistsInQueuesUploadSelector:selectorUploadAutomaticAll];
  892. NSMutableArray *UploadInQueue = [NSMutableArray new];
  893. [UploadInQueue addObjectsFromArray:UploadAutomaticInQueue];
  894. [UploadInQueue addObjectsFromArray:UploadAutomaticAllInQueue];
  895. NSArray *recordAutomaticUploadInLock = [CCCoreData getAllLockTableAutomaticUploadForAccount:_activeAccount];
  896. for (TableAutomaticUpload *tableAutomaticUpload in recordAutomaticUploadInLock) {
  897. BOOL recordFound = NO;
  898. for (CCMetadataNet *metadataNet in UploadInQueue) {
  899. if (metadataNet.assetLocalIdentifier == tableAutomaticUpload.assetLocalIdentifier)
  900. recordFound = YES;
  901. }
  902. if (!recordFound)
  903. [CCCoreData unlockTableAutomaticUploadForAccount:_activeAccount assetLocalIdentifier:tableAutomaticUpload.assetLocalIdentifier];
  904. }
  905. */
  906. // ------------------------- <selectorUploadAutomatic> -------------------------
  907. do {
  908. metadataNet = [CCCoreData getTableAutomaticUploadForAccount:self.activeAccount selector:selectorUploadAutomatic];
  909. if (metadataNet) {
  910. // For UploadAutomatic create the folder for Photos & if request the subfolders
  911. NSString *folderPhotos = [CCCoreData getCameraUploadFolderNamePathActiveAccount:app.activeAccount activeUrl:app.activeUrl];
  912. BOOL useSubFolder = [CCCoreData getCameraUploadCreateSubfolderActiveAccount:app.activeAccount];
  913. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadataNet.assetLocalIdentifier] options:nil];
  914. if (!result.count) {
  915. [CCCoreData addActivityClient:metadataNet.fileName fileID:metadataNet.assetLocalIdentifier action:k_activityDebugActionUpload selector:selectorUploadAutomatic note:@"Internal error image/video not found [0]" type:k_activityTypeFailure verbose:k_activityVerboseHigh account:_activeAccount activeUrl:_activeUrl];
  916. [CCCoreData deleteTableAutomaticUploadForAccount:_activeAccount assetLocalIdentifier:metadataNet.assetLocalIdentifier];
  917. [self updateApplicationIconBadgeNumber];
  918. break;
  919. }
  920. if(![self createFolderSubFolderAutomaticUploadFolderPhotos:folderPhotos useSubFolder:useSubFolder assets:[[NSArray alloc] initWithObjects:result[0], nil] selector:selectorUploadAutomatic]) {
  921. [CCCoreData unlockTableAutomaticUploadForAccount:_activeAccount assetLocalIdentifier:metadataNet.assetLocalIdentifier];
  922. break;
  923. }
  924. [[CCNetworking sharedNetworking] uploadFileFromAssetLocalIdentifier:metadataNet.assetLocalIdentifier fileName:metadataNet.fileName serverUrl:metadataNet.serverUrl cryptated:metadataNet.cryptated session:metadataNet.session taskStatus:metadataNet.taskStatus selector:metadataNet.selector selectorPost:metadataNet.selectorPost errorCode:metadataNet.errorCode delegate:app.activeMain];
  925. }
  926. } while (metadataNet);
  927. // ------------------------- <selectorUploadAutomaticAll> -------------------------
  928. // Verify Max Upload Automatic All
  929. NSUInteger count = [TableMetadata MR_countOfEntitiesWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (sessionSelector == %@) AND ((sessionTaskIdentifier > 0) OR (sessionTaskIdentifierPlist > 0))", app.activeAccount, selectorUploadAutomaticAll]];
  930. if (count > 1)
  931. return;
  932. // Verify num error
  933. NSUInteger errorCount = [TableMetadata MR_countOfEntitiesWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (sessionSelector == %@) AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))", app.activeAccount, selectorUploadAutomaticAll,k_taskIdentifierError, k_taskIdentifierError]];
  934. if (errorCount >= 10) {
  935. [app messageNotification:@"_error_" description:@"_too_errors_automatic_all_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError];
  936. return;
  937. }
  938. metadataNet = [CCCoreData getTableAutomaticUploadForAccount:self.activeAccount selector:selectorUploadAutomaticAll];
  939. if (metadataNet) {
  940. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadataNet.assetLocalIdentifier] options:nil];
  941. if (!result.count) {
  942. [CCCoreData addActivityClient:metadataNet.fileName fileID:metadataNet.assetLocalIdentifier action:k_activityDebugActionUpload selector:selectorUploadAutomatic note:@"Internal error image/video not found [0]" type:k_activityTypeFailure verbose:k_activityVerboseHigh account:_activeAccount activeUrl:_activeUrl];
  943. [CCCoreData deleteTableAutomaticUploadForAccount:_activeAccount assetLocalIdentifier:metadataNet.assetLocalIdentifier];
  944. [self updateApplicationIconBadgeNumber];
  945. return;
  946. }
  947. [[CCNetworking sharedNetworking] uploadFileFromAssetLocalIdentifier:metadataNet.assetLocalIdentifier fileName:metadataNet.fileName serverUrl:metadataNet.serverUrl cryptated:metadataNet.cryptated session:metadataNet.session taskStatus:metadataNet.taskStatus selector:metadataNet.selector selectorPost:metadataNet.selectorPost errorCode:metadataNet.errorCode delegate:app.activeMain];
  948. }
  949. }
  950. - (void)verifyDownloadUploadInProgress
  951. {
  952. BOOL callVerifyDownload = NO;
  953. BOOL callVerifyUpload = NO;
  954. if ([[UIApplication sharedApplication] applicationState] != UIApplicationStateBackground) {
  955. NSLog(@"[LOG] Verify Download/Upload in progress now : %@ - Download %@ - Upload %@", [NSDate date], [self.sessionDateLastDownloadTasks dateByAddingTimeInterval:k_timerVerifySession], [self.sessionDateLastUploadTasks dateByAddingTimeInterval:k_timerVerifySession]);
  956. if ([[NSDate date] compare:[self.sessionDateLastDownloadTasks dateByAddingTimeInterval:k_timerVerifySession]] == NSOrderedDescending) {
  957. callVerifyDownload = YES;
  958. [[CCNetworking sharedNetworking] verifyDownloadInProgress];
  959. }
  960. if ([[NSDate date] compare:[self.sessionDateLastUploadTasks dateByAddingTimeInterval:k_timerVerifySession]] == NSOrderedDescending) {
  961. callVerifyUpload = YES;
  962. [[CCNetworking sharedNetworking] verifyUploadInProgress];
  963. }
  964. if (callVerifyDownload && callVerifyUpload) {
  965. NSLog(@"[LOG] Stop timer verify session");
  966. [self.timerVerifySessionInProgress invalidate];
  967. }
  968. }
  969. }
  970. // Notification change session
  971. - (void)sessionChanged:(NSNotification *)notification
  972. {
  973. NSURLSession *session;
  974. CCMetadata *metadata;
  975. NSURLSessionTask *task;
  976. for (id object in notification.object) {
  977. if ([object isKindOfClass:[NSURLSession class]])
  978. session = object;
  979. if ([object isKindOfClass:[CCMetadata class]])
  980. metadata = object;
  981. if ([object isKindOfClass:[NSURLSessionTask class]])
  982. task = object;
  983. }
  984. /*
  985. Task
  986. */
  987. if ([task isKindOfClass:[NSURLSessionDownloadTask class]])
  988. app.sessionDateLastDownloadTasks = [NSDate date];
  989. if ([task isKindOfClass:[NSURLSessionUploadTask class]])
  990. app.sessionDateLastUploadTasks = [NSDate date];
  991. if (metadata && [_listChangeTask objectForKey:metadata.fileID])
  992. dispatch_async(dispatch_get_main_queue(), ^{
  993. [self changeTask:metadata];
  994. });
  995. /*
  996. Session
  997. */
  998. if (session) {
  999. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  1000. unsigned long numDownload = [downloadTasks count];
  1001. unsigned long numUpload = [uploadTasks count];
  1002. NSLog(@"[LOG] Num Download in queue %lu, num upload in queue %lu", numDownload, numUpload);
  1003. }];
  1004. }
  1005. }
  1006. - (void)changeTask:(CCMetadata *)metadata
  1007. {
  1008. NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:metadata.directoryID activeAccount:metadata.account];
  1009. if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"stopUpload"]) {
  1010. // sessionTaskIdentifier on Stop
  1011. [CCCoreData setMetadataSession:nil sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierStop sessionTaskIdentifierPlist:k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", metadata.fileID, self.activeAccount] context:nil];
  1012. }
  1013. else if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"reloadUpload"]) {
  1014. // V 1.8 if upload_session_wwan change in upload_session
  1015. if ([metadata.session isEqualToString:k_upload_session_wwan])
  1016. metadata.session = k_upload_session;
  1017. [[CCNetworking sharedNetworking] uploadFileMetadata:metadata taskStatus:k_taskStatusResume];
  1018. }
  1019. else if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"reloadDownload"]) {
  1020. BOOL downloadData = NO, downloadPlist = NO;
  1021. if (metadata.sessionTaskIdentifier != k_taskIdentifierDone) downloadData = YES;
  1022. if (metadata.sessionTaskIdentifierPlist != k_taskIdentifierDone) downloadPlist = YES;
  1023. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  1024. [[CCNetworking sharedNetworking] downloadFile:metadata serverUrl:serverUrl downloadData:downloadData downloadPlist:downloadPlist selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost session:k_download_session taskStatus:k_taskStatusResume delegate:nil];
  1025. });
  1026. }
  1027. else if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"cancelUpload"]) {
  1028. // remove the file
  1029. [CCCoreData deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", metadata.fileID, app.activeAccount]];
  1030. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", app.directoryUser, metadata.fileID] error:nil];
  1031. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID] error:nil];
  1032. }
  1033. else if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"cancelDownload"]) {
  1034. [CCCoreData setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:k_taskIdentifierDone sessionTaskIdentifierPlist:k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", metadata.fileID, self.activeAccount] context:nil];
  1035. }
  1036. // remove ChangeTask (fileID) from the list
  1037. [_listChangeTask removeObjectForKey:metadata.fileID];
  1038. // delete progress
  1039. [_listProgressMetadata removeObjectForKey:metadata.fileID];
  1040. // Progress Task
  1041. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"cryptated": ([NSNumber numberWithBool:NO]), @"progress": ([NSNumber numberWithFloat:0.0])};
  1042. [[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  1043. // Refresh
  1044. if (_activeMain && [_listChangeTask count] == 0) {
  1045. [_activeMain reloadDatasource:[CCCoreData getServerUrlFromDirectoryID:metadata.directoryID activeAccount:metadata.account] fileID:nil selector:nil];
  1046. }
  1047. }
  1048. - (void)dropAutomaticUploadWithSelector:(NSString *)selector
  1049. {
  1050. [CCCoreData flushTableAutomaticUploadAccount:self.activeAccount selector:selector];
  1051. // Update icon badge number
  1052. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1.0 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  1053. [self updateApplicationIconBadgeNumber];
  1054. });
  1055. }
  1056. - (BOOL)createFolderSubFolderAutomaticUploadFolderPhotos:(NSString *)folderPhotos useSubFolder:(BOOL)useSubFolder assets:(NSArray *)assets selector:(NSString *)selector
  1057. {
  1058. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:nil metadataNet:nil withUser:_activeUser withPassword:_activePassword withUrl:_activeUrl isCryptoCloudMode:NO];
  1059. if(![ocNetworking automaticCreateFolderSync:folderPhotos]) {
  1060. // Activity
  1061. [CCCoreData addActivityClient:folderPhotos fileID:@"" action:k_activityDebugActionAutomaticUpload selector:selector note:NSLocalizedStringFromTable(@"_not_possible_create_folder_", @"Error", nil) type:k_activityTypeFailure verbose:k_activityVerboseDefault account:_activeAccount activeUrl:_activeUrl];
  1062. return false;
  1063. }
  1064. // Create if request the subfolders
  1065. if (useSubFolder) {
  1066. for (NSString *dateSubFolder in [CCUtility createNameSubFolder:assets]) {
  1067. if(![ocNetworking automaticCreateFolderSync:[NSString stringWithFormat:@"%@/%@", folderPhotos, dateSubFolder]]) {
  1068. // Activity
  1069. [CCCoreData addActivityClient:[NSString stringWithFormat:@"%@/%@", folderPhotos, dateSubFolder] fileID:@"" action:k_activityDebugActionAutomaticUpload selector:selector note:NSLocalizedString(@"_error_createsubfolders_upload_",nil) type:k_activityTypeFailure verbose:k_activityVerboseDefault account:_activeAccount activeUrl:_activeUrl];
  1070. return false;
  1071. }
  1072. }
  1073. }
  1074. return true;
  1075. }
  1076. #pragma --------------------------------------------------------------------------------------------
  1077. #pragma mark ===== Open CCUploadFromOtherUpp =====
  1078. #pragma --------------------------------------------------------------------------------------------
  1079. - (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
  1080. {
  1081. return YES;
  1082. }
  1083. // Method called from iOS system to send a file from other app.
  1084. - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
  1085. {
  1086. NSLog(@"[LOG] URL from %@ application", sourceApplication);
  1087. NSLog(@"[LOG] the path is: %@", url.path);
  1088. NSArray *splitedUrl = [url.path componentsSeparatedByString:@"/"];
  1089. self.fileNameUpload = [NSString stringWithFormat:@"%@",[splitedUrl objectAtIndex:([splitedUrl count]-1)]];
  1090. if (self.activeAccount) {
  1091. [[NSFileManager defaultManager]moveItemAtPath:[[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Inbox"] stringByAppendingPathComponent:self.fileNameUpload] toPath:[NSString stringWithFormat:@"%@/%@", self.directoryUser, self.fileNameUpload] error:nil];
  1092. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  1093. UINavigationController *splitNavigationController = [splitViewController.viewControllers firstObject];
  1094. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"CCUploadFromOtherUpp" bundle:nil] instantiateViewControllerWithIdentifier:@"CCUploadNavigationViewController"];
  1095. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  1096. [splitNavigationController presentViewController:navigationController animated:YES completion:nil];
  1097. });
  1098. }
  1099. // remove from InBox
  1100. [[NSFileManager defaultManager] removeItemAtPath:[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Inbox"] error:nil];
  1101. return YES;
  1102. }
  1103. #pragma --------------------------------------------------------------------------------------------
  1104. #pragma mark ===== UPGRADE =====
  1105. #pragma --------------------------------------------------------------------------------------------
  1106. - (void)upgrade
  1107. {
  1108. #ifdef DEBUG
  1109. // [CCCoreData flushTableGPS];
  1110. // [CCCoreData setGeoInformationLocalNull];
  1111. #endif
  1112. NSString *actualVersion = [CCUtility getVersionCryptoCloud];
  1113. /* ---------------------- UPGRADE VERSION ----------------------- */
  1114. if (([actualVersion compare:@"2.13" options:NSNumericSearch] == NSOrderedAscending)) {
  1115. [CCCoreData flushTableDirectoryAccount:nil];
  1116. [CCCoreData flushTableLocalFileAccount:nil];
  1117. [CCCoreData flushTableMetadataAccount:nil];
  1118. }
  1119. if (([actualVersion compare:@"2.15" options:NSNumericSearch] == NSOrderedAscending)) {
  1120. [CCCoreData flushTableGPS];
  1121. [CCCoreData setGeoInformationLocalNull];
  1122. }
  1123. if (([actualVersion compare:@"2.17" options:NSNumericSearch] == NSOrderedAscending)) {
  1124. [CCCoreData clearAllDateReadDirectory];
  1125. [CCCoreData flushTableMetadataAccount:nil];
  1126. }
  1127. }
  1128. @end