CCNetworking.m 99 KB

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