AppDelegate.m 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392
  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 "OCFrameworkConstants.h"
  26. #import "AFURLSessionManager.h"
  27. #import "JBroken.h"
  28. #import "CCNetworking.h"
  29. #import "CCCoreData.h"
  30. #import "CCCrypto.h"
  31. #import "CCFavorite.h"
  32. #import "CCManageAsset.h"
  33. #import "CCGraphics.h"
  34. #import "CCPhotosCameraUpload.h"
  35. #import "CCSynchronization.h"
  36. #import "CCMain.h"
  37. #import "CCDetail.h"
  38. #import "Nextcloud-Swift.h"
  39. @interface AppDelegate ()
  40. {
  41. }
  42. @end
  43. @implementation AppDelegate
  44. + (void)initialize
  45. {
  46. [iRate sharedInstance].daysUntilPrompt = 10;
  47. [iRate sharedInstance].usesUntilPrompt = 10;
  48. [iRate sharedInstance].promptForNewVersionIfUserRated = true;
  49. //enable preview mode
  50. //[iRate sharedInstance].previewMode = YES;
  51. }
  52. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  53. {
  54. NSString *dir;
  55. NSURL *dirGroup = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:capabilitiesGroups];
  56. NSLog(@"[LOG] Start program group -----------------");
  57. NSLog(@"%@", dirGroup);
  58. NSLog(@"[LOG] Start program application -----------");
  59. NSLog(@"%@", [[CCUtility getDirectoryLocal] stringByDeletingLastPathComponent]);
  60. NSLog(@"[LOG] -------------------------------------");
  61. // create Directory local => Documents
  62. dir = [CCUtility getDirectoryLocal];
  63. if (![[NSFileManager defaultManager] fileExistsAtPath: dir] && [dir length])
  64. [[NSFileManager defaultManager] createDirectoryAtPath:dir withIntermediateDirectories:YES attributes:nil error:nil];
  65. // create Directory audio => Library, Application Support, audio
  66. dir = [CCUtility getDirectoryAudio];
  67. if (![[NSFileManager defaultManager] fileExistsAtPath: dir] && [dir length])
  68. [[NSFileManager defaultManager] createDirectoryAtPath:dir withIntermediateDirectories:YES attributes:nil error:nil];
  69. // create Crypto Cloud in Group => Library, Application Support, Crypto Cloud
  70. dir = [[dirGroup URLByAppendingPathComponent:appDatabase] path];
  71. if (![[NSFileManager defaultManager] fileExistsAtPath:dir])
  72. [[NSFileManager defaultManager] createDirectoryAtPath:dir withIntermediateDirectories:YES attributes:nil error:nil];
  73. //[CCCoreData verifyVersionCoreData];
  74. [MagicalRecord setupCoreDataStackWithAutoMigratingSqliteStoreNamed:(id)[dirGroup URLByAppendingPathComponent:[appDatabase stringByAppendingPathComponent:@"cryptocloud"]]];
  75. #ifdef DEBUG
  76. [MagicalRecord setLoggingLevel:MagicalRecordLoggingLevelWarn];
  77. #else
  78. [MagicalRecord setLoggingLevel:MagicalRecordLoggingLevelOff];
  79. #endif
  80. // Verify upgrade
  81. [self upgrade];
  82. // Set account, if no exists clear all
  83. TableAccount *recordAccount = [CCCoreData getActiveAccount];
  84. if (recordAccount == nil) {
  85. // remove all the keys Chain
  86. [CCUtility deleteAllChainStore];
  87. // remove all the App group key
  88. [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:[[NSBundle mainBundle] bundleIdentifier]];
  89. } else {
  90. [self settingActiveAccount:recordAccount.account activeUrl:recordAccount.url activeUser:recordAccount.user activePassword:recordAccount.password activeUID:recordAccount.uid activeAccessToken:recordAccount.token typeCloud:recordAccount.typeCloud];
  91. }
  92. // Operation Queue OC-DB Networking
  93. _netQueue = [[NSOperationQueue alloc] init];
  94. _netQueue.name = netQueueName;
  95. _netQueue.maxConcurrentOperationCount = maxConcurrentOperation;
  96. _netQueueDownload = [[NSOperationQueue alloc] init];
  97. _netQueueDownload.name = netQueueDownloadName;
  98. _netQueueDownload.maxConcurrentOperationCount = maxConcurrentOperationDownloadUpload;
  99. _netQueueDownloadWWan = [[NSOperationQueue alloc] init];
  100. _netQueueDownloadWWan.name = netQueueDownloadWWanName;
  101. _netQueueDownloadWWan.maxConcurrentOperationCount = maxConcurrentOperationDownloadUpload;
  102. _netQueueUpload = [[NSOperationQueue alloc] init];
  103. _netQueueUpload.name = netQueueUploadName;
  104. _netQueueUpload.maxConcurrentOperationCount = maxConcurrentOperationDownloadUpload;
  105. _netQueueUploadWWan = [[NSOperationQueue alloc] init];
  106. _netQueueUploadWWan.name = netQueueUploadWWanName;
  107. _netQueueUploadWWan.maxConcurrentOperationCount = maxConcurrentOperationDownloadUpload;
  108. // Add notification change session
  109. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sessionChanged:) name:networkingSessionNotification object:nil];
  110. // Inizializzazioni Share
  111. self.sharesID = [[NSMutableDictionary alloc] init];
  112. self.sharesLink = [[NSMutableDictionary alloc] init];
  113. self.sharesUserAndGroup = [[NSMutableDictionary alloc] init];
  114. // Verify Session in progress and Init date task
  115. self.sessionDateLastDownloadTasks = [NSDate date];
  116. self.sessionDateLastUploadTasks = [NSDate date];
  117. self.timerVerifySessionInProgress = [NSTimer scheduledTimerWithTimeInterval:timerVerifySession target:self selector:@selector(verifyDownloadUploadInProgress) userInfo:nil repeats:YES];
  118. // Background Fetch
  119. [application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
  120. // Init List
  121. self.listProgressMetadata = [[NSMutableDictionary alloc] init];
  122. self.listChangeTask = [[NSMutableDictionary alloc] init];
  123. self.listMainVC = [[NSMutableDictionary alloc] init];
  124. // Player audio
  125. self.player = [LMMediaPlayerView sharedPlayerView];
  126. self.player.delegate = self;
  127. // ico Image Cache
  128. self.icoImagesCache = [[NSMutableDictionary alloc] init];
  129. // remove tmp & cache
  130. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  131. NSArray* tmpDirectory = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:NSTemporaryDirectory() error:NULL];
  132. for (NSString *file in tmpDirectory) {
  133. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@%@", NSTemporaryDirectory(), file] error:NULL];
  134. }
  135. [[NSURLCache sharedURLCache] removeAllCachedResponses];
  136. });
  137. // setting Reachable in back
  138. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  139. self.reachability = [Reachability reachabilityForInternetConnection];
  140. self.lastReachability = [self.reachability isReachable];
  141. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];
  142. [self.reachability startNotifier];
  143. });
  144. //AV Session
  145. [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:nil];
  146. //[[AVAudioSession sharedInstance] setActive:YES error:nil];
  147. [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
  148. // permission request camera roll
  149. ALAssetsLibrary *lib = [[ALAssetsLibrary alloc] init];
  150. [lib enumerateGroupsWithTypes:ALAssetsGroupSavedPhotos usingBlock:^(ALAssetsGroup *group, BOOL *stop) {
  151. //NSLog(@"[LOG] %li",(long)[group numberOfAssets]);
  152. } failureBlock:^(NSError *error) {
  153. if (error.code == ALAssetsLibraryAccessUserDeniedError) {
  154. NSLog(@"[LOG] user denied access, code: %li",(long)error.code);
  155. }else{
  156. NSLog(@"[LOG] Other error code: %li",(long)error.code);
  157. }
  158. }];
  159. // permission request notification
  160. if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) {
  161. UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeBadge|UIUserNotificationTypeAlert|UIUserNotificationTypeSound) categories:nil];
  162. [application registerUserNotificationSettings:settings];
  163. }
  164. // it is a device Jailbroken
  165. self.isDeviceJailbroken = isDeviceJailbroken();
  166. [self.window setTintColor:COLOR_BRAND];
  167. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  168. //UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  169. UINavigationController *navigationController = [splitViewController.viewControllers lastObject];
  170. navigationController.topViewController.navigationItem.leftBarButtonItem = splitViewController.displayModeButtonItem;
  171. splitViewController.preferredDisplayMode = UISplitViewControllerDisplayModeAllVisible;
  172. // Settings TabBar
  173. [self createTabBarController];
  174. // passcode
  175. [[BKPasscodeLockScreenManager sharedManager] setDelegate:self];
  176. dispatch_async(dispatch_get_main_queue(), ^{
  177. [[BKPasscodeLockScreenManager sharedManager] showLockScreen:NO];
  178. });
  179. // Quick Actions
  180. if([[UIApplicationShortcutItem class] respondsToSelector:@selector(new)]) {
  181. [self configDynamicShortcutItems];
  182. UIApplicationShortcutItem *shortcutItem = [launchOptions objectForKeyedSubscript:UIApplicationLaunchOptionsShortcutItemKey];
  183. if (shortcutItem)
  184. [self handleShortCutItem:shortcutItem];
  185. }
  186. // Start timer Verify Process
  187. self.timerVerifyProcess = [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(verifyProcess) userInfo:nil repeats:YES];
  188. return YES;
  189. }
  190. //
  191. // L' applicazione è diventata attiva
  192. //
  193. - (void)applicationDidBecomeActive:(UIApplication *)application
  194. {
  195. // After 5 sec. for wait load app.activeMain start if exists in Table Automatic Upload + All
  196. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 5.0 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  197. if ([CCCoreData countTableAutomaticUploadForAccount:self.activeAccount selector:selectorUploadAutomatic] > 0)
  198. [app loadTableAutomaticUploadForSelector:selectorUploadAutomatic];
  199. if ([CCCoreData countTableAutomaticUploadForAccount:self.activeAccount selector:selectorUploadAutomaticAll] > 0)
  200. [app loadTableAutomaticUploadForSelector:selectorUploadAutomaticAll];
  201. });
  202. }
  203. //
  204. // L' applicazione si dimetterà dallo stato di attivo
  205. //
  206. - (void)applicationWillResignActive:(UIApplication *)application
  207. {
  208. [self updateApplicationIconBadgeNumber];
  209. }
  210. //
  211. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  212. //
  213. - (void)applicationWillEnterForeground:(UIApplication *)application
  214. {
  215. // facciamo partire il timer per il controllo delle sessioni
  216. [self.timerVerifySessionInProgress invalidate];
  217. self.timerVerifySessionInProgress = [NSTimer scheduledTimerWithTimeInterval:timerVerifySession target:self selector:@selector(verifyDownloadUploadInProgress) userInfo:nil repeats:YES];
  218. // refresh active Main
  219. if (_activeMain)
  220. [_activeMain getDataSourceWithReloadTableView];
  221. // Initializations
  222. [self applicationInitialized];
  223. }
  224. //
  225. // L' applicazione è entrata nello sfondo
  226. //
  227. - (void)applicationDidEnterBackground:(UIApplication *)application
  228. {
  229. NSLog(@"[LOG] Enter in Background");
  230. [[CCQuickActions quickActionsManager] closeAll];
  231. [[BKPasscodeLockScreenManager sharedManager] showLockScreen:YES];
  232. if([[UIDevice currentDevice] respondsToSelector:@selector(isMultitaskingSupported)]) {
  233. __block UIBackgroundTaskIdentifier background_task;
  234. background_task = [application beginBackgroundTaskWithExpirationHandler:^ {
  235. //Clean up code. Tell the system that we are done.
  236. [application endBackgroundTask: background_task];
  237. background_task = UIBackgroundTaskInvalid;
  238. }];
  239. }
  240. }
  241. //
  242. // L'applicazione terminerà
  243. //
  244. - (void)applicationWillTerminate:(UIApplication *)application
  245. {
  246. [MagicalRecord cleanUp];
  247. NSLog(@"[LOG] bye bye, Crypto Cloud !");
  248. }
  249. //
  250. // Method called by the system when all the background task has end
  251. //
  252. - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)())completionHandler
  253. {
  254. NSLog(@"[LOG] Start completition handler from background - identifier : %@", identifier);
  255. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 25 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  256. [[CCNetworking sharedNetworking] automaticDownloadInError];
  257. [[CCNetworking sharedNetworking] automaticUploadInError];
  258. self.backgroundSessionCompletionHandler = completionHandler;
  259. void (^completionHandler)() = self.backgroundSessionCompletionHandler;
  260. self.backgroundSessionCompletionHandler = nil;
  261. completionHandler();
  262. NSLog(@"[LOG] End 25 sec. completition handler - identifier : %@", identifier);
  263. });
  264. }
  265. //
  266. // Application Initialized
  267. //
  268. - (void)applicationInitialized
  269. {
  270. // now
  271. dispatch_async(dispatch_get_main_queue(), ^{
  272. //NSLog(@"[LOG] Read Folder for change Rev");
  273. //[[NSNotificationCenter defaultCenter] postNotificationName:@"readFileSelfFolderRev" object:nil];
  274. });
  275. // 0.5 sec.
  276. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  277. //
  278. NSLog(@"[LOG] Request Server Information");
  279. //
  280. if (_activeMain)
  281. [_activeMain requestServerInformation];
  282. });
  283. // 1 sec.
  284. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1.0 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  285. NSLog(@"[LOG] Synchronize Favorites");
  286. [[NSNotificationCenter defaultCenter] postNotificationName:@"synchronizedFavorites" object:nil];
  287. NSLog(@"[LOG] Synchronize Folders");
  288. [[CCSynchronization sharedSynchronization] synchronizationFolders];
  289. });
  290. // 1.5 sec.
  291. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  292. NSLog(@"[LOG] Initialize Camera Upload");
  293. [[NSNotificationCenter defaultCenter] postNotificationName:@"initStateCameraUpload" object:nil];
  294. });
  295. // Initialize Camera Upload
  296. //[[NSNotificationCenter defaultCenter] postNotificationName:@"initStateCameraUpload" object:@{@"afterDelay": @(2)}];
  297. }
  298. #pragma --------------------------------------------------------------------------------------------
  299. #pragma mark ===== Verify Process 5 seconds =====
  300. #pragma --------------------------------------------------------------------------------------------
  301. - (void)verifyProcess
  302. {
  303. // BACKGROND & FOREGROUND
  304. /* Active/Disactive Graphics Animation Synchronization Folders */
  305. NSArray *records = [CCCoreData getSynchronizedDirectoryActiveAccount:app.activeAccount];
  306. NSMutableArray *directory = [[NSMutableArray alloc] init];
  307. for (TableDirectory *record in records)
  308. [directory addObject:record.serverUrl];
  309. if ([directory count] > 0)
  310. [[CCSynchronization sharedSynchronization] synchronizationAnimationDirectory:directory callViewController:YES];
  311. // ONLY BACKGROUND
  312. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) {
  313. } else {
  314. // ONLY FOREFROUND
  315. }
  316. }
  317. #pragma --------------------------------------------------------------------------------------------
  318. #pragma mark ===== Setting Active Account =====
  319. #pragma --------------------------------------------------------------------------------------------
  320. - (void)settingActiveAccount:(NSString *)activeAccount activeUrl:(NSString *)activeUrl activeUser:(NSString *)activeUser activePassword:(NSString *)activePassword activeUID:(NSString *)activeUID activeAccessToken:(NSString *)activeAccessToken typeCloud:(NSString *)typeCloud
  321. {
  322. self.activeAccount = activeAccount;
  323. self.activeUrl = activeUrl;
  324. self.activeUser = activeUser;
  325. self.activePassword = activePassword;
  326. self.typeCloud = typeCloud;
  327. self.directoryUser = [CCUtility getDirectoryActiveUser:activeUser activeUrl:activeUrl];
  328. self.activeUID = activeUID;
  329. self.activeAccessToken = activeAccessToken;
  330. }
  331. #pragma --------------------------------------------------------------------------------------------
  332. #pragma mark ===== Quick Actions - ShotcutItem =====
  333. #pragma --------------------------------------------------------------------------------------------
  334. - (void)configDynamicShortcutItems
  335. {
  336. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  337. UIApplicationShortcutIcon *shortcutPhotosIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:image_quickActionPhotos];
  338. UIApplicationShortcutIcon *shortcutUploadClearIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:image_quickActionUploadClear];
  339. UIApplicationShortcutIcon *shortcutUploadEncryptedIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:image_quickActionUploadEncrypted];
  340. UIApplicationShortcutItem *shortcutPhotos = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.photos", bundleId] localizedTitle:NSLocalizedString(@"_photo_camera_", nil) localizedSubtitle:nil icon:shortcutPhotosIcon userInfo:nil];
  341. UIApplicationShortcutItem *shortcutFavorite = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.favorite", bundleId] localizedTitle:NSLocalizedString(@"_favorites_", nil) localizedSubtitle:nil icon:[UIApplicationShortcutIcon iconWithType:UIApplicationShortcutIconTypeFavorite] userInfo:nil];
  342. UIApplicationShortcutItem *shortcutUploadClear = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.uploadClear", bundleId] localizedTitle:NSLocalizedString(@"_upload_file_", nil) localizedSubtitle:nil icon:shortcutUploadClearIcon userInfo:nil];
  343. UIApplicationShortcutItem *shortcutUploadEncrypted = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.uploadEncrypted", bundleId] localizedTitle:NSLocalizedString(@"_upload_encrypted_file_", nil) localizedSubtitle:nil icon:shortcutUploadEncryptedIcon userInfo:nil];
  344. // add all items to an array
  345. NSArray *items = @[shortcutUploadEncrypted, shortcutUploadClear, shortcutPhotos, shortcutFavorite];
  346. // add the array to our app
  347. [UIApplication sharedApplication].shortcutItems = items;
  348. }
  349. - (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL))completionHandler
  350. {
  351. BOOL handledShortCutItem = [self handleShortCutItem:shortcutItem];
  352. completionHandler(handledShortCutItem);
  353. }
  354. - (BOOL)handleShortCutItem:(UIApplicationShortcutItem *)shortcutItem
  355. {
  356. BOOL handled = NO;
  357. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  358. NSString *shortcutFavorite = [NSString stringWithFormat:@"%@.favorite", bundleId];
  359. NSString *shortcutPhotos = [NSString stringWithFormat:@"%@.photos", bundleId];
  360. NSString *shortcutUploadClear = [NSString stringWithFormat:@"%@.uploadClear", bundleId];
  361. NSString *shortcutUploadEncrypted = [NSString stringWithFormat:@"%@.uploadEncrypted", bundleId];
  362. if ([shortcutItem.type isEqualToString:shortcutUploadClear] && self.activeAccount) {
  363. dispatch_async(dispatch_get_main_queue(), ^{
  364. if (_activeMain) {
  365. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  366. if (splitViewController.isCollapsed) {
  367. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  368. for (UINavigationController *nvc in tbc.viewControllers) {
  369. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  370. [nvc popToRootViewControllerAnimated:NO];
  371. }
  372. [tbc setSelectedIndex:TabBarApplicationIndexFile];
  373. } else {
  374. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  375. [nvcDetail popToRootViewControllerAnimated:NO];
  376. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  377. [tbc setSelectedIndex:TabBarApplicationIndexFile];
  378. }
  379. [_activeMain.navigationController popToRootViewControllerAnimated:NO];
  380. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  381. [[CCQuickActions quickActionsManager] startQuickActionsEncrypted:NO viewController:_activeMain];
  382. });
  383. }
  384. });
  385. handled = YES;
  386. }
  387. else if ([shortcutItem.type isEqualToString:shortcutUploadEncrypted] && self.activeAccount) {
  388. dispatch_async(dispatch_get_main_queue(), ^{
  389. if (_activeMain) {
  390. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  391. if (splitViewController.isCollapsed) {
  392. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  393. for (UINavigationController *nvc in tbc.viewControllers) {
  394. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  395. [nvc popToRootViewControllerAnimated:NO];
  396. }
  397. [tbc setSelectedIndex:TabBarApplicationIndexFile];
  398. } else {
  399. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  400. [nvcDetail popToRootViewControllerAnimated:NO];
  401. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  402. [tbc setSelectedIndex:TabBarApplicationIndexFile];
  403. }
  404. [_activeMain.navigationController popToRootViewControllerAnimated:NO];
  405. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  406. [[CCQuickActions quickActionsManager] startQuickActionsEncrypted:YES viewController:_activeMain];
  407. });
  408. }
  409. });
  410. handled = YES;
  411. }
  412. else if ([shortcutItem.type isEqualToString:shortcutPhotos] && self.activeAccount) {
  413. dispatch_async(dispatch_get_main_queue(), ^{
  414. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  415. if (splitViewController.isCollapsed) {
  416. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  417. for (UINavigationController *nvc in tbc.viewControllers) {
  418. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  419. [nvc popToRootViewControllerAnimated:NO];
  420. }
  421. [tbc setSelectedIndex:TabBarApplicationIndexPhotos];
  422. } else {
  423. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  424. [nvcDetail popToRootViewControllerAnimated:NO];
  425. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  426. [tbc setSelectedIndex:TabBarApplicationIndexPhotos];
  427. }
  428. });
  429. handled = YES;
  430. }
  431. else if ([shortcutItem.type isEqualToString:shortcutFavorite] && self.activeAccount) {
  432. dispatch_async(dispatch_get_main_queue(), ^{
  433. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  434. if (splitViewController.isCollapsed) {
  435. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  436. for (UINavigationController *nvc in tbc.viewControllers) {
  437. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  438. [nvc popToRootViewControllerAnimated:NO];
  439. if ([nvc.topViewController isKindOfClass:[CCFavorite class]])
  440. [(CCFavorite *)nvc.topViewController forcedSwitchFavorite];
  441. }
  442. [tbc setSelectedIndex:TabBarApplicationIndexFavorite];
  443. } else {
  444. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  445. [nvcDetail popToRootViewControllerAnimated:NO];
  446. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  447. UINavigationController *ncFavorite = [tbc.viewControllers objectAtIndex:TabBarApplicationIndexFavorite];
  448. if ([ncFavorite.topViewController isKindOfClass:[CCFavorite class]])
  449. [(CCFavorite *)ncFavorite.topViewController forcedSwitchFavorite];
  450. [tbc setSelectedIndex:TabBarApplicationIndexFavorite];
  451. }
  452. });
  453. handled = YES;
  454. }
  455. return handled;
  456. }
  457. #pragma --------------------------------------------------------------------------------------------
  458. #pragma mark ===== StatusBar & ApplicationIconBadgeNumber =====
  459. #pragma --------------------------------------------------------------------------------------------
  460. - (void)messageNotification:(NSString *)title description:(NSString *)description visible:(BOOL)visible delay:(NSTimeInterval)delay type:(TWMessageBarMessageType)type
  461. {
  462. title = [NSString stringWithFormat:@"%@\n",[CCUtility localizableBrand:title table:nil]];
  463. dispatch_async(dispatch_get_main_queue(), ^{
  464. if (visible) {
  465. [TWMessageBarManager sharedInstance].styleSheet = self;
  466. [[TWMessageBarManager sharedInstance] showMessageWithTitle:title description:[CCUtility localizableBrand:description table:nil] type:type duration:delay];
  467. } else {
  468. [[TWMessageBarManager sharedInstance] hideAllAnimated:YES];
  469. }
  470. });
  471. }
  472. - (UIColor *)backgroundColorForMessageType:(TWMessageBarMessageType)type
  473. {
  474. UIColor *backgroundColor = nil;
  475. switch (type)
  476. {
  477. case TWMessageBarMessageTypeError:
  478. backgroundColor = [UIColor colorWithRed:1.0 green:0.0 blue:0.0 alpha:0.90];
  479. break;
  480. case TWMessageBarMessageTypeSuccess:
  481. backgroundColor = [UIColor colorWithRed:0.588 green:0.797 blue:0.000 alpha:0.90];
  482. break;
  483. case TWMessageBarMessageTypeInfo:
  484. backgroundColor = COLOR_BRAND_MESSAGE;
  485. break;
  486. default:
  487. break;
  488. }
  489. return backgroundColor;
  490. }
  491. - (UIColor *)strokeColorForMessageType:(TWMessageBarMessageType)type
  492. {
  493. UIColor *strokeColor = nil;
  494. switch (type)
  495. {
  496. case TWMessageBarMessageTypeError:
  497. strokeColor = [UIColor colorWithRed:1.0 green:0.0 blue:0.0 alpha:1.0];
  498. break;
  499. case TWMessageBarMessageTypeSuccess:
  500. strokeColor = [UIColor colorWithRed:0.0 green:1.0 blue:0.0 alpha:1.0];
  501. break;
  502. case TWMessageBarMessageTypeInfo:
  503. strokeColor = [UIColor colorWithRed:0.0 green:0.0 blue:1.0 alpha:1.0];
  504. break;
  505. default:
  506. break;
  507. }
  508. return strokeColor;
  509. }
  510. - (UIImage *)iconImageForMessageType:(TWMessageBarMessageType)type
  511. {
  512. UIImage *iconImage = nil;
  513. switch (type)
  514. {
  515. case TWMessageBarMessageTypeError:
  516. iconImage = [UIImage imageNamed:@"icon-error.png"];
  517. break;
  518. case TWMessageBarMessageTypeSuccess:
  519. iconImage = [UIImage imageNamed:@"icon-success.png"];
  520. break;
  521. case TWMessageBarMessageTypeInfo:
  522. iconImage = [UIImage imageNamed:@"icon-info.png"];
  523. break;
  524. default:
  525. break;
  526. }
  527. return iconImage;
  528. }
  529. #pragma --------------------------------------------------------------------------------------------
  530. #pragma mark ===== TabBarController =====
  531. #pragma --------------------------------------------------------------------------------------------
  532. - (void)createTabBarController
  533. {
  534. UITabBarItem *item;
  535. NSLayoutConstraint *constraint;
  536. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  537. UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  538. [CCAspect aspectTabBar:tabBarController.tabBar hidden:NO];
  539. // File
  540. item = [tabBarController.tabBar.items objectAtIndex:TabBarApplicationIndexFile];
  541. [item setTitle:NSLocalizedString(@"_home_", nil)];
  542. item.image = [UIImage imageNamed:image_tabBarFile];
  543. item.selectedImage = [UIImage imageNamed:image_tabBarFile];
  544. // Favorite - Local
  545. item = [tabBarController.tabBar.items objectAtIndex:TabBarApplicationIndexFavorite];
  546. if (app.isLocalStorage) {
  547. [item setTitle:NSLocalizedString(@"_local_storage_", nil)];
  548. item.image = [UIImage imageNamed:image_tabBarLocal];
  549. item.selectedImage = [UIImage imageNamed:image_tabBarLocal];
  550. } else {
  551. [item setTitle:NSLocalizedString(@"_favorites_", nil)];
  552. item.image = [UIImage imageNamed:image_tabBarFavorite];
  553. item.selectedImage = [UIImage imageNamed:image_tabBarFavorite];
  554. }
  555. // Hide (PLUS)
  556. item = [tabBarController.tabBar.items objectAtIndex:TabBarApplicationIndexHide];
  557. item.title = nil;
  558. item.image = nil;
  559. item.enabled = false;
  560. // Photos
  561. item = [tabBarController.tabBar.items objectAtIndex:TabBarApplicationIndexPhotos];
  562. [item setTitle:NSLocalizedString(@"_photo_camera_", nil)];
  563. item.image = [UIImage imageNamed:image_tabBarPhotos];
  564. item.selectedImage = [UIImage imageNamed:image_tabBarPhotos];
  565. // Settings
  566. item = [tabBarController.tabBar.items objectAtIndex:TabBarApplicationIndexSettings];
  567. [item setTitle:NSLocalizedString(@"_settings_", nil)];
  568. item.image = [UIImage imageNamed:image_tabBarSettings];
  569. item.selectedImage = [UIImage imageNamed:image_tabBarSettings];
  570. // Plus Button
  571. UIImage *buttonImage = [UIImage imageNamed:@"Plus"];
  572. UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
  573. button.tag = 99;
  574. button.frame = CGRectMake(0.0, 0.0, buttonImage.size.width, buttonImage.size.height);
  575. [button setBackgroundImage:buttonImage forState:UIControlStateNormal];
  576. [button setBackgroundImage:buttonImage forState:UIControlStateHighlighted];
  577. [button addTarget:self action:@selector(handleTouchTabbarCenter:) forControlEvents:UIControlEventTouchUpInside];
  578. [button setTranslatesAutoresizingMaskIntoConstraints:NO];
  579. [tabBarController.view addSubview:button];
  580. constraint =[NSLayoutConstraint constraintWithItem:button attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:tabBarController.view attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0];
  581. [tabBarController.view addConstraint:constraint];
  582. constraint =[NSLayoutConstraint constraintWithItem:button attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:tabBarController.view attribute:NSLayoutAttributeBottom multiplier:1.0 constant:-5];
  583. [tabBarController.view addConstraint:constraint];
  584. }
  585. - (void)plusButtonVisibile:(BOOL)visible
  586. {
  587. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  588. UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  589. UIButton *buttonPlus = [tabBarController.view viewWithTag:99];
  590. if (buttonPlus) {
  591. if (visible) {
  592. buttonPlus.hidden = false;
  593. } else {
  594. buttonPlus.hidden = true;
  595. }
  596. }
  597. }
  598. - (void)handleTouchTabbarCenter:(id)sender
  599. {
  600. CreateMenuAdd *menuAdd = [[CreateMenuAdd alloc] init];
  601. if ([CCUtility getCreateMenuEncrypted])
  602. [menuAdd createMenuEncryptedWithView:self.window.rootViewController.view];
  603. else
  604. [menuAdd createMenuPlainWithView:self.window.rootViewController.view];
  605. }
  606. - (void)updateApplicationIconBadgeNumber
  607. {
  608. // Core Data
  609. _queueNunDownload = [[CCCoreData getTableMetadataDownloadAccount:self.activeAccount] count];
  610. _queueNumDownloadWWan = [[CCCoreData getTableMetadataDownloadWWanAccount:self.activeAccount] count];
  611. _queueNumUpload = [[CCCoreData getTableMetadataUploadAccount:self.activeAccount] count];
  612. _queueNumUploadWWan = [[CCCoreData getTableMetadataUploadWWanAccount:self.activeAccount] count];
  613. // netQueueDownload
  614. for (NSOperation *operation in [app.netQueueDownload operations]) {
  615. if ([app.typeCloud isEqualToString:typeCloudOwnCloud] || [app.typeCloud isEqualToString:typeCloudNextcloud])
  616. if (((OCnetworking *)operation).isExecuting == NO) _queueNunDownload++;
  617. }
  618. // netQueueDownloadWWan
  619. for (NSOperation *operation in [app.netQueueDownloadWWan operations]) {
  620. if ([app.typeCloud isEqualToString:typeCloudOwnCloud] || [app.typeCloud isEqualToString:typeCloudNextcloud])
  621. if (((OCnetworking *)operation).isExecuting == NO) _queueNumDownloadWWan++;
  622. }
  623. // netQueueUpload
  624. for (NSOperation *operation in [app.netQueueUpload operations]) {
  625. if ([app.typeCloud isEqualToString:typeCloudOwnCloud] || [app.typeCloud isEqualToString:typeCloudNextcloud])
  626. if (((OCnetworking *)operation).isExecuting == NO) _queueNumUpload++;
  627. }
  628. // netQueueUploadWWan
  629. for (NSOperation *operation in [app.netQueueUploadWWan operations]) {
  630. if ([app.typeCloud isEqualToString:typeCloudOwnCloud] || [app.typeCloud isEqualToString:typeCloudNextcloud])
  631. if (((OCnetworking *)operation).isExecuting == NO) _queueNumUploadWWan++;
  632. }
  633. // Total
  634. NSUInteger total = _queueNunDownload + _queueNumDownloadWWan + _queueNumUpload + _queueNumUploadWWan + [CCCoreData countTableAutomaticUploadForAccount:self.activeAccount selector:nil];
  635. [UIApplication sharedApplication].applicationIconBadgeNumber = total;
  636. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  637. if ([[splitViewController.viewControllers firstObject] isKindOfClass:[UITabBarController class]]) {
  638. UITabBarController *tbc = [splitViewController.viewControllers firstObject];
  639. UITabBarItem *tbItem = [tbc.tabBar.items objectAtIndex:0];
  640. if (total > 0)
  641. [tbItem setBadgeValue:[NSString stringWithFormat:@"%li", (unsigned long)total]];
  642. else
  643. [tbItem setBadgeValue:nil];
  644. }
  645. }
  646. #pragma --------------------------------------------------------------------------------------------
  647. #pragma mark ===== Media Player Control =====
  648. #pragma --------------------------------------------------------------------------------------------
  649. - (void)remoteControlReceivedWithEvent:(UIEvent *)event
  650. {
  651. switch (event.subtype) {
  652. case UIEventSubtypeRemoteControlPlay:
  653. if (self.player.mediaPlayer) {
  654. NSMutableDictionary *songInfo = [[NSMutableDictionary alloc] init];
  655. if (self.player.mediaPlayer.nowPlayingItem.title)
  656. [songInfo setObject:self.player.mediaPlayer.nowPlayingItem.title forKey:MPMediaItemPropertyTitle];
  657. if (self.player.mediaPlayer.nowPlayingItem.artist)
  658. [songInfo setObject:self.player.mediaPlayer.nowPlayingItem.artist forKey:MPMediaItemPropertyArtist];
  659. [[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:songInfo];
  660. [self.player.mediaPlayer play];
  661. }
  662. break;
  663. case UIEventSubtypeRemoteControlPause:
  664. if (self.player.mediaPlayer) {
  665. [self.player.mediaPlayer pause];
  666. }
  667. break;
  668. case UIEventSubtypeRemoteControlNextTrack:
  669. // handle it break;
  670. case UIEventSubtypeRemoteControlPreviousTrack:
  671. // handle it break;
  672. default:
  673. break;
  674. }
  675. }
  676. - (BOOL)mediaPlayerViewWillStartPlaying:(LMMediaPlayerView *)playerView media:(LMMediaItem *)media
  677. {
  678. return YES;
  679. }
  680. #pragma --------------------------------------------------------------------------------------------
  681. #pragma mark ===== Manager Passcode =====
  682. #pragma --------------------------------------------------------------------------------------------
  683. - (BOOL)lockScreenManagerShouldShowLockScreen:(BKPasscodeLockScreenManager *)aManager
  684. {
  685. // fermiamo la data della sessione
  686. self.sessionePasscodeLock = nil;
  687. // se il block code è a zero esci con NON attivare la richiesta password
  688. if ([[CCUtility getBlockCode] length] == 0) return NO;
  689. // se non c'è attivo un account esci con NON attivare la richiesta password
  690. if ([self.activeAccount length] == 0) return NO;
  691. // se non c'è il passcode esci con NON attivare la richiesta password
  692. if ([[CCUtility getKeyChainPasscodeForUUID:[CCUtility getUUID]] length] == 0) return NO;
  693. // se non è attivo il OnlyLockDir esci con NON attivare la richiesta password
  694. if ([CCUtility getOnlyLockDir] && ![CCCoreData isBlockZone:self.serverUrl activeAccount:self.activeAccount]) return NO;
  695. return YES;
  696. }
  697. - (UIViewController *)lockScreenManagerPasscodeViewController:(BKPasscodeLockScreenManager *)aManager
  698. {
  699. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  700. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  701. viewController.delegate = self;
  702. viewController.title = _brand_;
  703. viewController.fromType = CCBKPasscodeFromLockScreen;
  704. viewController.inputViewTitlePassword = YES;
  705. if ([CCUtility getSimplyBlockCode]) {
  706. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  707. viewController.passcodeInputView.maximumLength = 6;
  708. } else {
  709. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  710. viewController.passcodeInputView.maximumLength = 64;
  711. }
  712. viewController.touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName:BKPasscodeKeychainServiceName];
  713. viewController.touchIDManager.promptText = [CCUtility localizableBrand:@"_scan_fingerprint_" table:nil];
  714. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  715. return navigationController;
  716. }
  717. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  718. {
  719. [aViewController dismissViewControllerAnimated:YES completion:nil];
  720. // is a lock screen
  721. if (aViewController.fromType == CCBKPasscodeFromLockScreen) {
  722. [aViewController dismissViewControllerAnimated:YES completion:nil];
  723. // start session Passcode Lock
  724. if ([CCCoreData isBlockZone:self.serverUrl activeAccount:self.activeAccount])
  725. self.sessionePasscodeLock = [NSDate date];
  726. }
  727. }
  728. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  729. {
  730. if (aViewController.fromType == CCBKPasscodeFromLockScreen || aViewController.fromType == CCBKPasscodeFromInit) {
  731. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  732. //self.lockUntilDate = nil;
  733. //self.failedAttempts = 0;
  734. aResultHandler(YES);
  735. } else aResultHandler(NO);
  736. } else aResultHandler(YES);
  737. }
  738. #pragma --------------------------------------------------------------------------------------------
  739. #pragma mark ===== reachabilityChanged =====
  740. #pragma --------------------------------------------------------------------------------------------
  741. -(void)reachabilityChanged:(SCNetworkReachabilityFlags)flags
  742. {
  743. if ([self.reachability isReachable]) {
  744. if (self.lastReachability == NO) {
  745. [self messageNotification:@"_network_available_" description:nil visible:YES delay:dismissAfterSecond type:TWMessageBarMessageTypeInfo];
  746. if (_activeMain)
  747. [_activeMain performSelector:@selector(requestServerInformation) withObject:nil afterDelay:3];
  748. }
  749. NSLog(@"[LOG] Reachability Changed: Reachable");
  750. self.lastReachability = YES;
  751. } else {
  752. if (self.lastReachability == YES) {
  753. [self messageNotification:@"_network_not_available_" description:nil visible:YES delay:dismissAfterSecond type:TWMessageBarMessageTypeInfo];
  754. }
  755. NSLog(@"[LOG] Reachability Changed: NOT Reachable");
  756. self.lastReachability = NO;
  757. }
  758. if ([self.reachability isReachableViaWiFi]) NSLog(@"[LOG] Reachability Changed: WiFi");
  759. if ([self.reachability isReachableViaWWAN]) NSLog(@"[LOG] Reachability Changed: WWAn");
  760. [[NSNotificationCenter defaultCenter] postNotificationName:@"setTitleCCMainNOAnimation" object:nil];
  761. }
  762. #pragma --------------------------------------------------------------------------------------------
  763. #pragma mark ===== Fetch =====
  764. #pragma --------------------------------------------------------------------------------------------
  765. - (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  766. {
  767. NSLog(@"[LOG] Start Fetch");
  768. // Verify new photo
  769. [[NSNotificationCenter defaultCenter] postNotificationName:@"initStateCameraUpload" object:nil];
  770. // after 20 sec verify Re
  771. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  772. [[CCNetworking sharedNetworking] automaticDownloadInError];
  773. [[CCNetworking sharedNetworking] automaticUploadInError];
  774. NSLog(@"[LOG] End Fetch 20 sec.");
  775. });
  776. // after 25 sec
  777. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 25 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  778. NSArray *records = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (session != NULL) AND (session != '')", self.activeAccount] context:nil];
  779. if ([records count] > 0) {
  780. completionHandler(UIBackgroundFetchResultNewData);
  781. } else {
  782. completionHandler(UIBackgroundFetchResultNoData);
  783. }
  784. NSLog(@"[LOG] End Fetch 25 sec.");
  785. });
  786. }
  787. #pragma --------------------------------------------------------------------------------------------
  788. #pragma mark ===== Operation Networking & Session =====
  789. #pragma --------------------------------------------------------------------------------------------
  790. - (void)cancelAllOperations
  791. {
  792. [_netQueue cancelAllOperations];
  793. [_netQueueDownload cancelAllOperations];
  794. [_netQueueDownloadWWan cancelAllOperations];
  795. [_netQueueUpload cancelAllOperations];
  796. [_netQueueUploadWWan cancelAllOperations];
  797. [self performSelector:@selector(updateApplicationIconBadgeNumber) withObject:nil afterDelay:0.5];
  798. }
  799. - (void)addNetworkingOperationQueue:(NSOperationQueue *)netQueue delegate:(id)delegate metadataNet:(CCMetadataNet *)metadataNet
  800. {
  801. id operation;
  802. BOOL activityIndicator = NO;
  803. // Activity Indicator
  804. if (netQueue == _netQueue)
  805. activityIndicator = YES;
  806. if ([_typeCloud isEqualToString:typeCloudOwnCloud] || [_typeCloud isEqualToString:typeCloudNextcloud])
  807. operation = [[OCnetworking alloc] initWithDelegate:delegate metadataNet:metadataNet withUser:_activeUser withPassword:_activePassword withUrl:_activeUrl withTypeCloud:_typeCloud activityIndicator:activityIndicator];
  808. [operation setQueuePriority:metadataNet.priority];
  809. [netQueue addOperation:operation];
  810. }
  811. - (NSMutableArray *)verifyExistsInQueuesDownloadSelector:(NSString *)selector
  812. {
  813. NSMutableArray *metadatasNet = [[NSMutableArray alloc] init];
  814. if ([app.typeCloud isEqualToString:typeCloudOwnCloud] || [app.typeCloud isEqualToString:typeCloudNextcloud]) {
  815. for (OCnetworking *operation in [self.netQueueDownload operations])
  816. if ([operation.metadataNet.selector isEqualToString:selector])
  817. [metadatasNet addObject:[operation.metadataNet copy]];
  818. for (OCnetworking *operation in [self.netQueueDownloadWWan operations])
  819. if ([operation.metadataNet.selector isEqualToString:selector])
  820. [metadatasNet addObject:[operation.metadataNet copy]];
  821. }
  822. return metadatasNet;
  823. }
  824. - (NSMutableArray *)verifyExistsInQueuesUploadSelector:(NSString *)selector
  825. {
  826. NSMutableArray *metadatasNet = [[NSMutableArray alloc] init];
  827. if ([app.typeCloud isEqualToString:typeCloudOwnCloud] || [app.typeCloud isEqualToString:typeCloudNextcloud]) {
  828. for (OCnetworking *operation in [self.netQueueUpload operations])
  829. if ([operation.metadataNet.selector isEqualToString:selector])
  830. [metadatasNet addObject:[operation.metadataNet copy]];
  831. for (OCnetworking *operation in [self.netQueueUploadWWan operations])
  832. if ([operation.metadataNet.selector isEqualToString:selector])
  833. [metadatasNet addObject:[operation.metadataNet copy]];
  834. }
  835. return metadatasNet;
  836. }
  837. - (void)loadTableAutomaticUploadForSelector:(NSString *)selector
  838. {
  839. // Only one
  840. if ([[self verifyExistsInQueuesUploadSelector:selector] count] > 1)
  841. return;
  842. // Verify num error if selectorUploadAutomaticAll
  843. if ([selector isEqualToString:selectorUploadAutomaticAll]) {
  844. NSUInteger count = [TableMetadata MR_countOfEntitiesWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (sessionSelector == %@) AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))", app.activeAccount, selectorUploadAutomaticAll,taskIdentifierError, taskIdentifierError]];
  845. #ifdef DEBUG
  846. NSArray *records = [[NSArray alloc] init];
  847. records = [TableMetadata MR_findAllWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (sessionSelector == %@) AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))", app.activeAccount, selectorUploadAutomaticAll,taskIdentifierError, taskIdentifierError]];
  848. #endif
  849. if (count >= 10) {
  850. [app messageNotification:@"_error_" description:@"_too_errors_automatic_all_" visible:YES delay:dismissAfterSecond type:TWMessageBarMessageTypeError];
  851. return;
  852. }
  853. }
  854. // Add Network queue
  855. CCMetadataNet *metadataNet = [CCCoreData getTableAutomaticUploadForAccount:self.activeAccount selector:selector context:nil];
  856. if (metadataNet) {
  857. NSOperationQueue *queue;
  858. if ([metadataNet.session containsString:@"wwan"])
  859. queue = app.netQueueUploadWWan;
  860. else
  861. queue = app.netQueueUpload;
  862. [self addNetworkingOperationQueue:queue delegate:app.activeMain metadataNet:metadataNet];
  863. }
  864. }
  865. - (void)verifyDownloadUploadInProgress
  866. {
  867. BOOL callVerifyDownload = NO;
  868. BOOL callVerifyUpload = NO;
  869. if ([[UIApplication sharedApplication] applicationState] != UIApplicationStateBackground) {
  870. NSLog(@"[LOG] Verify Download/Upload in progress now : %@ - Download %@ - Upload %@", [NSDate date], [self.sessionDateLastDownloadTasks dateByAddingTimeInterval:timerVerifySession], [self.sessionDateLastUploadTasks dateByAddingTimeInterval:timerVerifySession]);
  871. if ([[NSDate date] compare:[self.sessionDateLastDownloadTasks dateByAddingTimeInterval:timerVerifySession]] == NSOrderedDescending) {
  872. callVerifyDownload = YES;
  873. [[CCNetworking sharedNetworking] verifyDownloadInProgress];
  874. }
  875. if ([[NSDate date] compare:[self.sessionDateLastUploadTasks dateByAddingTimeInterval:timerVerifySession]] == NSOrderedDescending) {
  876. callVerifyUpload = YES;
  877. [[CCNetworking sharedNetworking] verifyUploadInProgress];
  878. }
  879. if (callVerifyDownload && callVerifyUpload) {
  880. NSLog(@"[LOG] Stop timer verify session");
  881. [self.timerVerifySessionInProgress invalidate];
  882. }
  883. }
  884. }
  885. // Notification change session
  886. - (void)sessionChanged:(NSNotification *)notification
  887. {
  888. NSURLSession *session;
  889. CCMetadata *metadata;
  890. NSURLSessionTask *task;
  891. for (id object in notification.object) {
  892. if ([object isKindOfClass:[NSURLSession class]])
  893. session = object;
  894. if ([object isKindOfClass:[CCMetadata class]])
  895. metadata = object;
  896. if ([object isKindOfClass:[NSURLSessionTask class]])
  897. task = object;
  898. }
  899. /*
  900. Task
  901. */
  902. if ([task isKindOfClass:[NSURLSessionDownloadTask class]])
  903. app.sessionDateLastDownloadTasks = [NSDate date];
  904. if ([task isKindOfClass:[NSURLSessionUploadTask class]])
  905. app.sessionDateLastUploadTasks = [NSDate date];
  906. if (metadata && [_listChangeTask objectForKey:metadata.fileID])
  907. dispatch_async(dispatch_get_main_queue(), ^{
  908. [self changeTask:metadata];
  909. });
  910. /*
  911. Session
  912. */
  913. if (session) {
  914. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  915. unsigned long numDownload = [downloadTasks count];
  916. unsigned long numUpload = [uploadTasks count];
  917. NSLog(@"[LOG] Num Download in queue %lu, num upload in queue %lu", numDownload, numUpload);
  918. }];
  919. }
  920. }
  921. - (void)changeTask:(CCMetadata *)metadata
  922. {
  923. if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"stopUpload"]) {
  924. // sessionTaskIdentifier on Stop
  925. [CCCoreData setMetadataSession:nil sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:taskIdentifierStop sessionTaskIdentifierPlist:taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", metadata.fileID, self.activeAccount] context:nil];
  926. }
  927. else if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"reloadUpload"]) {
  928. // V 1.8 if upload_session_wwan change in upload_session
  929. if ([metadata.session isEqualToString:upload_session_wwan])
  930. metadata.session = upload_session;
  931. [[CCNetworking sharedNetworking] uploadFileMetadata:metadata taskStatus:taskStatusResume];
  932. }
  933. else if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"reloadDownload"]) {
  934. BOOL downloadData = NO, downloadPlist = NO;
  935. if (metadata.sessionTaskIdentifier != taskIdentifierDone) downloadData = YES;
  936. if (metadata.sessionTaskIdentifierPlist != taskIdentifierDone) downloadPlist = YES;
  937. NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:metadata.directoryID activeAccount:metadata.account];
  938. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  939. [[CCNetworking sharedNetworking] downloadFile:metadata serverUrl:serverUrl downloadData:downloadData downloadPlist:downloadPlist selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost session:download_session taskStatus:taskStatusResume delegate:nil];
  940. });
  941. }
  942. else if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"cancelUpload"]) {
  943. // remove the file
  944. [CCCoreData deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", metadata.fileID, app.activeAccount]];
  945. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", app.directoryUser, metadata.fileID] error:nil];
  946. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, metadata.fileID] error:nil];
  947. }
  948. else if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"cancelDownload"]) {
  949. [CCCoreData setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:taskIdentifierDone sessionTaskIdentifierPlist:taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", metadata.fileID, self.activeAccount] context:nil];
  950. }
  951. // remove ChangeTask (fileID) from the list
  952. [_listChangeTask removeObjectForKey:metadata.fileID];
  953. // delete progress
  954. [_listProgressMetadata removeObjectForKey:metadata.fileID];
  955. // Detail
  956. if (_activeDetail)
  957. [_activeDetail progressTask:nil serverUrl:nil cryptated:NO progress:0];
  958. // Refresh
  959. if (_activeMain && [_listChangeTask count] == 0)
  960. [_activeMain getDataSourceWithReloadTableView:metadata.directoryID fileID:nil selector:nil];
  961. }
  962. - (void)dropAutomaticUploadWithSelector:(NSString *)selector
  963. {
  964. [CCCoreData flushTableAutomaticUploadAccount:self.activeAccount selector:selector];
  965. // Update icon badge number
  966. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1.0 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  967. [self updateApplicationIconBadgeNumber];
  968. });
  969. }
  970. #pragma --------------------------------------------------------------------------------------------
  971. #pragma mark ===== Open CCUploadFromOtherUpp =====
  972. #pragma --------------------------------------------------------------------------------------------
  973. - (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
  974. {
  975. return YES;
  976. }
  977. // Method called from iOS system to send a file from other app.
  978. - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
  979. {
  980. NSLog(@"[LOG] URL from %@ application", sourceApplication);
  981. NSLog(@"[LOG] the path is: %@", url.path);
  982. NSArray *splitedUrl = [url.path componentsSeparatedByString:@"/"];
  983. self.fileNameUpload = [NSString stringWithFormat:@"%@",[splitedUrl objectAtIndex:([splitedUrl count]-1)]];
  984. NSString *passcode = [CCUtility getKeyChainPasscodeForUUID:[CCUtility getUUID]];
  985. if (self.activeAccount && [passcode length]) {
  986. [[NSFileManager defaultManager]moveItemAtPath:[[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Inbox"] stringByAppendingPathComponent:self.fileNameUpload] toPath:[NSString stringWithFormat:@"%@/%@", self.directoryUser, self.fileNameUpload] error:nil];
  987. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  988. UINavigationController *splitNavigationController = [splitViewController.viewControllers firstObject];
  989. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"CCUploadFromOtherUpp" bundle:nil] instantiateViewControllerWithIdentifier:@"CCUploadNavigationViewController"];
  990. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  991. [splitNavigationController presentViewController:navigationController animated:YES completion:nil];
  992. });
  993. }
  994. // remove from InBox
  995. [[NSFileManager defaultManager] removeItemAtPath:[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Inbox"] error:nil];
  996. return YES;
  997. }
  998. #pragma --------------------------------------------------------------------------------------------
  999. #pragma mark ===== UPGRADE =====
  1000. #pragma --------------------------------------------------------------------------------------------
  1001. - (void)upgrade
  1002. {
  1003. #ifdef DEBUG
  1004. // [CCCoreData flushTableGPS];
  1005. // [CCCoreData setGeoInformationLocalNull];
  1006. #endif
  1007. NSString *actualVersion = [CCUtility getVersionCryptoCloud];
  1008. /* ---------------------- UPGRADE VERSION ----------------------- */
  1009. if (([actualVersion compare:@"2.13" options:NSNumericSearch] == NSOrderedAscending)) {
  1010. [CCCoreData flushTableDirectoryAccount:nil];
  1011. [CCCoreData flushTableLocalFileAccount:nil];
  1012. [CCCoreData flushTableMetadataAccount:nil];
  1013. }
  1014. if (([actualVersion compare:@"2.15" options:NSNumericSearch] == NSOrderedAscending)) {
  1015. [CCCoreData flushTableGPS];
  1016. [CCCoreData setGeoInformationLocalNull];
  1017. }
  1018. if (([actualVersion compare:@"2.17" options:NSNumericSearch] == NSOrderedAscending)) {
  1019. [CCCoreData clearAllDateReadDirectory];
  1020. [CCCoreData flushTableMetadataAccount:nil];
  1021. }
  1022. }
  1023. @end