AppDelegate.m 67 KB

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