AppDelegate.m 58 KB

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