CCNetworking.m 101 KB

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