CCNetworking.m 67 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325
  1. //
  2. // CCNetworking.m
  3. // Nextcloud iOS
  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 "NCEndToEndEncryption.h"
  25. #import "NCNetworkingEndToEnd.h"
  26. #import "AppDelegate.h"
  27. #import "CCCertificate.h"
  28. #import "NSDate+ISO8601.h"
  29. #import "NSString+Encode.h"
  30. #import "NCBridgeSwift.h"
  31. @interface CCNetworking ()
  32. {
  33. NSMutableDictionary *_taskData;
  34. NSString *_activeAccount;
  35. NSString *_activePassword;
  36. NSString *_activeUser;
  37. NSString *_activeUserID;
  38. NSString *_activeUrl;
  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 sessionWWanUpload];
  63. [self sessionUploadForeground];
  64. // *** NOT Initialize ONLY for EXTENSION !!!!! ***
  65. // [self sessionUploadExtension];
  66. [self sharedOCCommunication];
  67. [self settingAccount];
  68. return self;
  69. }
  70. - (void)settingAccount
  71. {
  72. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
  73. _activeAccount = tableAccount.account;
  74. _activePassword = tableAccount.password;
  75. _activeUser = tableAccount.user;
  76. _activeUserID = tableAccount.userID;
  77. _activeUrl = tableAccount.url;
  78. }
  79. #pragma --------------------------------------------------------------------------------------------
  80. #pragma mark ===== Session =====
  81. #pragma --------------------------------------------------------------------------------------------
  82. - (NSURLSession *)sessionDownload
  83. {
  84. static NSURLSession *sessionDownload = nil;
  85. if (sessionDownload == nil) {
  86. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_download_session];
  87. configuration.allowsCellularAccess = YES;
  88. configuration.sessionSendsLaunchEvents = YES;
  89. configuration.discretionary = NO;
  90. configuration.HTTPMaximumConnectionsPerHost = 1;
  91. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  92. sessionDownload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  93. sessionDownload.sessionDescription = k_download_session;
  94. }
  95. return sessionDownload;
  96. }
  97. - (NSURLSession *)sessionDownloadForeground
  98. {
  99. static NSURLSession *sessionDownloadForeground = nil;
  100. if (sessionDownloadForeground == nil) {
  101. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  102. configuration.allowsCellularAccess = YES;
  103. configuration.discretionary = NO;
  104. configuration.HTTPMaximumConnectionsPerHost = 1;
  105. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  106. sessionDownloadForeground = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  107. sessionDownloadForeground.sessionDescription = k_download_session_foreground;
  108. }
  109. return sessionDownloadForeground;
  110. }
  111. - (NSURLSession *)sessionWWanDownload
  112. {
  113. static NSURLSession *sessionWWanDownload = nil;
  114. if (sessionWWanDownload == nil) {
  115. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_download_session_wwan];
  116. configuration.allowsCellularAccess = NO;
  117. configuration.sessionSendsLaunchEvents = YES;
  118. configuration.discretionary = NO;
  119. configuration.HTTPMaximumConnectionsPerHost = 1;
  120. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  121. sessionWWanDownload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  122. sessionWWanDownload.sessionDescription = k_download_session_wwan;
  123. }
  124. return sessionWWanDownload;
  125. }
  126. - (NSURLSession *)sessionUpload
  127. {
  128. static NSURLSession *sessionUpload = nil;
  129. if (sessionUpload == nil) {
  130. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_upload_session];
  131. configuration.allowsCellularAccess = YES;
  132. configuration.sessionSendsLaunchEvents = YES;
  133. configuration.discretionary = NO;
  134. configuration.HTTPMaximumConnectionsPerHost = 1;
  135. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  136. sessionUpload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  137. sessionUpload.sessionDescription = k_upload_session;
  138. }
  139. return sessionUpload;
  140. }
  141. - (NSURLSession *)sessionWWanUpload
  142. {
  143. static NSURLSession *sessionWWanUpload = nil;
  144. if (sessionWWanUpload == nil) {
  145. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_upload_session_wwan];
  146. configuration.allowsCellularAccess = NO;
  147. configuration.sessionSendsLaunchEvents = YES;
  148. configuration.discretionary = NO;
  149. configuration.HTTPMaximumConnectionsPerHost = 1;
  150. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  151. sessionWWanUpload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  152. sessionWWanUpload.sessionDescription = k_upload_session_wwan;
  153. }
  154. return sessionWWanUpload;
  155. }
  156. - (NSURLSession *)sessionUploadForeground
  157. {
  158. static NSURLSession *sessionUploadForeground;
  159. if (sessionUploadForeground == nil) {
  160. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  161. configuration.allowsCellularAccess = YES;
  162. configuration.discretionary = NO;
  163. configuration.HTTPMaximumConnectionsPerHost = 1;
  164. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  165. sessionUploadForeground = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  166. sessionUploadForeground.sessionDescription = k_upload_session_foreground;
  167. }
  168. return sessionUploadForeground;
  169. }
  170. - (NSURLSession *)sessionUploadExtension
  171. {
  172. static NSURLSession *sessionUpload = nil;
  173. if (sessionUpload == nil) {
  174. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_upload_session_extension];
  175. configuration.allowsCellularAccess = YES;
  176. configuration.sessionSendsLaunchEvents = YES;
  177. configuration.discretionary = NO;
  178. configuration.HTTPMaximumConnectionsPerHost = 1;
  179. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  180. configuration.sharedContainerIdentifier = [NCBrandOptions sharedInstance].capabilitiesGroups;
  181. sessionUpload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  182. sessionUpload.sessionDescription = k_upload_session_extension;
  183. }
  184. return sessionUpload;
  185. }
  186. - (OCCommunication *)sharedOCCommunication
  187. {
  188. static OCCommunication* sharedOCCommunication = nil;
  189. if (sharedOCCommunication == nil)
  190. {
  191. // Network
  192. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  193. configuration.allowsCellularAccess = YES;
  194. configuration.discretionary = NO;
  195. configuration.HTTPMaximumConnectionsPerHost = k_maxConcurrentOperation;
  196. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  197. OCURLSessionManager *networkSessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:configuration];
  198. [networkSessionManager.operationQueue setMaxConcurrentOperationCount: k_maxConcurrentOperation];
  199. networkSessionManager.responseSerializer = [AFHTTPResponseSerializer serializer];
  200. // Download
  201. NSURLSessionConfiguration *configurationDownload = [NSURLSessionConfiguration defaultSessionConfiguration];
  202. configurationDownload.allowsCellularAccess = YES;
  203. configurationDownload.discretionary = NO;
  204. configurationDownload.HTTPMaximumConnectionsPerHost = 1;
  205. configurationDownload.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  206. configurationDownload.timeoutIntervalForRequest = k_timeout_upload;
  207. OCURLSessionManager *downloadSessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:configurationDownload];
  208. [downloadSessionManager.operationQueue setMaxConcurrentOperationCount:1];
  209. [downloadSessionManager setSessionDidReceiveAuthenticationChallengeBlock:^NSURLSessionAuthChallengeDisposition (NSURLSession *session, NSURLAuthenticationChallenge *challenge, NSURLCredential * __autoreleasing *credential) {
  210. return NSURLSessionAuthChallengePerformDefaultHandling;
  211. }];
  212. // Upload
  213. NSURLSessionConfiguration *configurationUpload = [NSURLSessionConfiguration defaultSessionConfiguration];
  214. configurationUpload.allowsCellularAccess = YES;
  215. configurationUpload.discretionary = NO;
  216. configurationUpload.HTTPMaximumConnectionsPerHost = 1;
  217. configurationUpload.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  218. configurationUpload.timeoutIntervalForRequest = k_timeout_upload;
  219. OCURLSessionManager *uploadSessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:configurationUpload];
  220. [uploadSessionManager.operationQueue setMaxConcurrentOperationCount:1];
  221. [uploadSessionManager setSessionDidReceiveAuthenticationChallengeBlock:^NSURLSessionAuthChallengeDisposition (NSURLSession *session, NSURLAuthenticationChallenge *challenge, NSURLCredential * __autoreleasing *credential) {
  222. return NSURLSessionAuthChallengePerformDefaultHandling;
  223. }];
  224. sharedOCCommunication = [[OCCommunication alloc] initWithUploadSessionManager:uploadSessionManager andDownloadSessionManager:downloadSessionManager andNetworkSessionManager:networkSessionManager];
  225. }
  226. return sharedOCCommunication;
  227. }
  228. - (OCCommunication *)sharedOCCommunicationExtensionDownload
  229. {
  230. static OCCommunication *sharedOCCommunicationExtensionDownload = nil;
  231. if (sharedOCCommunicationExtensionDownload == nil)
  232. {
  233. NSURLSessionConfiguration *config = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_download_session_extension];
  234. config.sharedContainerIdentifier = [NCBrandOptions sharedInstance].capabilitiesGroups;
  235. config.HTTPMaximumConnectionsPerHost = 1;
  236. config.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  237. config.timeoutIntervalForRequest = k_timeout_upload;
  238. config.sessionSendsLaunchEvents = YES;
  239. [config setAllowsCellularAccess:YES];
  240. OCURLSessionManager *sessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:config];
  241. [sessionManager.operationQueue setMaxConcurrentOperationCount:1];
  242. [sessionManager setSessionDidReceiveAuthenticationChallengeBlock:^NSURLSessionAuthChallengeDisposition (NSURLSession *session, NSURLAuthenticationChallenge *challenge, NSURLCredential * __autoreleasing *credential) {
  243. return NSURLSessionAuthChallengePerformDefaultHandling;
  244. }];
  245. sharedOCCommunicationExtensionDownload = [[OCCommunication alloc] initWithUploadSessionManager:nil andDownloadSessionManager:sessionManager andNetworkSessionManager:nil];
  246. }
  247. return sharedOCCommunicationExtensionDownload;
  248. }
  249. - (NSURLSession *)getSessionfromSessionDescription:(NSString *)sessionDescription
  250. {
  251. if ([sessionDescription isEqualToString:k_download_session]) return [self sessionDownload];
  252. if ([sessionDescription isEqualToString:k_download_session_foreground]) return [self sessionDownloadForeground];
  253. if ([sessionDescription isEqualToString:k_download_session_wwan]) return [self sessionWWanDownload];
  254. if ([sessionDescription isEqualToString:k_upload_session]) return [self sessionUpload];
  255. if ([sessionDescription isEqualToString:k_upload_session_wwan]) return [self sessionWWanUpload];
  256. if ([sessionDescription isEqualToString:k_upload_session_foreground]) return [self sessionUploadForeground];
  257. return nil;
  258. }
  259. - (void)invalidateAndCancelAllSession
  260. {
  261. [[self sessionDownload] invalidateAndCancel];
  262. [[self sessionDownloadForeground] invalidateAndCancel];
  263. [[self sessionWWanDownload] invalidateAndCancel];
  264. [[self sessionUpload] invalidateAndCancel];
  265. [[self sessionWWanUpload] invalidateAndCancel];
  266. [[self sessionUploadForeground] invalidateAndCancel];
  267. }
  268. - (NSArray *)getUploadTasksExtensionSession
  269. {
  270. __block NSArray *tasks = [NSArray new];
  271. [[self sessionUploadExtension] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  272. tasks = uploadTasks;
  273. }];
  274. return tasks;
  275. }
  276. #pragma --------------------------------------------------------------------------------------------
  277. #pragma mark ===== URLSession download/upload =====
  278. #pragma --------------------------------------------------------------------------------------------
  279. - (void)URLSession:(NSURLSession *)session didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler
  280. {
  281. // The pinnning check
  282. if ([[CCCertificate sharedManager] checkTrustedChallenge:challenge]) {
  283. completionHandler(NSURLSessionAuthChallengeUseCredential, [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]);
  284. } else {
  285. completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  286. }
  287. }
  288. - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error
  289. {
  290. NSString *url = [[[task currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  291. if (!url)
  292. return;
  293. NSString *fileName = [url lastPathComponent];
  294. NSString *serverUrl = [self getServerUrlFromUrl:url];
  295. if (!serverUrl) return;
  296. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  297. if (!directoryID) return;
  298. tableMetadata *metadata;
  299. NSInteger errorCode;
  300. NSDate *date = [NSDate date];
  301. NSDateFormatter *dateFormatter = [NSDateFormatter new];
  302. NSLocale *enUSPOSIXLocale = [NSLocale localeWithLocaleIdentifier:@"en_US_POSIX"];
  303. [dateFormatter setLocale:enUSPOSIXLocale];
  304. [dateFormatter setDateFormat:@"EEE, dd MMM y HH:mm:ss zzz"];
  305. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)task.response;
  306. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  307. errorCode = error.code;
  308. } else {
  309. if (httpResponse.statusCode > 0)
  310. errorCode = httpResponse.statusCode;
  311. else
  312. errorCode = error.code;
  313. }
  314. // ----------------------- DOWNLOAD -----------------------
  315. if ([task isKindOfClass:[NSURLSessionDownloadTask class]]) {
  316. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND fileName == %@", directoryID, fileName]];
  317. if (metadata) {
  318. NSString *etag = metadata.etag;
  319. NSString *fileID = metadata.fileID;
  320. NSDictionary *fields = [httpResponse allHeaderFields];
  321. if (errorCode == 0) {
  322. etag = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-ETag"]];
  323. NSString *dateString = [fields objectForKey:@"Date"];
  324. if (dateString) {
  325. if (![dateFormatter getObjectValue:&date forString:dateString range:nil error:&error]) {
  326. date = [NSDate date];
  327. }
  328. } else {
  329. date = [NSDate date];
  330. }
  331. }
  332. NSArray *object = [[NSArray alloc] initWithObjects:session, fileID, task, nil];
  333. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_networkingSessionNotification object:object];
  334. if (fileName.length > 0 && serverUrl.length > 0) {
  335. dispatch_async(dispatch_get_main_queue(), ^{
  336. [self downloadFileSuccessFailure:fileName fileID:metadata.fileID etag:etag date:date serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorCode:errorCode];
  337. });
  338. }
  339. } else {
  340. NSLog(@"[LOG] Remove record ? : metadata not found %@", url);
  341. dispatch_async(dispatch_get_main_queue(), ^{
  342. [self.delegate downloadFileSuccessFailure:fileName fileID:@"" serverUrl:serverUrl selector:@"" selectorPost:@"" errorMessage:@"Remove record ? : metadata not found" errorCode:k_CCErrorInternalError];
  343. });
  344. }
  345. }
  346. // ------------------------ UPLOAD -----------------------
  347. if ([task isKindOfClass:[NSURLSessionUploadTask class]]) {
  348. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND fileName == %@", directoryID, fileName]];
  349. if (metadata) {
  350. NSDictionary *fields = [httpResponse allHeaderFields];
  351. NSString *fileID = metadata.fileID;
  352. NSString *etag = metadata.etag;
  353. if (errorCode == 0) {
  354. fileID = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-FileId"]];
  355. etag = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-ETag"]];
  356. NSString *dateString = [fields objectForKey:@"Date"];
  357. if (dateString) {
  358. if (![dateFormatter getObjectValue:&date forString:dateString range:nil error:&error]) {
  359. NSLog(@"[LOG] Date '%@' could not be parsed: %@", dateString, error);
  360. date = [NSDate date];
  361. }
  362. } else {
  363. date = [NSDate date];
  364. }
  365. }
  366. NSArray *object = [[NSArray alloc] initWithObjects:session, fileID, task, nil];
  367. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_networkingSessionNotification object:object];
  368. if (fileName.length > 0 && fileID.length > 0 && serverUrl.length > 0) {
  369. dispatch_async(dispatch_get_main_queue(), ^{
  370. [self uploadFileSuccessFailure:metadata fileName:fileName fileID:fileID etag:etag date:date serverUrl:serverUrl errorCode:errorCode];
  371. });
  372. }
  373. } else {
  374. NSLog(@"[LOG] Remove record ? : metadata not found %@", url);
  375. dispatch_async(dispatch_get_main_queue(), ^{
  376. [self.delegate uploadFileSuccessFailure:fileName fileID:@"" assetLocalIdentifier:@"" serverUrl:serverUrl selector:@"" selectorPost:@"" errorMessage:@"Remove record ? : metadata not found" errorCode:k_CCErrorInternalError];
  377. });
  378. }
  379. }
  380. }
  381. #pragma --------------------------------------------------------------------------------------------
  382. #pragma mark ===== Download =====
  383. #pragma --------------------------------------------------------------------------------------------
  384. - (void)downloadFile:(tableMetadata *)metadata taskStatus:(NSInteger)taskStatus delegate:(id)delegate;
  385. {
  386. // add delegate
  387. [_delegates setObject:delegate forKey:metadata.fileID];
  388. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  389. // File exists ?
  390. tableLocalFile *localfile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  391. if (localfile != nil && [CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
  392. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusNormal predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  393. [delegate downloadFileSuccessFailure:metadata.fileName fileID:metadata.fileID serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:@"" errorCode:0];
  394. return;
  395. }
  396. [self downloaURLSession:metadata serverUrl:serverUrl taskStatus:taskStatus];
  397. }
  398. - (void)downloaURLSession:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl taskStatus:(NSInteger)taskStatus
  399. {
  400. NSURLSession *sessionDownload;
  401. NSURL *url;
  402. NSMutableURLRequest *request;
  403. NSString *serverFileUrl = [[NSString stringWithFormat:@"%@/%@", serverUrl, metadata.fileName] encodeString:NSUTF8StringEncoding];
  404. url = [NSURL URLWithString:serverFileUrl];
  405. request = [NSMutableURLRequest requestWithURL:url];
  406. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  407. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  408. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  409. [request setValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  410. if ([metadata.session isEqualToString:k_download_session]) sessionDownload = [self sessionDownload];
  411. else if ([metadata.session isEqualToString:k_download_session_foreground]) sessionDownload = [self sessionDownloadForeground];
  412. else if ([metadata.session isEqualToString:k_download_session_wwan]) sessionDownload = [self sessionWWanDownload];
  413. NSURLSessionDownloadTask *downloadTask = [sessionDownload downloadTaskWithRequest:request];
  414. if (downloadTask == nil) {
  415. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileName fileID:metadata.fileID action:k_activityDebugActionUpload selector:metadata.sessionSelector note:@"Serious internal error downloadTask not available" type:k_activityTypeFailure verbose:k_activityVerboseHigh activeUrl:_activeUrl];
  416. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:@"Serious internal error downloadTask not available" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusDownloadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  417. [self.delegate downloadFileSuccessFailure:metadata.fileName fileID:metadata.fileID serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:@"" errorMessage:@"Serious internal error downloadTask not available" errorCode:k_CCErrorInternalError];
  418. } else {
  419. // Manage uploadTask cancel,suspend,resume
  420. if (taskStatus == k_taskStatusCancel) [downloadTask cancel];
  421. else if (taskStatus == k_taskStatusSuspend) [downloadTask suspend];
  422. else if (taskStatus == k_taskStatusResume) [downloadTask resume];
  423. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:nil sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:downloadTask.taskIdentifier status:k_metadataStatusDownloading predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  424. NSLog(@"[LOG] downloadFileSession %@ Task [%lu]", metadata.fileID, (unsigned long)downloadTask.taskIdentifier);
  425. }
  426. dispatch_async(dispatch_get_main_queue(), ^{
  427. if ([[self getDelegate:metadata.fileID] respondsToSelector:@selector(downloadStart:account:task:serverUrl:)]) {
  428. [[self getDelegate:metadata.fileID] downloadStart:metadata.fileID account:metadata.account task:downloadTask serverUrl:serverUrl];
  429. }
  430. });
  431. }
  432. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
  433. {
  434. NSString *url = [[[downloadTask currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  435. NSString *fileName = [url lastPathComponent];
  436. NSString *serverUrl = [self getServerUrlFromUrl:url];
  437. if (!serverUrl) return;
  438. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  439. if (!directoryID) return;
  440. float progress = (float) totalBytesWritten / (float)totalBytesExpectedToWrite;
  441. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataInSessionFromFileName:fileName directoryID:directoryID];
  442. if (metadata) {
  443. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"progress": ([NSNumber numberWithFloat:progress])};
  444. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  445. } else {
  446. NSLog(@"[LOG] metadata not found");
  447. }
  448. }
  449. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location
  450. {
  451. NSString *url = [[[downloadTask currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  452. if (!url)
  453. return;
  454. NSString *fileName = [url lastPathComponent];
  455. NSString *serverUrl = [self getServerUrlFromUrl:url];
  456. if (!serverUrl) return;
  457. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  458. if (!directoryID) return;
  459. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND fileName == %@", directoryID, fileName]];
  460. if (!metadata) {
  461. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:@"" action:k_activityDebugActionUpload selector:@"" note:[NSString stringWithFormat:@"Serious error internal download : metadata not found %@", url] type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  462. NSLog(@"[LOG] Serious error internal download : metadata not found %@ ", url);
  463. dispatch_async(dispatch_get_main_queue(), ^{
  464. [self.delegate downloadFileSuccessFailure:@"" fileID:@"" serverUrl:serverUrl selector:@"" selectorPost:@"" errorMessage:@"Serious error internal download : metadata not found" errorCode:k_CCErrorInternalError];
  465. });
  466. return;
  467. }
  468. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)downloadTask.response;
  469. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  470. NSString *destinationFilePath = [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileName];
  471. NSURL *destinationURL = [NSURL fileURLWithPath:destinationFilePath];
  472. [[NSFileManager defaultManager] removeItemAtURL:destinationURL error:NULL];
  473. [[NSFileManager defaultManager] copyItemAtURL:location toURL:destinationURL error:nil];
  474. }
  475. }
  476. - (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
  477. {
  478. #ifndef EXTENSION
  479. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  480. [appDelegate.listProgressMetadata removeObjectForKey:fileID];
  481. #endif
  482. // Progress Task
  483. NSDictionary* userInfo = @{@"fileID": (fileID), @"serverUrl": (serverUrl), @"progress": ([NSNumber numberWithFloat:0.0])};
  484. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  485. if (errorCode != 0) {
  486. if (errorCode != kCFURLErrorCancelled) {
  487. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[CCError manageErrorKCF:errorCode withNumberError:NO] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusDownloadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  488. }
  489. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost errorMessage:[CCError manageErrorKCF:errorCode withNumberError:YES] errorCode:errorCode];
  490. } else {
  491. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  492. if (!metadata) {
  493. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:fileID action:k_activityDebugActionUpload selector:@"" note:[NSString stringWithFormat:@"Serious error internal download : metadata not found %@", fileName] type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  494. NSLog(@"[LOG] Serious error internal download : metadata not found %@ ", fileName);
  495. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost errorMessage:[NSString stringWithFormat:@"Serious error internal download : metadata not found %@", fileName] errorCode:k_CCErrorInternalError];
  496. return;
  497. }
  498. metadata.session = @"";
  499. metadata.sessionError = @"";
  500. metadata.sessionSelector = @"";
  501. metadata.sessionSelectorPost = @"";
  502. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  503. metadata.status = k_metadataStatusNormal;
  504. metadata = [[NCManageDatabase sharedInstance] updateMetadata:metadata];
  505. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
  506. // E2EE Decrypted
  507. tableE2eEncryption *object = [[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"fileNameIdentifier == %@ AND serverUrl == %@", fileName, serverUrl]];
  508. if (object) {
  509. BOOL result = [[NCEndToEndEncryption sharedManager] decryptFileName:metadata.fileName fileNameView:metadata.fileNameView fileID:metadata.fileID key:object.key initializationVector:object.initializationVector authenticationTag:object.authenticationTag];
  510. if (!result) {
  511. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileNameView fileID:fileID action:k_activityDebugActionUpload selector:@"" note:[NSString stringWithFormat:@"Serious error internal download : decrypt error %@", fileName] type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  512. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost errorMessage:[NSString stringWithFormat:@"Serious error internal download : decrypt error %@", fileName] errorCode:k_CCErrorInternalError];
  513. return;
  514. }
  515. }
  516. // Exif
  517. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  518. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata];
  519. // Icon
  520. [CCGraphics createNewImageFrom:metadata.fileNameView fileID:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:NO typeFile:metadata.typeFile writeImage:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  521. // Activity
  522. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileNameView fileID:metadata.fileID action:k_activityDebugActionDownload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  523. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost errorMessage:@"" errorCode:0];
  524. }
  525. }
  526. #pragma --------------------------------------------------------------------------------------------
  527. #pragma mark ===== Upload =====
  528. #pragma --------------------------------------------------------------------------------------------
  529. - (void)uploadFile:(tableMetadata *)metadata taskStatus:(NSInteger)taskStatus delegate:(id)delegate
  530. {
  531. //delegate
  532. [_delegates setObject:delegate forKey:metadata.fileID];
  533. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  534. if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView] == NO) {
  535. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  536. if (!result.count) {
  537. [delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:@"Error photo/video not found, remove from upload" errorCode:k_CCErrorInternalError];
  538. return;
  539. }
  540. PHAsset *asset= result[0];
  541. // IMAGE
  542. if (asset.mediaType == PHAssetMediaTypeImage) {
  543. PHImageRequestOptions *options = [PHImageRequestOptions new];
  544. options.networkAccessAllowed = YES; // iCloud
  545. options.deliveryMode = PHImageRequestOptionsDeliveryModeHighQualityFormat;
  546. options.synchronous = YES;
  547. options.progressHandler = ^(double progress, NSError *error, BOOL *stop, NSDictionary *info) {
  548. NSLog(@"cacheAsset: %f", progress);
  549. if (error)
  550. [delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:[NSString stringWithFormat:@"Image request iCloud failed [%@]", error.description] errorCode:error.code];
  551. };
  552. [[PHImageManager defaultManager] requestImageDataForAsset:asset options:options resultHandler:^(NSData *imageData, NSString *dataUTI, UIImageOrientation orientation, NSDictionary *info) {
  553. NSError *error = nil;
  554. if ([dataUTI isEqualToString:@"public.heic"] && [CCUtility getFormatCompatibility]) {
  555. UIImage *image = [UIImage imageWithData:imageData];
  556. imageData = UIImageJPEGRepresentation(image, 1.0);
  557. NSString *fileNameJPEG = [[metadata.fileName lastPathComponent] stringByDeletingPathExtension];
  558. metadata.fileName = [fileNameJPEG stringByAppendingString:@".jpg"];
  559. metadata.fileNameView = metadata.fileName;
  560. [imageData writeToFile:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView] options:NSDataWritingAtomic error:&error];
  561. } else {
  562. [imageData writeToFile:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView] options:NSDataWritingAtomic error:&error];
  563. }
  564. if (error) {
  565. [delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:[NSString stringWithFormat:@"Image request failed [%@]", error.description] errorCode:error.code];
  566. } else {
  567. // create Metadata for Upload
  568. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] addMetadata:[CCUtility insertFileSystemInMetadata:metadata]];
  569. // OOOOOK
  570. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  571. [self e2eEncryptedFile:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  572. } else {
  573. [self uploadURLSessionMetadata:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  574. }
  575. }
  576. }];
  577. }
  578. // VIDEO
  579. if (asset.mediaType == PHAssetMediaTypeVideo) {
  580. PHVideoRequestOptions *options = [PHVideoRequestOptions new];
  581. options.networkAccessAllowed = YES;
  582. options.version = PHVideoRequestOptionsVersionOriginal;
  583. options.progressHandler = ^(double progress, NSError *error, BOOL *stop, NSDictionary *info) {
  584. NSLog(@"cacheAsset: %f", progress);
  585. if (error)
  586. [delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:[NSString stringWithFormat:@"Video request iCloud failed [%@]", error.description] errorCode:error.code];
  587. };
  588. [[PHImageManager defaultManager] requestAVAssetForVideo:asset options:options resultHandler:^(AVAsset *asset, AVAudioMix *audioMix, NSDictionary *info) {
  589. if ([asset isKindOfClass:[AVURLAsset class]]) {
  590. NSURL *fileURL = [[NSURL alloc] initFileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView]];
  591. NSError *error = nil;
  592. [[NSFileManager defaultManager] removeItemAtURL:fileURL error:nil];
  593. [[NSFileManager defaultManager] copyItemAtURL:[(AVURLAsset *)asset URL] toURL:fileURL error:&error];
  594. if (error) {
  595. dispatch_async(dispatch_get_main_queue(), ^{
  596. [delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:[NSString stringWithFormat:@"Video request failed [%@]", error.description] errorCode:error.code];
  597. });
  598. } else {
  599. dispatch_async(dispatch_get_main_queue(), ^{
  600. // create Metadata for Upload
  601. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] addMetadata:[CCUtility insertFileSystemInMetadata:metadata]];
  602. // OOOOOK
  603. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  604. [self e2eEncryptedFile:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  605. } else {
  606. [self uploadURLSessionMetadata:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  607. }
  608. });
  609. }
  610. }
  611. }];
  612. }
  613. } else {
  614. // create Metadata for Upload
  615. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] addMetadata:[CCUtility insertFileSystemInMetadata:metadata]];
  616. // OOOOOK
  617. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  618. [self e2eEncryptedFile:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  619. } else {
  620. [self uploadURLSessionMetadata:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  621. }
  622. }
  623. }
  624. - (void)e2eEncryptedFile:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl taskStatus:(NSInteger)taskStatus
  625. {
  626. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  627. NSString *errorMessage;
  628. NSString *fileNameIdentifier;
  629. NSString *e2eMetadata;
  630. [self encryptedE2EFile:metadata serverUrl:serverUrl account:_activeAccount user:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl errorMessage:&errorMessage fileNameIdentifier:&fileNameIdentifier e2eMetadata:&e2eMetadata];
  631. if (errorMessage != nil || fileNameIdentifier == nil) {
  632. [[self getDelegate:metadata.fileID] uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:errorMessage errorCode:k_CCErrorInternalError];
  633. } else {
  634. dispatch_async(dispatch_get_main_queue(), ^{
  635. // Now the fileName is fileNameIdentifier && flag e2eEncrypted
  636. metadata.fileName = fileNameIdentifier;
  637. metadata.e2eEncrypted = YES;
  638. // Update Metadata
  639. tableMetadata *metadataEncrypted = [[NCManageDatabase sharedInstance] addMetadata:metadata];
  640. [self uploadURLSessionMetadata:metadataEncrypted serverUrl:serverUrl taskStatus:taskStatus];
  641. });
  642. }
  643. });
  644. }
  645. - (void)uploadURLSessionMetadata:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl taskStatus:(NSInteger)taskStatus
  646. {
  647. NSURL *url;
  648. NSMutableURLRequest *request;
  649. PHAsset *asset;
  650. NSString *fileNamePath = [[NSString stringWithFormat:@"%@/%@", serverUrl, metadata.fileName] encodeString:NSUTF8StringEncoding];
  651. url = [NSURL URLWithString:fileNamePath];
  652. request = [NSMutableURLRequest requestWithURL:url];
  653. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  654. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  655. [request setHTTPMethod:@"PUT"];
  656. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  657. [request setValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  658. // Create Image for Upload
  659. #ifndef EXTENSION
  660. [CCGraphics createNewImageFrom:metadata.fileNameView fileID:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:YES typeFile:metadata.typeFile writeImage:YES optimizedFileName:NO];
  661. #endif
  662. // Change date file upload with header : X-OC-Mtime (ctime assetLocalIdentifier) image/video
  663. if (metadata.assetLocalIdentifier) {
  664. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  665. if (result.count) {
  666. asset = result[0];
  667. long dateFileCreation = [asset.creationDate timeIntervalSince1970];
  668. [request setValue:[NSString stringWithFormat:@"%ld", dateFileCreation] forHTTPHeaderField:@"X-OC-Mtime"];
  669. }
  670. }
  671. NSURLSession *sessionUpload;
  672. // NSURLSession
  673. if ([metadata.session isEqualToString:k_upload_session]) sessionUpload = [self sessionUpload];
  674. else if ([metadata.session isEqualToString:k_upload_session_wwan]) sessionUpload = [self sessionWWanUpload];
  675. else if ([metadata.session isEqualToString:k_upload_session_foreground]) sessionUpload = [self sessionUploadForeground];
  676. else if ([metadata.session isEqualToString:k_upload_session_extension]) sessionUpload = [self sessionUploadExtension];
  677. NSURLSessionUploadTask *uploadTask = [sessionUpload uploadTaskWithRequest:request fromFile:[NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileName]]];
  678. // Error
  679. if (uploadTask == nil) {
  680. NSString *messageError = @"Serious internal error uploadTask not available";
  681. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:messageError sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusUploadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  682. [[self getDelegate:metadata.fileID] uploadFileSuccessFailure:metadata.fileNameView fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:messageError errorCode:k_CCErrorInternalError];
  683. } else {
  684. // E2EE : CREATE AND SEND METADATA
  685. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  686. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  687. // Send Metadata
  688. NSError *error = [[NCNetworkingEndToEnd sharedManager] sendEndToEndMetadataOnServerUrl:serverUrl account:_activeAccount user:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl fileNameRename:nil fileNameNewRename:nil];
  689. dispatch_async(dispatch_get_main_queue(), ^{
  690. if (error) {
  691. [uploadTask cancel];
  692. NSString *messageError = [NSString stringWithFormat:@"%@ (%d)", error.localizedDescription, (int)error.code];
  693. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:messageError sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusUploadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  694. [[self getDelegate:metadata.fileID] uploadFileSuccessFailure:metadata.fileNameView fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:messageError errorCode:k_CCErrorInternalError];
  695. } else {
  696. // Manage uploadTask cancel,suspend,resume
  697. if (taskStatus == k_taskStatusCancel) [uploadTask cancel];
  698. else if (taskStatus == k_taskStatusSuspend) [uploadTask suspend];
  699. else if (taskStatus == k_taskStatusResume) [uploadTask resume];
  700. // *** E2EE ***
  701. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:uploadTask.taskIdentifier status:k_metadataStatusUploading predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  702. NSLog(@"[LOG] Upload file %@ TaskIdentifier %lu", metadata.fileName, (unsigned long)uploadTask.taskIdentifier);
  703. dispatch_async(dispatch_get_main_queue(), ^{
  704. if ([[self getDelegate:metadata.fileID] respondsToSelector:@selector(uploadStart:account:task:serverUrl:)]) {
  705. [[self getDelegate:metadata.fileID] uploadStart:metadata.fileID account:metadata.account task:uploadTask serverUrl:serverUrl];
  706. }
  707. });
  708. }
  709. });
  710. });
  711. } else {
  712. // Manage uploadTask cancel,suspend,resume
  713. if (taskStatus == k_taskStatusCancel) [uploadTask cancel];
  714. else if (taskStatus == k_taskStatusSuspend) [uploadTask suspend];
  715. else if (taskStatus == k_taskStatusResume) [uploadTask resume];
  716. // *** PLAIN ***
  717. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:uploadTask.taskIdentifier status:k_metadataStatusUploading predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  718. NSLog(@"[LOG] Upload file %@ TaskIdentifier %lu", metadata.fileName, (unsigned long)uploadTask.taskIdentifier);
  719. dispatch_async(dispatch_get_main_queue(), ^{
  720. if ([[self getDelegate:metadata.fileID] respondsToSelector:@selector(uploadStart:account:task:serverUrl:)]) {
  721. [[self getDelegate:metadata.fileID] uploadStart:metadata.fileID account:metadata.account task:uploadTask serverUrl:serverUrl];
  722. }
  723. });
  724. }
  725. }
  726. }
  727. - (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveData:(NSData *)data
  728. {
  729. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)dataTask.response;
  730. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  731. NSNumber *taskIdentifier = [NSNumber numberWithLong:dataTask.taskIdentifier];
  732. if (data)
  733. [_taskData setObject:[data copy] forKey:taskIdentifier];
  734. }
  735. }
  736. - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend
  737. {
  738. NSString *url = [[[task currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  739. NSString *fileName = [url lastPathComponent];
  740. NSString *serverUrl = [self getServerUrlFromUrl:url];
  741. if (!serverUrl) return;
  742. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  743. if (!directoryID) return;
  744. float progress = (float) totalBytesSent / (float)totalBytesExpectedToSend;
  745. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataInSessionFromFileName:fileName directoryID:directoryID];
  746. if (metadata) {
  747. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"progress": ([NSNumber numberWithFloat:progress])};
  748. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  749. }
  750. }
  751. - (void)uploadFileSuccessFailure:(tableMetadata *)metadata fileName:(NSString *)fileName fileID:(NSString *)fileID etag:(NSString *)etag date:(NSDate *)date serverUrl:(NSString *)serverUrl errorCode:(NSInteger)errorCode
  752. {
  753. NSString *tempFileID = metadata.fileID;
  754. NSString *tempSession = metadata.session;
  755. NSString *errorMessage = @"";
  756. BOOL isE2EEDirectory = false;
  757. // Progress Task
  758. NSDictionary* userInfo = @{@"fileID": (fileID), @"serverUrl": (serverUrl), @"progress": ([NSNumber numberWithFloat:0.0])};
  759. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  760. // E2EE Directory ?
  761. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  762. isE2EEDirectory = true;
  763. }
  764. // ERRORE
  765. if (errorCode != 0) {
  766. #ifndef EXTENSION
  767. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  768. [appDelegate.listProgressMetadata removeObjectForKey:metadata.fileID];
  769. #endif
  770. // Mark error only if not Cancelled Task
  771. if (errorCode != kCFURLErrorCancelled) {
  772. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[CCError manageErrorKCF:errorCode withNumberError:NO] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusUploadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", tempFileID]];
  773. }
  774. errorMessage = [CCError manageErrorKCF:errorCode withNumberError:YES];
  775. } else {
  776. // Replace Metadata
  777. metadata.date = date;
  778. if (isE2EEDirectory) {
  779. metadata.e2eEncrypted = true;
  780. } else {
  781. metadata.e2eEncrypted = false;
  782. }
  783. metadata.etag = etag;
  784. metadata.fileID = fileID;
  785. metadata.session = @"";
  786. metadata.sessionError = @"";
  787. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  788. metadata.status = k_metadataStatusNormal;
  789. metadata = [[NCManageDatabase sharedInstance] addMetadata:metadata];
  790. if (![fileID isEqualToString:tempFileID])
  791. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", tempFileID] clearDateReadDirectoryID:nil];
  792. #ifndef EXTENSION
  793. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  794. [appDelegate.listProgressMetadata removeObjectForKey:metadata.fileID];
  795. #endif
  796. NSLog(@"[LOG] Insert new upload : %@ - fileID : %@", metadata.fileName, metadata.fileID);
  797. // adjust file system Directory Provider Storage
  798. if ([tempSession isEqualToString:k_upload_session_extension] && [tempFileID isEqualToString:[metadata.directoryID stringByAppendingString:metadata.fileName]]) {
  799. // this is for File Provider Extension [Apple Works and ... ?]
  800. [[NSFileManager defaultManager] copyItemAtPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], tempFileID] toPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], metadata.fileID] error:nil];
  801. } else {
  802. [[NSFileManager defaultManager] moveItemAtPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], tempFileID] toPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], metadata.fileID] error:nil];
  803. }
  804. // Local
  805. if (metadata.directory == NO)
  806. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
  807. #ifndef EXTENSION
  808. // EXIF
  809. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  810. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata];
  811. // Create ICON
  812. if (metadata.directory == NO) {
  813. BOOL optimizedFileName = [CCUtility getOptimizedPhoto];
  814. if (isE2EEDirectory) {
  815. optimizedFileName = NO;
  816. }
  817. [CCGraphics createNewImageFrom:metadata.fileNameView fileID:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:NO typeFile:metadata.typeFile writeImage:YES optimizedFileName:optimizedFileName];
  818. }
  819. // Optimization
  820. if (([CCUtility getUploadAndRemovePhoto] || [metadata.sessionSelectorPost isEqualToString:selectorUploadRemovePhoto]) && [metadata.typeFile isEqualToString:k_metadataTypeFile_document] == NO && isE2EEDirectory == NO) {
  821. [[NSFileManager defaultManager] createFileAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView] contents:nil attributes:nil];
  822. }
  823. // Copy photo or video in the photo album for auto upload
  824. if ([metadata.assetLocalIdentifier length] > 0 && ([metadata.sessionSelector isEqualToString:selectorUploadAutoUpload] || [metadata.sessionSelector isEqualToString:selectorUploadFile])) {
  825. PHAsset *asset;
  826. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  827. if(result.count){
  828. asset = result[0];
  829. [asset saveToAlbum:[NCBrandOptions sharedInstance].brand completionBlock:^(BOOL success) {
  830. if (success) NSLog(@"[LOG] Insert file %@ in %@", metadata.fileName, [NCBrandOptions sharedInstance].brand);
  831. else NSLog(@"[LOG] File %@ do not insert in %@", metadata.fileName, [NCBrandOptions sharedInstance].brand);
  832. }];
  833. }
  834. }
  835. #endif
  836. // Actvity
  837. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileNameView fileID:fileID action:k_activityDebugActionUpload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  838. }
  839. // E2EE : UNLOCK
  840. if (isE2EEDirectory) {
  841. tableE2eEncryptionLock *tableLock = [[NCManageDatabase sharedInstance] getE2ETokenLockWithServerUrl:serverUrl];
  842. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  843. if (tableLock) {
  844. NSError *error = [[NCNetworkingEndToEnd sharedManager] unlockEndToEndFolderEncrypted:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl serverUrl:serverUrl fileID:tableLock.fileID token:tableLock.token];
  845. if (error) {
  846. #ifndef EXTENSION
  847. dispatch_async(dispatch_get_main_queue(), ^{
  848. [(AppDelegate *)[[UIApplication sharedApplication] delegate] messageNotification:@"_e2e_error_unlock_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  849. });
  850. #endif
  851. }
  852. } else {
  853. NSLog(@"Error unlock not found");
  854. }
  855. dispatch_async(dispatch_get_main_queue(), ^{
  856. [[self getDelegate:tempFileID] uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:errorMessage errorCode:errorCode];
  857. });
  858. });
  859. } else {
  860. [[self getDelegate:tempFileID] uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:errorMessage errorCode:errorCode];
  861. }
  862. }
  863. #pragma --------------------------------------------------------------------------------------------
  864. #pragma mark ===== Utility =====
  865. #pragma --------------------------------------------------------------------------------------------
  866. - (id)getDelegate:(NSString *)fileID
  867. {
  868. id delegate = [_delegates objectForKey:fileID];
  869. if (delegate)
  870. return delegate;
  871. else
  872. return self.delegate;
  873. }
  874. - (NSString *)getServerUrlFromUrl:(NSString *)url
  875. {
  876. NSString *fileName = [url lastPathComponent];
  877. url = [url stringByReplacingOccurrencesOfString:[@"/" stringByAppendingString:fileName] withString:@""];
  878. return url;
  879. }
  880. #pragma --------------------------------------------------------------------------------------------
  881. #pragma mark ===== E2EE End To End Encryption =====
  882. #pragma --------------------------------------------------------------------------------------------
  883. // E2EE
  884. - (void)encryptedE2EFile:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl account:(NSString *)account user:(NSString *)user userID:(NSString *)userID password:(NSString *)password url:(NSString *)url errorMessage:(NSString * __autoreleasing *)errorMessage fileNameIdentifier:(NSString **)fileNameIdentifier e2eMetadata:(NSString * __autoreleasing *)e2eMetadata
  885. {
  886. __block NSError *error;
  887. NSString *key;
  888. NSString *initializationVector;
  889. NSString *authenticationTag;
  890. NSString *metadataKey;
  891. NSInteger metadataKeyIndex;
  892. // Verify File Size
  893. NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView] error:&error];
  894. NSNumber *fileSizeNumber = [fileAttributes objectForKey:NSFileSize];
  895. long long fileSize = [fileSizeNumber longLongValue];
  896. if (fileSize > k_max_filesize_E2E) {
  897. // Error for uploadFileFailure
  898. *errorMessage = @"E2E Error file too big";
  899. return;
  900. }
  901. // if new file upload [directoryID + fileName] create a new encrypted filename
  902. if ([metadata.fileID isEqualToString:[metadata.directoryID stringByAppendingString:metadata.fileNameView]]) {
  903. *fileNameIdentifier = [CCUtility generateRandomIdentifier];
  904. } else {
  905. *fileNameIdentifier = metadata.fileName;
  906. }
  907. // Write to DB
  908. if ([[NCEndToEndEncryption sharedManager] encryptFileName:metadata.fileNameView fileNameIdentifier:*fileNameIdentifier directory:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID] key:&key initializationVector:&initializationVector authenticationTag:&authenticationTag]) {
  909. tableE2eEncryption *object = [[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", _activeAccount, serverUrl]];
  910. if (object) {
  911. metadataKey = object.metadataKey;
  912. metadataKeyIndex = object.metadataKeyIndex;
  913. } else {
  914. metadataKey = [[[NCEndToEndEncryption sharedManager] generateKey:16] base64EncodedStringWithOptions:0]; // AES_KEY_128_LENGTH
  915. metadataKeyIndex = 0;
  916. }
  917. tableE2eEncryption *addObject = [tableE2eEncryption new];
  918. addObject.account = _activeAccount;
  919. addObject.authenticationTag = authenticationTag;
  920. addObject.fileName = metadata.fileNameView;
  921. addObject.fileNameIdentifier = *fileNameIdentifier;
  922. addObject.fileNamePath = [CCUtility returnFileNamePathFromFileName:metadata.fileNameView serverUrl:serverUrl activeUrl:_activeUrl];
  923. addObject.key = key;
  924. addObject.initializationVector = initializationVector;
  925. addObject.metadataKey = metadataKey;
  926. addObject.metadataKeyIndex = metadataKeyIndex;
  927. CFStringRef UTI = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (__bridge CFStringRef)[metadata.fileNameView pathExtension], NULL);
  928. CFStringRef mimeTypeRef = UTTypeCopyPreferredTagWithClass (UTI, kUTTagClassMIMEType);
  929. if (mimeTypeRef) {
  930. addObject.mimeType = (__bridge NSString *)mimeTypeRef;
  931. } else {
  932. addObject.mimeType = @"application/octet-stream";
  933. }
  934. addObject.serverUrl = serverUrl;
  935. addObject.version = [[NCManageDatabase sharedInstance] getEndToEndEncryptionVersion];
  936. // Get the last metadata
  937. NSString *metadata;
  938. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", account, serverUrl]];
  939. error = [[NCNetworkingEndToEnd sharedManager] getEndToEndMetadata:user userID:userID password:password url:url fileID:directory.fileID metadata:&metadata];
  940. if (error == nil) {
  941. if ([[NCEndToEndMetadata sharedInstance] decoderMetadata:metadata privateKey:[CCUtility getEndToEndPrivateKey:account] serverUrl:serverUrl account:account url:url] == false) {
  942. *errorMessage = NSLocalizedString(@"_e2e_error_decode_metadata_", nil);
  943. return;
  944. }
  945. }
  946. *e2eMetadata = metadata;
  947. // write new record e2ee
  948. if([[NCManageDatabase sharedInstance] addE2eEncryption:addObject] == NO)
  949. *errorMessage = NSLocalizedString(@"_e2e_error_create_encrypted_", nil);
  950. } else {
  951. *errorMessage = NSLocalizedString(@"_e2e_error_create_encrypted_", nil);
  952. }
  953. }
  954. @end
  955. #pragma --------------------------------------------------------------------------------------------
  956. #pragma mark ===== CCMetadataNet =====
  957. #pragma --------------------------------------------------------------------------------------------
  958. @implementation CCMetadataNet
  959. - (id)init
  960. {
  961. self = [super init];
  962. self.priority = NSOperationQueuePriorityNormal;
  963. return self;
  964. }
  965. - (id)initWithAccount:(NSString *)withAccount
  966. {
  967. self = [self init];
  968. if (self) {
  969. _account = withAccount;
  970. }
  971. return self;
  972. }
  973. - (id)copyWithZone: (NSZone *) zone
  974. {
  975. CCMetadataNet *metadataNet = [[CCMetadataNet allocWithZone: zone] init];
  976. [metadataNet setAccount: self.account];
  977. [metadataNet setAction: self.action];
  978. [metadataNet setContentType: self.contentType];
  979. [metadataNet setDate: self.date];
  980. [metadataNet setDelegate: self.delegate];
  981. [metadataNet setDepth: self.depth];
  982. [metadataNet setDirectory: self.directory];
  983. [metadataNet setDirectoryID: self.directoryID];
  984. [metadataNet setDirectoryIDTo: self.directoryIDTo];
  985. [metadataNet setEncryptedMetadata: self.encryptedMetadata];
  986. [metadataNet setEtag:self.etag];
  987. [metadataNet setExpirationTime: self.expirationTime];
  988. [metadataNet setFileID: self.fileID];
  989. [metadataNet setFileName: self.fileName];
  990. [metadataNet setFileNameTo: self.fileNameTo];
  991. [metadataNet setFileNameView: self.fileNameView];
  992. [metadataNet setKey: self.key];
  993. [metadataNet setKeyCipher: self.keyCipher];
  994. [metadataNet setOptionAny: self.optionAny];
  995. [metadataNet setOptionString: self.optionString];
  996. [metadataNet setPassword: self.password];
  997. [metadataNet setPriority: self.priority];
  998. [metadataNet setServerUrl: self.serverUrl];
  999. [metadataNet setServerUrlTo: self.serverUrlTo];
  1000. [metadataNet setSelector: self.selector];
  1001. [metadataNet setSelectorPost: self.selectorPost];
  1002. [metadataNet setShare: self.share];
  1003. [metadataNet setShareeType: self.shareeType];
  1004. [metadataNet setSharePermission: self.sharePermission];
  1005. [metadataNet setSize: self.size];
  1006. return metadataNet;
  1007. }
  1008. @end