AppDelegate.m 58 KB

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