CCNetworking.m 72 KB

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