AppDelegate.m 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671
  1. //
  2. // AppDelegate.m
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 04/09/14.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "AppDelegate.h"
  24. #import "iRate.h"
  25. #import "AFURLSessionManager.h"
  26. #import "CCNetworking.h"
  27. #import "CCGraphics.h"
  28. #import "CCPhotos.h"
  29. #import "CCSynchronize.h"
  30. #import "CCMain.h"
  31. #import "CCDetail.h"
  32. #import <Fabric/Fabric.h>
  33. #import <Crashlytics/Crashlytics.h>
  34. #import "JDStatusBarNotification.h"
  35. #import "NCBridgeSwift.h"
  36. #import "NCAutoUpload.h"
  37. /* Remove comment for activate Firebase and push notification */
  38. //#import "Firebase.h"
  39. //@interface AppDelegate () <UNUserNotificationCenterDelegate, FIRMessagingDelegate>
  40. @interface AppDelegate () <UNUserNotificationCenterDelegate>
  41. {
  42. }
  43. @end
  44. @implementation AppDelegate
  45. + (void)initialize
  46. {
  47. [iRate sharedInstance].daysUntilPrompt = 5;
  48. [iRate sharedInstance].usesUntilPrompt = 5;
  49. [iRate sharedInstance].promptForNewVersionIfUserRated = true;
  50. [[NSUserDefaults standardUserDefaults] registerDefaults:@{@"UserAgent": [CCUtility getUserAgent]}];
  51. //enable preview mode
  52. //[iRate sharedInstance].previewMode = YES;
  53. }
  54. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  55. {
  56. // Brand
  57. if ([NCBrandOptions sharedInstance].use_firebase) {
  58. /* Remove comment for activate Firebase and push notification */
  59. /*
  60. //In order for this to work, proper GoogleService-Info.plist must be included
  61. @try {
  62. [FIRApp configure];
  63. } @catch (NSException *exception) {
  64. NSLog(@"[LOG] Something went wrong while configuring Firebase");
  65. }
  66. if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_9_x_Max) {
  67. UIUserNotificationType allNotificationTypes =(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge);
  68. UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:allNotificationTypes categories:nil];
  69. [[UIApplication sharedApplication] registerUserNotificationSettings:settings];
  70. } else {
  71. // iOS 10 or later
  72. #if defined(__IPHONE_10_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
  73. // For iOS 10 display notification (sent via APNS)
  74. [UNUserNotificationCenter currentNotificationCenter].delegate = self;
  75. UNAuthorizationOptions authOptions = UNAuthorizationOptionAlert | UNAuthorizationOptionSound | UNAuthorizationOptionBadge;
  76. [[UNUserNotificationCenter currentNotificationCenter] requestAuthorizationWithOptions:authOptions completionHandler:^(BOOL granted, NSError * _Nullable error) {
  77. }];
  78. // For iOS 10 data message (sent via FCM)
  79. [FIRMessaging messaging].remoteMessageDelegate = self;
  80. #endif
  81. }
  82. */
  83. }
  84. NSString *dir;
  85. NSURL *dirGroup = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:[NCBrandOptions sharedInstance].capabilitiesGroups];
  86. NSLog(@"[LOG] Start program group -----------------");
  87. NSLog(@"%@", dirGroup);
  88. NSLog(@"[LOG] Start program application -----------");
  89. NSLog(@"%@", [[CCUtility getDirectoryLocal] stringByDeletingLastPathComponent]);
  90. NSLog(@"[LOG] -------------------------------------");
  91. // create Directory local => Documents
  92. dir = [CCUtility getDirectoryLocal];
  93. if (![[NSFileManager defaultManager] fileExistsAtPath: dir] && [dir length])
  94. [[NSFileManager defaultManager] createDirectoryAtPath:dir withIntermediateDirectories:YES attributes:nil error:nil];
  95. // create Directory audio => Library, Application Support, audio
  96. dir = [CCUtility getDirectoryAudio];
  97. if (![[NSFileManager defaultManager] fileExistsAtPath: dir] && [dir length])
  98. [[NSFileManager defaultManager] createDirectoryAtPath:dir withIntermediateDirectories:YES attributes:nil error:nil];
  99. // create dir Database Nextcloud
  100. dir = [[dirGroup URLByAppendingPathComponent:appDatabaseNextcloud] path];
  101. if (![[NSFileManager defaultManager] fileExistsAtPath:dir])
  102. [[NSFileManager defaultManager] createDirectoryAtPath:dir withIntermediateDirectories:YES attributes:nil error:nil];
  103. NSError *error = nil;
  104. [[NSFileManager defaultManager] setAttributes:@{NSFileProtectionKey:NSFileProtectionNone} ofItemAtPath:dir error:&error];
  105. // Verify upgrade
  106. if ([self upgrade]) {
  107. // Set account, if no exists clear all
  108. tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  109. if (account == nil) {
  110. // remove all the keys Chain
  111. [CCUtility deleteAllChainStore];
  112. // remove all the App group key
  113. [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:[[NSBundle mainBundle] bundleIdentifier]];
  114. } else {
  115. [self settingActiveAccount:account.account activeUrl:account.url activeUser:account.user activeUserID:account.userID activePassword:account.password];
  116. }
  117. }
  118. // Operation Queue OC Networking
  119. _netQueue = [[NSOperationQueue alloc] init];
  120. _netQueue.name = k_queue;
  121. _netQueue.maxConcurrentOperationCount = k_maxConcurrentOperation;
  122. // Add notification change session
  123. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sessionChanged:) name:k_networkingSessionNotification object:nil];
  124. // Initialization Share
  125. self.sharesID = [NSMutableDictionary new];
  126. self.sharesLink = [NSMutableDictionary new];
  127. self.sharesUserAndGroup = [NSMutableDictionary new];
  128. // Initialization Notification
  129. self.listOfNotifications = [NSMutableArray new];
  130. // Background Fetch
  131. [application setMinimumBackgroundFetchInterval:UIApplicationBackgroundFetchIntervalMinimum];
  132. // Initialization List
  133. self.listProgressMetadata = [[NSMutableDictionary alloc] init];
  134. self.listChangeTask = [[NSMutableDictionary alloc] init];
  135. self.listMainVC = [[NSMutableDictionary alloc] init];
  136. // setting Reachable in back
  137. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  138. self.reachability = [Reachability reachabilityForInternetConnection];
  139. self.lastReachability = [self.reachability isReachable];
  140. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];
  141. [self.reachability startNotifier];
  142. });
  143. //AV Session
  144. [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:nil];
  145. //[[AVAudioSession sharedInstance] setActive:YES error:nil];
  146. [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
  147. // How to hide UINavigationBar 1px bottom line < iOS 11
  148. [[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init] forBarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault];
  149. [[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]];
  150. // passcode
  151. [[BKPasscodeLockScreenManager sharedManager] setDelegate:self];
  152. dispatch_async(dispatch_get_main_queue(), ^{
  153. [[BKPasscodeLockScreenManager sharedManager] showLockScreen:NO];
  154. });
  155. // Quick Actions
  156. if([[UIApplicationShortcutItem class] respondsToSelector:@selector(new)]) {
  157. [self configDynamicShortcutItems];
  158. UIApplicationShortcutItem *shortcutItem = [launchOptions objectForKeyedSubscript:UIApplicationLaunchOptionsShortcutItemKey];
  159. if (shortcutItem)
  160. [self handleShortCutItem:shortcutItem];
  161. }
  162. // Start Timer
  163. self.timerProcessAutoDownloadUpload = [NSTimer scheduledTimerWithTimeInterval:k_timerProcessAutoDownloadUpload target:self selector:@selector(processAutoDownloadUpload) userInfo:nil repeats:YES];
  164. self.timerUpdateApplicationIconBadgeNumber = [NSTimer scheduledTimerWithTimeInterval:k_timerUpdateApplicationIconBadgeNumber target:self selector:@selector(updateApplicationIconBadgeNumber) userInfo:nil repeats:YES];
  165. // Registration Push Notification
  166. UIUserNotificationType types = UIUserNotificationTypeSound | UIUserNotificationTypeBadge | UIUserNotificationTypeAlert;
  167. UIUserNotificationSettings *notificationSettings = [UIUserNotificationSettings settingsForTypes:types categories:nil];
  168. [application registerUserNotificationSettings:notificationSettings];
  169. // Fabric
  170. [Fabric with:@[[Crashlytics class]]];
  171. [self logUser];
  172. return YES;
  173. }
  174. //
  175. // L' applicazione si dimetterà dallo stato di attivo
  176. //
  177. - (void)applicationWillResignActive:(UIApplication *)application
  178. {
  179. [_activeMain closeAllMenu];
  180. [self updateApplicationIconBadgeNumber];
  181. }
  182. //
  183. // L' applicazione entrerà in primo piano (attivo solo dopo il background)
  184. //
  185. - (void)applicationWillEnterForeground:(UIApplication *)application
  186. {
  187. // refresh active Main
  188. if (_activeMain) {
  189. [_activeMain reloadDatasource];
  190. [_activeMain readFileReloadFolder];
  191. }
  192. // refresh Photos tab
  193. if (_activePhotos) {
  194. [_activePhotos reloadDatasourceForced];
  195. }
  196. // Initializations
  197. [self applicationInitialized];
  198. }
  199. //
  200. // L' applicazione entrerà in primo piano (attivo sempre)
  201. //
  202. - (void)applicationDidBecomeActive:(UIApplication *)application
  203. {
  204. // Verify lock
  205. [self verifyLockOnLoadAutoUpload];
  206. }
  207. //
  208. // L' applicazione è entrata nello sfondo
  209. //
  210. - (void)applicationDidEnterBackground:(UIApplication *)application
  211. {
  212. NSLog(@"[LOG] Enter in Background");
  213. [[CCQuickActions quickActionsManager] closeAll];
  214. [[BKPasscodeLockScreenManager sharedManager] showLockScreen:YES];
  215. if([[UIDevice currentDevice] respondsToSelector:@selector(isMultitaskingSupported)]) {
  216. __block UIBackgroundTaskIdentifier background_task;
  217. background_task = [application beginBackgroundTaskWithExpirationHandler:^ {
  218. //Clean up code. Tell the system that we are done.
  219. [application endBackgroundTask: background_task];
  220. background_task = UIBackgroundTaskInvalid;
  221. }];
  222. }
  223. }
  224. //
  225. // L'applicazione terminerà
  226. //
  227. - (void)applicationWillTerminate:(UIApplication *)application
  228. {
  229. NSLog(@"[LOG] bye bye, Nextcloud !");
  230. }
  231. //
  232. // Application Initialized
  233. //
  234. - (void)applicationInitialized
  235. {
  236. // Test Maintenance
  237. if (self.maintenanceMode)
  238. return;
  239. // Execute : now
  240. NSLog(@"[LOG] Update Folder Photo");
  241. NSString *autoUploadPath = [[NCManageDatabase sharedInstance] getAccountAutoUploadPath:_activeUrl];
  242. if ([autoUploadPath length] > 0) {
  243. NSString *fileName = [[NCManageDatabase sharedInstance] getAccountAutoUploadFileName];
  244. NSString *serverUrl = [[NCManageDatabase sharedInstance] getAccountAutoUploadDirectory:_activeUrl];
  245. [[CCSynchronize sharedSynchronize] readFileForFolder:fileName serverUrl:serverUrl selector:selectorReadFileFolder];
  246. }
  247. // Execute : after 1 sec.
  248. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  249. // verify Download
  250. [[CCNetworking sharedNetworking] verifyDownloadInProgress];
  251. if (_activeMain)
  252. [[CCNetworking sharedNetworking] verifyDownloadInError:self.activeMain];
  253. // verify Upload
  254. [[CCNetworking sharedNetworking] verifyUploadInProgress];
  255. [[CCNetworking sharedNetworking] verifyUploadInErrorOrWait];
  256. if (_activeMain) {
  257. NSLog(@"[LOG] Request Server Capabilities");
  258. [_activeMain requestServerCapabilities];
  259. }
  260. if (_activeMain && [[NCBrandOptions sharedInstance] use_middlewarePing]) {
  261. NSLog(@"[LOG] Middleware Ping");
  262. [_activeMain middlewarePing];
  263. }
  264. NSLog(@"[LOG] Initialize Auto upload");
  265. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  266. NSLog(@"[LOG] Listning Favorites");
  267. [_activeFavorites readListingFavorites];
  268. });
  269. }
  270. #pragma --------------------------------------------------------------------------------------------
  271. #pragma mark ===== Login =====
  272. #pragma --------------------------------------------------------------------------------------------
  273. - (void)openLoginView:(id)delegate loginType:(enumLoginType)loginType
  274. {
  275. BOOL loginWeb = NO;
  276. @synchronized (self) {
  277. // only for personalized LoginWeb [customer]
  278. if ([NCBrandOptions sharedInstance].use_login_web_personalized) {
  279. if (_activeLoginWeb == nil) {
  280. _activeLoginWeb = [CCLoginWeb new];
  281. _activeLoginWeb.delegate = delegate;
  282. _activeLoginWeb.loginType = loginType;
  283. _activeLoginWeb.urlBase = [[NCBrandOptions sharedInstance] loginBaseUrl];
  284. dispatch_async(dispatch_get_main_queue(), ^ {
  285. [_activeLoginWeb presentModalWithDefaultTheme:delegate];
  286. });
  287. }
  288. return;
  289. }
  290. // ------------------- Nextcloud -------------------------
  291. //
  292. // Login flow : LoginWeb
  293. if (loginType == loginModifyPasswordUser) {
  294. tableAccount *account = [[NCManageDatabase sharedInstance] getAccountActive];
  295. if (account.loginFlow)
  296. loginWeb = YES;
  297. }
  298. if (loginWeb) {
  299. if (_activeLoginWeb == nil) {
  300. _activeLoginWeb = [CCLoginWeb new];
  301. _activeLoginWeb.delegate = delegate;
  302. _activeLoginWeb.loginType = loginType;
  303. _activeLoginWeb.urlBase = self.activeUrl;
  304. dispatch_async(dispatch_get_main_queue(), ^ {
  305. [_activeLoginWeb presentModalWithDefaultTheme:delegate];
  306. });
  307. }
  308. } else {
  309. if (_activeLogin == nil) {
  310. _activeLogin = [[UIStoryboard storyboardWithName:@"CCLogin" bundle:nil] instantiateViewControllerWithIdentifier:@"CCLoginNextcloud"];
  311. _activeLogin.delegate = delegate;
  312. _activeLogin.loginType = loginType;
  313. dispatch_async(dispatch_get_main_queue(), ^ {
  314. [delegate presentViewController:_activeLogin animated:YES completion:nil];
  315. });
  316. }
  317. }
  318. }
  319. }
  320. #pragma --------------------------------------------------------------------------------------------
  321. #pragma mark ===== Setting Active Account for all APP =====
  322. #pragma --------------------------------------------------------------------------------------------
  323. - (void)settingActiveAccount:(NSString *)activeAccount activeUrl:(NSString *)activeUrl activeUser:(NSString *)activeUser activeUserID:(NSString *)activeUserID activePassword:(NSString *)activePassword
  324. {
  325. self.activeAccount = activeAccount;
  326. self.activeUrl = activeUrl;
  327. self.activeUser = activeUser;
  328. self.activeUserID = activeUserID;
  329. self.activePassword = activePassword;
  330. self.directoryUser = [CCUtility getDirectoryActiveUser:activeUser activeUrl:activeUrl];
  331. // Setting Account to CCNetworking
  332. [[CCNetworking sharedNetworking] settingAccount];
  333. }
  334. #pragma --------------------------------------------------------------------------------------------
  335. #pragma mark ===== Push Notification =====
  336. #pragma --------------------------------------------------------------------------------------------
  337. - (void)subscribingNextcloudServerFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  338. {
  339. NSLog(@"[LOG] Error Subscribing Nextcloud Server %@", message);
  340. }
  341. - (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
  342. {
  343. [application registerForRemoteNotifications];
  344. }
  345. /* Remove comment for activate Firebase and push notification */
  346. /*
  347. - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
  348. {
  349. // test
  350. if (self.activeAccount.length == 0)
  351. return;
  352. // FIREBASE registered token
  353. [[FIRInstanceID instanceID] setAPNSToken:deviceToken type:FIRInstanceIDAPNSTokenTypeSandbox];
  354. NSString *pushToken = [[FIRInstanceID instanceID] token];
  355. // NSString *pushToken = [[[[deviceToken description] stringByReplacingOccurrencesOfString: @"<" withString: @""] stringByReplacingOccurrencesOfString: @">" withString: @""] stringByReplacingOccurrencesOfString: @" " withString: @""];
  356. NSString *pushTokenHash = [[NCEndToEndEncryption sharedManager] createSHA512:pushToken];
  357. NSDictionary *devicePushKey = [NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"DevicePushKey-Info" ofType:@"plist"]];
  358. #ifdef DEBUG
  359. NSString *devicePublicKey = [devicePushKey objectForKey:@"devicePublicKeyDevelopment"];
  360. #else
  361. NSString *devicePublicKey = [devicePushKey objectForKey:@"devicePublicKeyProduction"];
  362. #endif
  363. if ([devicePublicKey length] > 0 && [pushTokenHash length] > 0) {
  364. NSLog(@"[LOG] Firebase InstanceID push token: %@", pushToken);
  365. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:app.activeAccount];
  366. NSDictionary *options = [[NSDictionary alloc] initWithObjectsAndKeys:pushToken, @"pushToken", pushTokenHash, @"pushTokenHash", devicePublicKey, @"devicePublicKey", nil];
  367. metadataNet.action = actionSubscribingNextcloudServer;
  368. metadataNet.options = options;
  369. [app addNetworkingOperationQueue:app.netQueue delegate:self metadataNet:metadataNet];
  370. }
  371. }
  372. */
  373. - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
  374. {
  375. NSLog(@"[LOG] Error register remote notification %@", error);
  376. }
  377. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
  378. UIApplicationState state = [application applicationState];
  379. if (state == UIApplicationStateInactive || state == UIApplicationStateBackground) {
  380. NSLog(@"[LOG] Receive Notification on Inactive or Background state");
  381. } else {
  382. NSLog(@"[LOG] Receive Notification on Active state");
  383. }
  384. // If you are receiving a notification message while your app is in the background,
  385. // this callback will not be fired till the user taps on the notification launching the application.
  386. // TODO: Handle data of notification
  387. // Print message ID.
  388. //if (userInfo[kGCMMessageIDKey]) {
  389. // NSLog(@"Message ID: %@", userInfo[kGCMMessageIDKey]);
  390. //}
  391. // Print full message.
  392. NSLog(@"[LOG] %@", userInfo);
  393. }
  394. - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  395. {
  396. UIApplicationState state = [application applicationState];
  397. // Print message ID.
  398. //if (userInfo[kGCMMessageIDKey]) {
  399. // NSLog(@"Message ID: %@", userInfo[kGCMMessageIDKey]);
  400. //}
  401. // Print full message.
  402. NSLog(@"[LOG] %@", userInfo);
  403. if (state == UIApplicationStateBackground || (state == UIApplicationStateInactive)) {
  404. } else if (state == UIApplicationStateInactive) {
  405. // user tapped notification
  406. completionHandler(UIBackgroundFetchResultNewData);
  407. } else {
  408. // app is active
  409. completionHandler(UIBackgroundFetchResultNoData);
  410. }
  411. }
  412. /* Remove comment for activate Firebase and push notification */
  413. #pragma FIREBASE
  414. /*
  415. - (void)tokenRefreshNotification:(NSNotification *)notification {
  416. // Note that this callback will be fired everytime a new token is generated, including the first
  417. // time. So if you need to retrieve the token as soon as it is available this is where that
  418. // should be done.
  419. NSString *refreshedToken = [[FIRInstanceID instanceID] token];
  420. NSLog(@"[LOG] InstanceID token: %@", refreshedToken);
  421. // Connect to FCM since connection may have failed when attempted before having a token.
  422. [self connectToFcm];
  423. // TODO: If necessary send token to application server.
  424. }
  425. - (void)connectToFcm {
  426. // Won't connect since there is no token
  427. if (![[FIRInstanceID instanceID] token]) {
  428. return;
  429. }
  430. // Disconnect previous FCM connection if it exists.
  431. [[FIRMessaging messaging] disconnect];
  432. [[FIRMessaging messaging] connectWithCompletion:^(NSError * _Nullable error) {
  433. if (error != nil) {
  434. NSLog(@"[LOG] Unable to connect to FCM. %@", error);
  435. } else {
  436. NSLog(@"[LOG] Connected to FCM.");
  437. }
  438. }];
  439. }
  440. #if defined(__IPHONE_10_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
  441. // Receive data message on iOS 10 devices while app is in the foreground.
  442. - (void)applicationReceivedRemoteMessage:(FIRMessagingRemoteMessage *)remoteMessage {
  443. // Print full message
  444. NSLog(@"[LOG] %@", remoteMessage.appData);
  445. }
  446. #endif
  447. */
  448. #pragma --------------------------------------------------------------------------------------------
  449. #pragma mark ===== Quick Actions - ShotcutItem =====
  450. #pragma --------------------------------------------------------------------------------------------
  451. - (void)configDynamicShortcutItems
  452. {
  453. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  454. UIApplicationShortcutIcon *shortcutPhotosIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:@"quickActionPhotos"];
  455. UIApplicationShortcutIcon *shortcutUploadIcon = [UIApplicationShortcutIcon iconWithTemplateImageName:@"quickActionUpload"];
  456. UIApplicationShortcutItem *shortcutPhotos = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.photos", bundleId] localizedTitle:NSLocalizedString(@"_photo_camera_", nil) localizedSubtitle:nil icon:shortcutPhotosIcon userInfo:nil];
  457. UIApplicationShortcutItem *shortcutUpload = [[UIApplicationShortcutItem alloc] initWithType:[NSString stringWithFormat:@"%@.upload", bundleId] localizedTitle:NSLocalizedString(@"_upload_file_", nil) localizedSubtitle:nil icon:shortcutUploadIcon userInfo:nil];
  458. // add the array to our app
  459. if (shortcutUpload && shortcutPhotos)
  460. [UIApplication sharedApplication].shortcutItems = @[shortcutUpload, shortcutPhotos];
  461. }
  462. - (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL))completionHandler
  463. {
  464. BOOL handledShortCutItem = [self handleShortCutItem:shortcutItem];
  465. completionHandler(handledShortCutItem);
  466. }
  467. - (BOOL)handleShortCutItem:(UIApplicationShortcutItem *)shortcutItem
  468. {
  469. BOOL handled = NO;
  470. NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
  471. NSString *shortcutPhotos = [NSString stringWithFormat:@"%@.photos", bundleId];
  472. NSString *shortcutUpload = [NSString stringWithFormat:@"%@.upload", bundleId];
  473. NSString *shortcutUploadEncrypted = [NSString stringWithFormat:@"%@.uploadEncrypted", bundleId];
  474. if ([shortcutItem.type isEqualToString:shortcutUpload] && self.activeAccount) {
  475. dispatch_async(dispatch_get_main_queue(), ^{
  476. if (_activeMain) {
  477. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  478. if (splitViewController.isCollapsed) {
  479. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  480. for (UINavigationController *nvc in tbc.viewControllers) {
  481. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  482. [nvc popToRootViewControllerAnimated:NO];
  483. }
  484. [tbc setSelectedIndex: k_tabBarApplicationIndexFile];
  485. } else {
  486. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  487. [nvcDetail popToRootViewControllerAnimated:NO];
  488. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  489. [tbc setSelectedIndex: k_tabBarApplicationIndexFile];
  490. }
  491. [_activeMain.navigationController popToRootViewControllerAnimated:NO];
  492. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  493. [[CCQuickActions quickActionsManager] startQuickActionsViewController:_activeMain];
  494. });
  495. }
  496. });
  497. handled = YES;
  498. }
  499. else if ([shortcutItem.type isEqualToString:shortcutUploadEncrypted] && self.activeAccount) {
  500. dispatch_async(dispatch_get_main_queue(), ^{
  501. if (_activeMain) {
  502. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  503. if (splitViewController.isCollapsed) {
  504. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  505. for (UINavigationController *nvc in tbc.viewControllers) {
  506. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  507. [nvc popToRootViewControllerAnimated:NO];
  508. }
  509. [tbc setSelectedIndex: k_tabBarApplicationIndexFile];
  510. } else {
  511. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  512. [nvcDetail popToRootViewControllerAnimated:NO];
  513. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  514. [tbc setSelectedIndex: k_tabBarApplicationIndexFile];
  515. }
  516. [_activeMain.navigationController popToRootViewControllerAnimated:NO];
  517. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  518. [[CCQuickActions quickActionsManager] startQuickActionsViewController:_activeMain];
  519. });
  520. }
  521. });
  522. handled = YES;
  523. }
  524. else if ([shortcutItem.type isEqualToString:shortcutPhotos] && self.activeAccount) {
  525. dispatch_async(dispatch_get_main_queue(), ^{
  526. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  527. if (splitViewController.isCollapsed) {
  528. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  529. for (UINavigationController *nvc in tbc.viewControllers) {
  530. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  531. [nvc popToRootViewControllerAnimated:NO];
  532. }
  533. [tbc setSelectedIndex: k_tabBarApplicationIndexPhotos];
  534. } else {
  535. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  536. [nvcDetail popToRootViewControllerAnimated:NO];
  537. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  538. [tbc setSelectedIndex: k_tabBarApplicationIndexPhotos];
  539. }
  540. });
  541. handled = YES;
  542. }
  543. return handled;
  544. }
  545. #pragma --------------------------------------------------------------------------------------------
  546. #pragma mark ===== StatusBar & ApplicationIconBadgeNumber =====
  547. #pragma --------------------------------------------------------------------------------------------
  548. - (void)messageNotification:(NSString *)title description:(NSString *)description visible:(BOOL)visible delay:(NSTimeInterval)delay type:(TWMessageBarMessageType)type errorCode:(NSInteger)errorcode
  549. {
  550. static NSInteger errorCodePrev = 0;
  551. dispatch_async(dispatch_get_main_queue(), ^{
  552. if (visible) {
  553. if (errorcode == kCFURLErrorNotConnectedToInternet || errorcode == k_CCErrorNetworkNowAvailable) {
  554. if (errorCodePrev != errorcode)
  555. [JDStatusBarNotification showWithStatus:NSLocalizedString(title, nil) dismissAfter:delay styleName:JDStatusBarStyleDefault];
  556. errorCodePrev = errorcode;
  557. } else {
  558. if (description.length > 0) {
  559. [TWMessageBarManager sharedInstance].styleSheet = self;
  560. [[TWMessageBarManager sharedInstance] showMessageWithTitle:[NSString stringWithFormat:@"%@\n", NSLocalizedString(title, nil)] description:NSLocalizedString(description, nil) type:type duration:delay];
  561. }
  562. }
  563. } else {
  564. [[TWMessageBarManager sharedInstance] hideAllAnimated:YES];
  565. }
  566. });
  567. }
  568. - (UIColor *)backgroundColorForMessageType:(TWMessageBarMessageType)type
  569. {
  570. UIColor *backgroundColor = nil;
  571. switch (type)
  572. {
  573. case TWMessageBarMessageTypeError:
  574. backgroundColor = [UIColor colorWithRed:1.0 green:0.0 blue:0.0 alpha:0.90];
  575. break;
  576. case TWMessageBarMessageTypeSuccess:
  577. backgroundColor = [UIColor colorWithRed:0.588 green:0.797 blue:0.000 alpha:0.90];
  578. break;
  579. case TWMessageBarMessageTypeInfo:
  580. backgroundColor = [NCBrandColor sharedInstance].brand;
  581. break;
  582. default:
  583. break;
  584. }
  585. return backgroundColor;
  586. }
  587. - (UIColor *)strokeColorForMessageType:(TWMessageBarMessageType)type
  588. {
  589. UIColor *strokeColor = nil;
  590. switch (type)
  591. {
  592. case TWMessageBarMessageTypeError:
  593. strokeColor = [UIColor colorWithRed:1.0 green:0.0 blue:0.0 alpha:1.0];
  594. break;
  595. case TWMessageBarMessageTypeSuccess:
  596. strokeColor = [UIColor colorWithRed:0.0 green:1.0 blue:0.0 alpha:1.0];
  597. break;
  598. case TWMessageBarMessageTypeInfo:
  599. strokeColor = [UIColor colorWithRed:0.0 green:0.0 blue:1.0 alpha:1.0];
  600. break;
  601. default:
  602. break;
  603. }
  604. return strokeColor;
  605. }
  606. - (UIImage *)iconImageForMessageType:(TWMessageBarMessageType)type
  607. {
  608. UIImage *iconImage = nil;
  609. switch (type)
  610. {
  611. case TWMessageBarMessageTypeError:
  612. iconImage = [UIImage imageNamed:@"icon-error.png"];
  613. break;
  614. case TWMessageBarMessageTypeSuccess:
  615. iconImage = [UIImage imageNamed:@"icon-success.png"];
  616. break;
  617. case TWMessageBarMessageTypeInfo:
  618. iconImage = [UIImage imageNamed:@"icon-info.png"];
  619. break;
  620. default:
  621. break;
  622. }
  623. return iconImage;
  624. }
  625. - (void)updateApplicationIconBadgeNumber
  626. {
  627. // Test Maintenance
  628. if (self.maintenanceMode)
  629. return;
  630. NSInteger total = 0;
  631. NSInteger queueDownload = [[[NCManageDatabase sharedInstance] getTableMetadataDownload] count] + [[[NCManageDatabase sharedInstance] getTableMetadataDownloadWWan] count];
  632. for (tableMetadata *record in [[NCManageDatabase sharedInstance] getTableMetadataUpload]) {
  633. if (record.e2eEncrypted == false)
  634. total++;
  635. }
  636. for (tableMetadata *record in [[NCManageDatabase sharedInstance] getTableMetadataUploadWWan]) {
  637. if (record.e2eEncrypted == false)
  638. total++;
  639. }
  640. // Total
  641. total = total + queueDownload + [[NCManageDatabase sharedInstance] countQueueDownloadWithSession:nil] + [[NCManageDatabase sharedInstance] countQueueUploadWithSession:nil];
  642. [UIApplication sharedApplication].applicationIconBadgeNumber = total;
  643. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  644. if ([[splitViewController.viewControllers firstObject] isKindOfClass:[UITabBarController class]]) {
  645. UITabBarController *tbc = [splitViewController.viewControllers firstObject];
  646. UITabBarItem *tbItem = [tbc.tabBar.items objectAtIndex:0];
  647. if (total > 0) {
  648. [tbItem setBadgeValue:[NSString stringWithFormat:@"%li", (unsigned long)total]];
  649. } else {
  650. [tbItem setBadgeValue:nil];
  651. NSDictionary* userInfo = @{@"fileID": @"", @"serverUrl": @"", @"progress": [NSNumber numberWithFloat:0]};
  652. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  653. }
  654. }
  655. }
  656. #pragma --------------------------------------------------------------------------------------------
  657. #pragma mark ===== TabBarController =====
  658. #pragma --------------------------------------------------------------------------------------------
  659. - (void)createTabBarController:(UITabBarController *)tabBarController
  660. {
  661. UITabBarItem *item;
  662. NSLayoutConstraint *constraint;
  663. CGFloat multiplier = 0;
  664. CGFloat safeAreaBottom = 0;
  665. if (@available(iOS 11, *)) {
  666. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom/2;
  667. }
  668. [self aspectTabBar:tabBarController.tabBar hidden:NO];
  669. // File
  670. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexFile];
  671. [item setTitle:NSLocalizedString(@"_home_", nil)];
  672. item.image = [UIImage imageNamed:@"tabBarFiles"];
  673. item.selectedImage = [UIImage imageNamed:@"tabBarFiles"];
  674. // Favorites
  675. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexFavorite];
  676. [item setTitle:NSLocalizedString(@"_favorites_", nil)];
  677. item.image = [UIImage imageNamed:@"tabBarFavorite"];
  678. item.selectedImage = [UIImage imageNamed:@"tabBarFavorite"];
  679. // (PLUS)
  680. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexPlusHide];
  681. item.title = @"";
  682. item.image = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarPlus"] color:[UIColor clearColor]];
  683. item.enabled = false;
  684. // Photos
  685. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexPhotos];
  686. [item setTitle:NSLocalizedString(@"_photo_camera_", nil)];
  687. item.image = [UIImage imageNamed:@"tabBarPhotos"];
  688. item.selectedImage = [UIImage imageNamed:@"tabBarPhotos"];
  689. // More
  690. item = [tabBarController.tabBar.items objectAtIndex: k_tabBarApplicationIndexMore];
  691. [item setTitle:NSLocalizedString(@"_more_", nil)];
  692. item.image = [UIImage imageNamed:@"tabBarMore"];
  693. item.selectedImage = [UIImage imageNamed:@"tabBarMore"];
  694. // Plus Button
  695. UIImage *buttonImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarPlus"] color:[NCBrandColor sharedInstance].brandElement];
  696. UIButton *buttonPlus = [UIButton buttonWithType:UIButtonTypeCustom];
  697. buttonPlus.tag = 99;
  698. [buttonPlus setBackgroundImage:buttonImage forState:UIControlStateNormal];
  699. [buttonPlus setBackgroundImage:buttonImage forState:UIControlStateHighlighted];
  700. [buttonPlus addTarget:self action:@selector(handleTouchTabbarCenter:) forControlEvents:UIControlEventTouchUpInside];
  701. [buttonPlus setTranslatesAutoresizingMaskIntoConstraints:NO];
  702. [tabBarController.tabBar addSubview:buttonPlus];
  703. constraint =[NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0];
  704. [tabBarController.view addConstraint:constraint];
  705. multiplier = 1 * (tabBarController.tabBar.frame.size.height - safeAreaBottom) / tabBarController.tabBar.frame.size.height;
  706. constraint =[NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeCenterY multiplier:multiplier constant:0];
  707. [tabBarController.view addConstraint:constraint];
  708. multiplier = 0.8 * (tabBarController.tabBar.frame.size.height - safeAreaBottom) / tabBarController.tabBar.frame.size.height;
  709. constraint =[NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeHeight multiplier:multiplier constant:0];
  710. [tabBarController.view addConstraint:constraint];
  711. constraint =[NSLayoutConstraint constraintWithItem:buttonPlus attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:tabBarController.tabBar attribute:NSLayoutAttributeHeight multiplier:multiplier constant:0];
  712. [tabBarController.view addConstraint:constraint];
  713. }
  714. - (void)aspectNavigationControllerBar:(UINavigationBar *)nav online:(BOOL)online hidden:(BOOL)hidden
  715. {
  716. nav.translucent = NO;
  717. nav.barTintColor = [NCBrandColor sharedInstance].brand;
  718. nav.tintColor = [NCBrandColor sharedInstance].brandText;
  719. [nav setTitleTextAttributes:@{NSForegroundColorAttributeName : [NCBrandColor sharedInstance].brandText}];
  720. // Change bar bottom line shadow
  721. nav.shadowImage = [CCGraphics generateSinglePixelImageWithColor:[NCBrandColor sharedInstance].brand];
  722. if (!online)
  723. [nav setTitleTextAttributes:@{NSForegroundColorAttributeName : [NCBrandColor sharedInstance].connectionNo}];
  724. nav.hidden = hidden;
  725. [nav setAlpha:1];
  726. }
  727. - (void)aspectTabBar:(UITabBar *)tab hidden:(BOOL)hidden
  728. {
  729. tab.translucent = NO;
  730. tab.barTintColor = [NCBrandColor sharedInstance].tabBar;
  731. tab.tintColor = [NCBrandColor sharedInstance].brandElement;
  732. tab.hidden = hidden;
  733. [tab setAlpha:1];
  734. }
  735. - (void)plusButtonVisibile:(BOOL)visible
  736. {
  737. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  738. UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  739. UIButton *buttonPlus = [tabBarController.view viewWithTag:99];
  740. UIImage *buttonImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarPlus"] color:[NCBrandColor sharedInstance].brandElement];
  741. [buttonPlus setBackgroundImage:buttonImage forState:UIControlStateNormal];
  742. [buttonPlus setBackgroundImage:buttonImage forState:UIControlStateHighlighted];
  743. if (buttonPlus) {
  744. if (visible) {
  745. buttonPlus.hidden = false;
  746. } else {
  747. buttonPlus.hidden = true;
  748. }
  749. }
  750. }
  751. - (void)handleTouchTabbarCenter:(id)sender
  752. {
  753. // Test Maintenance
  754. if (self.maintenanceMode)
  755. return;
  756. UIView *view = [[(UIButton *)sender superview] superview];
  757. CreateMenuAdd *menuAdd = [[CreateMenuAdd alloc] initWithThemingColor:[NCBrandColor sharedInstance].brandElement];
  758. [menuAdd createMenuWithView:view];
  759. }
  760. - (void)selectedTabBarController:(NSInteger)index
  761. {
  762. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  763. if (splitViewController.isCollapsed) {
  764. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  765. for (UINavigationController *nvc in tbc.viewControllers) {
  766. if ([nvc.topViewController isKindOfClass:[CCDetail class]])
  767. [nvc popToRootViewControllerAnimated:NO];
  768. }
  769. [tbc setSelectedIndex: index];
  770. } else {
  771. UINavigationController *nvcDetail = splitViewController.viewControllers.lastObject;
  772. [nvcDetail popToRootViewControllerAnimated:NO];
  773. UITabBarController *tbc = splitViewController.viewControllers.firstObject;
  774. [tbc setSelectedIndex: index];
  775. }
  776. }
  777. - (NSString *)getTabBarControllerActiveServerUrl
  778. {
  779. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  780. UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  781. NSString *serverUrl = [CCUtility getHomeServerUrlActiveUrl:self.activeUrl];
  782. NSInteger index = tabBarController.selectedIndex;
  783. // select active serverUrl
  784. if (index == k_tabBarApplicationIndexFile) {
  785. serverUrl = self.activeMain.serverUrl;
  786. } else if (index == k_tabBarApplicationIndexFavorite) {
  787. if (self.activeFavorites.serverUrl)
  788. serverUrl = self.activeFavorites.serverUrl;
  789. } else if (index == k_tabBarApplicationIndexPhotos) {
  790. serverUrl = [[NCManageDatabase sharedInstance] getAccountAutoUploadPath:self.activeUrl];
  791. }
  792. return serverUrl;
  793. }
  794. #pragma --------------------------------------------------------------------------------------------
  795. #pragma mark ===== Theming Color =====
  796. #pragma --------------------------------------------------------------------------------------------
  797. - (void)settingThemingColorBrand
  798. {
  799. if (self.activeAccount.length == 0 || self.maintenanceMode)
  800. return;
  801. if ([NCBrandOptions sharedInstance].use_themingColor) {
  802. tableCapabilities *capabilities = [[NCManageDatabase sharedInstance] getCapabilites];
  803. [CCGraphics settingThemingColor:capabilities.themingColor themingColorElement:capabilities.themingColorElement themingColorText:capabilities.themingColorText];
  804. } else {
  805. [NCBrandColor sharedInstance].brand = [NCBrandColor sharedInstance].customer;
  806. [NCBrandColor sharedInstance].brandElement = [NCBrandColor sharedInstance].customer;
  807. [NCBrandColor sharedInstance].brandText = [NCBrandColor sharedInstance].customerText;
  808. }
  809. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"changeTheming" object:nil];
  810. }
  811. - (void)changeTheming:(UIViewController *)vc
  812. {
  813. // Change Navigation & TabBar color
  814. vc.navigationController.navigationBar.barTintColor = [NCBrandColor sharedInstance].brand;
  815. vc.tabBarController.tabBar.tintColor = [NCBrandColor sharedInstance].brandElement;
  816. // Change bar bottom line shadow
  817. vc.navigationController.navigationBar.shadowImage = [CCGraphics generateSinglePixelImageWithColor:[NCBrandColor sharedInstance].brand];
  818. // Change button Plus
  819. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  820. UITabBarController *tabBarController = [splitViewController.viewControllers firstObject];
  821. UIButton *button = [tabBarController.view viewWithTag:99];
  822. UIImage *buttonImage = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"tabBarPlus"] color:[NCBrandColor sharedInstance].brandElement];
  823. [button setBackgroundImage:buttonImage forState:UIControlStateNormal];
  824. [button setBackgroundImage:buttonImage forState:UIControlStateHighlighted];
  825. // Tint Color GLOBAL WINDOW
  826. [self.window setTintColor:[NCBrandColor sharedInstance].textView];
  827. }
  828. #pragma --------------------------------------------------------------------------------------------
  829. #pragma mark ===== Manager Passcode =====
  830. #pragma --------------------------------------------------------------------------------------------
  831. - (BOOL)lockScreenManagerShouldShowLockScreen:(BKPasscodeLockScreenManager *)aManager
  832. {
  833. // ServerUrl active
  834. NSString *serverUrl = self.activeMain.serverUrl;
  835. BOOL isBlockZone = false;
  836. // fermiamo la data della sessione
  837. self.sessionePasscodeLock = nil;
  838. // se il block code è a zero esci con NON attivare la richiesta password
  839. if ([[CCUtility getBlockCode] length] == 0) return NO;
  840. // se non c'è attivo un account esci con NON attivare la richiesta password
  841. if ([self.activeAccount length] == 0) return NO;
  842. // se non è attivo il OnlyLockDir esci con NON attivare la richiesta password
  843. if (serverUrl && _activeUrl) {
  844. while (![serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:_activeUrl]]) {
  845. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND serverUrl = %@", self.activeAccount, serverUrl]];
  846. if (directory.lock) {
  847. isBlockZone = true;
  848. break;
  849. } else {
  850. serverUrl = [CCUtility deletingLastPathComponentFromServerUrl:serverUrl];
  851. if (serverUrl == self.activeUrl)
  852. break;
  853. }
  854. }
  855. }
  856. if ([CCUtility getOnlyLockDir] && !isBlockZone) return NO;
  857. return YES;
  858. }
  859. - (UIViewController *)lockScreenManagerPasscodeViewController:(BKPasscodeLockScreenManager *)aManager
  860. {
  861. CCBKPasscode *viewController = [[CCBKPasscode alloc] initWithNibName:nil bundle:nil];
  862. viewController.type = BKPasscodeViewControllerCheckPasscodeType;
  863. viewController.delegate = self;
  864. viewController.title = [NCBrandOptions sharedInstance].brand;
  865. viewController.fromType = CCBKPasscodeFromLockScreen;
  866. viewController.inputViewTitlePassword = YES;
  867. if ([CCUtility getSimplyBlockCode]) {
  868. viewController.passcodeStyle = BKPasscodeInputViewNumericPasscodeStyle;
  869. viewController.passcodeInputView.maximumLength = 6;
  870. } else {
  871. viewController.passcodeStyle = BKPasscodeInputViewNormalPasscodeStyle;
  872. viewController.passcodeInputView.maximumLength = 64;
  873. }
  874. viewController.touchIDManager = [[BKTouchIDManager alloc] initWithKeychainServiceName: k_serviceShareKeyChain];
  875. viewController.touchIDManager.promptText = NSLocalizedString(@"_scan_fingerprint_", nil);
  876. UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
  877. return navigationController;
  878. }
  879. - (void)passcodeViewController:(CCBKPasscode *)aViewController didFinishWithPasscode:(NSString *)aPasscode
  880. {
  881. [aViewController dismissViewControllerAnimated:YES completion:nil];
  882. // is a lock screen
  883. if (aViewController.fromType == CCBKPasscodeFromLockScreen) {
  884. [aViewController dismissViewControllerAnimated:YES completion:nil];
  885. // start session Passcode Lock
  886. BOOL isBlockZone = false;
  887. NSString *serverUrl = self.activeMain.serverUrl;
  888. while (![serverUrl isEqualToString:[CCUtility getHomeServerUrlActiveUrl:_activeUrl]]) {
  889. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND serverUrl = %@", self.activeAccount, serverUrl]];
  890. if (directory.lock) {
  891. isBlockZone = true;
  892. break;
  893. } else {
  894. serverUrl = [CCUtility deletingLastPathComponentFromServerUrl:serverUrl];
  895. if (serverUrl == self.activeUrl)
  896. break;
  897. }
  898. }
  899. if (isBlockZone)
  900. self.sessionePasscodeLock = [NSDate date];
  901. }
  902. }
  903. - (void)passcodeViewController:(CCBKPasscode *)aViewController authenticatePasscode:(NSString *)aPasscode resultHandler:(void (^)(BOOL))aResultHandler
  904. {
  905. if (aViewController.fromType == CCBKPasscodeFromLockScreen || aViewController.fromType == CCBKPasscodeFromInit) {
  906. if ([aPasscode isEqualToString:[CCUtility getBlockCode]]) {
  907. //self.lockUntilDate = nil;
  908. //self.failedAttempts = 0;
  909. aResultHandler(YES);
  910. } else aResultHandler(NO);
  911. } else aResultHandler(YES);
  912. }
  913. #pragma --------------------------------------------------------------------------------------------
  914. #pragma mark ===== reachabilityChanged =====
  915. #pragma --------------------------------------------------------------------------------------------
  916. -(void)reachabilityChanged:(SCNetworkReachabilityFlags)flags
  917. {
  918. if ([self.reachability isReachable]) {
  919. if (self.lastReachability == NO) {
  920. [self messageNotification:@"_network_available_" description:nil visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:k_CCErrorNetworkNowAvailable];
  921. if (_activeMain)
  922. [_activeMain performSelector:@selector(requestServerCapabilities) withObject:nil afterDelay:3];
  923. }
  924. NSLog(@"[LOG] Reachability Changed: Reachable");
  925. self.lastReachability = YES;
  926. } else {
  927. if (self.lastReachability == YES) {
  928. [self messageNotification:@"_network_not_available_" description:nil visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:kCFURLErrorNotConnectedToInternet];
  929. }
  930. NSLog(@"[LOG] Reachability Changed: NOT Reachable");
  931. self.lastReachability = NO;
  932. }
  933. if ([self.reachability isReachableViaWiFi]) NSLog(@"[LOG] Reachability Changed: WiFi");
  934. if ([self.reachability isReachableViaWWAN]) NSLog(@"[LOG] Reachability Changed: WWAn");
  935. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"setTitleMain" object:nil];
  936. }
  937. #pragma --------------------------------------------------------------------------------------------
  938. #pragma mark ===== Fetch =====
  939. #pragma --------------------------------------------------------------------------------------------
  940. - (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
  941. {
  942. NSLog(@"[LOG] Start perform Fetch With Completion Handler");
  943. // Verify new photo
  944. [[NCAutoUpload sharedInstance] initStateAutoUpload];
  945. // after 20 sec
  946. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  947. NSArray *records = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND session != ''", self.activeAccount] sorted:nil ascending:NO];
  948. if ([records count] > 0) {
  949. completionHandler(UIBackgroundFetchResultNewData);
  950. } else {
  951. completionHandler(UIBackgroundFetchResultNoData);
  952. }
  953. NSLog(@"[LOG] End 20 sec. perform Fetch With Completion Handler");
  954. });
  955. }
  956. #pragma --------------------------------------------------------------------------------------------
  957. #pragma mark ===== Operation Networking & Session =====
  958. #pragma --------------------------------------------------------------------------------------------
  959. //
  960. // Method called by the system when all the background task has end
  961. //
  962. - (void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(NSString *)identifier completionHandler:(void (^)(void))completionHandler
  963. {
  964. NSLog(@"[LOG] Start handle Events For Background URLSession: %@", identifier);
  965. // after 20 sec
  966. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 20 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  967. self.backgroundSessionCompletionHandler = completionHandler;
  968. void (^completionHandler)() = self.backgroundSessionCompletionHandler;
  969. self.backgroundSessionCompletionHandler = nil;
  970. completionHandler();
  971. NSLog(@"[LOG] End 20 sec. Start handle Events For Background URLSession: %@", identifier);
  972. });
  973. }
  974. - (void)addNetworkingOperationQueue:(NSOperationQueue *)netQueue delegate:(id)delegate metadataNet:(CCMetadataNet *)metadataNet
  975. {
  976. id operation;
  977. operation = [[OCnetworking alloc] initWithDelegate:delegate metadataNet:metadataNet withUser:_activeUser withUserID:_activeUserID withPassword:_activePassword withUrl:_activeUrl];
  978. [operation setQueuePriority:metadataNet.priority];
  979. [netQueue addOperation:operation];
  980. }
  981. // Notification change session
  982. - (void)sessionChanged:(NSNotification *)notification
  983. {
  984. NSURLSession *session;
  985. NSString *fileID;
  986. NSURLSessionTask *task;
  987. for (id object in notification.object) {
  988. if ([object isKindOfClass:[NSURLSession class]])
  989. session = object;
  990. if ([object isKindOfClass:[NSString class]])
  991. fileID = object;
  992. if ([object isKindOfClass:[NSURLSessionTask class]])
  993. task = object;
  994. }
  995. /*
  996. Task
  997. */
  998. if (fileID && [_listChangeTask objectForKey:fileID])
  999. dispatch_async(dispatch_get_main_queue(), ^{
  1000. [self changeTask:fileID];
  1001. });
  1002. /*
  1003. Session
  1004. */
  1005. if (session) {
  1006. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  1007. unsigned long numDownload = [downloadTasks count];
  1008. unsigned long numUpload = [uploadTasks count];
  1009. NSLog(@"[LOG] Num Download in queue %lu, num upload in queue %lu", numDownload, numUpload);
  1010. }];
  1011. }
  1012. }
  1013. - (void)changeTask:(NSString *)fileID
  1014. {
  1015. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  1016. if (!metadata) return;
  1017. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  1018. if (!serverUrl) return;
  1019. if ([[_listChangeTask objectForKey:fileID] isEqualToString:@"stopUpload"]) {
  1020. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierStop predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  1021. }
  1022. else if ([[_listChangeTask objectForKey:fileID] isEqualToString:@"reloadUpload"]) {
  1023. // V 1.8 if upload_session_wwan change in upload_session
  1024. if ([metadata.session isEqualToString:k_upload_session_wwan])
  1025. metadata.session = k_upload_session;
  1026. [[CCNetworking sharedNetworking] uploadFileMetadata:metadata taskStatus:k_taskStatusResume];
  1027. }
  1028. else if ([[_listChangeTask objectForKey:fileID] isEqualToString:@"reloadDownload"]) {
  1029. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.1 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  1030. [[CCNetworking sharedNetworking] downloadFile:metadata.fileName fileID:fileID serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost session:k_download_session taskStatus:k_taskStatusResume delegate:self.activeMain];
  1031. });
  1032. }
  1033. else if ([[_listChangeTask objectForKey:metadata.fileID] isEqualToString:@"cancelUpload"]) {
  1034. // remove the file
  1035. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", self.directoryUser, fileID] error:nil];
  1036. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.ico", self.directoryUser, fileID] error:nil];
  1037. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID] clearDateReadDirectoryID:nil];
  1038. }
  1039. else if ([[_listChangeTask objectForKey:fileID] isEqualToString:@"cancelDownload"]) {
  1040. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  1041. }
  1042. // remove ChangeTask (fileID) from the list
  1043. [_listChangeTask removeObjectForKey:fileID];
  1044. // delete progress
  1045. [_listProgressMetadata removeObjectForKey:fileID];
  1046. // Progress Task
  1047. NSDictionary* userInfo = @{@"fileID": (fileID), @"serverUrl": (serverUrl), @"cryptated": ([NSNumber numberWithBool:NO]), @"progress": ([NSNumber numberWithFloat:0.0])};
  1048. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  1049. // Refresh
  1050. if (_activeMain && [_listChangeTask count] == 0) {
  1051. [_activeMain reloadDatasource:serverUrl];
  1052. }
  1053. }
  1054. #pragma --------------------------------------------------------------------------------------------
  1055. #pragma mark ===== Process Auto Upload < k_timerProcess seconds > =====
  1056. #pragma --------------------------------------------------------------------------------------------
  1057. - (void)processAutoDownloadUpload
  1058. {
  1059. // Test Maintenance
  1060. if (self.maintenanceMode)
  1061. return;
  1062. // BACKGROND & FOREGROUND
  1063. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) {
  1064. // ONLY BACKGROUND
  1065. NSLog(@"[LOG] -PROCESS-AUTO-UPLOAD-");
  1066. [self performSelectorOnMainThread:@selector(loadAutoDownloadUpload:) withObject:[NSNumber numberWithInt:k_maxConcurrentOperationDownloadUploadBackground] waitUntilDone:NO];
  1067. } else {
  1068. // ONLY FOREFROUND
  1069. NSLog(@"[LOG] -PROCESS-AUTO-UPLOAD-");
  1070. [self performSelectorOnMainThread:@selector(loadAutoDownloadUpload:) withObject:[NSNumber numberWithInt:k_maxConcurrentOperationDownloadUpload] waitUntilDone:NO];
  1071. }
  1072. }
  1073. - (void)loadAutoDownloadUpload:(NSNumber *)maxConcurrent
  1074. {
  1075. CCMetadataNet *metadataNet;
  1076. // E2EE : not in background
  1077. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) {
  1078. metadataNet = [[NCManageDatabase sharedInstance] getQueueUploadLock];
  1079. if (metadataNet) {
  1080. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND serverUrl = %@ AND e2eEncrypted = 1", self.activeAccount, metadataNet.serverUrl]];
  1081. if (directory != nil)
  1082. return;
  1083. }
  1084. }
  1085. // Stop Timer
  1086. [_timerProcessAutoDownloadUpload invalidate];
  1087. NSInteger maxConcurrentDownloadUpload = [maxConcurrent integerValue];
  1088. NSInteger counterDownloadInSession = [[[NCManageDatabase sharedInstance] getTableMetadataDownload] count] + [[[NCManageDatabase sharedInstance] getTableMetadataDownloadWWan] count];
  1089. NSInteger counterUploadInSessionAndInLock = [[[NCManageDatabase sharedInstance] getTableMetadataUpload] count] + [[[NCManageDatabase sharedInstance] getTableMetadataUploadWWan] count] + [[[NCManageDatabase sharedInstance] getLockQueueUpload] count];
  1090. NSInteger counterUploadInLock = [[[NCManageDatabase sharedInstance] getQueueUploadWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND lock = true", self.activeAccount]] count];
  1091. NSInteger counterNewUpload = 0;
  1092. // ------------------------- <selector Auto Download> -------------------------
  1093. while (counterDownloadInSession < maxConcurrentDownloadUpload) {
  1094. metadataNet = [[NCManageDatabase sharedInstance] getQueueDownload];
  1095. if (metadataNet) {
  1096. [[CCNetworking sharedNetworking] downloadFile:metadataNet.fileName fileID:metadataNet.fileID serverUrl:metadataNet.serverUrl selector:metadataNet.selector selectorPost:metadataNet.selectorPost session:metadataNet.session taskStatus:metadataNet.taskStatus delegate:self.activeMain];
  1097. } else
  1098. break;
  1099. counterDownloadInSession = [[[NCManageDatabase sharedInstance] getTableMetadataDownload] count] + [[[NCManageDatabase sharedInstance] getTableMetadataDownloadWWan] count];
  1100. }
  1101. // ------------------------- <selector Auto Upload> -------------------------
  1102. if (counterUploadInSessionAndInLock < maxConcurrentDownloadUpload && counterUploadInLock < 1) {
  1103. metadataNet = [[NCManageDatabase sharedInstance] getQueueUploadLockWithSelector:selectorUploadAutoUpload];
  1104. if (metadataNet) {
  1105. [[CCNetworking sharedNetworking] uploadFileFromAssetLocalIdentifier:metadataNet delegate:_activeMain];
  1106. counterNewUpload++;
  1107. }
  1108. counterUploadInSessionAndInLock = [[[NCManageDatabase sharedInstance] getTableMetadataUpload] count] + [[[NCManageDatabase sharedInstance] getTableMetadataUploadWWan] count] + [[[NCManageDatabase sharedInstance] getLockQueueUpload] count];
  1109. }
  1110. // ------------------------- <selector Auto Upload All> ----------------------
  1111. // Verify num error k_maxErrorAutoUploadAll after STOP (100)
  1112. NSArray *metadatas = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND sessionSelector = %@ AND sessionTaskIdentifier = %i", _activeAccount, selectorUploadAutoUploadAll, k_taskIdentifierError] sorted:nil ascending:NO];
  1113. NSInteger errorCount = [metadatas count];
  1114. if (errorCount >= k_maxErrorAutoUploadAll) {
  1115. [self messageNotification:@"_error_" description:@"_too_errors_automatic_all_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:0];
  1116. [[NCManageDatabase sharedInstance] addActivityClient:@"" fileID:@"" action:k_activityDebugActionAutoUpload selector:selectorUploadAutoUploadAll note:@"_too_errors_automatic_all_" type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  1117. } else {
  1118. if (counterUploadInSessionAndInLock < maxConcurrentDownloadUpload && counterUploadInLock < 1) {
  1119. metadataNet = [[NCManageDatabase sharedInstance] getQueueUploadLockWithSelector:selectorUploadAutoUploadAll];
  1120. if (metadataNet) {
  1121. [[CCNetworking sharedNetworking] uploadFileFromAssetLocalIdentifier:metadataNet delegate:_activeMain];
  1122. counterNewUpload++;
  1123. }
  1124. counterUploadInSessionAndInLock = [[[NCManageDatabase sharedInstance] getTableMetadataUpload] count] + [[[NCManageDatabase sharedInstance] getTableMetadataUploadWWan] count] + [[[NCManageDatabase sharedInstance] getLockQueueUpload] count];
  1125. }
  1126. }
  1127. // ------------------------- <selector Upload File> -------------------------
  1128. if (counterUploadInSessionAndInLock < maxConcurrentDownloadUpload && counterUploadInLock < 1) {
  1129. metadataNet = [[NCManageDatabase sharedInstance] getQueueUploadLockWithSelector:selectorUploadFile];
  1130. if (metadataNet) {
  1131. [[CCNetworking sharedNetworking] uploadFileFromAssetLocalIdentifier:metadataNet delegate:_activeMain];
  1132. counterNewUpload++;
  1133. }
  1134. counterUploadInSessionAndInLock = [[[NCManageDatabase sharedInstance] getTableMetadataUpload] count] + [[[NCManageDatabase sharedInstance] getTableMetadataUploadWWan] count] + [[[NCManageDatabase sharedInstance] getLockQueueUpload] count];
  1135. }
  1136. // In background verify Upload in error
  1137. if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) {
  1138. [[CCNetworking sharedNetworking] verifyUploadInErrorOrWait];
  1139. }
  1140. // Start Timer
  1141. _timerProcessAutoDownloadUpload = [NSTimer scheduledTimerWithTimeInterval:k_timerProcessAutoDownloadUpload target:self selector:@selector(processAutoDownloadUpload) userInfo:nil repeats:YES];
  1142. }
  1143. - (void)verifyLockOnLoadAutoUpload
  1144. {
  1145. // Test Maintenance
  1146. if (self.maintenanceMode || self.activeAccount.length == 0)
  1147. return;
  1148. NSInteger counterUploadInSession = [[[NCManageDatabase sharedInstance] getTableMetadataUpload] count] + [[[NCManageDatabase sharedInstance] getTableMetadataUploadWWan] count];
  1149. NSArray *tableMetadatasInLock = [[NCManageDatabase sharedInstance] getLockQueueUpload];
  1150. if (counterUploadInSession == 0 && [tableMetadatasInLock count] > 0) {
  1151. // Unlock
  1152. for (tableMetadata *metadata in tableMetadatasInLock) {
  1153. if ([[NCManageDatabase sharedInstance] isTableInvalidated:metadata] == NO)
  1154. [[NCManageDatabase sharedInstance] unlockQueueUploadWithAssetLocalIdentifier:metadata.assetLocalIdentifier];
  1155. }
  1156. }
  1157. }
  1158. #pragma --------------------------------------------------------------------------------------------
  1159. #pragma mark ===== Open CCUploadFromOtherUpp =====
  1160. #pragma --------------------------------------------------------------------------------------------
  1161. - (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url
  1162. {
  1163. return YES;
  1164. }
  1165. // Method called from iOS system to send a file from other app.
  1166. - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
  1167. {
  1168. NSLog(@"[LOG] URL from %@ application", sourceApplication);
  1169. NSLog(@"[LOG] the path is: %@", url.path);
  1170. NSArray *splitedUrl = [url.path componentsSeparatedByString:@"/"];
  1171. self.fileNameUpload = [NSString stringWithFormat:@"%@",[splitedUrl objectAtIndex:([splitedUrl count]-1)]];
  1172. if (self.activeAccount) {
  1173. [[NSFileManager defaultManager]moveItemAtPath:[[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Inbox"] stringByAppendingPathComponent:self.fileNameUpload] toPath:[NSString stringWithFormat:@"%@/%@", self.directoryUser, self.fileNameUpload] error:nil];
  1174. UISplitViewController *splitViewController = (UISplitViewController *)self.window.rootViewController;
  1175. UINavigationController *splitNavigationController = [splitViewController.viewControllers firstObject];
  1176. UINavigationController *navigationController = [[UIStoryboard storyboardWithName:@"CCUploadFromOtherUpp" bundle:nil] instantiateViewControllerWithIdentifier:@"CCUploadNavigationViewController"];
  1177. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  1178. [splitNavigationController presentViewController:navigationController animated:YES completion:nil];
  1179. });
  1180. }
  1181. // remove from InBox
  1182. [[NSFileManager defaultManager] removeItemAtPath:[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Inbox"] error:nil];
  1183. return YES;
  1184. }
  1185. #pragma --------------------------------------------------------------------------------------------
  1186. #pragma mark ===== Crashlytics =====
  1187. #pragma --------------------------------------------------------------------------------------------
  1188. - (void) logUser
  1189. {
  1190. if (self.activeAccount.length > 0)
  1191. [CrashlyticsKit setUserName:self.activeAccount];
  1192. }
  1193. #pragma --------------------------------------------------------------------------------------------
  1194. #pragma mark ===== Maintenance Mode =====
  1195. #pragma --------------------------------------------------------------------------------------------
  1196. - (void)maintenanceMode:(BOOL)mode
  1197. {
  1198. self.maintenanceMode = mode;
  1199. }
  1200. #pragma --------------------------------------------------------------------------------------------
  1201. #pragma mark ===== UPGRADE =====
  1202. #pragma --------------------------------------------------------------------------------------------
  1203. - (BOOL)upgrade
  1204. {
  1205. #ifdef DEBUG
  1206. //self.maintenanceMode = YES;
  1207. #endif
  1208. NSString *actualVersion = [CCUtility getVersion];
  1209. NSString *actualBuild = [CCUtility getBuild];
  1210. /* ---------------------- UPGRADE VERSION ----------------------- */
  1211. // VERSION < 2.17.6
  1212. if (([actualVersion compare:@"2.17.6" options:NSNumericSearch] == NSOrderedAscending)) {
  1213. // Remove All old Photo Library
  1214. [[NCManageDatabase sharedInstance] clearTable:[tablePhotoLibrary class] account:nil];
  1215. }
  1216. // VERSION == 2.17.6
  1217. if ([actualVersion isEqualToString:@"2.17.6"]) {
  1218. // Build < 10
  1219. if (([actualBuild compare:@"10" options:NSNumericSearch] == NSOrderedAscending) || actualBuild == nil) {
  1220. // Remove All old Photo Library
  1221. //[[NCManageDatabase sharedInstance] clearTable:[tablePhotoLibrary class] account:nil];
  1222. }
  1223. }
  1224. // VERSION < 2.19.1
  1225. if (([actualVersion compare:@"2.19.1" options:NSNumericSearch] == NSOrderedAscending)) {
  1226. [[NCManageDatabase sharedInstance] clearTable:[tableMetadata class] account:nil];
  1227. [[NCManageDatabase sharedInstance] setClearAllDateReadDirectory];
  1228. }
  1229. return YES;
  1230. }
  1231. @end