CCNetworking.m 72 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400
  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 = k_maxHTTPConnectionsPerHost;
  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 = k_maxHTTPConnectionsPerHost;
  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 = k_maxHTTPConnectionsPerHost;
  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 = k_maxHTTPConnectionsPerHost;
  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 = k_maxHTTPConnectionsPerHost;
  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 = k_maxHTTPConnectionsPerHost;
  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 = k_maxHTTPConnectionsPerHost;
  205. configurationDownload.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  206. configurationDownload.timeoutIntervalForRequest = k_timeout_upload;
  207. OCURLSessionManager *downloadSessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:configurationDownload];
  208. [downloadSessionManager.operationQueue setMaxConcurrentOperationCount:k_maxHTTPConnectionsPerHost];
  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 = k_maxHTTPConnectionsPerHost;
  217. configurationUpload.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  218. configurationUpload.timeoutIntervalForRequest = k_timeout_upload;
  219. OCURLSessionManager *uploadSessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:configurationUpload];
  220. [uploadSessionManager.operationQueue setMaxConcurrentOperationCount:k_maxHTTPConnectionsPerHost];
  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. if (fileName.length > 0 && serverUrl.length > 0) {
  333. dispatch_async(dispatch_get_main_queue(), ^{
  334. [self downloadFileSuccessFailure:fileName fileID:metadata.fileID etag:etag date:date serverUrl:serverUrl selector:metadata.sessionSelector errorCode:errorCode];
  335. });
  336. }
  337. } else {
  338. NSLog(@"[LOG] Remove record ? : metadata not found %@", url);
  339. dispatch_async(dispatch_get_main_queue(), ^{
  340. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  341. [self.delegate downloadFileSuccessFailure:fileName fileID:@"" serverUrl:serverUrl selector:@"" errorMessage:@"Remove record ? : metadata not found" errorCode:k_CCErrorInternalError];
  342. }
  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. if (fileName.length > 0 && fileID.length > 0 && serverUrl.length > 0) {
  367. dispatch_async(dispatch_get_main_queue(), ^{
  368. [self uploadFileSuccessFailure:metadata fileName:fileName fileID:fileID etag:etag date:date serverUrl:serverUrl errorCode:errorCode];
  369. });
  370. }
  371. } else {
  372. NSLog(@"[LOG] Remove record ? : metadata not found %@", url);
  373. dispatch_async(dispatch_get_main_queue(), ^{
  374. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  375. [self.delegate uploadFileSuccessFailure:fileName fileID:@"" assetLocalIdentifier:@"" serverUrl:serverUrl selector:@"" errorMessage:@"Remove record ? : metadata not found" errorCode:k_CCErrorInternalError];
  376. }
  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 (!serverUrl || (localfile != nil && [CCUtility fileProviderStorageExists:metadata.fileID fileNameView:metadata.fileNameView])) {
  392. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusNormal predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  393. if ([delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  394. [delegate downloadFileSuccessFailure:metadata.fileName fileID:metadata.fileID serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:@"" errorCode:0];
  395. }
  396. return;
  397. }
  398. [self downloaURLSession:metadata serverUrl:serverUrl taskStatus:taskStatus];
  399. }
  400. - (void)downloaURLSession:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl taskStatus:(NSInteger)taskStatus
  401. {
  402. NSURLSession *sessionDownload;
  403. NSURL *url;
  404. NSMutableURLRequest *request;
  405. NSString *serverFileUrl = [[NSString stringWithFormat:@"%@/%@", serverUrl, metadata.fileName] encodeString:NSUTF8StringEncoding];
  406. url = [NSURL URLWithString:serverFileUrl];
  407. request = [NSMutableURLRequest requestWithURL:url];
  408. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  409. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  410. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  411. [request setValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  412. if ([metadata.session isEqualToString:k_download_session]) sessionDownload = [self sessionDownload];
  413. else if ([metadata.session isEqualToString:k_download_session_foreground]) sessionDownload = [self sessionDownloadForeground];
  414. else if ([metadata.session isEqualToString:k_download_session_wwan]) sessionDownload = [self sessionWWanDownload];
  415. NSURLSessionDownloadTask *downloadTask = [sessionDownload downloadTaskWithRequest:request];
  416. if (downloadTask == nil) {
  417. [[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];
  418. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:@"Serious internal error downloadTask not available" sessionSelector:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusDownloadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  419. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  420. [self.delegate downloadFileSuccessFailure:metadata.fileName fileID:metadata.fileID serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:@"Serious internal error downloadTask not available" errorCode:k_CCErrorInternalError];
  421. }
  422. } else {
  423. // Manage uploadTask cancel,suspend,resume
  424. if (taskStatus == k_taskStatusCancel) [downloadTask cancel];
  425. else if (taskStatus == k_taskStatusSuspend) [downloadTask suspend];
  426. else if (taskStatus == k_taskStatusResume) [downloadTask resume];
  427. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:nil sessionSelector:nil sessionTaskIdentifier:downloadTask.taskIdentifier status:k_metadataStatusDownloading predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  428. NSLog(@"[LOG] downloadFileSession %@ Task [%lu]", metadata.fileID, (unsigned long)downloadTask.taskIdentifier);
  429. }
  430. dispatch_async(dispatch_get_main_queue(), ^{
  431. if ([[self getDelegate:metadata.fileID] respondsToSelector:@selector(downloadStart:account:task:serverUrl:)]) {
  432. [[self getDelegate:metadata.fileID] downloadStart:metadata.fileID account:metadata.account task:downloadTask serverUrl:serverUrl];
  433. }
  434. });
  435. }
  436. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
  437. {
  438. NSString *url = [[[downloadTask currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  439. NSString *fileName = [url lastPathComponent];
  440. NSString *serverUrl = [self getServerUrlFromUrl:url];
  441. if (!serverUrl) return;
  442. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  443. if (!directoryID) return;
  444. if (totalBytesExpectedToWrite < 1) {
  445. totalBytesExpectedToWrite = totalBytesWritten;
  446. }
  447. float progress = (float) totalBytesWritten / (float)totalBytesExpectedToWrite;
  448. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataInSessionFromFileName:fileName directoryID:directoryID];
  449. if (metadata) {
  450. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"status": ([NSNumber numberWithLong:k_metadataStatusInDownload]), @"progress": ([NSNumber numberWithFloat:progress]), @"totalBytes": ([NSNumber numberWithLongLong:totalBytesWritten]), @"totalBytesExpected": ([NSNumber numberWithLongLong:totalBytesExpectedToWrite])};
  451. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  452. } else {
  453. NSLog(@"[LOG] metadata not found");
  454. }
  455. }
  456. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location
  457. {
  458. NSString *url = [[[downloadTask currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  459. if (!url)
  460. return;
  461. NSString *fileName = [url lastPathComponent];
  462. NSString *serverUrl = [self getServerUrlFromUrl:url];
  463. if (!serverUrl) return;
  464. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  465. if (!directoryID) return;
  466. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID == %@ AND fileName == %@", directoryID, fileName]];
  467. if (!metadata) {
  468. [[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];
  469. NSLog(@"[LOG] Serious error internal download : metadata not found %@ ", url);
  470. dispatch_async(dispatch_get_main_queue(), ^{
  471. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  472. [self.delegate downloadFileSuccessFailure:@"" fileID:@"" serverUrl:serverUrl selector:@"" errorMessage:@"Serious error internal download : metadata not found" errorCode:k_CCErrorInternalError];
  473. }
  474. });
  475. return;
  476. }
  477. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)downloadTask.response;
  478. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  479. NSString *destinationFilePath = [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileName];
  480. NSURL *destinationURL = [NSURL fileURLWithPath:destinationFilePath];
  481. [[NSFileManager defaultManager] removeItemAtURL:destinationURL error:NULL];
  482. [[NSFileManager defaultManager] copyItemAtURL:location toURL:destinationURL error:nil];
  483. }
  484. }
  485. - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID etag:(NSString *)etag date:(NSDate *)date serverUrl:(NSString *)serverUrl selector:(NSString *)selector errorCode:(NSInteger)errorCode
  486. {
  487. #ifndef EXTENSION
  488. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  489. [appDelegate.listProgressMetadata removeObjectForKey:fileID];
  490. #endif
  491. if (errorCode != 0) {
  492. if (errorCode == kCFURLErrorCancelled) {
  493. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusNormal predicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  494. } else {
  495. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[CCError manageErrorKCF:errorCode withNumberError:NO] sessionSelector:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusDownloadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  496. }
  497. if ([[self getDelegate:fileID] respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  498. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector errorMessage:[CCError manageErrorKCF:errorCode withNumberError:YES] errorCode:errorCode];
  499. }
  500. } else {
  501. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  502. if (!metadata) {
  503. [[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];
  504. NSLog(@"[LOG] Serious error internal download : metadata not found %@ ", fileName);
  505. if ([[self getDelegate:fileID] respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  506. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector errorMessage:[NSString stringWithFormat:@"Serious error internal download : metadata not found %@", fileName] errorCode:k_CCErrorInternalError];
  507. }
  508. return;
  509. }
  510. metadata.session = @"";
  511. metadata.sessionError = @"";
  512. metadata.sessionSelector = @"";
  513. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  514. metadata.status = k_metadataStatusNormal;
  515. metadata = [[NCManageDatabase sharedInstance] updateMetadata:metadata];
  516. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
  517. // E2EE Decrypted
  518. tableE2eEncryption *object = [[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"fileNameIdentifier == %@ AND serverUrl == %@", fileName, serverUrl]];
  519. if (object) {
  520. BOOL result = [[NCEndToEndEncryption sharedManager] decryptFileName:metadata.fileName fileNameView:metadata.fileNameView fileID:metadata.fileID key:object.key initializationVector:object.initializationVector authenticationTag:object.authenticationTag];
  521. if (!result) {
  522. [[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];
  523. if ([[self getDelegate:fileID] respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  524. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector errorMessage:[NSString stringWithFormat:@"Serious error internal download : decrypt error %@", fileName] errorCode:k_CCErrorInternalError];
  525. }
  526. return;
  527. }
  528. }
  529. // Exif
  530. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  531. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata];
  532. // Icon
  533. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]] == NO) {
  534. [CCGraphics createNewImageFrom:metadata.fileNameView fileID:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:NO typeFile:metadata.typeFile writeImage:YES];
  535. }
  536. // Activity
  537. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileNameView fileID:metadata.fileID action:k_activityDebugActionDownload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  538. if ([[self getDelegate:fileID] respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  539. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector errorMessage:@"" errorCode:0];
  540. }
  541. }
  542. }
  543. #pragma --------------------------------------------------------------------------------------------
  544. #pragma mark ===== Upload =====
  545. #pragma --------------------------------------------------------------------------------------------
  546. - (void)uploadFile:(tableMetadata *)metadata taskStatus:(NSInteger)taskStatus delegate:(id)delegate
  547. {
  548. //delegate
  549. [_delegates setObject:delegate forKey:metadata.fileID];
  550. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  551. if (!serverUrl || [CCUtility fileProviderStorageExists:metadata.fileID fileNameView:metadata.fileNameView] == NO) {
  552. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  553. if (!result.count) {
  554. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID] clearDateReadDirectoryID:metadata.directoryID];
  555. if ([delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  556. [delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:@"Error photo/video not found, remove from upload" errorCode:k_CCErrorInternalError];
  557. }
  558. return;
  559. }
  560. PHAsset *asset= result[0];
  561. // IMAGE
  562. if (asset.mediaType == PHAssetMediaTypeImage) {
  563. PHImageRequestOptions *options = [PHImageRequestOptions new];
  564. options.networkAccessAllowed = YES; // iCloud
  565. options.deliveryMode = PHImageRequestOptionsDeliveryModeHighQualityFormat;
  566. options.synchronous = YES;
  567. options.progressHandler = ^(double progress, NSError *error, BOOL *stop, NSDictionary *info) {
  568. NSLog(@"cacheAsset: %f", progress);
  569. if (error) {
  570. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID] clearDateReadDirectoryID:metadata.directoryID];
  571. if ([delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  572. [delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:[NSString stringWithFormat:@"Image request iCloud failed [%@]", error.description] errorCode:error.code];
  573. }
  574. }
  575. };
  576. [[PHImageManager defaultManager] requestImageDataForAsset:asset options:options resultHandler:^(NSData *imageData, NSString *dataUTI, UIImageOrientation orientation, NSDictionary *info) {
  577. NSError *error = nil;
  578. if ([dataUTI isEqualToString:@"public.heic"] && [CCUtility getFormatCompatibility]) {
  579. UIImage *image = [UIImage imageWithData:imageData];
  580. imageData = UIImageJPEGRepresentation(image, 1.0);
  581. NSString *fileNameJPEG = [[metadata.fileName lastPathComponent] stringByDeletingPathExtension];
  582. metadata.fileName = [fileNameJPEG stringByAppendingString:@".jpg"];
  583. metadata.fileNameView = metadata.fileName;
  584. // Change Metadata with new fileID, fileName, fileNameView
  585. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID] clearDateReadDirectoryID:metadata.directoryID];
  586. metadata.fileID = [metadata.directoryID stringByAppendingString:metadata.fileName];
  587. }
  588. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] addMetadata:[CCUtility insertFileSystemInMetadata:metadata]];
  589. [imageData writeToFile:[CCUtility getDirectoryProviderStorageFileID:metadataForUpload.fileID fileNameView:metadataForUpload.fileNameView] options:NSDataWritingAtomic error:&error];
  590. if (error) {
  591. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadataForUpload.fileID] clearDateReadDirectoryID:metadataForUpload.directoryID];
  592. if ([delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  593. [delegate uploadFileSuccessFailure:metadataForUpload.fileName fileID:metadataForUpload.fileID assetLocalIdentifier:metadataForUpload.assetLocalIdentifier serverUrl:serverUrl selector:metadataForUpload.sessionSelector errorMessage:[NSString stringWithFormat:@"Image request failed [%@]", error.description] errorCode:error.code];
  594. }
  595. } else {
  596. // OOOOOK
  597. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  598. [self e2eEncryptedFile:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  599. } else {
  600. [self uploadURLSessionMetadata:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  601. }
  602. }
  603. }];
  604. }
  605. // VIDEO
  606. if (asset.mediaType == PHAssetMediaTypeVideo) {
  607. PHVideoRequestOptions *options = [PHVideoRequestOptions new];
  608. options.networkAccessAllowed = YES;
  609. options.version = PHVideoRequestOptionsVersionOriginal;
  610. options.progressHandler = ^(double progress, NSError *error, BOOL *stop, NSDictionary *info) {
  611. NSLog(@"cacheAsset: %f", progress);
  612. if (error) {
  613. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID] clearDateReadDirectoryID:metadata.directoryID];
  614. if ([delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  615. [delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:[NSString stringWithFormat:@"Video request iCloud failed [%@]", error.description] errorCode:error.code];
  616. }
  617. }
  618. };
  619. [[PHImageManager defaultManager] requestAVAssetForVideo:asset options:options resultHandler:^(AVAsset *asset, AVAudioMix *audioMix, NSDictionary *info) {
  620. if ([asset isKindOfClass:[AVURLAsset class]]) {
  621. NSURL *fileURL = [[NSURL alloc] initFileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  622. NSError *error = nil;
  623. [[NSFileManager defaultManager] removeItemAtURL:fileURL error:nil];
  624. [[NSFileManager defaultManager] copyItemAtURL:[(AVURLAsset *)asset URL] toURL:fileURL error:&error];
  625. if (error) {
  626. dispatch_async(dispatch_get_main_queue(), ^{
  627. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID] clearDateReadDirectoryID:metadata.directoryID];
  628. if ([delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  629. [delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:[NSString stringWithFormat:@"Video request failed [%@]", error.description] errorCode:error.code];
  630. }
  631. });
  632. } else {
  633. dispatch_async(dispatch_get_main_queue(), ^{
  634. // create Metadata for Upload
  635. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] addMetadata:[CCUtility insertFileSystemInMetadata:metadata]];
  636. // OOOOOK
  637. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  638. [self e2eEncryptedFile:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  639. } else {
  640. [self uploadURLSessionMetadata:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  641. }
  642. });
  643. }
  644. }
  645. }];
  646. }
  647. } else {
  648. // create Metadata for Upload
  649. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] addMetadata:[CCUtility insertFileSystemInMetadata:metadata]];
  650. // OOOOOK
  651. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  652. [self e2eEncryptedFile:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  653. } else {
  654. [self uploadURLSessionMetadata:metadataForUpload serverUrl:serverUrl taskStatus:taskStatus];
  655. }
  656. }
  657. }
  658. - (void)e2eEncryptedFile:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl taskStatus:(NSInteger)taskStatus
  659. {
  660. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  661. NSString *errorMessage;
  662. NSString *fileNameIdentifier;
  663. NSString *e2eMetadata;
  664. [self encryptedE2EFile:metadata serverUrl:serverUrl account:_activeAccount user:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl errorMessage:&errorMessage fileNameIdentifier:&fileNameIdentifier e2eMetadata:&e2eMetadata];
  665. if (errorMessage != nil || fileNameIdentifier == nil) {
  666. if ([[self delegate] respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  667. [[self delegate] uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:errorMessage errorCode:k_CCErrorInternalError];
  668. }
  669. } else {
  670. dispatch_async(dispatch_get_main_queue(), ^{
  671. // Now the fileName is fileNameIdentifier && flag e2eEncrypted
  672. metadata.fileName = fileNameIdentifier;
  673. metadata.e2eEncrypted = YES;
  674. // Update Metadata
  675. tableMetadata *metadataEncrypted = [[NCManageDatabase sharedInstance] addMetadata:metadata];
  676. [self uploadURLSessionMetadata:metadataEncrypted serverUrl:serverUrl taskStatus:taskStatus];
  677. });
  678. }
  679. });
  680. }
  681. - (void)uploadURLSessionMetadata:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl taskStatus:(NSInteger)taskStatus
  682. {
  683. NSURL *url;
  684. NSMutableURLRequest *request;
  685. PHAsset *asset;
  686. NSError *error;
  687. // calculate and store file size
  688. NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileName] error:&error];
  689. long long fileSize = [[fileAttributes objectForKey:NSFileSize] longLongValue];
  690. metadata.size = fileSize;
  691. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  692. url = [NSURL URLWithString:[[NSString stringWithFormat:@"%@/%@", serverUrl, metadata.fileName] encodeString:NSUTF8StringEncoding]];
  693. request = [NSMutableURLRequest requestWithURL:url];
  694. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  695. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  696. [request setHTTPMethod:@"PUT"];
  697. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  698. [request setValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  699. // Create Image for Upload
  700. #ifndef EXTENSION
  701. [CCGraphics createNewImageFrom:metadata.fileNameView fileID:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:YES typeFile:metadata.typeFile writeImage:YES];
  702. #endif
  703. // Change date file upload with header : X-OC-Mtime (ctime assetLocalIdentifier) image/video
  704. if (metadata.assetLocalIdentifier) {
  705. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  706. if (result.count) {
  707. asset = result[0];
  708. long dateFileCreation = [asset.creationDate timeIntervalSince1970];
  709. [request setValue:[NSString stringWithFormat:@"%ld", dateFileCreation] forHTTPHeaderField:@"X-OC-Mtime"];
  710. }
  711. }
  712. NSURLSession *sessionUpload;
  713. // NSURLSession
  714. if ([metadata.session isEqualToString:k_upload_session]) sessionUpload = [self sessionUpload];
  715. else if ([metadata.session isEqualToString:k_upload_session_wwan]) sessionUpload = [self sessionWWanUpload];
  716. else if ([metadata.session isEqualToString:k_upload_session_foreground]) sessionUpload = [self sessionUploadForeground];
  717. else if ([metadata.session isEqualToString:k_upload_session_extension]) sessionUpload = [self sessionUploadExtension];
  718. NSURLSessionUploadTask *uploadTask = [sessionUpload uploadTaskWithRequest:request fromFile:[NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileName]]];
  719. // Error
  720. if (uploadTask == nil) {
  721. NSString *messageError = @"Serious internal error uploadTask not available";
  722. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:messageError sessionSelector:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusUploadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  723. if ([[self delegate] respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  724. [[self delegate] uploadFileSuccessFailure:metadata.fileNameView fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:messageError errorCode:k_CCErrorInternalError];
  725. }
  726. } else {
  727. // E2EE : CREATE AND SEND METADATA
  728. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  729. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  730. // Send Metadata
  731. NSError *error = [[NCNetworkingEndToEnd sharedManager] sendEndToEndMetadataOnServerUrl:serverUrl fileNameRename:nil fileNameNewRename:nil account:_activeAccount user:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl];
  732. dispatch_async(dispatch_get_main_queue(), ^{
  733. if (error) {
  734. [uploadTask cancel];
  735. NSString *messageError = [NSString stringWithFormat:@"%@ (%d)", error.localizedDescription, (int)error.code];
  736. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:messageError sessionSelector:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusUploadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  737. if ([[self delegate] respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  738. [[self delegate] uploadFileSuccessFailure:metadata.fileNameView fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:messageError errorCode:k_CCErrorInternalError];
  739. }
  740. } else {
  741. // Manage uploadTask cancel,suspend,resume
  742. if (taskStatus == k_taskStatusCancel) [uploadTask cancel];
  743. else if (taskStatus == k_taskStatusSuspend) [uploadTask suspend];
  744. else if (taskStatus == k_taskStatusResume) [uploadTask resume];
  745. // *** E2EE ***
  746. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:@"" sessionSelector:nil sessionTaskIdentifier:uploadTask.taskIdentifier status:k_metadataStatusUploading predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  747. NSLog(@"[LOG] Upload file %@ TaskIdentifier %lu", metadata.fileName, (unsigned long)uploadTask.taskIdentifier);
  748. NSString *fileID = metadata.fileID;
  749. NSString *account = metadata.account;
  750. dispatch_async(dispatch_get_main_queue(), ^{
  751. if ([[self delegate] respondsToSelector:@selector(uploadStart:account:task:serverUrl:)]) {
  752. [[self delegate] uploadStart:fileID account:account task:uploadTask serverUrl:serverUrl];
  753. }
  754. });
  755. }
  756. });
  757. });
  758. } else {
  759. // Manage uploadTask cancel,suspend,resume
  760. if (taskStatus == k_taskStatusCancel) [uploadTask cancel];
  761. else if (taskStatus == k_taskStatusSuspend) [uploadTask suspend];
  762. else if (taskStatus == k_taskStatusResume) [uploadTask resume];
  763. // *** PLAIN ***
  764. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:@"" sessionSelector:nil sessionTaskIdentifier:uploadTask.taskIdentifier status:k_metadataStatusUploading predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  765. NSLog(@"[LOG] Upload file %@ TaskIdentifier %lu", metadata.fileName, (unsigned long)uploadTask.taskIdentifier);
  766. NSString *fileID = metadata.fileID;
  767. NSString *account = metadata.account;
  768. dispatch_async(dispatch_get_main_queue(), ^{
  769. if ([[self delegate] respondsToSelector:@selector(uploadStart:account:task:serverUrl:)]) {
  770. [[self delegate] uploadStart:fileID account:account task:uploadTask serverUrl:serverUrl];
  771. }
  772. });
  773. }
  774. }
  775. }
  776. - (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveData:(NSData *)data
  777. {
  778. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)dataTask.response;
  779. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  780. NSNumber *taskIdentifier = [NSNumber numberWithLong:dataTask.taskIdentifier];
  781. if (data)
  782. [_taskData setObject:[data copy] forKey:taskIdentifier];
  783. }
  784. }
  785. - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend
  786. {
  787. NSString *url = [[[task currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  788. NSString *fileName = [url lastPathComponent];
  789. NSString *serverUrl = [self getServerUrlFromUrl:url];
  790. if (!serverUrl) return;
  791. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  792. if (!directoryID) return;
  793. if (totalBytesExpectedToSend < 1) {
  794. totalBytesExpectedToSend = totalBytesSent;
  795. }
  796. float progress = (float) totalBytesSent / (float)totalBytesExpectedToSend;
  797. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataInSessionFromFileName:fileName directoryID:directoryID];
  798. if (metadata) {
  799. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"status": ([NSNumber numberWithLong:k_metadataStatusInUpload]), @"progress": ([NSNumber numberWithFloat:progress]), @"totalBytes": ([NSNumber numberWithLongLong:totalBytesSent]), @"totalBytesExpected": ([NSNumber numberWithLongLong:totalBytesExpectedToSend])};
  800. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  801. }
  802. }
  803. - (void)uploadFileSuccessFailure:(tableMetadata *)metadata fileName:(NSString *)fileName fileID:(NSString *)fileID etag:(NSString *)etag date:(NSDate *)date serverUrl:(NSString *)serverUrl errorCode:(NSInteger)errorCode
  804. {
  805. NSString *tempFileID = metadata.fileID;
  806. NSString *tempSession = metadata.session;
  807. NSString *errorMessage = @"";
  808. BOOL isE2EEDirectory = false;
  809. // E2EE Directory ?
  810. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  811. isE2EEDirectory = true;
  812. }
  813. // ERRORE
  814. if (errorCode != 0) {
  815. #ifndef EXTENSION
  816. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  817. [appDelegate.listProgressMetadata removeObjectForKey:metadata.fileID];
  818. #endif
  819. // Mark error only if not Cancelled Task
  820. if (errorCode == kCFURLErrorCancelled) {
  821. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageFileID:tempFileID] error:nil];
  822. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", tempFileID] clearDateReadDirectoryID:metadata.directoryID];
  823. } else {
  824. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[CCError manageErrorKCF:errorCode withNumberError:NO] sessionSelector:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusUploadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", tempFileID]];
  825. }
  826. errorMessage = [CCError manageErrorKCF:errorCode withNumberError:YES];
  827. } else {
  828. // Replace Metadata
  829. metadata.date = date;
  830. if (isE2EEDirectory) {
  831. metadata.e2eEncrypted = true;
  832. } else {
  833. metadata.e2eEncrypted = false;
  834. }
  835. metadata.etag = etag;
  836. metadata.fileID = fileID;
  837. metadata.session = @"";
  838. metadata.sessionError = @"";
  839. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  840. metadata.status = k_metadataStatusNormal;
  841. metadata = [[NCManageDatabase sharedInstance] addMetadata:metadata];
  842. NSLog(@"[LOG] Insert new upload : %@ - fileID : %@", metadata.fileName, fileID);
  843. // remove tempFileID and adjust the directory provider storage
  844. if ([tempFileID isEqualToString:[metadata.directoryID stringByAppendingString:metadata.fileNameView]]) {
  845. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", tempFileID] clearDateReadDirectoryID:nil];
  846. // adjust file system Directory Provider Storage
  847. if ([tempSession isEqualToString:k_upload_session_extension]) {
  848. // this is for File Provider Extension [Apple Works and ... ?]
  849. [[NSFileManager defaultManager] copyItemAtPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], tempFileID] toPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], metadata.fileID] error:nil];
  850. } else {
  851. [[NSFileManager defaultManager] moveItemAtPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], tempFileID] toPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], metadata.fileID] error:nil];
  852. }
  853. }
  854. #ifndef EXTENSION
  855. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  856. [appDelegate.listProgressMetadata removeObjectForKey:metadata.fileID];
  857. // Hardcoded for add new photo/video for tab Media view
  858. NSString *startDirectoryMediaTabView = [[NCManageDatabase sharedInstance] getAccountStartDirectoryMediaTabView:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
  859. if ([serverUrl containsString:startDirectoryMediaTabView] && ([metadata.typeFile isEqualToString:k_metadataTypeFile_image] || [metadata.typeFile isEqualToString:k_metadataTypeFile_video])) {
  860. [appDelegate.activeMedia.addMetadatasFromUpload addObject:metadata];
  861. }
  862. #endif
  863. // Local
  864. if (metadata.directory == NO)
  865. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
  866. #ifndef EXTENSION
  867. // EXIF
  868. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  869. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata];
  870. // Create ICON
  871. if (metadata.directory == NO) {
  872. [CCGraphics createNewImageFrom:metadata.fileNameView fileID:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:NO typeFile:metadata.typeFile writeImage:YES];
  873. }
  874. // Optimization
  875. if (([CCUtility getUploadAndRemovePhoto] || [metadata.sessionSelector isEqualToString:selectorUploadAutoUploadAll]) && [metadata.typeFile isEqualToString:k_metadataTypeFile_document] == NO && isE2EEDirectory == NO) {
  876. [[NSFileManager defaultManager] createFileAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileNameView] contents:nil attributes:nil];
  877. }
  878. // Copy photo or video in the photo album for auto upload
  879. if ([metadata.assetLocalIdentifier length] > 0 && ([metadata.sessionSelector isEqualToString:selectorUploadAutoUpload] || [metadata.sessionSelector isEqualToString:selectorUploadFile])) {
  880. PHAsset *asset;
  881. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  882. if(result.count){
  883. asset = result[0];
  884. [asset saveToAlbum:[NCBrandOptions sharedInstance].brand completionBlock:^(BOOL success) {
  885. if (success) NSLog(@"[LOG] Insert file %@ in %@", metadata.fileName, [NCBrandOptions sharedInstance].brand);
  886. else NSLog(@"[LOG] File %@ do not insert in %@", metadata.fileName, [NCBrandOptions sharedInstance].brand);
  887. }];
  888. }
  889. }
  890. #endif
  891. // Actvity
  892. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileNameView fileID:fileID action:k_activityDebugActionUpload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  893. }
  894. // E2EE : UNLOCK
  895. if (isE2EEDirectory) {
  896. tableE2eEncryptionLock *tableLock = [[NCManageDatabase sharedInstance] getE2ETokenLockWithServerUrl:serverUrl];
  897. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  898. if (tableLock) {
  899. NSError *error = [[NCNetworkingEndToEnd sharedManager] unlockEndToEndFolderEncryptedOnServerUrl:serverUrl fileID:tableLock.fileID token:tableLock.token user:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl];
  900. if (error) {
  901. #ifndef EXTENSION
  902. dispatch_async(dispatch_get_main_queue(), ^{
  903. [(AppDelegate *)[[UIApplication sharedApplication] delegate] messageNotification:@"_e2e_error_unlock_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  904. });
  905. #endif
  906. }
  907. } else {
  908. NSLog(@"Error unlock not found");
  909. }
  910. dispatch_async(dispatch_get_main_queue(), ^{
  911. if ([[self delegate] respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  912. [[self delegate] uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:errorMessage errorCode:errorCode];
  913. }
  914. });
  915. });
  916. } else {
  917. if ([[self delegate] respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  918. [[self delegate] uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:errorMessage errorCode:errorCode];
  919. }
  920. }
  921. }
  922. #pragma --------------------------------------------------------------------------------------------
  923. #pragma mark ===== Utility =====
  924. #pragma --------------------------------------------------------------------------------------------
  925. - (id)getDelegate:(NSString *)fileID
  926. {
  927. id delegate = [_delegates objectForKey:fileID];
  928. if (delegate)
  929. return delegate;
  930. else
  931. return self.delegate;
  932. }
  933. - (NSString *)getServerUrlFromUrl:(NSString *)url
  934. {
  935. NSString *fileName = [url lastPathComponent];
  936. url = [url stringByReplacingOccurrencesOfString:[@"/" stringByAppendingString:fileName] withString:@""];
  937. return url;
  938. }
  939. #pragma --------------------------------------------------------------------------------------------
  940. #pragma mark ===== E2EE End To End Encryption =====
  941. #pragma --------------------------------------------------------------------------------------------
  942. // E2EE
  943. - (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
  944. {
  945. __block NSError *error;
  946. NSString *key;
  947. NSString *initializationVector;
  948. NSString *authenticationTag;
  949. NSString *metadataKey;
  950. NSInteger metadataKeyIndex;
  951. // Verify File Size
  952. NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileNameView] error:&error];
  953. NSNumber *fileSizeNumber = [fileAttributes objectForKey:NSFileSize];
  954. long long fileSize = [fileSizeNumber longLongValue];
  955. if (fileSize > k_max_filesize_E2E) {
  956. // Error for uploadFileFailure
  957. *errorMessage = @"E2E Error file too big";
  958. return;
  959. }
  960. // if new file upload [directoryID + fileName] create a new encrypted filename
  961. if ([metadata.fileID isEqualToString:[metadata.directoryID stringByAppendingString:metadata.fileNameView]]) {
  962. *fileNameIdentifier = [CCUtility generateRandomIdentifier];
  963. } else {
  964. *fileNameIdentifier = metadata.fileName;
  965. }
  966. // Write to DB
  967. if ([[NCEndToEndEncryption sharedManager] encryptFileName:metadata.fileNameView fileNameIdentifier:*fileNameIdentifier directory:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID] key:&key initializationVector:&initializationVector authenticationTag:&authenticationTag]) {
  968. tableE2eEncryption *object = [[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", _activeAccount, serverUrl]];
  969. if (object) {
  970. metadataKey = object.metadataKey;
  971. metadataKeyIndex = object.metadataKeyIndex;
  972. } else {
  973. metadataKey = [[[NCEndToEndEncryption sharedManager] generateKey:16] base64EncodedStringWithOptions:0]; // AES_KEY_128_LENGTH
  974. metadataKeyIndex = 0;
  975. }
  976. tableE2eEncryption *addObject = [tableE2eEncryption new];
  977. addObject.account = _activeAccount;
  978. addObject.authenticationTag = authenticationTag;
  979. addObject.fileName = metadata.fileNameView;
  980. addObject.fileNameIdentifier = *fileNameIdentifier;
  981. addObject.fileNamePath = [CCUtility returnFileNamePathFromFileName:metadata.fileNameView serverUrl:serverUrl activeUrl:_activeUrl];
  982. addObject.key = key;
  983. addObject.initializationVector = initializationVector;
  984. addObject.metadataKey = metadataKey;
  985. addObject.metadataKeyIndex = metadataKeyIndex;
  986. CFStringRef UTI = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (__bridge CFStringRef)[metadata.fileNameView pathExtension], NULL);
  987. CFStringRef mimeTypeRef = UTTypeCopyPreferredTagWithClass (UTI, kUTTagClassMIMEType);
  988. if (mimeTypeRef) {
  989. addObject.mimeType = (__bridge NSString *)mimeTypeRef;
  990. } else {
  991. addObject.mimeType = @"application/octet-stream";
  992. }
  993. addObject.serverUrl = serverUrl;
  994. addObject.version = [[NCManageDatabase sharedInstance] getEndToEndEncryptionVersion];
  995. // Get the last metadata
  996. NSString *metadata;
  997. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", account, serverUrl]];
  998. error = [[NCNetworkingEndToEnd sharedManager] getEndToEndMetadata:&metadata fileID:directory.fileID user:user userID:userID password:password url:url];
  999. if (error == nil) {
  1000. if ([[NCEndToEndMetadata sharedInstance] decoderMetadata:metadata privateKey:[CCUtility getEndToEndPrivateKey:account] serverUrl:serverUrl account:account url:url] == false) {
  1001. *errorMessage = NSLocalizedString(@"_e2e_error_decode_metadata_", nil);
  1002. return;
  1003. }
  1004. }
  1005. *e2eMetadata = metadata;
  1006. // write new record e2ee
  1007. if([[NCManageDatabase sharedInstance] addE2eEncryption:addObject] == NO)
  1008. *errorMessage = NSLocalizedString(@"_e2e_error_create_encrypted_", nil);
  1009. } else {
  1010. *errorMessage = NSLocalizedString(@"_e2e_error_create_encrypted_", nil);
  1011. }
  1012. }
  1013. @end
  1014. #pragma --------------------------------------------------------------------------------------------
  1015. #pragma mark ===== CCMetadataNet =====
  1016. #pragma --------------------------------------------------------------------------------------------
  1017. @implementation CCMetadataNet
  1018. - (id)init
  1019. {
  1020. self = [super init];
  1021. self.priority = NSOperationQueuePriorityNormal;
  1022. return self;
  1023. }
  1024. - (id)initWithAccount:(NSString *)withAccount
  1025. {
  1026. self = [self init];
  1027. if (self) {
  1028. _account = withAccount;
  1029. }
  1030. return self;
  1031. }
  1032. - (id)copyWithZone: (NSZone *) zone
  1033. {
  1034. CCMetadataNet *metadataNet = [[CCMetadataNet allocWithZone: zone] init];
  1035. [metadataNet setAccount: self.account];
  1036. [metadataNet setAction: self.action];
  1037. [metadataNet setContentType: self.contentType];
  1038. [metadataNet setDate: self.date];
  1039. [metadataNet setDelegate: self.delegate];
  1040. [metadataNet setDepth: self.depth];
  1041. [metadataNet setDirectory: self.directory];
  1042. [metadataNet setDirectoryID: self.directoryID];
  1043. [metadataNet setDirectoryIDTo: self.directoryIDTo];
  1044. [metadataNet setEncryptedMetadata: self.encryptedMetadata];
  1045. [metadataNet setEtag:self.etag];
  1046. [metadataNet setExpirationTime: self.expirationTime];
  1047. [metadataNet setFileID: self.fileID];
  1048. [metadataNet setFileName: self.fileName];
  1049. [metadataNet setFileNameTo: self.fileNameTo];
  1050. [metadataNet setFileNameView: self.fileNameView];
  1051. [metadataNet setKey: self.key];
  1052. [metadataNet setKeyCipher: self.keyCipher];
  1053. [metadataNet setOptionAny: self.optionAny];
  1054. [metadataNet setOptionString: self.optionString];
  1055. [metadataNet setPassword: self.password];
  1056. [metadataNet setPriority: self.priority];
  1057. [metadataNet setServerUrl: self.serverUrl];
  1058. [metadataNet setServerUrlTo: self.serverUrlTo];
  1059. [metadataNet setSelector: self.selector];
  1060. [metadataNet setShare: self.share];
  1061. [metadataNet setShareeType: self.shareeType];
  1062. [metadataNet setSharePermission: self.sharePermission];
  1063. [metadataNet setSize: self.size];
  1064. return metadataNet;
  1065. }
  1066. @end