CCNetworking.m 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734
  1. //
  2. // CCNetworking.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 01/06/15.
  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 "CCNetworking.h"
  24. #import "AppDelegate.h"
  25. #import "CCCertificate.h"
  26. #import "TableAccount+CoreDataClass.h"
  27. #import "NSDate+ISO8601.h"
  28. #import "NSString+Encode.h"
  29. @interface CCNetworking ()
  30. {
  31. NSManagedObjectContext *_context;
  32. NSMutableDictionary *_taskData;
  33. CCMetadata *_currentProgressMetadata;
  34. NSString *_activeAccount;
  35. NSString *_activePassword;
  36. NSString *_activeUser;
  37. NSString *_activeUrl;
  38. NSString *_directoryUser;
  39. }
  40. @end
  41. @implementation CCNetworking
  42. + (CCNetworking *)sharedNetworking {
  43. static CCNetworking *sharedNetworking;
  44. @synchronized(self)
  45. {
  46. if (!sharedNetworking) {
  47. sharedNetworking = [[CCNetworking alloc] init];
  48. }
  49. return sharedNetworking;
  50. }
  51. }
  52. - (id)init
  53. {
  54. self = [super init];
  55. _context = [NSManagedObjectContext MR_context];
  56. _taskData = [[NSMutableDictionary alloc] init];
  57. _currentProgressMetadata = [[CCMetadata alloc] init];
  58. _delegates = [[NSMutableDictionary alloc] init];
  59. // Initialization Sessions
  60. [self sessionDownload];
  61. [self sessionDownloadForeground];
  62. [self sessionWWanDownload];
  63. [self sessionUpload];
  64. [self sessionUploadForeground];
  65. [self sessionWWanUpload];
  66. [self sharedOCCommunication];
  67. [self settingAccount];
  68. return self;
  69. }
  70. - (void)settingDelegate:(id <CCNetworkingDelegate>)delegate
  71. {
  72. _delegate = delegate;
  73. }
  74. - (void)settingAccount
  75. {
  76. TableAccount *tableAccount = [CCCoreData getActiveAccount];
  77. _activeAccount = tableAccount.account;
  78. _activePassword = tableAccount.password;
  79. _activeUser = tableAccount.user;
  80. _activeUrl = tableAccount.url;
  81. _directoryUser = [CCUtility getDirectoryActiveUser:_activeUser activeUrl:_activeUrl];
  82. }
  83. #pragma --------------------------------------------------------------------------------------------
  84. #pragma mark ===== Session =====
  85. #pragma --------------------------------------------------------------------------------------------
  86. - (NSURLSession *)sessionDownload
  87. {
  88. static NSURLSession *sessionDownload = nil;
  89. if (sessionDownload == nil) {
  90. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_download_session];
  91. configuration.allowsCellularAccess = YES;
  92. configuration.sessionSendsLaunchEvents = YES;
  93. configuration.discretionary = NO;
  94. configuration.HTTPMaximumConnectionsPerHost = 1;
  95. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  96. sessionDownload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  97. sessionDownload.sessionDescription = k_download_session;
  98. }
  99. return sessionDownload;
  100. }
  101. - (NSURLSession *)sessionDownloadForeground
  102. {
  103. static NSURLSession *sessionDownloadForeground = nil;
  104. if (sessionDownloadForeground == nil) {
  105. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  106. configuration.allowsCellularAccess = YES;
  107. configuration.discretionary = NO;
  108. configuration.HTTPMaximumConnectionsPerHost = 1;
  109. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  110. sessionDownloadForeground = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  111. sessionDownloadForeground.sessionDescription = k_download_session_foreground;
  112. }
  113. return sessionDownloadForeground;
  114. }
  115. - (NSURLSession *)sessionWWanDownload
  116. {
  117. static NSURLSession *sessionWWanDownload = nil;
  118. if (sessionWWanDownload == nil) {
  119. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_download_session_wwan];
  120. configuration.allowsCellularAccess = NO;
  121. configuration.sessionSendsLaunchEvents = YES;
  122. configuration.discretionary = NO;
  123. configuration.HTTPMaximumConnectionsPerHost = 1;
  124. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  125. sessionWWanDownload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  126. sessionWWanDownload.sessionDescription = k_download_session_wwan;
  127. }
  128. return sessionWWanDownload;
  129. }
  130. - (NSURLSession *)sessionUpload
  131. {
  132. static NSURLSession *sessionUpload = nil;
  133. if (sessionUpload == nil) {
  134. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_upload_session];
  135. configuration.allowsCellularAccess = YES;
  136. configuration.sessionSendsLaunchEvents = YES;
  137. configuration.discretionary = NO;
  138. configuration.HTTPMaximumConnectionsPerHost = 1;
  139. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  140. sessionUpload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  141. sessionUpload.sessionDescription = k_upload_session;
  142. }
  143. return sessionUpload;
  144. }
  145. - (NSURLSession *)sessionUploadForeground
  146. {
  147. static NSURLSession *sessionUploadForeground;
  148. if (sessionUploadForeground == nil) {
  149. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  150. configuration.allowsCellularAccess = YES;
  151. configuration.discretionary = NO;
  152. configuration.HTTPMaximumConnectionsPerHost = 1;
  153. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  154. sessionUploadForeground = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  155. sessionUploadForeground.sessionDescription = k_upload_session_foreground;
  156. }
  157. return sessionUploadForeground;
  158. }
  159. - (NSURLSession *)sessionWWanUpload
  160. {
  161. static NSURLSession *sessionWWanUpload = nil;
  162. if (sessionWWanUpload == nil) {
  163. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_upload_session_wwan];
  164. configuration.allowsCellularAccess = NO;
  165. configuration.sessionSendsLaunchEvents = YES;
  166. configuration.discretionary = NO;
  167. configuration.HTTPMaximumConnectionsPerHost = 1;
  168. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  169. sessionWWanUpload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  170. sessionWWanUpload.sessionDescription = k_upload_session_wwan;
  171. }
  172. return sessionWWanUpload;
  173. }
  174. - (OCCommunication *)sharedOCCommunication
  175. {
  176. static OCCommunication* sharedOCCommunication = nil;
  177. if (sharedOCCommunication == nil)
  178. {
  179. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  180. configuration.allowsCellularAccess = YES;
  181. configuration.discretionary = NO;
  182. configuration.HTTPMaximumConnectionsPerHost = k_maxConcurrentOperation;
  183. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  184. OCURLSessionManager *networkSessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:configuration];
  185. [networkSessionManager.operationQueue setMaxConcurrentOperationCount: k_maxConcurrentOperation];
  186. networkSessionManager.responseSerializer = [AFHTTPResponseSerializer serializer];
  187. sharedOCCommunication = [[OCCommunication alloc] initWithUploadSessionManager:nil andDownloadSessionManager:nil andNetworkSessionManager:networkSessionManager];
  188. }
  189. return sharedOCCommunication;
  190. }
  191. - (NSURLSession *)getSessionfromSessionDescription:(NSString *)sessionDescription
  192. {
  193. if ([sessionDescription isEqualToString:k_download_session]) return [self sessionDownload];
  194. if ([sessionDescription isEqualToString:k_download_session_foreground]) return [self sessionDownloadForeground];
  195. if ([sessionDescription isEqualToString:k_download_session_wwan]) return [self sessionWWanDownload];
  196. if ([sessionDescription isEqualToString:k_upload_session]) return [self sessionUpload];
  197. if ([sessionDescription isEqualToString:k_upload_session_foreground]) return [self sessionUploadForeground];
  198. if ([sessionDescription isEqualToString:k_upload_session_wwan]) return [self sessionWWanUpload];
  199. return nil;
  200. }
  201. - (void)invalidateAndCancelAllSession
  202. {
  203. [[self sessionDownload] invalidateAndCancel];
  204. [[self sessionDownloadForeground] invalidateAndCancel];
  205. [[self sessionWWanDownload] invalidateAndCancel];
  206. [[self sessionUpload] invalidateAndCancel];
  207. [[self sessionUploadForeground] invalidateAndCancel];
  208. [[self sessionWWanUpload] invalidateAndCancel];
  209. }
  210. - (void)settingSessionsDownload:(BOOL)download upload:(BOOL)upload taskStatus:(NSInteger)taskStatus activeAccount:(NSString *)activeAccount activeUser:(NSString *)activeUser activeUrl:(NSString *)activeUrl
  211. {
  212. if (download) {
  213. [[self sessionDownload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  214. for (NSURLSessionTask *task in downloadTasks)
  215. if (taskStatus == k_taskStatusCancel) [task cancel];
  216. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  217. else if (taskStatus == k_taskStatusResume) [task resume];
  218. }];
  219. [[self sessionDownloadForeground] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  220. for (NSURLSessionTask *task in downloadTasks)
  221. if (taskStatus == k_taskStatusCancel) [task cancel];
  222. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  223. else if (taskStatus == k_taskStatusResume) [task resume];
  224. }];
  225. [[self sessionWWanDownload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  226. for (NSURLSessionTask *task in downloadTasks)
  227. if (taskStatus == k_taskStatusCancel) [task cancel];
  228. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  229. else if (taskStatus == k_taskStatusResume) [task resume];
  230. }];
  231. }
  232. if (upload) {
  233. [[self sessionUpload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  234. for (NSURLSessionTask *task in uploadTasks)
  235. if (taskStatus == k_taskStatusCancel) [task cancel];
  236. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  237. else if (taskStatus == k_taskStatusResume) [task resume];
  238. }];
  239. [[self sessionUploadForeground] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  240. for (NSURLSessionTask *task in uploadTasks)
  241. if (taskStatus == k_taskStatusCancel) [task cancel];
  242. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  243. else if (taskStatus == k_taskStatusResume) [task resume];
  244. }];
  245. [[self sessionWWanUpload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  246. for (NSURLSessionTask *task in uploadTasks)
  247. if (taskStatus == k_taskStatusCancel) [task cancel];
  248. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  249. else if (taskStatus == k_taskStatusResume) [task resume];
  250. }];
  251. }
  252. // COREDATA FILE SYSTEM
  253. if (download && taskStatus == k_taskStatusCancel) {
  254. [CCCoreData setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier: k_taskIdentifierDone sessionTaskIdentifierPlist: k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (session CONTAINS 'download')", _activeAccount] context:_context];
  255. }
  256. if (upload && taskStatus == k_taskStatusCancel) {
  257. [CCCoreData deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(session CONTAINS 'upload')"]];
  258. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  259. [CCUtility removeAllFileID_UPLOAD_ActiveUser:activeUser activeUrl:activeUrl];
  260. });
  261. }
  262. #ifndef EXTENSION
  263. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.5 * NSEC_PER_SEC), dispatch_get_main_queue(), ^(void) {
  264. [app updateApplicationIconBadgeNumber];
  265. });
  266. #endif
  267. }
  268. - (void)settingSession:(NSString *)sessionDescription sessionTaskIdentifier:(NSUInteger)sessionTaskIdentifier taskStatus:(NSInteger)taskStatus
  269. {
  270. NSURLSession *session = [self getSessionfromSessionDescription:sessionDescription];
  271. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  272. if ([sessionDescription containsString:@"download"])
  273. for (NSURLSessionTask *task in downloadTasks)
  274. if (task.taskIdentifier == sessionTaskIdentifier) {
  275. if (taskStatus == k_taskStatusCancel) [task cancel];
  276. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  277. else if (taskStatus == k_taskStatusResume) [task resume];
  278. }
  279. if ([sessionDescription containsString:@"upload"])
  280. for (NSURLSessionTask *task in uploadTasks)
  281. if (task.taskIdentifier == sessionTaskIdentifier) {
  282. if (taskStatus == k_taskStatusCancel) [task cancel];
  283. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  284. else if (taskStatus == k_taskStatusResume) [task resume];
  285. }
  286. }];
  287. }
  288. #pragma --------------------------------------------------------------------------------------------
  289. #pragma mark ===== URLSession download/upload =====
  290. #pragma --------------------------------------------------------------------------------------------
  291. - (void)URLSession:(NSURLSession *)session didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler
  292. {
  293. // The pinnning check
  294. if ([[CCCertificate sharedManager] checkTrustedChallenge:challenge]) {
  295. completionHandler(NSURLSessionAuthChallengeUseCredential, [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]);
  296. } else {
  297. completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  298. }
  299. }
  300. - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error
  301. {
  302. NSString *url = [[[task currentRequest].URL absoluteString] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
  303. NSString *fileName = [url lastPathComponent];
  304. NSString *serverUrl = [self getServerUrlFromUrl:url];
  305. CCMetadata *metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(session = %@) AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))",session.sessionDescription, task.taskIdentifier, task.taskIdentifier] context:_context];
  306. NSInteger errorCode;
  307. NSString *fileID = metadata.fileID;
  308. NSString *rev = metadata.rev;
  309. NSDate *date = [NSDate date];
  310. NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
  311. [dateFormatter setDateFormat:@"EEE, dd MMM y HH:mm:ss zzz"];
  312. // remove Current Progress Metadata
  313. _currentProgressMetadata = nil;
  314. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)task.response;
  315. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  316. errorCode = error.code;
  317. } else {
  318. if (httpResponse.statusCode > 0)
  319. errorCode = httpResponse.statusCode;
  320. else
  321. errorCode = error.code;
  322. // Request trusted certificated
  323. if (errorCode == NSURLErrorServerCertificateUntrusted)
  324. [[CCCertificate sharedManager] presentViewControllerCertificateWithTitle:[error localizedDescription] viewController:(UIViewController *)self.delegate delegate:self];
  325. }
  326. // ----------------------- DOWNLOAD -----------------------
  327. if ([task isKindOfClass:[NSURLSessionDownloadTask class]]) {
  328. NSDictionary *fields = [httpResponse allHeaderFields];
  329. if (errorCode == 0) {
  330. rev = [CCUtility removeForbiddenCharacters:[fields objectForKey:@"OC-ETag"] hasServerForbiddenCharactersSupport:NO];
  331. date = [dateFormatter dateFromString:[fields objectForKey:@"Date"]];
  332. // Activity
  333. [CCCoreData addActivityClient:fileName fileID:metadata.fileID action:k_activityDebugActionDownload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault account:metadata.account];
  334. } else {
  335. // Activity
  336. [CCCoreData addActivityClient:fileName fileID:metadata.fileID action:k_activityDebugActionDownload selector:metadata.sessionSelector note:[NSString stringWithFormat:@"Server: %@ Error: %@", serverUrl, [error localizedDescription]] type:k_activityTypeFailure verbose:k_activityVerboseDefault account:metadata.account];
  337. }
  338. dispatch_async(dispatch_get_main_queue(), ^{
  339. // Notification change session
  340. if (metadata) {
  341. NSArray *object = [[NSArray alloc] initWithObjects:session, metadata, task, nil];
  342. [[NSNotificationCenter defaultCenter] postNotificationName:k_networkingSessionNotification object:object];
  343. }
  344. [self downloadFileSuccessFailure:fileName fileID:metadata.fileID rev:rev date:date serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorCode:errorCode];
  345. });
  346. }
  347. // ------------------------ UPLOAD -----------------------
  348. if ([task isKindOfClass:[NSURLSessionUploadTask class]]) {
  349. NSDictionary *fields = [httpResponse allHeaderFields];
  350. if (errorCode == 0) {
  351. fileID = [CCUtility removeForbiddenCharacters:[fields objectForKey:@"OC-FileId"] hasServerForbiddenCharactersSupport:NO];
  352. rev = [CCUtility removeForbiddenCharacters:[fields objectForKey:@"OC-ETag"] hasServerForbiddenCharactersSupport:NO];
  353. date = [dateFormatter dateFromString:[fields objectForKey:@"Date"]];
  354. // Activity
  355. [CCCoreData addActivityClient:fileName fileID:fileID action:k_activityDebugActionUpload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault account:metadata.account];
  356. } else {
  357. // Activity
  358. [CCCoreData addActivityClient:fileName fileID:metadata.fileID action:k_activityDebugActionUpload selector:metadata.sessionSelector note:[NSString stringWithFormat:@"Server: %@ Error: %@", serverUrl, [error localizedDescription]] type:k_activityTypeFailure verbose:k_activityVerboseDefault account:metadata.account];
  359. }
  360. dispatch_async(dispatch_get_main_queue(), ^{
  361. // Notification change session
  362. if (metadata) {
  363. NSArray *object = [[NSArray alloc] initWithObjects:session, metadata, task, nil];
  364. [[NSNotificationCenter defaultCenter] postNotificationName:k_networkingSessionNotification object:object];
  365. }
  366. [self uploadFileSuccessFailure:metadata fileName:fileName fileID:fileID rev:rev date:date serverUrl:serverUrl errorCode:errorCode];
  367. });
  368. }
  369. }
  370. #pragma --------------------------------------------------------------------------------------------
  371. #pragma mark ===== Download =====
  372. #pragma --------------------------------------------------------------------------------------------
  373. - (void)downloadFile:(CCMetadata *)metadata serverUrl:(NSString *)serverUrl downloadData:(BOOL)downloadData downloadPlist:(BOOL)downloadPlist selector:(NSString *)selector selectorPost:(NSString *)selectorPost session:(NSString *)session taskStatus:(NSInteger)taskStatus delegate:(id)delegate
  374. {
  375. // add delegate
  376. if (delegate)
  377. [_delegates setObject:delegate forKey:metadata.fileID];
  378. if (downloadData) {
  379. // it's in download
  380. if ([CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(account == %@) AND (fileID == %@) AND (session CONTAINS 'download') AND (sessionTaskIdentifier >= 0)", _activeAccount, metadata.fileID] context:_context]) {
  381. NSLog(@"[LOG] Download file already in progress %@ - %@", metadata.fileNameData, metadata.fileNamePrint);
  382. return;
  383. }
  384. // File exists ?
  385. if ([CCCoreData getLocalFileWithFileID:metadata.fileID activeAccount:_activeAccount] && [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileID]]) {
  386. NSLog(@"[LOG] Download file already exists %@ - %@", metadata.fileNameData, metadata.fileNamePrint);
  387. [CCCoreData setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier: k_taskIdentifierDone sessionTaskIdentifierPlist: k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", metadata.fileID, _activeAccount] context:_context];
  388. if ([[self getDelegate:metadata.fileID] respondsToSelector:@selector(downloadFileSuccess:serverUrl:selector:selectorPost:)])
  389. [[self getDelegate:metadata.fileID] downloadFileSuccess:metadata.fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost];
  390. return;
  391. }
  392. [self downloaURLSession:metadata.fileNameData fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl fileID:metadata.fileID session:session taskStatus:taskStatus selector:selector];
  393. [CCCoreData setMetadataSession:session sessionError:@"" sessionSelector:selector sessionSelectorPost:selectorPost sessionTaskIdentifier: k_taskIdentifierNULL sessionTaskIdentifierPlist:k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)",metadata.fileID, _activeAccount] context:_context];
  394. }
  395. if (downloadPlist) {
  396. // it's in download
  397. if ([CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(account == %@) AND (fileID == %@) AND (session CONTAINS 'download') AND (sessionTaskIdentifierPlist >= 0)", _activeAccount, metadata.fileID] context:_context]) {
  398. NSLog(@"[LOG] Download file already in progress %@ - %@", metadata.fileName, metadata.fileNamePrint);
  399. return;
  400. }
  401. [self downloaURLSession:metadata.fileName fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl fileID:metadata.fileID session:session taskStatus:taskStatus selector:selector];
  402. [CCCoreData setMetadataSession:session sessionError:@"" sessionSelector:selector sessionSelectorPost:selectorPost sessionTaskIdentifier: k_taskIdentifierNULL sessionTaskIdentifierPlist: k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)",metadata.fileID, _activeAccount] context:_context];
  403. }
  404. }
  405. - (void)downloaURLSession:(NSString *)fileName fileNamePrint:(NSString *)fileNamePrint serverUrl:(NSString *)serverUrl fileID:(NSString *)fileID session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector
  406. {
  407. NSURLSession *sessionDownload;
  408. NSURL *url;
  409. NSMutableURLRequest *request;
  410. NSString *serverFileUrl = [[NSString stringWithFormat:@"%@/%@", serverUrl, fileName] encodeString:NSUTF8StringEncoding];
  411. url = [NSURL URLWithString:serverFileUrl];
  412. request = [NSMutableURLRequest requestWithURL:url];
  413. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  414. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  415. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  416. if ([session isEqualToString:k_download_session]) sessionDownload = [self sessionDownload];
  417. else if ([session isEqualToString:k_download_session_foreground]) sessionDownload = [self sessionDownloadForeground];
  418. else if ([session isEqualToString:k_download_session_wwan]) sessionDownload = [self sessionWWanDownload];
  419. NSURLSessionDownloadTask *downloadTask = [sessionDownload downloadTaskWithRequest:request];
  420. if (taskStatus == k_taskStatusCancel) [downloadTask cancel];
  421. else if (taskStatus == k_taskStatusSuspend) [downloadTask suspend];
  422. else if (taskStatus == k_taskStatusResume) [downloadTask resume];
  423. if ([[self getDelegate:fileID] respondsToSelector:@selector(downloadTaskSave:)])
  424. [[self getDelegate:fileID] downloadTaskSave:downloadTask];
  425. if (downloadTask == nil) {
  426. NSUInteger sessionTaskIdentifier = k_taskIdentifierNULL;
  427. NSUInteger sessionTaskIdentifierPlist = k_taskIdentifierNULL;
  428. if ([CCUtility isFileNotCryptated:fileName] || [CCUtility isCryptoString:fileName]) sessionTaskIdentifier = k_taskIdentifierError;
  429. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = k_taskIdentifierError;
  430. [CCCoreData setMetadataSession:nil sessionError:[NSString stringWithFormat:@"%@", @k_CCErrorTaskNil] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", fileID, _activeAccount] context:_context];
  431. NSLog(@"[LOG] downloadFileSession TaskIdentifier [error CCErrorTaskNil] - %@ - %@", fileName, fileNamePrint);
  432. } else {
  433. NSUInteger sessionTaskIdentifier = k_taskIdentifierNULL;
  434. NSUInteger sessionTaskIdentifierPlist = k_taskIdentifierNULL;
  435. if ([CCUtility isCryptoString:fileName] || [CCUtility isFileNotCryptated:fileName]) sessionTaskIdentifier = downloadTask.taskIdentifier;
  436. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = downloadTask.taskIdentifier;
  437. [CCCoreData setMetadataSession:nil sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", fileID, _activeAccount] context:_context];
  438. NSLog(@"[LOG] downloadFileSession %@ - %@ Task [%lu %lu]", fileID, fileNamePrint, (unsigned long)sessionTaskIdentifier, (unsigned long)sessionTaskIdentifierPlist);
  439. }
  440. dispatch_async(dispatch_get_main_queue(), ^{
  441. // Refresh datasource if is not a Plist
  442. if ([_delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)] && [CCUtility isCryptoPlistString:fileName] == NO)
  443. [_delegate reloadDatasource:serverUrl fileID:fileID selector:selector];
  444. });
  445. }
  446. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
  447. {
  448. NSString *url = [[[downloadTask currentRequest].URL absoluteString] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
  449. NSString *fileName = [url lastPathComponent];
  450. NSString *serverUrl = [self getServerUrlFromUrl:url];
  451. // if plist return
  452. if ([CCUtility getTypeFileName:fileName] == k_metadataTypeFilenamePlist)
  453. return;
  454. float progress = (float) totalBytesWritten / (float)totalBytesExpectedToWrite;
  455. if ([_currentProgressMetadata.fileName isEqualToString:fileName] == NO && [_currentProgressMetadata.fileNameData isEqualToString:fileName] == NO)
  456. _currentProgressMetadata = [CCCoreData getMetadataFromFileName:fileName directoryID:[CCCoreData getDirectoryIDFromServerUrl:serverUrl activeAccount:_activeAccount] activeAccount:_activeAccount context:_context];
  457. dispatch_async(dispatch_get_main_queue(), ^{
  458. if (_currentProgressMetadata) {
  459. NSDictionary* userInfo = @{@"fileID": (_currentProgressMetadata.fileID), @"serverUrl": (serverUrl), @"cryptated": ([NSNumber numberWithBool:_currentProgressMetadata.cryptated]), @"progress": ([NSNumber numberWithFloat:progress])};
  460. [[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  461. }
  462. });
  463. }
  464. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location
  465. {
  466. NSURLRequest *url = [downloadTask currentRequest];
  467. NSString *filename = [[url.URL absoluteString] lastPathComponent];
  468. CCMetadata *metadata = metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(session = %@) AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))",session.sessionDescription, downloadTask.taskIdentifier, downloadTask.taskIdentifier] context:_context];
  469. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)downloadTask.response;
  470. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  471. NSString *destinationFilePath;
  472. if ([CCUtility isCryptoPlistString:filename]) {
  473. destinationFilePath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryActiveUser:_activeUser activeUrl:_activeUrl], filename];
  474. } else {
  475. if (metadata.cryptated) destinationFilePath = [NSString stringWithFormat:@"%@/%@.crypt", [CCUtility getDirectoryActiveUser:_activeUser activeUrl:_activeUrl], metadata.fileID];
  476. else destinationFilePath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryActiveUser:_activeUser activeUrl:_activeUrl], metadata.fileID];
  477. }
  478. NSURL *destinationURL = [NSURL fileURLWithPath:destinationFilePath];
  479. [[NSFileManager defaultManager] removeItemAtURL:destinationURL error:NULL];
  480. [[NSFileManager defaultManager] copyItemAtURL:location toURL:destinationURL error:nil];
  481. }
  482. }
  483. - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID rev:(NSString *)rev date:(NSDate *)date serverUrl:(NSString *)serverUrl selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode
  484. {
  485. #ifndef EXTENSION
  486. if (fileID)
  487. [app.listProgressMetadata removeObjectForKey:fileID];
  488. #endif
  489. // Progress Task
  490. NSDictionary* userInfo = @{@"fileID": (fileID), @"serverUrl": (serverUrl), @"cryptated": ([NSNumber numberWithBool:NO]), @"progress": ([NSNumber numberWithFloat:0.0])};
  491. [[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  492. if (errorCode != 0) {
  493. //
  494. // if cancel or was a xxxxxx.plist delete session
  495. //
  496. if (errorCode == kCFURLErrorCancelled || [CCUtility isCryptoPlistString:fileName]) {
  497. [CCCoreData setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier: k_taskIdentifierDone sessionTaskIdentifierPlist: k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", fileID, _activeAccount] context:_context];
  498. } else {
  499. [CCCoreData setMetadataSession:nil sessionError:[NSString stringWithFormat:@"%@", @(errorCode)] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier: k_taskIdentifierError sessionTaskIdentifierPlist: k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", fileID, _activeAccount] context:_context];
  500. }
  501. // Delegate downloadFileFailure:
  502. dispatch_async(dispatch_get_main_queue(), ^{
  503. if ([[self getDelegate:fileID] respondsToSelector:@selector(downloadFileFailure:serverUrl:selector:message:errorCode:)])
  504. [[self getDelegate:fileID] downloadFileFailure:fileID serverUrl:serverUrl selector:selector message:[CCError manageErrorKCF:errorCode withNumberError:YES] errorCode:errorCode];
  505. });
  506. NSLog(@"[LOG] Download Failure Session Filename : %@ ERROR : %@", fileName, [NSString stringWithFormat:@"%@", @(errorCode)]);
  507. } else {
  508. CCMetadata *metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", fileID, _activeAccount] context:_context];
  509. if ([CCUtility isCryptoString:fileName] || [CCUtility isFileNotCryptated:fileName]) metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  510. if ([CCUtility isCryptoPlistString:fileName]) metadata.sessionTaskIdentifierPlist = k_taskIdentifierDone;
  511. if (metadata.sessionTaskIdentifier == k_taskIdentifierDone && metadata.sessionTaskIdentifierPlist == k_taskIdentifierDone) {
  512. [CCCoreData setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:metadata.sessionTaskIdentifier sessionTaskIdentifierPlist:metadata.sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", fileID, _activeAccount] context:_context];
  513. } else {
  514. [CCCoreData setMetadataSession:nil sessionError:nil sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:metadata.sessionTaskIdentifier sessionTaskIdentifierPlist:metadata.sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", fileID, _activeAccount] context:_context];
  515. }
  516. // DATA
  517. if ([CCUtility isCryptoString:fileName] || [CCUtility isFileNotCryptated:fileName]) {
  518. [CCCoreData downloadFile:metadata directoryUser:_directoryUser activeAccount:_activeAccount];
  519. }
  520. // download File Success
  521. dispatch_async(dispatch_get_main_queue(), ^{
  522. if ([[self getDelegate:fileID] respondsToSelector:@selector(downloadFileSuccess:serverUrl:selector:selectorPost:)])
  523. [[self getDelegate:fileID] downloadFileSuccess:fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost];
  524. });
  525. NSLog(@"[LOG] Download Success Session Metadata : %@ - FileNamePrint : %@ - fileID : %@ - Task : [%i %i]", metadata.fileName, metadata.fileNamePrint, metadata.fileID, metadata.sessionTaskIdentifier, metadata.sessionTaskIdentifierPlist);
  526. }
  527. }
  528. #pragma --------------------------------------------------------------------------------------------
  529. #pragma mark ===== Upload =====
  530. #pragma --------------------------------------------------------------------------------------------
  531. - (void)uploadFileFromAssetLocalIdentifier:(NSString *)localIdentifier fileName:(NSString *)fileName serverUrl:(NSString *)serverUrl cryptated:(BOOL)cryptated session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode delegate:(id)delegate
  532. {
  533. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[localIdentifier] options:nil];
  534. if (!result.count) {
  535. if ([delegate respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  536. [delegate uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:@"Internal error image/video not found" errorCode: k_CCErrorInternalError];
  537. return;
  538. }
  539. PHAsset *asset = result[0];
  540. PHAssetMediaType assetMediaType = asset.mediaType;
  541. NSDate *assetDate = asset.creationDate;
  542. __block NSError *error = nil;
  543. // create fileName
  544. NSString *assetFileName = [asset valueForKey:@"filename"];
  545. NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@", _directoryUser, fileName];
  546. //delegate
  547. if (delegate == nil)
  548. delegate = self.delegate;
  549. // VIDEO
  550. if (assetMediaType == PHAssetMediaTypeVideo) {
  551. // Automatic Upload video encrypted ?
  552. if ([selector isEqualToString:selectorUploadAutomatic] || [selector isEqualToString:selectorUploadAutomaticAll])
  553. cryptated = [CCCoreData getCameraUploadCryptatedVideoActiveAccount:_activeAccount];
  554. @autoreleasepool {
  555. PHVideoRequestOptions *options = [[PHVideoRequestOptions alloc] init];
  556. options.version = PHVideoRequestOptionsVersionOriginal;
  557. [[PHImageManager defaultManager] requestAVAssetForVideo:asset options:options resultHandler:^(AVAsset *asset, AVAudioMix *audioMix, NSDictionary *info) {
  558. if ([asset isKindOfClass:[AVURLAsset class]]) {
  559. NSData *data = [[NSData alloc] initWithContentsOfURL:[(AVURLAsset *)asset URL] options:0 error:&error];
  560. if (!error || [data length] > 0) {
  561. [data writeToFile:fileNamePath options:NSDataWritingAtomic error:&error];
  562. } else {
  563. if (!error)
  564. error = [NSError errorWithDomain:@"it.twsweb.cryptocloud" code:kCFURLErrorFileDoesNotExist userInfo:nil];
  565. }
  566. } else {
  567. error = [NSError errorWithDomain:@"it.twsweb.cryptocloud" code:kCFURLErrorFileDoesNotExist userInfo:nil];
  568. }
  569. dispatch_async(dispatch_get_main_queue(), ^{
  570. if (error) {
  571. // Error for uploadFileFailure
  572. if ([delegate respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  573. [delegate uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:@"_read_file_error_" errorCode:error.code];
  574. } else {
  575. [self upload:fileName serverUrl:serverUrl cryptated:cryptated template:NO onlyPlist:NO assetFileName:assetFileName assetDate:assetDate assetMediaType:assetMediaType localIdentifier:localIdentifier session:session taskStatus:taskStatus selector:selector selectorPost:selectorPost errorCode:errorCode delegate:delegate];
  576. }
  577. });
  578. }];
  579. }
  580. }
  581. // IMAGE
  582. if (assetMediaType == PHAssetMediaTypeImage) {
  583. // Automatic Upload photo encrypted ?
  584. if ([selector isEqualToString:selectorUploadAutomatic] || [selector isEqualToString:selectorUploadAutomaticAll])
  585. cryptated = [CCCoreData getCameraUploadCryptatedPhotoActiveAccount:_activeAccount];
  586. @autoreleasepool {
  587. [[PHImageManager defaultManager] requestImageDataForAsset:asset options:nil resultHandler:^(NSData *imageData, NSString *dataUTI, UIImageOrientation orientation, NSDictionary *info) {
  588. [imageData writeToFile:fileNamePath options:NSDataWritingAtomic error:&error];
  589. dispatch_async(dispatch_get_main_queue(), ^{
  590. if (error) {
  591. // Error for uploadFileFailure
  592. if ([delegate respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  593. [delegate uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:@"_read_file_error_" errorCode:error.code];
  594. } else {
  595. [self upload:fileName serverUrl:serverUrl cryptated:cryptated template:NO onlyPlist:NO assetFileName:assetFileName assetDate:assetDate assetMediaType:assetMediaType localIdentifier:localIdentifier session:session taskStatus:taskStatus selector:selector selectorPost:selectorPost errorCode:errorCode delegate:delegate];
  596. }
  597. });
  598. }];
  599. }
  600. }
  601. }
  602. - (void)uploadFile:(NSString *)fileName serverUrl:(NSString *)serverUrl cryptated:(BOOL)cryptated onlyPlist:(BOOL)onlyPlist session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode delegate:(id)delegate
  603. {
  604. [self upload:fileName serverUrl:serverUrl cryptated:cryptated template:NO onlyPlist:onlyPlist assetFileName:nil assetDate:nil assetMediaType:PHAssetMediaTypeUnknown localIdentifier:nil session:session taskStatus:taskStatus selector:selector selectorPost:selectorPost errorCode:errorCode delegate:delegate];
  605. }
  606. - (void)uploadTemplate:(NSString *)fileNamePrint fileNameCrypto:(NSString *)fileNameCrypto serverUrl:(NSString *)serverUrl session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode delegate:(id)delegate
  607. {
  608. [self upload:fileNameCrypto serverUrl:serverUrl cryptated:YES template:YES onlyPlist:NO assetFileName:fileNamePrint assetDate:nil assetMediaType:PHAssetMediaTypeUnknown localIdentifier:nil session:session taskStatus:taskStatus selector:selector selectorPost:selectorPost errorCode:errorCode delegate:delegate];
  609. }
  610. - (void)upload:(NSString *)fileName serverUrl:(NSString *)serverUrl cryptated:(BOOL)cryptated template:(BOOL)template onlyPlist:(BOOL)onlyPlist assetFileName:(NSString *)assetFileName assetDate:(NSDate *)assetDate assetMediaType:(PHAssetMediaType)assetMediaType localIdentifier:(NSString *)localIdentifier session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode delegate:(id)delegate
  611. {
  612. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:serverUrl activeAccount:_activeAccount];
  613. NSString *fileNameCrypto;
  614. // create Metadata
  615. NSString *cameraFolderName = [CCCoreData getCameraUploadFolderNameActiveAccount:_activeAccount];
  616. NSString *cameraFolderPath = [CCCoreData getCameraUploadFolderPathActiveAccount:_activeAccount activeUrl:_activeUrl];
  617. CCMetadata *metadata = [CCUtility insertFileSystemInMetadata:fileName directory:_directoryUser activeAccount:_activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  618. //fileID
  619. NSString *uploadID = [k_uploadSessionID stringByAppendingString:[CCUtility createRandomString:16]];
  620. //add delegate
  621. if (delegate)
  622. [_delegates setObject:delegate forKey:uploadID];
  623. if (onlyPlist == YES) {
  624. [CCUtility moveFileAtPath:[NSTemporaryDirectory() stringByAppendingString:fileName] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]];
  625. [CCUtility insertInformationPlist:metadata directoryUser:_directoryUser];
  626. metadata.date = [NSDate new];
  627. metadata.fileID = uploadID;
  628. metadata.directoryID = directoryID;
  629. metadata.fileNameData = [CCUtility trasformedFileNamePlistInCrypto:fileName];
  630. metadata.localIdentifier = localIdentifier;
  631. metadata.session = session;
  632. metadata.sessionID = uploadID;
  633. metadata.sessionSelector = selector;
  634. metadata.sessionSelectorPost = selectorPost;
  635. metadata.typeFile = k_metadataTypeFile_unknown;
  636. [CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  637. [self uploadURLSession:fileName fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetDate:assetDate assetMediaType:assetMediaType cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  638. }
  639. else if (cryptated == YES) {
  640. if (template == YES) {
  641. // copy from temp to directory user
  642. [CCUtility moveFileAtPath:[NSTemporaryDirectory() stringByAppendingString:fileName] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]];
  643. [CCUtility moveFileAtPath:[NSTemporaryDirectory() stringByAppendingString:[fileName stringByAppendingString:@".plist"]] toPath:[NSString stringWithFormat:@"%@/%@.plist", _directoryUser, fileName]];
  644. fileNameCrypto = fileName; // file Name Crypto
  645. fileName = assetFileName; // file Name Print
  646. [CCUtility insertInformationPlist:metadata directoryUser:_directoryUser];
  647. metadata.date = [NSDate new];
  648. metadata.fileID = uploadID;
  649. metadata.directoryID = directoryID;
  650. metadata.fileName = [fileNameCrypto stringByAppendingString:@".plist"];
  651. metadata.fileNameData = fileNameCrypto;
  652. metadata.localIdentifier = localIdentifier;
  653. metadata.session = session;
  654. metadata.sessionID = uploadID;
  655. metadata.sessionSelector = selector;
  656. metadata.sessionSelectorPost = selectorPost;
  657. metadata.typeFile = k_metadataTypeFile_template;
  658. [CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  659. // DATA
  660. [self uploadURLSession:fileNameCrypto fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetDate:assetDate assetMediaType:assetMediaType cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  661. // PLIST
  662. [self uploadURLSession:[fileNameCrypto stringByAppendingString:@".plist"] fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetDate:assetDate assetMediaType:assetMediaType cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  663. }
  664. if (template == NO) {
  665. NSString *passcode = [[CCCrypto sharedManager] getKeyPasscode:[CCUtility getUUID]];
  666. fileNameCrypto = [[CCCrypto sharedManager] encryptWithCreatePlist:fileName fileNameEncrypted:fileName passcode:passcode directoryUser:_directoryUser];
  667. // Encrypted file error
  668. if (fileNameCrypto == nil) {
  669. dispatch_async(dispatch_get_main_queue(), ^{
  670. NSString *msg = [NSString stringWithFormat:NSLocalizedString(@"_encrypt_error_", nil), fileName, @""];
  671. UIAlertController *alertController= [UIAlertController alertControllerWithTitle:nil message:msg preferredStyle:UIAlertControllerStyleAlert];
  672. UIAlertAction* ok = [UIAlertAction actionWithTitle: NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault
  673. handler:^(UIAlertAction * action) {
  674. [alertController dismissViewControllerAnimated:YES completion:nil];
  675. }];
  676. [alertController addAction:ok];
  677. UIWindow *alertWindow = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
  678. alertWindow.rootViewController = [[UIViewController alloc]init];
  679. alertWindow.windowLevel = UIWindowLevelAlert + 1;
  680. [alertWindow makeKeyAndVisible];
  681. [alertWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
  682. // Error for uploadFileFailure
  683. if ([[self getDelegate:uploadID] respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  684. [[self getDelegate:uploadID] uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:NSLocalizedString(@"_encrypt_error_", nil) errorCode:0];
  685. });
  686. return;
  687. }
  688. metadata.cryptated = YES;
  689. metadata.date = [NSDate new];
  690. metadata.fileID = uploadID;
  691. metadata.directoryID = directoryID;
  692. metadata.fileName = [fileNameCrypto stringByAppendingString:@".plist"];
  693. metadata.fileNameData = fileNameCrypto;
  694. metadata.fileNamePrint = fileName;
  695. metadata.localIdentifier = localIdentifier;
  696. metadata.session = session;
  697. metadata.sessionID = uploadID;
  698. metadata.sessionSelector = selector;
  699. metadata.sessionSelectorPost = selectorPost;
  700. metadata.title = [self getTitleFromPlistName:fileNameCrypto];
  701. metadata.type = k_metadataType_file;
  702. if (errorCode == 403) {
  703. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:fileName message:NSLocalizedString(@"_file_already_exists_", nil) preferredStyle:UIAlertControllerStyleAlert];
  704. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  705. dispatch_async(dispatch_get_main_queue(), ^{
  706. // Change Asset Data only for automatic upload
  707. //if ([selector isEqualToString:selectorUploadAutomatic])
  708. // [CCCoreData setCameraUploadDateAssetType:assetMediaType assetDate:assetDate activeAccount:_activeAccount];
  709. // Error for uploadFileFailure
  710. if ([[self getDelegate:uploadID] respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  711. [[self getDelegate:uploadID] uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:NSLocalizedString(@"_file_already_exists_", nil) errorCode:403];
  712. });
  713. return;
  714. }];
  715. UIAlertAction *overwriteAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_overwrite_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  716. // -- remove record --
  717. CCMetadata *metadataDelete = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(account == %@) AND (fileName == %@) AND (directoryID == %@)", _activeAccount, [fileNameCrypto stringByAppendingString:@".plist"], directoryID] context:nil];
  718. [CCCoreData deleteFile:metadataDelete serverUrl:serverUrl directoryUser:_directoryUser activeAccount:_activeAccount];
  719. #ifndef EXTENSION
  720. [CCGraphics createNewImageFrom:fileName directoryUser:_directoryUser fileNameTo:uploadID fileNamePrint:fileName size:@"m" imageForUpload:YES typeFile:metadata.typeFile writePreview:YES optimizedFileName:NO];
  721. #endif
  722. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  723. [[CCCrypto sharedManager] addPlistImage:[NSString stringWithFormat:@"%@/%@", _directoryUser, [fileNameCrypto stringByAppendingString:@".plist"]] fileNamePathImage:[NSTemporaryDirectory() stringByAppendingString:uploadID]];
  724. [CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  725. // DATA
  726. [self uploadURLSession:fileNameCrypto fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetDate:assetDate assetMediaType:assetMediaType cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  727. // PLIST
  728. [self uploadURLSession:[fileNameCrypto stringByAppendingString:@".plist"] fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetDate:assetDate assetMediaType:assetMediaType cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  729. }];
  730. [alertController addAction:cancelAction];
  731. [alertController addAction:overwriteAction];
  732. UIWindow *alertWindow = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
  733. alertWindow.rootViewController = [[UIViewController alloc]init];
  734. alertWindow.windowLevel = UIWindowLevelAlert + 1;
  735. [alertWindow makeKeyAndVisible];
  736. [alertWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
  737. } else {
  738. #ifndef EXTENSION
  739. [CCGraphics createNewImageFrom:fileName directoryUser:_directoryUser fileNameTo:uploadID fileNamePrint:fileName size:@"m" imageForUpload:YES typeFile:metadata.typeFile writePreview:YES optimizedFileName:NO];
  740. #endif
  741. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  742. [[CCCrypto sharedManager] addPlistImage:[NSString stringWithFormat:@"%@/%@", _directoryUser, [fileNameCrypto stringByAppendingString:@".plist"]] fileNamePathImage:[NSTemporaryDirectory() stringByAppendingString:uploadID]];
  743. [CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  744. // DATA
  745. [self uploadURLSession:fileNameCrypto fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetDate:assetDate assetMediaType:assetMediaType cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  746. // PLIST
  747. [self uploadURLSession:[fileNameCrypto stringByAppendingString:@".plist"] fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetDate:assetDate assetMediaType:assetMediaType cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  748. }
  749. }
  750. }
  751. else if (cryptated == NO) {
  752. metadata.cryptated = NO;
  753. metadata.date = [NSDate new];
  754. metadata.fileID = uploadID;
  755. metadata.directoryID = directoryID;
  756. metadata.fileName = fileName;
  757. metadata.fileNameData = fileName;
  758. metadata.fileNamePrint = fileName;
  759. metadata.localIdentifier = localIdentifier;
  760. metadata.session = session;
  761. metadata.sessionID = uploadID;
  762. metadata.sessionSelector = selector;
  763. metadata.sessionSelectorPost = selectorPost;
  764. metadata.type = k_metadataType_file;
  765. // File exists ???
  766. if (errorCode == 403) {
  767. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:fileName message:NSLocalizedString(@"_file_already_exists_", nil) preferredStyle:UIAlertControllerStyleAlert];
  768. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  769. dispatch_async(dispatch_get_main_queue(), ^{
  770. // Change Asset Data only for automatic upload
  771. //if ([selector isEqualToString:selectorUploadAutomatic])
  772. // [CCCoreData setCameraUploadDateAssetType:assetMediaType assetDate:assetDate activeAccount:_activeAccount];
  773. // Error for uploadFileFailure
  774. if ([[self getDelegate:uploadID] respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  775. [[self getDelegate:uploadID] uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:NSLocalizedString(@"_file_already_exists_", nil) errorCode:403];
  776. });
  777. return;
  778. }];
  779. UIAlertAction *overwriteAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_overwrite_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  780. // -- remove record --
  781. CCMetadata *metadataDelete = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(account == %@) AND (fileName == %@) AND (directoryID == %@)", _activeAccount, fileName, directoryID] context:nil];
  782. [CCCoreData deleteFile:metadataDelete serverUrl:serverUrl directoryUser:_directoryUser activeAccount:_activeAccount];
  783. // -- Go to Upload --
  784. [CCGraphics createNewImageFrom:metadata.fileNamePrint directoryUser:_directoryUser fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:YES typeFile:metadata.typeFile writePreview:YES optimizedFileName:NO];
  785. [CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  786. [self uploadURLSession:fileName fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetDate:assetDate assetMediaType:assetMediaType cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  787. }];
  788. [alertController addAction:cancelAction];
  789. [alertController addAction:overwriteAction];
  790. UIWindow *alertWindow = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
  791. alertWindow.rootViewController = [[UIViewController alloc] init];
  792. alertWindow.windowLevel = UIWindowLevelAlert + 1;
  793. [alertWindow makeKeyAndVisible];
  794. [alertWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
  795. } else {
  796. // -- Go to upload --
  797. #ifndef EXTENSION
  798. [CCGraphics createNewImageFrom:metadata.fileNamePrint directoryUser:_directoryUser fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:YES typeFile:metadata.typeFile writePreview:YES optimizedFileName:NO];
  799. #endif
  800. [CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  801. [self uploadURLSession:fileName fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetDate:assetDate assetMediaType:assetMediaType cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  802. }
  803. }
  804. }
  805. - (void)uploadFileMetadata:(CCMetadata *)metadata taskStatus:(NSInteger)taskStatus
  806. {
  807. BOOL send = NO;
  808. NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:metadata.directoryID activeAccount:_activeAccount];
  809. if (metadata.cryptated) {
  810. // ENCRYPTED
  811. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileNameData]] && [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileName]]) {
  812. send = YES;
  813. [self uploadURLSession:metadata.fileNameData fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl sessionID:metadata.sessionID session:metadata.session taskStatus:taskStatus assetDate:nil assetMediaType:0 cryptated:YES onlyPlist:NO selector:metadata.sessionSelector];
  814. [self uploadURLSession:metadata.fileName fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl sessionID:metadata.sessionID session:metadata.session taskStatus:taskStatus assetDate:nil assetMediaType:PHAssetMediaTypeUnknown cryptated:YES onlyPlist:NO selector:metadata.sessionSelector];
  815. }
  816. } else {
  817. // PLAIN
  818. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.sessionID]]) {
  819. send = YES;
  820. [self uploadURLSession:metadata.fileName fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl sessionID:metadata.sessionID session:metadata.session taskStatus:taskStatus assetDate:nil assetMediaType:PHAssetMediaTypeUnknown cryptated:NO onlyPlist:NO selector:metadata.sessionSelector];
  821. }
  822. }
  823. if (send) {
  824. NSLog(@"[LOG] Re-upload File : %@ - fileID : %@", metadata.fileNamePrint, metadata.fileID);
  825. // update Coredata
  826. [CCCoreData setMetadataSession:nil sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier: k_taskIdentifierNULL sessionTaskIdentifierPlist: k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"(sessionID == %@) AND (account == %@)", metadata.sessionID, _activeAccount] context:_context];
  827. } else {
  828. NSLog(@"[LOG] Error reUploadBackground, file not found.");
  829. #ifndef EXTENSION
  830. UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_no_reuploadfile_", nil) delegate:nil cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"_ok_", nil), nil];
  831. [alertView show];
  832. #endif
  833. }
  834. }
  835. - (void)uploadURLSession:(NSString *)fileName fileNamePrint:(NSString *)fileNamePrint serverUrl:(NSString *)serverUrl sessionID:(NSString*)sessionID session:(NSString *)session taskStatus:(NSInteger)taskStatus assetDate:(NSDate *)assetDate assetMediaType:(PHAssetMediaType)assetMediaType cryptated:(BOOL)cryptated onlyPlist:(BOOL)onlyPlist selector:(NSString *)selector
  836. {
  837. NSURLSession *sessionUpload;
  838. NSURL *url;
  839. NSMutableURLRequest *request;
  840. NSString *fileNamePath = [[NSString stringWithFormat:@"%@/%@", serverUrl, fileName] encodeString:NSUTF8StringEncoding];
  841. url = [NSURL URLWithString:fileNamePath];
  842. request = [NSMutableURLRequest requestWithURL:url];
  843. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  844. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  845. [request setHTTPMethod:@"PUT"];
  846. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  847. // Rename with the SessionID
  848. NSString *fileNameForUpload;
  849. if ([CCUtility isFileNotCryptated:fileName]) fileNameForUpload = sessionID;
  850. else fileNameForUpload = fileName;
  851. if (!onlyPlist) {
  852. if ([CCUtility isFileNotCryptated:fileName])
  853. [[NSFileManager defaultManager] moveItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNameForUpload] error:nil];
  854. if ([CCUtility isCryptoPlistString:fileName])
  855. [[NSFileManager defaultManager] moveItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNamePrint] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, sessionID] error:nil];
  856. }
  857. // file NOT exists
  858. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNameForUpload]] == NO) {
  859. dispatch_async(dispatch_get_main_queue(), ^{
  860. // Error for uploadFileFailure
  861. if ([[self getDelegate:sessionID] respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  862. [[self getDelegate:sessionID] uploadFileFailure:nil fileID:sessionID serverUrl:serverUrl selector:selector message:NSLocalizedString(@"_file_not_present_", nil) errorCode:404];
  863. [CCCoreData deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(sessionID == %@) AND (account == %@)", sessionID, _activeAccount]];
  864. });
  865. return;
  866. }
  867. if ([session isEqualToString:k_upload_session]) sessionUpload = [self sessionUpload];
  868. else if ([session isEqualToString:k_upload_session_foreground]) sessionUpload = [self sessionUploadForeground];
  869. else if ([session isEqualToString:k_upload_session_wwan]) sessionUpload = [self sessionWWanUpload];
  870. NSURLSessionUploadTask *uploadTask = [sessionUpload uploadTaskWithRequest:request fromFile:[NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNameForUpload]]];
  871. if (taskStatus == k_taskStatusCancel) [uploadTask cancel];
  872. else if (taskStatus == k_taskStatusSuspend) [uploadTask suspend];
  873. else if (taskStatus == k_taskStatusResume) [uploadTask resume];
  874. if ([[self getDelegate:sessionID] respondsToSelector:@selector(uploadTaskSave:)])
  875. [[self getDelegate:sessionID] uploadTaskSave:uploadTask];
  876. // COREDATA
  877. if (uploadTask == nil) {
  878. NSUInteger sessionTaskIdentifier = k_taskIdentifierNULL;
  879. NSUInteger sessionTaskIdentifierPlist = k_taskIdentifierNULL;
  880. if ([CCUtility isFileNotCryptated:fileName] || [CCUtility isCryptoString:fileName]) sessionTaskIdentifier = k_taskIdentifierError;
  881. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = k_taskIdentifierError;
  882. [CCCoreData setMetadataSession:session sessionError:[NSString stringWithFormat:@"%@", @k_CCErrorTaskNil] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"(sessionID == %@) AND (account == %@)", sessionID, _activeAccount] context:_context];
  883. NSLog(@"[LOG] Upload file TaskIdentifier [error CCErrorTaskNil] - %@ - %@", fileName, fileNamePrint);
  884. } else {
  885. NSUInteger sessionTaskIdentifier = k_taskIdentifierNULL;
  886. NSUInteger sessionTaskIdentifierPlist = k_taskIdentifierNULL;
  887. if ([CCUtility isCryptoString:fileName] || [CCUtility isFileNotCryptated:fileName]) sessionTaskIdentifier = uploadTask.taskIdentifier;
  888. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = uploadTask.taskIdentifier;
  889. [CCCoreData setMetadataSession:session sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"(sessionID == %@) AND (account == %@)", sessionID, _activeAccount] context:_context];
  890. // Change Asset Data only for Automatic Upload
  891. //if ([selector isEqualToString:selectorUploadAutomatic])
  892. // [CCCoreData setCameraUploadDateAssetType:assetMediaType assetDate:assetDate activeAccount:_activeAccount];
  893. NSLog(@"[LOG] Upload file %@ - %@ TaskIdentifier %lu", fileName,fileNamePrint, (unsigned long)uploadTask.taskIdentifier);
  894. }
  895. dispatch_async(dispatch_get_main_queue(), ^{
  896. // refresh main
  897. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  898. [self.delegate reloadDatasource:serverUrl fileID:nil selector:selector];
  899. });
  900. }
  901. - (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveData:(NSData *)data
  902. {
  903. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)dataTask.response;
  904. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  905. NSNumber *taskIdentifier = [NSNumber numberWithLong:dataTask.taskIdentifier];
  906. if (data)
  907. [_taskData setObject:[data copy] forKey:taskIdentifier];
  908. }
  909. }
  910. - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend
  911. {
  912. NSString *url = [[[task currentRequest].URL absoluteString] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
  913. NSString *fileName = [url lastPathComponent];
  914. NSString *serverUrl = [self getServerUrlFromUrl:url];
  915. // if plist return
  916. if ([CCUtility getTypeFileName:fileName] == k_metadataTypeFilenamePlist)
  917. return;
  918. float progress = (float) totalBytesSent / (float)totalBytesExpectedToSend;
  919. if ([_currentProgressMetadata.fileName isEqualToString:fileName] == NO && [_currentProgressMetadata.fileNameData isEqualToString:fileName] == NO)
  920. _currentProgressMetadata = [CCCoreData getMetadataFromFileName:fileName directoryID:[CCCoreData getDirectoryIDFromServerUrl:serverUrl activeAccount:_activeAccount] activeAccount:_activeAccount context:_context];
  921. //NSLog(@"[LOG] %@ - %f", fileName, progress);
  922. dispatch_async(dispatch_get_main_queue(), ^{
  923. if (_currentProgressMetadata) {
  924. if (_currentProgressMetadata) {
  925. NSDictionary* userInfo = @{@"fileID": (_currentProgressMetadata.fileID), @"serverUrl": (serverUrl), @"cryptated": ([NSNumber numberWithBool:_currentProgressMetadata.cryptated]), @"progress": ([NSNumber numberWithFloat:progress])};
  926. [[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  927. }
  928. }
  929. });
  930. }
  931. - (void)uploadFileSuccessFailure:(CCMetadata *)metadata fileName:(NSString *)fileName fileID:(NSString *)fileID rev:(NSString *)rev date:(NSDate *)date serverUrl:(NSString *)serverUrl errorCode:(NSInteger)errorCode
  932. {
  933. NSString *sessionID = metadata.sessionID;
  934. // Progress Task
  935. NSDictionary* userInfo = @{@"fileID": (fileID), @"serverUrl": (serverUrl), @"cryptated": ([NSNumber numberWithBool:NO]), @"progress": ([NSNumber numberWithFloat:0.0])};
  936. [[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  937. // ERRORE
  938. if (errorCode != 0) {
  939. #ifndef EXTENSION
  940. if (sessionID)
  941. [app.listProgressMetadata removeObjectForKey:sessionID];
  942. #endif
  943. // Mark error only if not Cancelled Task
  944. if (errorCode != kCFURLErrorCancelled) {
  945. NSUInteger sessionTaskIdentifier = k_taskIdentifierNULL;
  946. NSUInteger sessionTaskIdentifierPlist = k_taskIdentifierNULL;
  947. if ([CCUtility isFileNotCryptated:fileName] || [CCUtility isCryptoString:fileName]) sessionTaskIdentifier = k_taskIdentifierError;
  948. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = k_taskIdentifierError;
  949. [CCCoreData setMetadataSession:nil sessionError:[NSString stringWithFormat:@"%@", @(errorCode)] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"(sessionID == %@) AND (account == %@)", metadata.sessionID, _activeAccount] context:_context];
  950. }
  951. dispatch_async(dispatch_get_main_queue(), ^{
  952. if ([[self getDelegate:sessionID] respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  953. [[self getDelegate:sessionID] uploadFileFailure:nil fileID:fileID serverUrl:serverUrl selector:metadata.sessionSelector message:[CCError manageErrorKCF:errorCode withNumberError:YES] errorCode:errorCode];
  954. });
  955. return;
  956. }
  957. // PLAIN or PLIST
  958. if ([CCUtility isFileNotCryptated:fileName] || [CCUtility isCryptoPlistString:fileName]) {
  959. metadata.fileID = fileID;
  960. metadata.rev = rev;
  961. metadata.date = date;
  962. metadata.sessionTaskIdentifierPlist = k_taskIdentifierDone;
  963. if ([CCUtility isFileNotCryptated:fileName])
  964. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  965. // copy ico in new fileID
  966. [CCUtility copyFileAtPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, sessionID] toPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, fileID]];
  967. [CCCoreData updateMetadata:metadata predicate:[NSPredicate predicateWithFormat:@"(sessionID == %@) AND (account == %@)", sessionID, _activeAccount] activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  968. }
  969. // CRYPTO
  970. if ([CCUtility isCryptoString:fileName]) {
  971. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  972. [CCCoreData updateMetadata:metadata predicate:[NSPredicate predicateWithFormat:@"(sessionID == %@) AND (account == %@)", sessionID, _activeAccount] activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  973. }
  974. // ALL TASK DONE (PLAIN/CRYPTO)
  975. if (metadata.sessionTaskIdentifier == k_taskIdentifierDone && metadata.sessionTaskIdentifierPlist == k_taskIdentifierDone) {
  976. #ifndef EXTENSION
  977. if (sessionID)
  978. [app.listProgressMetadata removeObjectForKey:sessionID];
  979. #endif
  980. NSLog(@"[LOG] Insert new upload : %@ - FileNamePrint : %@ - fileID : %@", metadata.fileName, metadata.fileNamePrint, metadata.fileID);
  981. metadata.session = @"";
  982. metadata.sessionError = @"";
  983. metadata.sessionID = @"";
  984. [CCCoreData updateMetadata:metadata predicate:[NSPredicate predicateWithFormat:@"(sessionID == %@) AND (account == %@)", sessionID, _activeAccount] activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  985. // rename file sessionID -> fileID
  986. [CCUtility moveFileAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, sessionID] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileID]];
  987. // remove temp icon
  988. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, sessionID] error:nil];
  989. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, metadata.fileID] error:nil];
  990. // if crypto remove filename data
  991. if (metadata.cryptated)
  992. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileNameData] error:nil];
  993. // Local
  994. if (metadata.directory == NO)
  995. [CCCoreData addLocalFile:metadata activeAccount:_activeAccount];
  996. // EXIF
  997. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  998. [CCExifGeo setExifLocalTableFileID:metadata directoryUser:_directoryUser activeAccount:_activeAccount];
  999. // Create ICON
  1000. if (metadata.directory == NO)
  1001. [CCGraphics createNewImageFrom:metadata.fileID directoryUser:_directoryUser fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:NO typeFile:metadata.typeFile writePreview:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  1002. // Optimization
  1003. if ([CCUtility getUploadAndRemovePhoto] || [metadata.sessionSelectorPost isEqualToString:selectorUploadRemovePhoto])
  1004. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileID] error:nil];
  1005. // Copy photo or video in the photo album for automatic upload
  1006. if ([metadata.localIdentifier length] > 0 && [metadata.sessionSelector isEqualToString:selectorUploadAutomatic]) {
  1007. PHAsset *asset;
  1008. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.localIdentifier] options:nil];
  1009. if(result.count){
  1010. asset = result[0];
  1011. [asset saveToAlbum:k_brand completionBlock:^(BOOL success) {
  1012. if (success) NSLog(@"[LOG] Insert file %@ in %@", metadata.fileNamePrint, k_brand);
  1013. else NSLog(@"[LOG] File %@ do not insert in %@", metadata.fileNamePrint, k_brand);
  1014. }];
  1015. }
  1016. }
  1017. dispatch_async(dispatch_get_main_queue(), ^{
  1018. if ([[self getDelegate:sessionID] respondsToSelector:@selector(uploadFileSuccess:fileID:serverUrl:selector:selectorPost:)])
  1019. [[self getDelegate:sessionID] uploadFileSuccess:nil fileID:metadata.fileID serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost];
  1020. });
  1021. }
  1022. }
  1023. #pragma --------------------------------------------------------------------------------------------
  1024. #pragma mark ===== Download Verify =====
  1025. #pragma --------------------------------------------------------------------------------------------
  1026. - (void)verifyDownloadInProgress
  1027. {
  1028. NSArray *dataSourceDownload = [CCCoreData getTableMetadataDownloadAccount:_activeAccount];
  1029. NSArray *dataSourceDownloadWWan = [CCCoreData getTableMetadataDownloadWWanAccount:_activeAccount];
  1030. NSMutableArray *dataSource = [[NSMutableArray alloc] init];
  1031. [dataSource addObjectsFromArray:dataSourceDownload];
  1032. [dataSource addObjectsFromArray:dataSourceDownloadWWan];
  1033. NSLog(@"[LOG] Verify download file in progress n. %lu", (unsigned long)[dataSource count]);
  1034. for (TableMetadata *record in dataSource) {
  1035. __block CCMetadata *metadata = [CCCoreData insertEntityInMetadata:record];
  1036. NSURLSession *session = [self getSessionfromSessionDescription:metadata.session];
  1037. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  1038. BOOL findTask = NO;
  1039. BOOL findTaskPlist = NO;
  1040. for (NSURLSessionDownloadTask *downloadTask in downloadTasks) {
  1041. NSLog(@"[LOG] Find metadata Tasks [%i %i] = [%lu] state : %lu", metadata.sessionTaskIdentifier, metadata.sessionTaskIdentifierPlist ,(unsigned long)downloadTask.taskIdentifier, (unsigned long)[downloadTask state]);
  1042. if (metadata.sessionTaskIdentifier == downloadTask.taskIdentifier) findTask = YES;
  1043. if (metadata.sessionTaskIdentifierPlist == downloadTask.taskIdentifier) findTaskPlist = YES;
  1044. if (findTask == YES || findTaskPlist == YES) break; // trovati, download ancora in corso
  1045. }
  1046. // DATA
  1047. if (findTask == NO && metadata.sessionTaskIdentifier >= 0) {
  1048. NSLog(@"[LOG] NOT Find metadata Task [%i] fileID : %@ - filename : %@", metadata.sessionTaskIdentifier, metadata.fileID, metadata.fileNameData);
  1049. [CCCoreData setMetadataSession:nil sessionError:[NSString stringWithFormat:@"%@", @k_CCErrorTaskDownloadNotFound] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier: k_taskIdentifierError sessionTaskIdentifierPlist: k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", metadata.fileID, _activeAccount] context:_context];
  1050. dispatch_async(dispatch_get_main_queue(), ^{
  1051. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  1052. [self.delegate reloadDatasource:[CCCoreData getServerUrlFromDirectoryID:metadata.directoryID activeAccount:metadata.account] fileID:metadata.fileID selector:nil];
  1053. });
  1054. }
  1055. // PLIST
  1056. if (findTaskPlist == NO && metadata.sessionTaskIdentifierPlist >= 0) {
  1057. NSLog(@"[LOG] NOT Find metadata TaskPlist [%i] fileID : %@ - filename : %@", metadata.sessionTaskIdentifierPlist, metadata.fileID, metadata.fileName);
  1058. [CCCoreData setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier: k_taskIdentifierNULL sessionTaskIdentifierPlist: k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"(fileID == %@) AND (account == %@)", metadata.fileID, _activeAccount] context:_context];
  1059. dispatch_async(dispatch_get_main_queue(), ^{
  1060. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  1061. [self.delegate reloadDatasource:[CCCoreData getServerUrlFromDirectoryID:metadata.directoryID activeAccount:metadata.account] fileID:metadata.fileID selector:nil];
  1062. });
  1063. }
  1064. }];
  1065. }
  1066. [self automaticDownloadInError];
  1067. }
  1068. - (void)automaticDownloadInError
  1069. {
  1070. NSMutableSet *serversUrl = [[NSMutableSet alloc] init];
  1071. NSArray *records = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (session CONTAINS 'download') AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))", _activeAccount, k_taskIdentifierError, k_taskIdentifierError] context:nil];
  1072. NSLog(@"[LOG] Verify re download n. %lu", (unsigned long)[records count]);
  1073. for (TableMetadata *record in records) {
  1074. CCMetadata *metadata = [CCCoreData insertEntityInMetadata:record];
  1075. NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:metadata.directoryID activeAccount:metadata.account];
  1076. if (metadata.sessionTaskIdentifier == k_taskIdentifierError)
  1077. [self downloadFile:metadata serverUrl:serverUrl downloadData:YES downloadPlist:NO selector:metadata.sessionSelector selectorPost:nil session:k_download_session taskStatus: k_taskStatusResume delegate:nil];
  1078. if (metadata.sessionTaskIdentifierPlist == k_taskIdentifierError)
  1079. [self downloadFile:metadata serverUrl:serverUrl downloadData:NO downloadPlist:YES selector:metadata.sessionSelector selectorPost:nil session:k_download_session taskStatus: k_taskStatusResume delegate:nil];
  1080. [serversUrl addObject:serverUrl];
  1081. NSLog(@"[LOG] Re download file : %@ - %@ [%i %i]", metadata.fileName, metadata.fileNamePrint, metadata.sessionTaskIdentifier, metadata.sessionTaskIdentifierPlist);
  1082. }
  1083. dispatch_async(dispatch_get_main_queue(), ^{
  1084. for (NSString *serverUrl in serversUrl)
  1085. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  1086. [self.delegate reloadDatasource:serverUrl fileID:nil selector:nil];
  1087. });
  1088. }
  1089. #pragma --------------------------------------------------------------------------------------------
  1090. #pragma mark ===== Upload Verify =====
  1091. #pragma --------------------------------------------------------------------------------------------
  1092. - (void)verifyUploadInProgress
  1093. {
  1094. NSArray *dataSourceUpload = [CCCoreData getTableMetadataUploadAccount:_activeAccount];
  1095. NSArray *dataSourceUploadWWan = [CCCoreData getTableMetadataUploadWWanAccount:_activeAccount];
  1096. NSMutableArray *dataSource = [[NSMutableArray alloc] init];
  1097. [dataSource addObjectsFromArray:dataSourceUpload];
  1098. [dataSource addObjectsFromArray:dataSourceUploadWWan];
  1099. NSLog(@"[LOG] Verify upload file in progress n. %lu", (unsigned long)[dataSource count]);
  1100. for (TableMetadata *record in dataSource) {
  1101. __block CCMetadata *metadata = [CCCoreData insertEntityInMetadata:record];
  1102. __block NSString *serverUrl = [CCCoreData getServerUrlFromDirectoryID:metadata.directoryID activeAccount:_activeAccount];
  1103. NSURLSession *session = [self getSessionfromSessionDescription:metadata.session];
  1104. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  1105. BOOL findTask = NO;
  1106. BOOL findTaskPlist = NO;
  1107. // cerchiamo la corrispondenza dei task
  1108. for (NSURLSessionUploadTask *uploadTask in uploadTasks) {
  1109. NSLog(@"[LOG] Find metadata Tasks [%i %i] = [%lu] state : %lu", metadata.sessionTaskIdentifier, metadata.sessionTaskIdentifierPlist , (unsigned long)uploadTask.taskIdentifier, (unsigned long)[uploadTask state]);
  1110. if (metadata.sessionTaskIdentifier == uploadTask.taskIdentifier) findTask = YES;
  1111. if (metadata.sessionTaskIdentifierPlist == uploadTask.taskIdentifier) findTaskPlist = YES;
  1112. if (findTask == YES || findTaskPlist == YES) break;
  1113. }
  1114. // se non c'è (ci sono) il relativo uploadTask.taskIdentifier allora chiediamolo
  1115. if ((metadata.cryptated == YES && findTask == NO && findTaskPlist == NO) || (metadata.cryptated == NO && findTask == NO)) {
  1116. NSLog(@"[LOG] Call ReadFileVerifyUpload because this file %@ (criptated %i) is in progress but there is no task : [%i %i]", metadata.fileNamePrint, metadata.cryptated, metadata.sessionTaskIdentifier, metadata.sessionTaskIdentifierPlist);
  1117. if (metadata.sessionTaskIdentifier >= 0) [self readFileVerifyUpload:metadata.fileNameData fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl];
  1118. if (metadata.sessionTaskIdentifierPlist >= 0) [self readFileVerifyUpload:metadata.fileName fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl];
  1119. }
  1120. }];
  1121. // Notification change session
  1122. dispatch_async(dispatch_get_main_queue(), ^{
  1123. NSArray *object = [[NSArray alloc] initWithObjects:session, metadata, nil];
  1124. [[NSNotificationCenter defaultCenter] postNotificationName:k_networkingSessionNotification object:object];
  1125. });
  1126. }
  1127. [self automaticUploadInError];
  1128. }
  1129. - (void)automaticUploadInError
  1130. {
  1131. NSMutableSet *directoryIDs = [[NSMutableSet alloc] init];
  1132. NSArray *records = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (session CONTAINS 'upload') AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))", _activeAccount, k_taskIdentifierError, k_taskIdentifierError] context:nil];
  1133. NSLog(@"[LOG] Verify re upload n. %lu", (unsigned long)[records count]);
  1134. for (TableMetadata *record in records) {
  1135. CCMetadata *metadata = [CCCoreData insertEntityInMetadata:record];
  1136. [self uploadFileMetadata:metadata taskStatus: k_taskStatusResume];
  1137. [directoryIDs addObject:metadata.directoryID];
  1138. NSLog(@"[LOG] Re upload file : %@", metadata.fileName);
  1139. }
  1140. dispatch_async(dispatch_get_main_queue(), ^{
  1141. for (NSString *directoryID in directoryIDs)
  1142. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  1143. [self.delegate reloadDatasource:[CCCoreData getServerUrlFromDirectoryID:directoryID activeAccount:_activeAccount] fileID:nil selector:nil];
  1144. });
  1145. }
  1146. - (void)readFileVerifyUpload:(NSString *)fileName fileNamePrint:(NSString *)fileNamePrint serverUrl:(NSString *)serverUrl
  1147. {
  1148. #ifndef EXTENSION
  1149. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:_activeAccount];
  1150. metadataNet.action = actionReadFile;
  1151. metadataNet.fileName = fileName;
  1152. metadataNet.fileNamePrint = fileNamePrint;
  1153. metadataNet.serverUrl = serverUrl;
  1154. metadataNet.selector = selectorReadFileVerifyUpload;
  1155. [app addNetworkingOperationQueue:app.netQueue delegate:self metadataNet:metadataNet];
  1156. #else
  1157. NSLog(@"[LOG] Function not available for extension.");
  1158. #endif
  1159. }
  1160. //
  1161. // File exists : selectorReadFileVerifyUpload
  1162. //
  1163. - (void)readFileSuccess:(CCMetadataNet *)metadataNet metadata:(CCMetadata *)metadata
  1164. {
  1165. NSString *fileName;
  1166. if ([CCUtility isCryptoString:metadata.fileName])
  1167. fileName = [metadata.fileName stringByAppendingString:@".plist"];
  1168. else
  1169. fileName = metadataNet.fileName;
  1170. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:metadataNet.serverUrl activeAccount:_activeAccount];
  1171. CCMetadata *metadataTemp = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileName == %@) AND (directoryID == %@) AND (account == %@)", fileName , directoryID, _activeAccount] context:_context];
  1172. // is completed ?
  1173. if (metadataTemp.sessionTaskIdentifier == k_taskIdentifierDone && metadataTemp.sessionTaskIdentifierPlist == k_taskIdentifierDone) {
  1174. [CCGraphics createNewImageFrom:metadata.fileID directoryUser:_directoryUser fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:NO typeFile:metadata.typeFile writePreview:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  1175. NSLog(@"[LOG] Verify read file success, but files already processed");
  1176. dispatch_async(dispatch_get_main_queue(), ^{
  1177. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  1178. [self.delegate reloadDatasource:[CCCoreData getServerUrlFromDirectoryID:directoryID activeAccount:_activeAccount] fileID:metadataTemp.fileID selector:metadataNet.selector];
  1179. });
  1180. } else {
  1181. [self uploadFileSuccessFailure:metadataTemp fileName:metadataNet.fileName fileID:metadata.fileID rev:metadata.rev date:metadata.date serverUrl:metadataNet.serverUrl errorCode:0];
  1182. }
  1183. }
  1184. //
  1185. // File do not exists : selectorReadFileVerifyUpload
  1186. //
  1187. - (void)readFileFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  1188. {
  1189. NSString *fileName;
  1190. if ([CCUtility isCryptoString:metadataNet.fileName])
  1191. fileName = [metadataNet.fileName stringByAppendingString:@".plist"];
  1192. else
  1193. fileName = metadataNet.fileName;
  1194. NSString *directoryID = [CCCoreData getDirectoryIDFromServerUrl:metadataNet.serverUrl activeAccount:_activeAccount];
  1195. CCMetadata *metadata = [CCCoreData getMetadataWithPreficate:[NSPredicate predicateWithFormat:@"(fileName == %@) AND (directoryID == %@) AND (account == %@)",fileName , directoryID, _activeAccount] context:_context];
  1196. NSInteger error;
  1197. if (errorCode == kOCErrorServerPathNotFound)
  1198. error = k_CCErrorFileUploadNotFound;
  1199. else
  1200. error = errorCode;
  1201. [self uploadFileSuccessFailure:metadata fileName:metadataNet.fileName fileID:metadata.fileID rev:metadata.rev date:metadata.date serverUrl:metadataNet.serverUrl errorCode:error];
  1202. }
  1203. #pragma --------------------------------------------------------------------------------------------
  1204. #pragma mark ===== Utility =====
  1205. #pragma --------------------------------------------------------------------------------------------
  1206. - (id)getDelegate:(NSString *)fileID
  1207. {
  1208. id delegate = [_delegates objectForKey:fileID];
  1209. if (delegate)
  1210. return delegate;
  1211. else
  1212. return self.delegate;
  1213. }
  1214. - (NSString *)getServerUrlFromUrl:(NSString *)url
  1215. {
  1216. NSString *fileName = [url lastPathComponent];
  1217. url = [url stringByReplacingOccurrencesOfString:[@"/" stringByAppendingString:fileName] withString:@""];
  1218. return url;
  1219. }
  1220. - (NSString *)getTitleFromPlistName:(NSString *)fileName
  1221. {
  1222. if ([[fileName lastPathComponent] isEqualToString:@"plist"] == NO)
  1223. fileName = [fileName stringByAppendingString:@".plist"];
  1224. if (![[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]]) return nil;
  1225. NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]];
  1226. return [data objectForKey:@"title"];
  1227. }
  1228. @end