CCNetworking.m 73 KB

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