CCNetworking.m 96 KB

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