CCNetworking.m 101 KB

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