CCNetworking.m 71 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. 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. NSInteger errorCode;
  296. NSDate *date = [NSDate date];
  297. NSDateFormatter *dateFormatter = [NSDateFormatter new];
  298. NSLocale *enUSPOSIXLocale = [NSLocale localeWithLocaleIdentifier:@"en_US_POSIX"];
  299. [dateFormatter setLocale:enUSPOSIXLocale];
  300. [dateFormatter setDateFormat:@"EEE, dd MMM y HH:mm:ss zzz"];
  301. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)task.response;
  302. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  303. errorCode = error.code;
  304. } else {
  305. if (httpResponse.statusCode > 0)
  306. errorCode = httpResponse.statusCode;
  307. else
  308. errorCode = error.code;
  309. }
  310. // ----------------------- DOWNLOAD -----------------------
  311. if ([task isKindOfClass:[NSURLSessionDownloadTask class]]) {
  312. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataInSessionFromFileName:fileName serverUrl:serverUrl taskIdentifier:task.taskIdentifier];
  313. if (metadata) {
  314. NSString *etag = metadata.etag;
  315. //NSString *fileID = metadata.fileID;
  316. NSDictionary *fields = [httpResponse allHeaderFields];
  317. if (errorCode == 0) {
  318. etag = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-ETag"]];
  319. NSString *dateString = [fields objectForKey:@"Date"];
  320. if (dateString) {
  321. if (![dateFormatter getObjectValue:&date forString:dateString range:nil error:&error]) {
  322. date = [NSDate date];
  323. }
  324. } else {
  325. date = [NSDate date];
  326. }
  327. }
  328. if (fileName.length > 0 && serverUrl.length > 0) {
  329. dispatch_async(dispatch_get_main_queue(), ^{
  330. [self downloadFileSuccessFailure:fileName fileID:metadata.fileID etag:etag date:date serverUrl:serverUrl selector:metadata.sessionSelector errorCode:errorCode];
  331. });
  332. }
  333. } else {
  334. NSLog(@"[LOG] Remove record ? : metadata not found %@", url);
  335. dispatch_async(dispatch_get_main_queue(), ^{
  336. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  337. [self.delegate downloadFileSuccessFailure:fileName fileID:@"" serverUrl:serverUrl selector:@"" errorMessage:@"" errorCode:k_CCErrorInternalError];
  338. }
  339. });
  340. }
  341. }
  342. // ------------------------ UPLOAD -----------------------
  343. if ([task isKindOfClass:[NSURLSessionUploadTask class]]) {
  344. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataInSessionFromFileName:fileName serverUrl:serverUrl taskIdentifier:task.taskIdentifier];
  345. if (metadata) {
  346. NSDictionary *fields = [httpResponse allHeaderFields];
  347. NSString *fileID = metadata.fileID;
  348. NSString *etag = metadata.etag;
  349. if (errorCode == 0) {
  350. fileID = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-FileId"]];
  351. etag = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-ETag"]];
  352. NSString *dateString = [fields objectForKey:@"Date"];
  353. if (dateString) {
  354. if (![dateFormatter getObjectValue:&date forString:dateString range:nil error:&error]) {
  355. NSLog(@"[LOG] Date '%@' could not be parsed: %@", dateString, error);
  356. date = [NSDate date];
  357. }
  358. } else {
  359. date = [NSDate date];
  360. }
  361. }
  362. if (fileName.length > 0 && fileID.length > 0 && serverUrl.length > 0) {
  363. dispatch_async(dispatch_get_main_queue(), ^{
  364. [self uploadFileSuccessFailure:metadata fileName:fileName fileID:fileID etag:etag date:date serverUrl:serverUrl errorCode:errorCode];
  365. });
  366. }
  367. } else {
  368. NSLog(@"[LOG] Remove record ? : metadata not found %@", url);
  369. dispatch_async(dispatch_get_main_queue(), ^{
  370. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  371. [self.delegate uploadFileSuccessFailure:fileName fileID:@"" assetLocalIdentifier:@"" serverUrl:serverUrl selector:@"" errorMessage:@"" errorCode:k_CCErrorInternalError];
  372. }
  373. });
  374. }
  375. }
  376. }
  377. #pragma --------------------------------------------------------------------------------------------
  378. #pragma mark ===== Download =====
  379. #pragma --------------------------------------------------------------------------------------------
  380. - (void)downloadFile:(tableMetadata *)metadata taskStatus:(NSInteger)taskStatus
  381. {
  382. // File exists ?
  383. tableLocalFile *localfile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  384. if (localfile != nil && [CCUtility fileProviderStorageExists:metadata.fileID fileNameView:metadata.fileNameView]) {
  385. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusNormal predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  386. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  387. [self.delegate downloadFileSuccessFailure:metadata.fileName fileID:metadata.fileID serverUrl:metadata.serverUrl selector:metadata.sessionSelector errorMessage:@"" errorCode:0];
  388. }
  389. return;
  390. }
  391. [self downloaURLSession:metadata taskStatus:taskStatus];
  392. }
  393. - (void)downloaURLSession:(tableMetadata *)metadata taskStatus:(NSInteger)taskStatus
  394. {
  395. NSURLSession *sessionDownload;
  396. NSURL *url;
  397. NSMutableURLRequest *request;
  398. NSString *serverFileUrl = [[NSString stringWithFormat:@"%@/%@", metadata.serverUrl, metadata.fileName] encodeString:NSUTF8StringEncoding];
  399. url = [NSURL URLWithString:serverFileUrl];
  400. request = [NSMutableURLRequest requestWithURL:url];
  401. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  402. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  403. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  404. [request setValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  405. if ([metadata.session isEqualToString:k_download_session]) sessionDownload = [self sessionDownload];
  406. else if ([metadata.session isEqualToString:k_download_session_foreground]) sessionDownload = [self sessionDownloadForeground];
  407. else if ([metadata.session isEqualToString:k_download_session_wwan]) sessionDownload = [self sessionWWanDownload];
  408. NSURLSessionDownloadTask *downloadTask = [sessionDownload downloadTaskWithRequest:request];
  409. if (downloadTask == nil) {
  410. [[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];
  411. [[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]];
  412. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  413. [self.delegate downloadFileSuccessFailure:metadata.fileName fileID:metadata.fileID serverUrl:metadata.serverUrl selector:metadata.sessionSelector errorMessage:@"Serious internal error downloadTask not available" errorCode:k_CCErrorInternalError];
  414. }
  415. } else {
  416. // Manage uploadTask cancel,suspend,resume
  417. if (taskStatus == k_taskStatusCancel) [downloadTask cancel];
  418. else if (taskStatus == k_taskStatusSuspend) [downloadTask suspend];
  419. else if (taskStatus == k_taskStatusResume) [downloadTask resume];
  420. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:nil sessionSelector:nil sessionTaskIdentifier:downloadTask.taskIdentifier status:k_metadataStatusDownloading predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  421. NSLog(@"[LOG] downloadFileSession %@ Task [%lu]", metadata.fileID, (unsigned long)downloadTask.taskIdentifier);
  422. }
  423. dispatch_async(dispatch_get_main_queue(), ^{
  424. if ([self.delegate respondsToSelector:@selector(downloadStart:account:task:serverUrl:)]) {
  425. [self.delegate downloadStart:metadata.fileID account:metadata.account task:downloadTask serverUrl:metadata.serverUrl];
  426. }
  427. });
  428. }
  429. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
  430. {
  431. NSString *url = [[[downloadTask currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  432. NSString *fileName = [url lastPathComponent];
  433. NSString *serverUrl = [self getServerUrlFromUrl:url];
  434. if (!serverUrl) return;
  435. if (totalBytesExpectedToWrite < 1) {
  436. totalBytesExpectedToWrite = totalBytesWritten;
  437. }
  438. float progress = (float) totalBytesWritten / (float)totalBytesExpectedToWrite;
  439. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataInSessionFromFileName:fileName serverUrl:serverUrl taskIdentifier:downloadTask.taskIdentifier];
  440. if (metadata) {
  441. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"status": ([NSNumber numberWithLong:k_metadataStatusInDownload]), @"progress": ([NSNumber numberWithFloat:progress]), @"totalBytes": ([NSNumber numberWithLongLong:totalBytesWritten]), @"totalBytesExpected": ([NSNumber numberWithLongLong:totalBytesExpectedToWrite])};
  442. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  443. } else {
  444. NSLog(@"[LOG] metadata not found");
  445. }
  446. }
  447. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location
  448. {
  449. NSString *url = [[[downloadTask currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  450. if (!url)
  451. return;
  452. NSString *fileName = [url lastPathComponent];
  453. NSString *serverUrl = [self getServerUrlFromUrl:url];
  454. if (!serverUrl) return;
  455. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataInSessionFromFileName:fileName serverUrl:serverUrl taskIdentifier:downloadTask.taskIdentifier];
  456. if (!metadata) {
  457. [[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];
  458. NSLog(@"[LOG] Serious error internal download : metadata not found %@ ", url);
  459. dispatch_async(dispatch_get_main_queue(), ^{
  460. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  461. [self.delegate downloadFileSuccessFailure:@"" fileID:@"" serverUrl:serverUrl selector:@"" errorMessage:@"Serious error internal download : metadata not found" errorCode:k_CCErrorInternalError];
  462. }
  463. });
  464. return;
  465. }
  466. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)downloadTask.response;
  467. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  468. NSString *destinationFilePath = [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileName];
  469. NSURL *destinationURL = [NSURL fileURLWithPath:destinationFilePath];
  470. [[NSFileManager defaultManager] removeItemAtURL:destinationURL error:NULL];
  471. [[NSFileManager defaultManager] copyItemAtURL:location toURL:destinationURL error:nil];
  472. }
  473. }
  474. - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID etag:(NSString *)etag date:(NSDate *)date serverUrl:(NSString *)serverUrl selector:(NSString *)selector errorCode:(NSInteger)errorCode
  475. {
  476. #ifndef EXTENSION
  477. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  478. [appDelegate.listProgressMetadata removeObjectForKey:fileID];
  479. #endif
  480. if (errorCode != 0) {
  481. if (errorCode == kCFURLErrorCancelled) {
  482. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusNormal predicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  483. } else {
  484. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[CCError manageErrorKCF:errorCode withNumberError:NO] sessionSelector:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusDownloadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  485. }
  486. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  487. [self.delegate downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector errorMessage:[CCError manageErrorKCF:errorCode withNumberError:YES] errorCode:errorCode];
  488. }
  489. } else {
  490. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  491. if (!metadata) {
  492. [[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];
  493. NSLog(@"[LOG] Serious error internal download : metadata not found %@ ", fileName);
  494. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  495. [self.delegate downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector errorMessage:[NSString stringWithFormat:@"Serious error internal download : metadata not found %@", fileName] errorCode:k_CCErrorInternalError];
  496. }
  497. return;
  498. }
  499. metadata.session = @"";
  500. metadata.sessionError = @"";
  501. metadata.sessionSelector = @"";
  502. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  503. metadata.status = k_metadataStatusNormal;
  504. metadata = [[NCManageDatabase sharedInstance] updateMetadata:metadata];
  505. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
  506. // E2EE Decrypted
  507. tableE2eEncryption *object = [[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"fileNameIdentifier == %@ AND serverUrl == %@", fileName, serverUrl]];
  508. if (object) {
  509. BOOL result = [[NCEndToEndEncryption sharedManager] decryptFileName:metadata.fileName fileNameView:metadata.fileNameView fileID:metadata.fileID key:object.key initializationVector:object.initializationVector authenticationTag:object.authenticationTag];
  510. if (!result) {
  511. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileNameView fileID:fileID action:k_activityDebugActionUpload selector:@"" note:[NSString stringWithFormat:@"Serious error internal download : decrypt error %@", fileName] type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  512. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  513. [self.delegate downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector errorMessage:[NSString stringWithFormat:@"Serious error internal download : decrypt error %@", fileName] errorCode:k_CCErrorInternalError];
  514. }
  515. return;
  516. }
  517. }
  518. // Exif
  519. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  520. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata];
  521. // Icon
  522. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]] == NO) {
  523. [CCGraphics createNewImageFrom:metadata.fileNameView fileID:metadata.fileID extension:[metadata.fileNameView pathExtension] filterGrayScale:NO typeFile:metadata.typeFile writeImage:YES];
  524. }
  525. // Activity
  526. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileNameView fileID:metadata.fileID action:k_activityDebugActionDownload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  527. if ([self.delegate respondsToSelector:@selector(downloadFileSuccessFailure:fileID:serverUrl:selector:errorMessage:errorCode:)]) {
  528. [self.delegate downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector errorMessage:@"" errorCode:0];
  529. }
  530. }
  531. }
  532. #pragma --------------------------------------------------------------------------------------------
  533. #pragma mark ===== Upload =====
  534. #pragma --------------------------------------------------------------------------------------------
  535. - (void)uploadFile:(tableMetadata *)metadata taskStatus:(NSInteger)taskStatus
  536. {
  537. if ([CCUtility fileProviderStorageExists:metadata.fileID fileNameView:metadata.fileNameView] == NO) {
  538. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  539. if (!result.count) {
  540. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  541. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  542. [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];
  543. }
  544. return;
  545. }
  546. PHAsset *asset= result[0];
  547. // IMAGE
  548. if (asset.mediaType == PHAssetMediaTypeImage) {
  549. PHImageRequestOptions *options = [PHImageRequestOptions new];
  550. options.networkAccessAllowed = YES; // iCloud
  551. options.deliveryMode = PHImageRequestOptionsDeliveryModeHighQualityFormat;
  552. options.synchronous = YES;
  553. options.progressHandler = ^(double progress, NSError *error, BOOL *stop, NSDictionary *info) {
  554. NSLog(@"cacheAsset: %f", progress);
  555. if (error) {
  556. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  557. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  558. [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];
  559. }
  560. }
  561. };
  562. [[PHImageManager defaultManager] requestImageDataForAsset:asset options:options resultHandler:^(NSData *imageData, NSString *dataUTI, UIImageOrientation orientation, NSDictionary *info) {
  563. NSError *error = nil;
  564. NSString *extensionAsset = [[[asset valueForKey:@"filename"] pathExtension] uppercaseString];
  565. if ([extensionAsset isEqualToString:@"HEIC"] && [CCUtility getFormatCompatibility]) {
  566. UIImage *image = [UIImage imageWithData:imageData];
  567. imageData = UIImageJPEGRepresentation(image, 1.0);
  568. NSString *fileNameJPEG = [[metadata.fileName lastPathComponent] stringByDeletingPathExtension];
  569. metadata.fileName = [fileNameJPEG stringByAppendingString:@".jpg"];
  570. metadata.fileNameView = metadata.fileName;
  571. // Change Metadata with new fileID, fileName, fileNameView
  572. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  573. metadata.fileID = [metadata.directoryID stringByAppendingString:metadata.fileName];
  574. }
  575. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] addMetadata:[CCUtility insertFileSystemInMetadata:metadata]];
  576. [imageData writeToFile:[CCUtility getDirectoryProviderStorageFileID:metadataForUpload.fileID fileNameView:metadataForUpload.fileNameView] options:NSDataWritingAtomic error:&error];
  577. if (error) {
  578. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadataForUpload.fileID]];
  579. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  580. [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];
  581. }
  582. } else {
  583. // OOOOOK
  584. if ([CCUtility isFolderEncrypted:metadataForUpload.serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  585. [self e2eEncryptedFile:metadataForUpload taskStatus:taskStatus];
  586. } else {
  587. [self uploadURLSessionMetadata:metadataForUpload taskStatus:taskStatus];
  588. }
  589. }
  590. }];
  591. }
  592. // VIDEO
  593. if (asset.mediaType == PHAssetMediaTypeVideo) {
  594. PHVideoRequestOptions *options = [PHVideoRequestOptions new];
  595. options.networkAccessAllowed = YES;
  596. options.version = PHVideoRequestOptionsVersionOriginal;
  597. options.progressHandler = ^(double progress, NSError *error, BOOL *stop, NSDictionary *info) {
  598. NSLog(@"cacheAsset: %f", progress);
  599. if (error) {
  600. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  601. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  602. [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];
  603. }
  604. }
  605. };
  606. [[PHImageManager defaultManager] requestAVAssetForVideo:asset options:options resultHandler:^(AVAsset *asset, AVAudioMix *audioMix, NSDictionary *info) {
  607. if ([asset isKindOfClass:[AVURLAsset class]]) {
  608. NSURL *fileURL = [[NSURL alloc] initFileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  609. NSError *error = nil;
  610. [[NSFileManager defaultManager] removeItemAtURL:fileURL error:nil];
  611. [[NSFileManager defaultManager] copyItemAtURL:[(AVURLAsset *)asset URL] toURL:fileURL error:&error];
  612. if (error) {
  613. dispatch_async(dispatch_get_main_queue(), ^{
  614. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  615. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  616. [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];
  617. }
  618. });
  619. } else {
  620. dispatch_async(dispatch_get_main_queue(), ^{
  621. // create Metadata for Upload
  622. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] addMetadata:[CCUtility insertFileSystemInMetadata:metadata]];
  623. // OOOOOK
  624. if ([CCUtility isFolderEncrypted:metadataForUpload.serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  625. [self e2eEncryptedFile:metadataForUpload taskStatus:taskStatus];
  626. } else {
  627. [self uploadURLSessionMetadata:metadataForUpload taskStatus:taskStatus];
  628. }
  629. });
  630. }
  631. }
  632. }];
  633. }
  634. } else {
  635. // create Metadata for Upload
  636. tableMetadata *metadataForUpload = [[NCManageDatabase sharedInstance] addMetadata:[CCUtility insertFileSystemInMetadata:metadata]];
  637. // OOOOOK
  638. if ([CCUtility isFolderEncrypted:metadataForUpload.serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  639. [self e2eEncryptedFile:metadataForUpload taskStatus:taskStatus];
  640. } else {
  641. [self uploadURLSessionMetadata:metadataForUpload taskStatus:taskStatus];
  642. }
  643. }
  644. }
  645. - (void)e2eEncryptedFile:(tableMetadata *)metadata taskStatus:(NSInteger)taskStatus
  646. {
  647. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  648. NSError *error;
  649. NSString *fileNameIdentifier;
  650. NSString *key;
  651. NSString *initializationVector;
  652. NSString *authenticationTag;
  653. NSString *metadataKey;
  654. NSInteger metadataKeyIndex;
  655. NSString *e2eMetadata;
  656. // Verify File Size
  657. NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileNameView] error:&error];
  658. NSNumber *fileSizeNumber = [fileAttributes objectForKey:NSFileSize];
  659. long long fileSize = [fileSizeNumber longLongValue];
  660. if (fileSize > k_max_filesize_E2E) {
  661. // Error for uploadFileFailure
  662. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  663. [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];
  664. }
  665. return;
  666. }
  667. // if new file upload [directoryID + fileName] create a new encrypted filename
  668. if ([metadata.fileID isEqualToString:[metadata.directoryID stringByAppendingString:metadata.fileNameView]]) {
  669. fileNameIdentifier = [CCUtility generateRandomIdentifier];
  670. } else {
  671. fileNameIdentifier = metadata.fileName;
  672. }
  673. if ([[NCEndToEndEncryption sharedManager] encryptFileName:metadata.fileNameView fileNameIdentifier:fileNameIdentifier directory:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID] key:&key initializationVector:&initializationVector authenticationTag:&authenticationTag]) {
  674. tableE2eEncryption *object = [[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", _activeAccount, metadata.serverUrl]];
  675. if (object) {
  676. metadataKey = object.metadataKey;
  677. metadataKeyIndex = object.metadataKeyIndex;
  678. } else {
  679. metadataKey = [[[NCEndToEndEncryption sharedManager] generateKey:16] base64EncodedStringWithOptions:0]; // AES_KEY_128_LENGTH
  680. metadataKeyIndex = 0;
  681. }
  682. tableE2eEncryption *addObject = [tableE2eEncryption new];
  683. addObject.account = _activeAccount;
  684. addObject.authenticationTag = authenticationTag;
  685. addObject.fileName = metadata.fileNameView;
  686. addObject.fileNameIdentifier = fileNameIdentifier;
  687. addObject.fileNamePath = [CCUtility returnFileNamePathFromFileName:metadata.fileNameView serverUrl:metadata.serverUrl activeUrl:_activeUrl];
  688. addObject.key = key;
  689. addObject.initializationVector = initializationVector;
  690. addObject.metadataKey = metadataKey;
  691. addObject.metadataKeyIndex = metadataKeyIndex;
  692. CFStringRef UTI = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (__bridge CFStringRef)[metadata.fileNameView pathExtension], NULL);
  693. CFStringRef mimeTypeRef = UTTypeCopyPreferredTagWithClass (UTI, kUTTagClassMIMEType);
  694. if (mimeTypeRef) {
  695. addObject.mimeType = (__bridge NSString *)mimeTypeRef;
  696. } else {
  697. addObject.mimeType = @"application/octet-stream";
  698. }
  699. addObject.serverUrl = metadata.serverUrl;
  700. addObject.version = [[NCManageDatabase sharedInstance] getEndToEndEncryptionVersionWithAccount:_activeAccount];
  701. // Get the last metadata
  702. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@", _activeAccount, metadata.serverUrl]];
  703. error = [[NCNetworkingEndToEnd sharedManager] getEndToEndMetadata:&e2eMetadata fileID:directory.fileID user:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl];
  704. if (error == nil) {
  705. if ([[NCEndToEndMetadata sharedInstance] decoderMetadata:e2eMetadata privateKey:[CCUtility getEndToEndPrivateKey:_activeAccount] serverUrl:metadata.serverUrl account:_activeAccount url:_activeUrl] == false) {
  706. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  707. [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];
  708. }
  709. return;
  710. }
  711. }
  712. // write new record e2ee
  713. if([[NCManageDatabase sharedInstance] addE2eEncryption:addObject] == NO) {
  714. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  715. [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];
  716. }
  717. return;
  718. }
  719. } else {
  720. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  721. [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];
  722. }
  723. return;
  724. }
  725. dispatch_async(dispatch_get_main_queue(), ^{
  726. // Now the fileName is fileNameIdentifier && flag e2eEncrypted
  727. metadata.fileName = fileNameIdentifier;
  728. metadata.e2eEncrypted = YES;
  729. // Update Metadata
  730. tableMetadata *metadataEncrypted = [[NCManageDatabase sharedInstance] addMetadata:metadata];
  731. [self uploadURLSessionMetadata:metadataEncrypted taskStatus:taskStatus];
  732. });
  733. });
  734. }
  735. - (void)uploadURLSessionMetadata:(tableMetadata *)metadata taskStatus:(NSInteger)taskStatus
  736. {
  737. NSURL *url;
  738. NSMutableURLRequest *request;
  739. PHAsset *asset;
  740. NSError *error;
  741. // calculate and store file size
  742. NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileName] error:&error];
  743. long long fileSize = [[fileAttributes objectForKey:NSFileSize] longLongValue];
  744. metadata.size = fileSize;
  745. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  746. url = [NSURL URLWithString:[[NSString stringWithFormat:@"%@/%@", metadata.serverUrl, metadata.fileName] encodeString:NSUTF8StringEncoding]];
  747. request = [NSMutableURLRequest requestWithURL:url];
  748. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  749. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  750. [request setHTTPMethod:@"PUT"];
  751. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  752. [request setValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  753. // Create Image for Upload (gray scale)
  754. #ifndef EXTENSION
  755. [CCGraphics createNewImageFrom:metadata.fileNameView fileID:metadata.fileID extension:[metadata.fileNameView pathExtension] filterGrayScale:YES typeFile:metadata.typeFile writeImage:YES];
  756. #endif
  757. // Change date file upload with header : X-OC-Mtime (ctime assetLocalIdentifier) image/video
  758. if (metadata.assetLocalIdentifier) {
  759. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  760. if (result.count) {
  761. asset = result[0];
  762. long dateFileCreation = [asset.creationDate timeIntervalSince1970];
  763. [request setValue:[NSString stringWithFormat:@"%ld", dateFileCreation] forHTTPHeaderField:@"X-OC-Mtime"];
  764. }
  765. }
  766. NSURLSession *sessionUpload;
  767. // NSURLSession
  768. if ([metadata.session isEqualToString:k_upload_session]) sessionUpload = [self sessionUpload];
  769. else if ([metadata.session isEqualToString:k_upload_session_wwan]) sessionUpload = [self sessionWWanUpload];
  770. else if ([metadata.session isEqualToString:k_upload_session_foreground]) sessionUpload = [self sessionUploadForeground];
  771. else if ([metadata.session isEqualToString:k_upload_session_extension]) sessionUpload = [self sessionUploadExtension];
  772. NSURLSessionUploadTask *uploadTask = [sessionUpload uploadTaskWithRequest:request fromFile:[NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileName]]];
  773. // Error
  774. if (uploadTask == nil) {
  775. NSString *messageError = @"Serious internal error uploadTask not available";
  776. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:messageError sessionSelector:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusUploadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  777. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  778. [self.delegate uploadFileSuccessFailure:metadata.fileNameView fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:metadata.serverUrl selector:metadata.sessionSelector errorMessage:messageError errorCode:k_CCErrorInternalError];
  779. }
  780. } else {
  781. // E2EE : CREATE AND SEND METADATA
  782. if ([CCUtility isFolderEncrypted:metadata.serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  783. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  784. // Send Metadata
  785. NSError *error = [[NCNetworkingEndToEnd sharedManager] sendEndToEndMetadataOnServerUrl:metadata.serverUrl fileNameRename:nil fileNameNewRename:nil account:_activeAccount user:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl];
  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. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)dataTask.response;
  833. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  834. NSNumber *taskIdentifier = [NSNumber numberWithLong:dataTask.taskIdentifier];
  835. if (data)
  836. [_taskData setObject:[data copy] forKey:taskIdentifier];
  837. }
  838. }
  839. - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend
  840. {
  841. NSString *url = [[[task currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  842. NSString *fileName = [url lastPathComponent];
  843. NSString *serverUrl = [self getServerUrlFromUrl:url];
  844. if (!serverUrl) return;
  845. if (totalBytesExpectedToSend < 1) {
  846. totalBytesExpectedToSend = totalBytesSent;
  847. }
  848. float progress = (float) totalBytesSent / (float)totalBytesExpectedToSend;
  849. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataInSessionFromFileName:fileName serverUrl:serverUrl taskIdentifier:task.taskIdentifier];
  850. if (metadata) {
  851. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"status": ([NSNumber numberWithLong:k_metadataStatusInUpload]), @"progress": ([NSNumber numberWithFloat:progress]), @"totalBytes": ([NSNumber numberWithLongLong:totalBytesSent]), @"totalBytesExpected": ([NSNumber numberWithLongLong:totalBytesExpectedToSend])};
  852. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  853. }
  854. }
  855. - (void)uploadFileSuccessFailure:(tableMetadata *)metadata fileName:(NSString *)fileName fileID:(NSString *)fileID etag:(NSString *)etag date:(NSDate *)date serverUrl:(NSString *)serverUrl errorCode:(NSInteger)errorCode
  856. {
  857. NSString *tempFileID = metadata.fileID;
  858. NSString *tempSession = metadata.session;
  859. NSString *errorMessage = @"";
  860. BOOL isE2EEDirectory = false;
  861. // is this a E2EE Directory ?
  862. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  863. isE2EEDirectory = true;
  864. }
  865. // ERRORE
  866. if (errorCode != 0) {
  867. #ifndef EXTENSION
  868. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  869. [appDelegate.listProgressMetadata removeObjectForKey:metadata.fileID];
  870. #endif
  871. // Mark error only if not Cancelled Task
  872. if (errorCode == kCFURLErrorCancelled) {
  873. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageFileID:tempFileID] error:nil];
  874. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", tempFileID]];
  875. } else {
  876. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[CCError manageErrorKCF:errorCode withNumberError:NO] sessionSelector:nil sessionTaskIdentifier:k_taskIdentifierDone status:k_metadataStatusUploadError predicate:[NSPredicate predicateWithFormat:@"fileID == %@", tempFileID]];
  877. }
  878. errorMessage = [CCError manageErrorKCF:errorCode withNumberError:YES];
  879. } else {
  880. // Replace Metadata
  881. metadata.date = date;
  882. if (isE2EEDirectory) {
  883. metadata.e2eEncrypted = true;
  884. } else {
  885. metadata.e2eEncrypted = false;
  886. }
  887. metadata.etag = etag;
  888. metadata.fileID = fileID;
  889. metadata.session = @"";
  890. metadata.sessionError = @"";
  891. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  892. metadata.status = k_metadataStatusNormal;
  893. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND fileName == %@", metadata.account, metadata.serverUrl, metadata.fileName]];
  894. metadata = [[NCManageDatabase sharedInstance] addMetadata:metadata];
  895. NSLog(@"[LOG] Insert new upload : %@ - fileID : %@", metadata.fileName, fileID);
  896. // remove tempFileID and adjust the directory provider storage
  897. if ([tempFileID isEqualToString:[metadata.directoryID stringByAppendingString:metadata.fileNameView]]) {
  898. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", tempFileID]];
  899. // adjust file system Directory Provider Storage
  900. if ([tempSession isEqualToString:k_upload_session_extension]) {
  901. // this is for File Provider Extension [Apple Works and ... ?]
  902. [CCUtility copyFileAtPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], tempFileID] toPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], metadata.fileID]];
  903. } else {
  904. [CCUtility moveFileAtPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], tempFileID] toPath:[NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryProviderStorage], metadata.fileID]];
  905. }
  906. }
  907. #ifndef EXTENSION
  908. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  909. [appDelegate.listProgressMetadata removeObjectForKey:metadata.fileID];
  910. // Hardcoded for add new photo/video for tab Media view
  911. NSString *startDirectoryMediaTabView = [[NCManageDatabase sharedInstance] getAccountStartDirectoryMediaTabView:[CCUtility getHomeServerUrlActiveUrl:appDelegate.activeUrl]];
  912. if ([serverUrl containsString:startDirectoryMediaTabView] && ([metadata.typeFile isEqualToString:k_metadataTypeFile_image] || [metadata.typeFile isEqualToString:k_metadataTypeFile_video])) {
  913. [appDelegate.activeMedia.addMetadatasFromUpload addObject:metadata];
  914. }
  915. #endif
  916. // Add Local
  917. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
  918. #ifndef EXTENSION
  919. // EXIF
  920. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  921. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata];
  922. // Remove icon B/N
  923. [[NSFileManager defaultManager] removeItemAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView] error:nil];
  924. // Copy photo or video in the photo album for auto upload
  925. if ([metadata.assetLocalIdentifier length] > 0 && ([metadata.sessionSelector isEqualToString:selectorUploadAutoUpload] || [metadata.sessionSelector isEqualToString:selectorUploadFile])) {
  926. PHAsset *asset;
  927. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  928. if(result.count){
  929. asset = result[0];
  930. [asset saveToAlbum:[NCBrandOptions sharedInstance].brand completionBlock:^(BOOL success) {
  931. if (success) NSLog(@"[LOG] Insert file %@ in %@", metadata.fileName, [NCBrandOptions sharedInstance].brand);
  932. else NSLog(@"[LOG] File %@ do not insert in %@", metadata.fileName, [NCBrandOptions sharedInstance].brand);
  933. }];
  934. }
  935. }
  936. #endif
  937. // Actvity
  938. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileNameView fileID:fileID action:k_activityDebugActionUpload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  939. }
  940. // Detect E2EE
  941. tableMetadata *e2eeMetadataInSession = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND serverUrl == %@ AND e2eEncrypted == 1 AND (status == %d OR status == %d)", _activeAccount, metadata.serverUrl, k_metadataStatusInUpload, k_metadataStatusUploading]];
  942. // E2EE : UNLOCK
  943. if (isE2EEDirectory && e2eeMetadataInSession == nil) {
  944. tableE2eEncryptionLock *tableLock = [[NCManageDatabase sharedInstance] getE2ETokenLockWithServerUrl:serverUrl];
  945. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  946. if (tableLock) {
  947. NSError *error = [[NCNetworkingEndToEnd sharedManager] unlockEndToEndFolderEncryptedOnServerUrl:serverUrl fileID:tableLock.fileID token:tableLock.token user:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl];
  948. if (error) {
  949. #ifndef EXTENSION
  950. dispatch_async(dispatch_get_main_queue(), ^{
  951. [(AppDelegate *)[[UIApplication sharedApplication] delegate] messageNotification:@"_e2e_error_unlock_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  952. });
  953. #endif
  954. }
  955. } else {
  956. NSLog(@"Error unlock not found");
  957. }
  958. dispatch_async(dispatch_get_main_queue(), ^{
  959. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  960. [self.delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:errorMessage errorCode:errorCode];
  961. }
  962. });
  963. });
  964. } else {
  965. if ([self.delegate respondsToSelector:@selector(uploadFileSuccessFailure:fileID:assetLocalIdentifier:serverUrl:selector:errorMessage:errorCode:)]) {
  966. [self.delegate uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector errorMessage:errorMessage errorCode:errorCode];
  967. }
  968. }
  969. }
  970. #pragma --------------------------------------------------------------------------------------------
  971. #pragma mark ===== Utility =====
  972. #pragma --------------------------------------------------------------------------------------------
  973. - (NSString *)getServerUrlFromUrl:(NSString *)url
  974. {
  975. NSString *fileName = [url lastPathComponent];
  976. url = [url stringByReplacingOccurrencesOfString:[@"/" stringByAppendingString:fileName] withString:@""];
  977. return url;
  978. }
  979. @end
  980. #pragma --------------------------------------------------------------------------------------------
  981. #pragma mark ===== CCMetadataNet =====
  982. #pragma --------------------------------------------------------------------------------------------
  983. @implementation CCMetadataNet
  984. - (id)init
  985. {
  986. self = [super init];
  987. self.priority = NSOperationQueuePriorityNormal;
  988. return self;
  989. }
  990. - (id)initWithAccount:(NSString *)withAccount
  991. {
  992. self = [self init];
  993. if (self) {
  994. _account = withAccount;
  995. }
  996. return self;
  997. }
  998. - (id)copyWithZone: (NSZone *) zone
  999. {
  1000. CCMetadataNet *metadataNet = [[CCMetadataNet allocWithZone: zone] init];
  1001. [metadataNet setAccount: self.account];
  1002. [metadataNet setAction: self.action];
  1003. [metadataNet setContentType: self.contentType];
  1004. [metadataNet setDate: self.date];
  1005. [metadataNet setDelegate: self.delegate];
  1006. [metadataNet setDepth: self.depth];
  1007. [metadataNet setDirectory: self.directory];
  1008. [metadataNet setDirectoryID: self.directoryID];
  1009. [metadataNet setDirectoryIDTo: self.directoryIDTo];
  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