CCNetworking.m 77 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489
  1. //
  2. // CCNetworking.m
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 01/06/15.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "CCNetworking.h"
  24. #import "NCEndToEndEncryption.h"
  25. #import "NCNetworkingSync.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. NSString *_directoryUser;
  40. }
  41. @end
  42. @implementation CCNetworking
  43. + (CCNetworking *)sharedNetworking {
  44. static CCNetworking *sharedNetworking;
  45. @synchronized(self)
  46. {
  47. if (!sharedNetworking) {
  48. sharedNetworking = [[CCNetworking alloc] init];
  49. }
  50. return sharedNetworking;
  51. }
  52. }
  53. - (id)init
  54. {
  55. self = [super init];
  56. _taskData = [[NSMutableDictionary alloc] init];
  57. _delegates = [[NSMutableDictionary alloc] init];
  58. // Initialization Sessions
  59. [self sessionDownload];
  60. [self sessionDownloadForeground];
  61. [self sessionWWanDownload];
  62. [self sessionUpload];
  63. [self sessionWWanUpload];
  64. [self sessionUploadForeground];
  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. _directoryUser = [CCUtility getDirectoryActiveUser:_activeUser activeUrl:_activeUrl];
  78. }
  79. #pragma --------------------------------------------------------------------------------------------
  80. #pragma mark ===== Session =====
  81. #pragma --------------------------------------------------------------------------------------------
  82. - (NSURLSession *)sessionDownload
  83. {
  84. static NSURLSession *sessionDownload = nil;
  85. if (sessionDownload == nil) {
  86. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_download_session];
  87. configuration.allowsCellularAccess = YES;
  88. configuration.sessionSendsLaunchEvents = YES;
  89. configuration.discretionary = NO;
  90. configuration.HTTPMaximumConnectionsPerHost = 1;
  91. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  92. sessionDownload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  93. sessionDownload.sessionDescription = k_download_session;
  94. }
  95. return sessionDownload;
  96. }
  97. - (NSURLSession *)sessionDownloadForeground
  98. {
  99. static NSURLSession *sessionDownloadForeground = nil;
  100. if (sessionDownloadForeground == nil) {
  101. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  102. configuration.allowsCellularAccess = YES;
  103. configuration.discretionary = NO;
  104. configuration.HTTPMaximumConnectionsPerHost = 1;
  105. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  106. sessionDownloadForeground = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  107. sessionDownloadForeground.sessionDescription = k_download_session_foreground;
  108. }
  109. return sessionDownloadForeground;
  110. }
  111. - (NSURLSession *)sessionWWanDownload
  112. {
  113. static NSURLSession *sessionWWanDownload = nil;
  114. if (sessionWWanDownload == nil) {
  115. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_download_session_wwan];
  116. configuration.allowsCellularAccess = NO;
  117. configuration.sessionSendsLaunchEvents = YES;
  118. configuration.discretionary = NO;
  119. configuration.HTTPMaximumConnectionsPerHost = 1;
  120. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  121. sessionWWanDownload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  122. sessionWWanDownload.sessionDescription = k_download_session_wwan;
  123. }
  124. return sessionWWanDownload;
  125. }
  126. - (NSURLSession *)sessionUpload
  127. {
  128. static NSURLSession *sessionUpload = nil;
  129. if (sessionUpload == nil) {
  130. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_upload_session];
  131. configuration.allowsCellularAccess = YES;
  132. configuration.sessionSendsLaunchEvents = YES;
  133. configuration.discretionary = NO;
  134. configuration.HTTPMaximumConnectionsPerHost = 1;
  135. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  136. sessionUpload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  137. sessionUpload.sessionDescription = k_upload_session;
  138. }
  139. return sessionUpload;
  140. }
  141. - (NSURLSession *)sessionWWanUpload
  142. {
  143. static NSURLSession *sessionWWanUpload = nil;
  144. if (sessionWWanUpload == nil) {
  145. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_upload_session_wwan];
  146. configuration.allowsCellularAccess = NO;
  147. configuration.sessionSendsLaunchEvents = YES;
  148. configuration.discretionary = NO;
  149. configuration.HTTPMaximumConnectionsPerHost = 1;
  150. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  151. sessionWWanUpload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  152. sessionWWanUpload.sessionDescription = k_upload_session_wwan;
  153. }
  154. return sessionWWanUpload;
  155. }
  156. - (NSURLSession *)sessionUploadForeground
  157. {
  158. static NSURLSession *sessionUploadForeground;
  159. if (sessionUploadForeground == nil) {
  160. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  161. configuration.allowsCellularAccess = YES;
  162. configuration.discretionary = NO;
  163. configuration.HTTPMaximumConnectionsPerHost = 1;
  164. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  165. sessionUploadForeground = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  166. sessionUploadForeground.sessionDescription = k_upload_session_foreground;
  167. }
  168. return sessionUploadForeground;
  169. }
  170. - (OCCommunication *)sharedOCCommunication
  171. {
  172. static OCCommunication* sharedOCCommunication = nil;
  173. if (sharedOCCommunication == nil)
  174. {
  175. // Network
  176. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  177. configuration.allowsCellularAccess = YES;
  178. configuration.discretionary = NO;
  179. configuration.HTTPMaximumConnectionsPerHost = k_maxConcurrentOperation;
  180. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  181. OCURLSessionManager *networkSessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:configuration];
  182. [networkSessionManager.operationQueue setMaxConcurrentOperationCount: k_maxConcurrentOperation];
  183. networkSessionManager.responseSerializer = [AFHTTPResponseSerializer serializer];
  184. // Download
  185. NSURLSessionConfiguration *configurationDownload = [NSURLSessionConfiguration defaultSessionConfiguration];
  186. configurationDownload.allowsCellularAccess = YES;
  187. configurationDownload.discretionary = NO;
  188. configurationDownload.HTTPMaximumConnectionsPerHost = 1;
  189. configurationDownload.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  190. configurationDownload.timeoutIntervalForRequest = k_timeout_upload;
  191. OCURLSessionManager *downloadSessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:configurationDownload];
  192. [downloadSessionManager.operationQueue setMaxConcurrentOperationCount:1];
  193. [downloadSessionManager setSessionDidReceiveAuthenticationChallengeBlock:^NSURLSessionAuthChallengeDisposition (NSURLSession *session, NSURLAuthenticationChallenge *challenge, NSURLCredential * __autoreleasing *credential) {
  194. return NSURLSessionAuthChallengePerformDefaultHandling;
  195. }];
  196. // Upload
  197. NSURLSessionConfiguration *configurationUpload = [NSURLSessionConfiguration defaultSessionConfiguration];
  198. configurationUpload.allowsCellularAccess = YES;
  199. configurationUpload.discretionary = NO;
  200. configurationUpload.HTTPMaximumConnectionsPerHost = 1;
  201. configurationUpload.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  202. configurationUpload.timeoutIntervalForRequest = k_timeout_upload;
  203. OCURLSessionManager *uploadSessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:configurationUpload];
  204. [uploadSessionManager.operationQueue setMaxConcurrentOperationCount:1];
  205. [uploadSessionManager setSessionDidReceiveAuthenticationChallengeBlock:^NSURLSessionAuthChallengeDisposition (NSURLSession *session, NSURLAuthenticationChallenge *challenge, NSURLCredential * __autoreleasing *credential) {
  206. return NSURLSessionAuthChallengePerformDefaultHandling;
  207. }];
  208. sharedOCCommunication = [[OCCommunication alloc] initWithUploadSessionManager:uploadSessionManager andDownloadSessionManager:downloadSessionManager andNetworkSessionManager:networkSessionManager];
  209. }
  210. return sharedOCCommunication;
  211. }
  212. - (NSURLSession *)getSessionfromSessionDescription:(NSString *)sessionDescription
  213. {
  214. if ([sessionDescription isEqualToString:k_download_session]) return [self sessionDownload];
  215. if ([sessionDescription isEqualToString:k_download_session_foreground]) return [self sessionDownloadForeground];
  216. if ([sessionDescription isEqualToString:k_download_session_wwan]) return [self sessionWWanDownload];
  217. if ([sessionDescription isEqualToString:k_upload_session]) return [self sessionUpload];
  218. if ([sessionDescription isEqualToString:k_upload_session_wwan]) return [self sessionWWanUpload];
  219. if ([sessionDescription isEqualToString:k_upload_session_foreground]) return [self sessionUploadForeground];
  220. return nil;
  221. }
  222. - (void)invalidateAndCancelAllSession
  223. {
  224. [[self sessionDownload] invalidateAndCancel];
  225. [[self sessionDownloadForeground] invalidateAndCancel];
  226. [[self sessionWWanDownload] invalidateAndCancel];
  227. [[self sessionUpload] invalidateAndCancel];
  228. [[self sessionWWanUpload] invalidateAndCancel];
  229. [[self sessionUploadForeground] invalidateAndCancel];
  230. }
  231. - (void)settingSessionsDownload:(BOOL)download upload:(BOOL)upload taskStatus:(NSInteger)taskStatus activeAccount:(NSString *)activeAccount activeUser:(NSString *)activeUser activeUrl:(NSString *)activeUrl
  232. {
  233. if (download) {
  234. [[self sessionDownload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  235. for (NSURLSessionTask *task in downloadTasks)
  236. if (taskStatus == k_taskStatusCancel) [task cancel];
  237. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  238. else if (taskStatus == k_taskStatusResume) [task resume];
  239. }];
  240. [[self sessionDownloadForeground] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  241. for (NSURLSessionTask *task in downloadTasks)
  242. if (taskStatus == k_taskStatusCancel) [task cancel];
  243. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  244. else if (taskStatus == k_taskStatusResume) [task resume];
  245. }];
  246. [[self sessionWWanDownload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  247. for (NSURLSessionTask *task in downloadTasks)
  248. if (taskStatus == k_taskStatusCancel) [task cancel];
  249. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  250. else if (taskStatus == k_taskStatusResume) [task resume];
  251. }];
  252. if (taskStatus == k_taskStatusCancel) {
  253. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  254. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"account = %@ AND session CONTAINS 'download'", _activeAccount]];
  255. });
  256. }
  257. }
  258. if (upload) {
  259. [[self sessionUpload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  260. for (NSURLSessionTask *task in uploadTasks)
  261. if (taskStatus == k_taskStatusCancel)[task cancel];
  262. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  263. else if (taskStatus == k_taskStatusResume) [task resume];
  264. }];
  265. [[self sessionWWanUpload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  266. for (NSURLSessionTask *task in uploadTasks)
  267. if (taskStatus == k_taskStatusCancel) [task cancel];
  268. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  269. else if (taskStatus == k_taskStatusResume) [task resume];
  270. }];
  271. [[self sessionUploadForeground] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  272. for (NSURLSessionTask *task in uploadTasks)
  273. if (taskStatus == k_taskStatusCancel) [task cancel];
  274. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  275. else if (taskStatus == k_taskStatusResume) [task resume];
  276. }];
  277. if (taskStatus == k_taskStatusCancel) {
  278. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.3 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
  279. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"session CONTAINS 'upload'"] clearDateReadDirectoryID:nil];
  280. [CCUtility removeAllFileID_UPLOAD_ActiveUser:activeUser activeUrl:activeUrl];
  281. });
  282. }
  283. }
  284. }
  285. - (void)settingSession:(NSString *)sessionDescription sessionTaskIdentifier:(NSUInteger)sessionTaskIdentifier taskStatus:(NSInteger)taskStatus
  286. {
  287. NSURLSession *session = [self getSessionfromSessionDescription:sessionDescription];
  288. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  289. if ([sessionDescription containsString:@"download"])
  290. for (NSURLSessionTask *task in downloadTasks)
  291. if (task.taskIdentifier == sessionTaskIdentifier) {
  292. if (taskStatus == k_taskStatusCancel) [task cancel];
  293. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  294. else if (taskStatus == k_taskStatusResume) [task resume];
  295. }
  296. if ([sessionDescription containsString:@"upload"])
  297. for (NSURLSessionTask *task in uploadTasks)
  298. if (task.taskIdentifier == sessionTaskIdentifier) {
  299. if (taskStatus == k_taskStatusCancel) [task cancel];
  300. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  301. else if (taskStatus == k_taskStatusResume) [task resume];
  302. }
  303. }];
  304. }
  305. #pragma --------------------------------------------------------------------------------------------
  306. #pragma mark ===== URLSession download/upload =====
  307. #pragma --------------------------------------------------------------------------------------------
  308. - (void)URLSession:(NSURLSession *)session didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler
  309. {
  310. // The pinnning check
  311. if ([[CCCertificate sharedManager] checkTrustedChallenge:challenge]) {
  312. completionHandler(NSURLSessionAuthChallengeUseCredential, [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]);
  313. } else {
  314. completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  315. }
  316. }
  317. - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error
  318. {
  319. NSString *url = [[[task currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  320. if (!url)
  321. return;
  322. NSString *fileName = [url lastPathComponent];
  323. NSString *serverUrl = [self getServerUrlFromUrl:url];
  324. if (!serverUrl) return;
  325. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  326. if (!directoryID) return;
  327. tableMetadata *metadata;
  328. NSInteger errorCode;
  329. NSDate *date = [NSDate date];
  330. NSDateFormatter *dateFormatter = [NSDateFormatter new];
  331. NSLocale *enUSPOSIXLocale = [NSLocale localeWithLocaleIdentifier:@"en_US_POSIX"];
  332. [dateFormatter setLocale:enUSPOSIXLocale];
  333. [dateFormatter setDateFormat:@"EEE, dd MMM y HH:mm:ss zzz"];
  334. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)task.response;
  335. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  336. errorCode = error.code;
  337. } else {
  338. if (httpResponse.statusCode > 0)
  339. errorCode = httpResponse.statusCode;
  340. else
  341. errorCode = error.code;
  342. }
  343. // ----------------------- DOWNLOAD -----------------------
  344. if ([task isKindOfClass:[NSURLSessionDownloadTask class]]) {
  345. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"session = %@ AND sessionTaskIdentifier = %i",session.sessionDescription, task.taskIdentifier]];
  346. if (!metadata)
  347. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID = %@ AND fileName = %@", directoryID, fileName, fileName]];
  348. if (metadata) {
  349. NSString *etag = metadata.etag;
  350. NSString *fileID = metadata.fileID;
  351. NSDictionary *fields = [httpResponse allHeaderFields];
  352. if (errorCode == 0) {
  353. etag = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-ETag"]];
  354. NSString *dateString = [fields objectForKey:@"Date"];
  355. if (dateString) {
  356. if (![dateFormatter getObjectValue:&date forString:dateString range:nil error:&error]) {
  357. date = [NSDate date];
  358. }
  359. } else {
  360. date = [NSDate date];
  361. }
  362. }
  363. NSArray *object = [[NSArray alloc] initWithObjects:session, fileID, task, nil];
  364. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_networkingSessionNotification object:object];
  365. if (fileName.length > 0 && serverUrl.length > 0) {
  366. dispatch_async(dispatch_get_main_queue(), ^{
  367. [self downloadFileSuccessFailure:fileName fileID:metadata.fileID etag:etag date:date serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorCode:errorCode];
  368. });
  369. }
  370. } else {
  371. NSLog(@"[LOG] Remove record ? : metadata not found %@", url);
  372. dispatch_async(dispatch_get_main_queue(), ^{
  373. [self.delegate downloadFileSuccessFailure:fileName fileID:@"" serverUrl:serverUrl selector:@"" selectorPost:@"" errorMessage:@"Remove record ? : metadata not found" errorCode:k_CCErrorInternalError];
  374. });
  375. }
  376. }
  377. // ------------------------ UPLOAD -----------------------
  378. if ([task isKindOfClass:[NSURLSessionUploadTask class]]) {
  379. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"session = %@ AND sessionTaskIdentifier = %i",session.sessionDescription, task.taskIdentifier]];
  380. if (!metadata)
  381. metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"directoryID = %@ AND fileName = %@", directoryID, fileName]];
  382. if (metadata) {
  383. NSDictionary *fields = [httpResponse allHeaderFields];
  384. NSString *fileID = metadata.fileID;
  385. NSString *etag = metadata.etag;
  386. if (errorCode == 0) {
  387. fileID = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-FileId"]];
  388. etag = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-ETag"]];
  389. NSString *dateString = [fields objectForKey:@"Date"];
  390. if (dateString) {
  391. if (![dateFormatter getObjectValue:&date forString:dateString range:nil error:&error]) {
  392. NSLog(@"[LOG] Date '%@' could not be parsed: %@", dateString, error);
  393. date = [NSDate date];
  394. }
  395. } else {
  396. date = [NSDate date];
  397. }
  398. }
  399. NSArray *object = [[NSArray alloc] initWithObjects:session, fileID, task, nil];
  400. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:k_networkingSessionNotification object:object];
  401. if (fileName.length > 0 && fileID.length > 0 && serverUrl.length > 0) {
  402. dispatch_async(dispatch_get_main_queue(), ^{
  403. [self uploadFileSuccessFailure:metadata fileName:fileName fileID:fileID etag:etag date:date serverUrl:serverUrl errorCode:errorCode];
  404. });
  405. }
  406. } else {
  407. NSLog(@"[LOG] Remove record ? : metadata not found %@", url);
  408. dispatch_async(dispatch_get_main_queue(), ^{
  409. [self.delegate uploadFileSuccessFailure:fileName fileID:@"" assetLocalIdentifier:@"" serverUrl:serverUrl selector:@"" selectorPost:@"" errorMessage:@"Remove record ? : metadata not found" errorCode:k_CCErrorInternalError];
  410. });
  411. }
  412. }
  413. }
  414. #pragma --------------------------------------------------------------------------------------------
  415. #pragma mark ===== Download =====
  416. #pragma --------------------------------------------------------------------------------------------
  417. - (void)downloadFile:(NSString *)fileName fileID:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector selectorPost:(NSString *)selectorPost session:(NSString *)session taskStatus:(NSInteger)taskStatus delegate:(id)delegate
  418. {
  419. // add delegate
  420. [_delegates setObject:delegate forKey:fileID];
  421. if (fileID.length == 0) {
  422. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:@"" errorMessage:NSLocalizedStringFromTable(@"_file_folder_not_exists_", @"Error", nil) errorCode:kOCErrorServerPathNotFound];
  423. return;
  424. }
  425. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  426. if (!metadata) {
  427. [delegate downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:@"" errorMessage:NSLocalizedStringFromTable(@"_file_folder_not_exists_", @"Error", nil) errorCode:kOCErrorServerPathNotFound];
  428. return;
  429. }
  430. // it's in download
  431. tableMetadata *result = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@ AND session CONTAINS 'download' AND sessionTaskIdentifier >= 0", metadata.fileID]];
  432. if (result) {
  433. [delegate downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:@"" errorMessage:@"File already in download" errorCode:k_CCErrorFileAlreadyInDownload];
  434. return;
  435. }
  436. // File exists ?
  437. tableLocalFile *localfile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", metadata.fileID]];
  438. if (localfile != nil && [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileID]]) {
  439. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"fileID = %@", metadata.fileID]];
  440. [delegate downloadFileSuccessFailure:metadata.fileName fileID:metadata.fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost errorMessage:@"" errorCode:0];
  441. return;
  442. }
  443. [[NCManageDatabase sharedInstance] setMetadataSession:session sessionError:@"" sessionSelector:selector sessionSelectorPost:selectorPost sessionTaskIdentifier:k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"fileID = %@",metadata.fileID]];
  444. [self downloaURLSession:metadata.fileName serverUrl:serverUrl fileID:metadata.fileID session:session taskStatus:taskStatus selector:selector];
  445. }
  446. - (void)downloaURLSession:(NSString *)fileName serverUrl:(NSString *)serverUrl fileID:(NSString *)fileID session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector
  447. {
  448. NSURLSession *sessionDownload;
  449. NSURL *url;
  450. NSMutableURLRequest *request;
  451. NSString *serverFileUrl = [[NSString stringWithFormat:@"%@/%@", serverUrl, fileName] encodeString:NSUTF8StringEncoding];
  452. url = [NSURL URLWithString:serverFileUrl];
  453. request = [NSMutableURLRequest requestWithURL:url];
  454. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  455. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  456. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  457. [request setValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  458. if ([session isEqualToString:k_download_session]) sessionDownload = [self sessionDownload];
  459. else if ([session isEqualToString:k_download_session_foreground]) sessionDownload = [self sessionDownloadForeground];
  460. else if ([session isEqualToString:k_download_session_wwan]) sessionDownload = [self sessionWWanDownload];
  461. NSURLSessionDownloadTask *downloadTask = [sessionDownload downloadTaskWithRequest:request];
  462. if (downloadTask == nil) {
  463. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:fileID action:k_activityDebugActionUpload selector:selector note:@"Serious internal error downloadTask not available" type:k_activityTypeFailure verbose:k_activityVerboseHigh activeUrl:_activeUrl];
  464. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:@"Serious internal error downloadTask not available" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierError predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  465. [self.delegate downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:@"" errorMessage:@"Serious internal error downloadTask not available" errorCode:k_CCErrorInternalError];
  466. } else {
  467. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:nil sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:downloadTask.taskIdentifier predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  468. // Manage uploadTask cancel,suspend,resume
  469. if (taskStatus == k_taskStatusCancel) [downloadTask cancel];
  470. else if (taskStatus == k_taskStatusSuspend) [downloadTask suspend];
  471. else if (taskStatus == k_taskStatusResume) [downloadTask resume];
  472. NSLog(@"[LOG] downloadFileSession %@ Task [%lu]", fileID, (unsigned long)downloadTask.taskIdentifier);
  473. }
  474. // Refresh datasource if is not a Plist
  475. if ([_delegate respondsToSelector:@selector(reloadDatasource:)])
  476. [_delegate reloadDatasource:serverUrl];
  477. #ifndef EXTENSION
  478. [(AppDelegate *)[[UIApplication sharedApplication] delegate] updateApplicationIconBadgeNumber];
  479. #endif
  480. }
  481. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
  482. {
  483. NSString *url = [[[downloadTask currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  484. NSString *fileName = [url lastPathComponent];
  485. NSString *serverUrl = [self getServerUrlFromUrl:url];
  486. if (!serverUrl) return;
  487. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  488. if (!directoryID) return;
  489. float progress = (float) totalBytesWritten / (float)totalBytesExpectedToWrite;
  490. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromFileName:fileName directoryID:directoryID];
  491. if (metadata) {
  492. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"progress": ([NSNumber numberWithFloat:progress])};
  493. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  494. } else {
  495. NSLog(@"[LOG] metadata not found");
  496. }
  497. }
  498. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location
  499. {
  500. NSURLRequest *url = [downloadTask currentRequest];
  501. NSString *fileName = [[url.URL absoluteString] lastPathComponent];
  502. NSString *serverUrl = [self getServerUrlFromUrl:[url.URL absoluteString]];
  503. if (!serverUrl) return;
  504. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"session = %@ AND sessionTaskIdentifier = %i",session.sessionDescription, downloadTask.taskIdentifier]];
  505. // If the record metadata do not exists, exit
  506. if (!metadata) {
  507. [[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];
  508. NSLog(@"[LOG] Serious error internal download : metadata not found %@ ", url);
  509. dispatch_async(dispatch_get_main_queue(), ^{
  510. [self.delegate downloadFileSuccessFailure:@"" fileID:@"" serverUrl:serverUrl selector:@"" selectorPost:@"" errorMessage:@"Serious error internal download : metadata not found" errorCode:k_CCErrorInternalError];
  511. });
  512. return;
  513. }
  514. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)downloadTask.response;
  515. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  516. NSString *destinationFilePath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryActiveUser:_activeUser activeUrl:_activeUrl], metadata.fileID];
  517. NSURL *destinationURL = [NSURL fileURLWithPath:destinationFilePath];
  518. [[NSFileManager defaultManager] removeItemAtURL:destinationURL error:NULL];
  519. [[NSFileManager defaultManager] copyItemAtURL:location toURL:destinationURL error:nil];
  520. }
  521. }
  522. - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID etag:(NSString *)etag date:(NSDate *)date serverUrl:(NSString *)serverUrl selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode
  523. {
  524. #ifndef EXTENSION
  525. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  526. [appDelegate.listProgressMetadata removeObjectForKey:fileID];
  527. #endif
  528. // Progress Task
  529. NSDictionary* userInfo = @{@"fileID": (fileID), @"serverUrl": (serverUrl), @"progress": ([NSNumber numberWithFloat:0.0])};
  530. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  531. if (errorCode != 0) {
  532. if (errorCode != kCFURLErrorCancelled) {
  533. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[CCError manageErrorKCF:errorCode withNumberError:NO] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierError predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  534. }
  535. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost errorMessage:[CCError manageErrorKCF:errorCode withNumberError:YES] errorCode:errorCode];
  536. } else {
  537. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  538. if (!metadata) {
  539. [[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];
  540. NSLog(@"[LOG] Serious error internal download : metadata not found %@ ", fileName);
  541. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost errorMessage:[NSString stringWithFormat:@"Serious error internal download : metadata not found %@", fileName] errorCode:k_CCErrorInternalError];
  542. return;
  543. }
  544. metadata.session = @"";
  545. metadata.sessionError = @"";
  546. metadata.sessionSelector = @"";
  547. metadata.sessionSelectorPost = @"";
  548. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  549. metadata = [[NCManageDatabase sharedInstance] updateMetadata:metadata];
  550. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
  551. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  552. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata directoryUser:_directoryUser activeAccount:_activeAccount];
  553. // E2EE Decrypted
  554. tableE2eEncryption *object = [[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"fileNameIdentifier = %@ AND serverUrl = %@", fileName, serverUrl]];
  555. if (object) {
  556. BOOL result = [[NCEndToEndEncryption sharedManager] decryptFileID:fileID directoryUser:_directoryUser key:object.key initializationVector:object.initializationVector authenticationTag:object.authenticationTag];
  557. if (!result) {
  558. [[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];
  559. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost errorMessage:[NSString stringWithFormat:@"Serious error internal download : decrypt error %@", fileName] errorCode:k_CCErrorInternalError];
  560. return;
  561. }
  562. }
  563. // Icon
  564. [CCGraphics createNewImageFrom:metadata.fileID directoryUser:_directoryUser fileNameTo:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:NO typeFile:metadata.typeFile writePreview:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  565. // Activity
  566. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileNameView fileID:metadata.fileID action:k_activityDebugActionDownload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  567. [[self getDelegate:fileID] downloadFileSuccessFailure:fileName fileID:fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost errorMessage:@"" errorCode:0];
  568. }
  569. }
  570. #pragma --------------------------------------------------------------------------------------------
  571. #pragma mark ===== Upload =====
  572. #pragma --------------------------------------------------------------------------------------------
  573. - (void)uploadFileFromAssetLocalIdentifier:(CCMetadataNet *)metadataNet delegate:(id)delegate
  574. {
  575. //delegate
  576. if (delegate == nil)
  577. delegate = self.delegate;
  578. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadataNet.assetLocalIdentifier] options:nil];
  579. if (!result.count) {
  580. [delegate uploadFileSuccessFailure:metadataNet.fileName fileID:metadataNet.fileID assetLocalIdentifier:metadataNet.assetLocalIdentifier serverUrl:metadataNet.serverUrl selector:metadataNet.selector selectorPost:metadataNet.selectorPost errorMessage:@"Error photo/video not found, remove from upload" errorCode:k_CCErrorInternalError];
  581. return;
  582. }
  583. PHAsset *asset= result[0];
  584. // IMAGE
  585. if (asset.mediaType == PHAssetMediaTypeImage) {
  586. PHImageRequestOptions *options = [PHImageRequestOptions new];
  587. options.networkAccessAllowed = YES; // iCloud
  588. options.deliveryMode = PHImageRequestOptionsDeliveryModeHighQualityFormat;
  589. options.synchronous = YES;
  590. options.progressHandler = ^(double progress, NSError *error, BOOL *stop, NSDictionary *info) {
  591. NSLog(@"cacheAsset: %f", progress);
  592. if (error)
  593. [delegate uploadFileSuccessFailure:metadataNet.fileName fileID:metadataNet.fileID assetLocalIdentifier:metadataNet.assetLocalIdentifier serverUrl:metadataNet.serverUrl selector:metadataNet.selector selectorPost:metadataNet.selectorPost errorMessage:[NSString stringWithFormat:@"Image request iCloud failed [%@]", error.description] errorCode:error.code];
  594. };
  595. [[PHImageManager defaultManager] requestImageDataForAsset:asset options:options resultHandler:^(NSData *imageData, NSString *dataUTI, UIImageOrientation orientation, NSDictionary *info) {
  596. NSError *error = nil;
  597. if ([dataUTI isEqualToString:@"public.heic"] && [CCUtility getFormatCompatibility]) {
  598. UIImage *image = [UIImage imageWithData:imageData];
  599. imageData = UIImageJPEGRepresentation(image, 1.0);
  600. NSString *fileNameJPEG = [[metadataNet.fileName lastPathComponent] stringByDeletingPathExtension];
  601. metadataNet.fileName = [fileNameJPEG stringByAppendingString:@".jpg"];
  602. [imageData writeToFile:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadataNet.fileName] options:NSDataWritingAtomic error:&error];
  603. } else {
  604. [imageData writeToFile:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadataNet.fileName] options:NSDataWritingAtomic error:&error];
  605. }
  606. if (error) {
  607. [delegate uploadFileSuccessFailure:metadataNet.fileName fileID:metadataNet.fileID assetLocalIdentifier:metadataNet.assetLocalIdentifier serverUrl:metadataNet.serverUrl selector:metadataNet.selector selectorPost:metadataNet.selectorPost errorMessage:[NSString stringWithFormat:@"Image request failed [%@]", error.description] errorCode:error.code];
  608. } else {
  609. // OOOOOK
  610. [self upload:metadataNet.fileName serverUrl:metadataNet.serverUrl assetLocalIdentifier:metadataNet.assetLocalIdentifier session:metadataNet.session taskStatus:metadataNet.taskStatus selector:metadataNet.selector selectorPost:metadataNet.selectorPost errorCode:metadataNet.errorCode delegate:delegate];
  611. }
  612. }];
  613. }
  614. // VIDEO
  615. if (asset.mediaType == PHAssetMediaTypeVideo) {
  616. PHVideoRequestOptions *options = [PHVideoRequestOptions new];
  617. options.networkAccessAllowed = YES;
  618. options.version = PHVideoRequestOptionsVersionOriginal;
  619. options.progressHandler = ^(double progress, NSError *error, BOOL *stop, NSDictionary *info) {
  620. NSLog(@"cacheAsset: %f", progress);
  621. if (error)
  622. [delegate uploadFileSuccessFailure:metadataNet.fileName fileID:metadataNet.fileID assetLocalIdentifier:metadataNet.assetLocalIdentifier serverUrl:metadataNet.serverUrl selector:metadataNet.selector selectorPost:metadataNet.selectorPost errorMessage:[NSString stringWithFormat:@"Video request iCloud failed [%@]", error.description] errorCode:error.code];
  623. };
  624. [[PHImageManager defaultManager] requestAVAssetForVideo:asset options:options resultHandler:^(AVAsset *asset, AVAudioMix *audioMix, NSDictionary *info) {
  625. if ([asset isKindOfClass:[AVURLAsset class]]) {
  626. NSURL *fileURL = [[NSURL alloc] initFileURLWithPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadataNet.fileName]];
  627. NSError *error = nil;
  628. [[NSFileManager defaultManager] removeItemAtURL:fileURL error:nil];
  629. [[NSFileManager defaultManager] copyItemAtURL:[(AVURLAsset *)asset URL] toURL:fileURL error:&error];
  630. if (error) {
  631. dispatch_async(dispatch_get_main_queue(), ^{
  632. [delegate uploadFileSuccessFailure:metadataNet.fileName fileID:metadataNet.fileID assetLocalIdentifier:metadataNet.assetLocalIdentifier serverUrl:metadataNet.serverUrl selector:metadataNet.selector selectorPost:metadataNet.selectorPost errorMessage:[NSString stringWithFormat:@"Video request failed [%@]", error.description] errorCode:error.code];
  633. });
  634. } else {
  635. dispatch_async(dispatch_get_main_queue(), ^{
  636. // OOOOOK
  637. [self upload:metadataNet.fileName serverUrl:metadataNet.serverUrl assetLocalIdentifier:metadataNet.assetLocalIdentifier session:metadataNet.session taskStatus:metadataNet.taskStatus selector:metadataNet.selector selectorPost:metadataNet.selectorPost errorCode:metadataNet.errorCode delegate:delegate];
  638. });
  639. }
  640. }
  641. }];
  642. }
  643. }
  644. - (void)uploadFile:(NSString *)fileName serverUrl:(NSString *)serverUrl session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode delegate:(id)delegate
  645. {
  646. [self upload:fileName serverUrl:serverUrl assetLocalIdentifier:nil session:session taskStatus:taskStatus selector:selector selectorPost:selectorPost errorCode:errorCode delegate:delegate];
  647. }
  648. - (void)upload:(NSString *)fileName serverUrl:(NSString *)serverUrl assetLocalIdentifier:(NSString *)assetLocalIdentifier session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode delegate:(id)delegate
  649. {
  650. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  651. if (!directoryID) return;
  652. //fileID
  653. NSString *uploadID = [k_uploadSessionID stringByAppendingString:[CCUtility createRandomString:16]];
  654. //add delegate
  655. if (delegate)
  656. [_delegates setObject:delegate forKey:uploadID];
  657. // create Metadata for Upload
  658. tableMetadata *metadata = [CCUtility insertFileSystemInMetadata:fileName fileNameView:fileName directory:_directoryUser activeAccount:_activeAccount];
  659. metadata.date = [NSDate new];
  660. metadata.e2eEncrypted = NO;
  661. metadata.fileID = uploadID;
  662. metadata.directoryID = directoryID;
  663. metadata.fileName = fileName;
  664. metadata.fileNameView = fileName;
  665. metadata.assetLocalIdentifier = assetLocalIdentifier;
  666. metadata.session = session;
  667. metadata.sessionID = uploadID;
  668. metadata.sessionSelector = selector;
  669. metadata.sessionSelectorPost = selectorPost;
  670. // E2EE : ENCRYPTED FILE
  671. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  672. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  673. NSString *errorMessage;
  674. NSString *fileNameIdentifier;
  675. NSString *e2eMetadata;
  676. [self encryptedE2EFile:fileName serverUrl:serverUrl directoryID:directoryID account:_activeAccount user:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl errorMessage:&errorMessage fileNameIdentifier:&fileNameIdentifier e2eMetadata:&e2eMetadata];
  677. if (errorMessage != nil || fileNameIdentifier == nil) {
  678. [[self getDelegate:uploadID] uploadFileSuccessFailure:fileName fileID:uploadID assetLocalIdentifier:assetLocalIdentifier serverUrl:serverUrl selector:selector selectorPost:selectorPost errorMessage:errorMessage errorCode:k_CCErrorInternalError];
  679. } else {
  680. // Now the fileName is fileNameIdentifier && flag e2eEncrypted
  681. metadata.fileName = fileNameIdentifier;
  682. metadata.e2eEncrypted = YES;
  683. dispatch_async(dispatch_get_main_queue(), ^{
  684. [CCGraphics createNewImageFrom:metadata.fileNameView directoryUser:_directoryUser fileNameTo:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:YES typeFile:metadata.typeFile writePreview:YES optimizedFileName:NO];
  685. [self uploadURLSessionMetadata:[[NCManageDatabase sharedInstance] addMetadata:metadata] serverUrl:serverUrl sessionID:uploadID taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier selector:selector];
  686. });
  687. }
  688. });
  689. } else {
  690. [CCGraphics createNewImageFrom:metadata.fileNameView directoryUser:_directoryUser fileNameTo:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:YES typeFile:metadata.typeFile writePreview:YES optimizedFileName:NO];
  691. [self uploadURLSessionMetadata:[[NCManageDatabase sharedInstance] addMetadata:metadata] serverUrl:serverUrl sessionID:uploadID taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier selector:selector];
  692. }
  693. }
  694. - (void)uploadFileMetadata:(tableMetadata *)metadata taskStatus:(NSInteger)taskStatus
  695. {
  696. BOOL reSend = NO;
  697. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  698. if (!serverUrl) return;
  699. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.sessionID]]) {
  700. reSend = YES;
  701. NSLog(@"[LOG] Re-upload File : %@ - fileID : %@", metadata.fileName, metadata.fileID);
  702. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account = %@", metadata.sessionID, _activeAccount]];
  703. [self uploadURLSessionMetadata:metadata serverUrl:serverUrl sessionID:metadata.sessionID taskStatus:taskStatus assetLocalIdentifier:metadata.assetLocalIdentifier selector:metadata.sessionSelector];
  704. }
  705. if (!reSend) {
  706. NSLog(@"[LOG] Error reUploadBackground, file not found.");
  707. #ifndef EXTENSION
  708. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_no_reuploadfile_", nil) preferredStyle:UIAlertControllerStyleAlert];
  709. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  710. [alertController addAction:okAction];
  711. [[[[[UIApplication sharedApplication] delegate] window] rootViewController] presentViewController:alertController animated:YES completion:nil];
  712. #endif
  713. }
  714. }
  715. - (void)uploadURLSessionMetadata:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl sessionID:(NSString*)sessionID taskStatus:(NSInteger)taskStatus assetLocalIdentifier:(NSString *)assetLocalIdentifier selector:(NSString *)selector
  716. {
  717. NSURL *url;
  718. NSMutableURLRequest *request;
  719. PHAsset *asset;
  720. NSString *fileNamePath = [[NSString stringWithFormat:@"%@/%@", serverUrl, metadata.fileName] encodeString:NSUTF8StringEncoding];
  721. url = [NSURL URLWithString:fileNamePath];
  722. request = [NSMutableURLRequest requestWithURL:url];
  723. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  724. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  725. [request setHTTPMethod:@"PUT"];
  726. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  727. [request setValue:[CCUtility getUserAgent] forHTTPHeaderField:@"User-Agent"];
  728. // Change date file upload with header : X-OC-Mtime (ctime assetLocalIdentifier) image/video
  729. if (assetLocalIdentifier) {
  730. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[assetLocalIdentifier] options:nil];
  731. if (result.count) {
  732. asset = result[0];
  733. long dateFileCreation = [asset.creationDate timeIntervalSince1970];
  734. [request setValue:[NSString stringWithFormat:@"%ld", dateFileCreation] forHTTPHeaderField:@"X-OC-Mtime"];
  735. }
  736. }
  737. // Rename with the SessionID
  738. NSString *fileNameForUpload = sessionID;
  739. [[NSFileManager defaultManager] moveItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileName] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNameForUpload] error:nil];
  740. // file NOT exists
  741. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNameForUpload]] == NO) {
  742. // Delete record : Metadata
  743. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account = %@", sessionID, _activeAccount] clearDateReadDirectoryID:nil];
  744. // Error for uploadFileFailure
  745. [[self getDelegate:sessionID] uploadFileSuccessFailure:metadata.fileName fileID:@"" assetLocalIdentifier:assetLocalIdentifier serverUrl:serverUrl selector:selector selectorPost:@"" errorMessage:NSLocalizedString(@"_file_not_present_", nil) errorCode:404];
  746. return;
  747. }
  748. NSURLSession *sessionUpload;
  749. // NSURLSession
  750. if ([metadata.session isEqualToString:k_upload_session]) sessionUpload = [self sessionUpload];
  751. else if ([metadata.session isEqualToString:k_upload_session_wwan]) sessionUpload = [self sessionWWanUpload];
  752. else if ([metadata.session isEqualToString:k_upload_session_foreground]) sessionUpload = [self sessionUploadForeground];
  753. NSURLSessionUploadTask *uploadTask = [sessionUpload uploadTaskWithRequest:request fromFile:[NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNameForUpload]]];
  754. // Error
  755. if (uploadTask == nil) {
  756. NSString *messageError = @"Serious internal error uploadTask not available";
  757. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:messageError sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierError predicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account = %@", sessionID, _activeAccount]];
  758. [[self getDelegate:sessionID] uploadFileSuccessFailure:metadata.fileNameView fileID:@"" assetLocalIdentifier:assetLocalIdentifier serverUrl:serverUrl selector:selector selectorPost:@"" errorMessage:messageError errorCode:k_CCErrorInternalError];
  759. } else {
  760. // E2EE : CREATE AND SEND METADATA
  761. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  762. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  763. // Send Metadata
  764. NSError *error = [[NCNetworkingSync sharedManager] sendEndToEndMetadataOnServerUrl:serverUrl account:_activeAccount user:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl fileNameRename:nil fileNameNewRename:nil];
  765. dispatch_async(dispatch_get_main_queue(), ^{
  766. if (error) {
  767. [uploadTask cancel];
  768. NSString *messageError = [NSString stringWithFormat:@"%@ (%d)", error.localizedDescription, (int)error.code];
  769. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:messageError sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierError predicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account = %@", sessionID, _activeAccount]];
  770. [[self getDelegate:sessionID] uploadFileSuccessFailure:metadata.fileNameView fileID:@"" assetLocalIdentifier:assetLocalIdentifier serverUrl:serverUrl selector:selector selectorPost:@"" errorMessage:messageError errorCode:k_CCErrorInternalError];
  771. } else {
  772. // *** E2EE ***
  773. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:uploadTask.taskIdentifier predicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account = %@", sessionID, _activeAccount]];
  774. // Manage uploadTask cancel,suspend,resume
  775. if (taskStatus == k_taskStatusCancel) [uploadTask cancel];
  776. else if (taskStatus == k_taskStatusSuspend) [uploadTask suspend];
  777. else if (taskStatus == k_taskStatusResume) [uploadTask resume];
  778. NSLog(@"[LOG] Upload file %@ TaskIdentifier %lu", metadata.fileName, (unsigned long)uploadTask.taskIdentifier);
  779. // refresh main
  780. if ([self.delegate respondsToSelector:@selector(reloadDatasource:)])
  781. [self.delegate reloadDatasource:serverUrl];
  782. }
  783. });
  784. });
  785. } else {
  786. // *** PLAIN ***
  787. [[NCManageDatabase sharedInstance] setMetadataSession:metadata.session sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:uploadTask.taskIdentifier predicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account = %@", sessionID, _activeAccount]];
  788. // OK remove record on tableQueueUpload
  789. [[NCManageDatabase sharedInstance] deleteQueueUploadWithAssetLocalIdentifier:assetLocalIdentifier selector:selector];
  790. #ifndef EXTENSION
  791. // Next tableQueueUpload
  792. [(AppDelegate *)[[UIApplication sharedApplication] delegate] performSelectorOnMainThread:@selector(loadAutoDownloadUpload:) withObject:[NSNumber numberWithInt:k_maxConcurrentOperationDownloadUpload] waitUntilDone:NO];
  793. #endif
  794. // Manage uploadTask cancel,suspend,resume
  795. if (taskStatus == k_taskStatusCancel) [uploadTask cancel];
  796. else if (taskStatus == k_taskStatusSuspend) [uploadTask suspend];
  797. else if (taskStatus == k_taskStatusResume) [uploadTask resume];
  798. NSLog(@"[LOG] Upload file %@ TaskIdentifier %lu", metadata.fileName, (unsigned long)uploadTask.taskIdentifier);
  799. // refresh main
  800. if ([self.delegate respondsToSelector:@selector(reloadDatasource:)])
  801. [self.delegate reloadDatasource:serverUrl];
  802. }
  803. }
  804. #ifndef EXTENSION
  805. [(AppDelegate *)[[UIApplication sharedApplication] delegate] updateApplicationIconBadgeNumber];
  806. #endif
  807. }
  808. - (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveData:(NSData *)data
  809. {
  810. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)dataTask.response;
  811. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  812. NSNumber *taskIdentifier = [NSNumber numberWithLong:dataTask.taskIdentifier];
  813. if (data)
  814. [_taskData setObject:[data copy] forKey:taskIdentifier];
  815. }
  816. }
  817. - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend
  818. {
  819. NSString *url = [[[task currentRequest].URL absoluteString] stringByRemovingPercentEncoding];
  820. NSString *fileName = [url lastPathComponent];
  821. NSString *serverUrl = [self getServerUrlFromUrl:url];
  822. if (!serverUrl) return;
  823. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  824. if (!directoryID) return;
  825. float progress = (float) totalBytesSent / (float)totalBytesExpectedToSend;
  826. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromFileName:fileName directoryID:directoryID];
  827. if (metadata) {
  828. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"progress": ([NSNumber numberWithFloat:progress])};
  829. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  830. }
  831. }
  832. - (void)uploadFileSuccessFailure:(tableMetadata *)metadata fileName:(NSString *)fileName fileID:(NSString *)fileID etag:(NSString *)etag date:(NSDate *)date serverUrl:(NSString *)serverUrl errorCode:(NSInteger)errorCode
  833. {
  834. NSString *sessionID = metadata.sessionID;
  835. NSString *errorMessage = @"";
  836. // Progress Task
  837. NSDictionary* userInfo = @{@"fileID": (fileID), @"serverUrl": (serverUrl), @"progress": ([NSNumber numberWithFloat:0.0])};
  838. [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  839. // ERRORE
  840. if (errorCode != 0) {
  841. #ifndef EXTENSION
  842. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  843. [appDelegate.listProgressMetadata removeObjectForKey:sessionID];
  844. #endif
  845. // Mark error only if not Cancelled Task
  846. if (errorCode != kCFURLErrorCancelled) {
  847. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[CCError manageErrorKCF:errorCode withNumberError:NO] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierError predicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account = %@", metadata.sessionID, _activeAccount]];
  848. }
  849. errorMessage = [CCError manageErrorKCF:errorCode withNumberError:YES];
  850. } else {
  851. // copy ico in new fileID
  852. [CCUtility copyFileAtPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, sessionID] toPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, fileID]];
  853. // Add new metadata
  854. metadata.fileID = fileID;
  855. metadata.etag = etag;
  856. metadata.date = date;
  857. metadata.e2eEncrypted = false;
  858. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  859. metadata = [[NCManageDatabase sharedInstance] addMetadata:metadata];
  860. // Delete old ID_UPLOAD_XXXXX metadata
  861. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", sessionID] clearDateReadDirectoryID:nil];
  862. #ifndef EXTENSION
  863. AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  864. [appDelegate.listProgressMetadata removeObjectForKey:sessionID];
  865. #endif
  866. metadata.session = @"";
  867. metadata.sessionError = @"";
  868. metadata.sessionID = @"";
  869. metadata = [[NCManageDatabase sharedInstance] updateMetadata:metadata];
  870. NSLog(@"[LOG] Insert new upload : %@ - fileID : %@", metadata.fileName, metadata.fileID);
  871. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount]) {
  872. // rename file fileNameView (original file) -> fileID
  873. [CCUtility moveFileAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileNameView] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileID]];
  874. // remove encrypted file
  875. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, sessionID] error:nil];
  876. } else {
  877. // rename file sessionID -> fileID
  878. [CCUtility moveFileAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, sessionID] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileID]];
  879. }
  880. // Local
  881. if (metadata.directory == NO)
  882. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
  883. // EXIF
  884. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  885. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata directoryUser:_directoryUser activeAccount:_activeAccount];
  886. // Create ICON
  887. if (metadata.directory == NO)
  888. [CCGraphics createNewImageFrom:metadata.fileID directoryUser:_directoryUser fileNameTo:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:NO typeFile:metadata.typeFile writePreview:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  889. // Optimization
  890. if (([CCUtility getUploadAndRemovePhoto] || [metadata.sessionSelectorPost isEqualToString:selectorUploadRemovePhoto]) && [metadata.typeFile isEqualToString:k_metadataTypeFile_document] == NO)
  891. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileID] error:nil];
  892. // Copy photo or video in the photo album for auto upload
  893. if ([metadata.assetLocalIdentifier length] > 0 && ([metadata.sessionSelector isEqualToString:selectorUploadAutoUpload] || [metadata.sessionSelector isEqualToString:selectorUploadFile])) {
  894. PHAsset *asset;
  895. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  896. if(result.count){
  897. asset = result[0];
  898. [asset saveToAlbum:[NCBrandOptions sharedInstance].brand completionBlock:^(BOOL success) {
  899. if (success) NSLog(@"[LOG] Insert file %@ in %@", metadata.fileName, [NCBrandOptions sharedInstance].brand);
  900. else NSLog(@"[LOG] File %@ do not insert in %@", metadata.fileName, [NCBrandOptions sharedInstance].brand);
  901. }];
  902. }
  903. }
  904. // Actvity
  905. [[NCManageDatabase sharedInstance] addActivityClient:metadata.fileNameView fileID:fileID action:k_activityDebugActionUpload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  906. }
  907. // E2EE : UNLOCK
  908. if ([CCUtility isFolderEncrypted:serverUrl account:_activeAccount] && [CCUtility isEndToEndEnabled:_activeAccount]) {
  909. tableE2eEncryptionLock *tableLock = [[NCManageDatabase sharedInstance] getE2ETokenLockWithServerUrl:serverUrl];
  910. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  911. if (tableLock) {
  912. NSError *error = [[NCNetworkingSync sharedManager] unlockEndToEndFolderEncrypted:_activeUser userID:_activeUserID password:_activePassword url:_activeUrl serverUrl:serverUrl fileID:tableLock.fileID token:tableLock.token];
  913. if (error) {
  914. #ifndef EXTENSION
  915. dispatch_async(dispatch_get_main_queue(), ^{
  916. [(AppDelegate *)[[UIApplication sharedApplication] delegate] messageNotification:@"_e2e_error_unlock_" description:error.localizedDescription visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:error.code];
  917. });
  918. #endif
  919. }
  920. } else {
  921. NSLog(@"Error unlock not found");
  922. }
  923. dispatch_async(dispatch_get_main_queue(), ^{
  924. [[self getDelegate:sessionID] uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:errorMessage errorCode:errorCode];
  925. });
  926. });
  927. } else {
  928. [[self getDelegate:sessionID] uploadFileSuccessFailure:metadata.fileName fileID:metadata.fileID assetLocalIdentifier:metadata.assetLocalIdentifier serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorMessage:errorMessage errorCode:errorCode];
  929. }
  930. }
  931. #pragma --------------------------------------------------------------------------------------------
  932. #pragma mark ===== Utility =====
  933. #pragma --------------------------------------------------------------------------------------------
  934. - (id)getDelegate:(NSString *)fileID
  935. {
  936. id delegate = [_delegates objectForKey:fileID];
  937. if (delegate)
  938. return delegate;
  939. else
  940. return self.delegate;
  941. }
  942. - (NSString *)getServerUrlFromUrl:(NSString *)url
  943. {
  944. NSString *fileName = [url lastPathComponent];
  945. url = [url stringByReplacingOccurrencesOfString:[@"/" stringByAppendingString:fileName] withString:@""];
  946. return url;
  947. }
  948. - (NSString *)getTitleFromPlistName:(NSString *)fileName
  949. {
  950. if ([[fileName lastPathComponent] isEqualToString:@"plist"] == NO)
  951. fileName = [fileName stringByAppendingString:@".plist"];
  952. if (![[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]]) return nil;
  953. NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]];
  954. return [data objectForKey:@"title"];
  955. }
  956. #pragma --------------------------------------------------------------------------------------------
  957. #pragma mark ===== E2EE End To End Encryption =====
  958. #pragma --------------------------------------------------------------------------------------------
  959. // E2EE
  960. - (void)encryptedE2EFile:(NSString *)fileName serverUrl:(NSString *)serverUrl directoryID:(NSString *)directoryID account:(NSString *)account user:(NSString *)user userID:(NSString *)userID password:(NSString *)password url:(NSString *)url errorMessage:(NSString * __autoreleasing *)errorMessage fileNameIdentifier:(NSString **)fileNameIdentifier e2eMetadata:(NSString * __autoreleasing *)e2eMetadata
  961. {
  962. __block NSError *error;
  963. NSString *key;
  964. NSString *initializationVector;
  965. NSString *authenticationTag;
  966. NSString *metadataKey;
  967. NSInteger metadataKeyIndex;
  968. // Verify File Size
  969. NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName] error:&error];
  970. NSNumber *fileSizeNumber = [fileAttributes objectForKey:NSFileSize];
  971. long long fileSize = [fileSizeNumber longLongValue];
  972. if (fileSize > k_max_filesize_E2E) {
  973. // Error for uploadFileFailure
  974. *errorMessage = @"E2E Error file too big";
  975. return;
  976. }
  977. // if exists overwrite file else create a new encrypted filename
  978. tableMetadata *overwriteMetadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND directoryID = %@ AND fileNameView = %@", _activeAccount, directoryID, fileName]];
  979. if (overwriteMetadata)
  980. *fileNameIdentifier = overwriteMetadata.fileName;
  981. else
  982. *fileNameIdentifier = [CCUtility generateRandomIdentifier];
  983. // Write to DB
  984. if ([[NCEndToEndEncryption sharedManager] encryptFileName:fileName fileNameIdentifier:*fileNameIdentifier directoryUser: _directoryUser key:&key initializationVector:&initializationVector authenticationTag:&authenticationTag]) {
  985. tableE2eEncryption *object = [[NCManageDatabase sharedInstance] getE2eEncryptionWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND serverUrl = %@", _activeAccount, serverUrl]];
  986. if (object) {
  987. metadataKey = object.metadataKey;
  988. metadataKeyIndex = object.metadataKeyIndex;
  989. } else {
  990. metadataKey = [[[NCEndToEndEncryption sharedManager] generateKey:16] base64EncodedStringWithOptions:0]; // AES_KEY_128_LENGTH
  991. metadataKeyIndex = 0;
  992. }
  993. tableE2eEncryption *addObject = [tableE2eEncryption new];
  994. addObject.account = _activeAccount;
  995. addObject.authenticationTag = authenticationTag;
  996. addObject.fileName = fileName;
  997. addObject.fileNameIdentifier = *fileNameIdentifier;
  998. addObject.fileNamePath = [CCUtility returnFileNamePathFromFileName:fileName serverUrl:serverUrl activeUrl:_activeUrl];
  999. addObject.key = key;
  1000. addObject.initializationVector = initializationVector;
  1001. addObject.metadataKey = metadataKey;
  1002. addObject.metadataKeyIndex = metadataKeyIndex;
  1003. CFStringRef UTI = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (__bridge CFStringRef)[fileName pathExtension], NULL);
  1004. CFStringRef mimeTypeRef = UTTypeCopyPreferredTagWithClass (UTI, kUTTagClassMIMEType);
  1005. if (mimeTypeRef) {
  1006. addObject.mimeType = (__bridge NSString *)mimeTypeRef;
  1007. } else {
  1008. addObject.mimeType = @"application/octet-stream";
  1009. }
  1010. addObject.serverUrl = serverUrl;
  1011. addObject.version = [[NCManageDatabase sharedInstance] getEndToEndEncryptionVersion];
  1012. // Get the last metadata
  1013. NSString *metadata;
  1014. tableDirectory *directory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND serverUrl = %@", account, serverUrl]];
  1015. error = [[NCNetworkingSync sharedManager] getEndToEndMetadata:user userID:userID password:password url:url fileID:directory.fileID metadata:&metadata];
  1016. if (error == nil) {
  1017. if ([[NCEndToEndMetadata sharedInstance] decoderMetadata:metadata privateKey:[CCUtility getEndToEndPrivateKey:account] serverUrl:serverUrl account:account url:url] == false) {
  1018. *errorMessage = NSLocalizedString(@"_e2e_error_decode_metadata_", nil);
  1019. return;
  1020. }
  1021. }
  1022. *e2eMetadata = metadata;
  1023. // write new record e2ee
  1024. if([[NCManageDatabase sharedInstance] addE2eEncryption:addObject] == NO)
  1025. *errorMessage = NSLocalizedString(@"_e2e_error_create_encrypted_", nil);
  1026. } else {
  1027. *errorMessage = NSLocalizedString(@"_e2e_error_create_encrypted_", nil);
  1028. }
  1029. }
  1030. #pragma --------------------------------------------------------------------------------------------
  1031. #pragma mark ===== Utility =====
  1032. #pragma --------------------------------------------------------------------------------------------
  1033. - (NSInteger)getNumDownloadInProgressWWan:(BOOL)WWan
  1034. {
  1035. NSInteger numTableMetadataDownload, numTableQueueDownload;
  1036. if (WWan) {
  1037. numTableMetadataDownload = [[[NCManageDatabase sharedInstance] getTableMetadataDownloadWWan] count];
  1038. numTableQueueDownload = [[NCManageDatabase sharedInstance] countQueueDownloadWithSession:k_download_session_wwan];
  1039. } else {
  1040. numTableMetadataDownload = [[[NCManageDatabase sharedInstance] getTableMetadataDownload] count];
  1041. numTableQueueDownload = [[NCManageDatabase sharedInstance] countQueueDownloadWithSession:k_download_session] + [[NCManageDatabase sharedInstance] countQueueDownloadWithSession:k_download_session_foreground];
  1042. }
  1043. return numTableMetadataDownload + numTableQueueDownload;
  1044. }
  1045. - (NSInteger)getNumUploadInProgressWWan:(BOOL)WWan
  1046. {
  1047. NSMutableArray *recordsInUpload = [NSMutableArray new];
  1048. if (WWan) {
  1049. for (tableQueueUpload *record in [[NCManageDatabase sharedInstance] getQueueUploadWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND session = %@", _activeAccount, k_upload_session_wwan]]) {
  1050. [recordsInUpload addObject:[record.fileName stringByAppendingString:record.assetLocalIdentifier]];
  1051. }
  1052. for (tableMetadata *record in [[NCManageDatabase sharedInstance] getTableMetadataUploadWWan]) {
  1053. if (![recordsInUpload containsObject:[record.fileNameView stringByAppendingString:record.assetLocalIdentifier]])
  1054. [recordsInUpload addObject:[record.fileNameView stringByAppendingString:record.assetLocalIdentifier]];
  1055. }
  1056. } else {
  1057. for (tableQueueUpload *record in [[NCManageDatabase sharedInstance] getQueueUploadWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND (session = %@ OR session = %@)", _activeAccount, k_upload_session, k_upload_session_foreground]]) {
  1058. [recordsInUpload addObject:[record.fileName stringByAppendingString:record.assetLocalIdentifier]];
  1059. }
  1060. for (tableMetadata *record in [[NCManageDatabase sharedInstance] getTableMetadataUpload]) {
  1061. if (![recordsInUpload containsObject:[record.fileNameView stringByAppendingString:record.assetLocalIdentifier]])
  1062. [recordsInUpload addObject:[record.fileNameView stringByAppendingString:record.assetLocalIdentifier]];
  1063. }
  1064. }
  1065. return recordsInUpload.count;
  1066. }
  1067. @end
  1068. #pragma --------------------------------------------------------------------------------------------
  1069. #pragma mark ===== CCMetadataNet =====
  1070. #pragma --------------------------------------------------------------------------------------------
  1071. @implementation CCMetadataNet
  1072. - (id)init
  1073. {
  1074. self = [super init];
  1075. self.priority = NSOperationQueuePriorityNormal;
  1076. return self;
  1077. }
  1078. - (id)initWithAccount:(NSString *)withAccount
  1079. {
  1080. self = [self init];
  1081. if (self) {
  1082. _account = withAccount;
  1083. }
  1084. return self;
  1085. }
  1086. - (id)copyWithZone: (NSZone *) zone
  1087. {
  1088. CCMetadataNet *metadataNet = [[CCMetadataNet allocWithZone: zone] init];
  1089. [metadataNet setAccount: self.account];
  1090. [metadataNet setAction: self.action];
  1091. [metadataNet setAssetLocalIdentifier: self.assetLocalIdentifier];
  1092. [metadataNet setContentType: self.contentType];
  1093. [metadataNet setDate: self.date];
  1094. [metadataNet setDelegate: self.delegate];
  1095. [metadataNet setDepth: self.depth];
  1096. [metadataNet setDirectory: self.directory];
  1097. [metadataNet setDirectoryID: self.directoryID];
  1098. [metadataNet setDirectoryIDTo: self.directoryIDTo];
  1099. [metadataNet setEncryptedMetadata: self.encryptedMetadata];
  1100. [metadataNet setErrorCode: self.errorCode];
  1101. [metadataNet setErrorRetry: self.errorRetry];
  1102. [metadataNet setEtag:self.etag];
  1103. [metadataNet setExpirationTime: self.expirationTime];
  1104. [metadataNet setFileID: self.fileID];
  1105. [metadataNet setFileName: self.fileName];
  1106. [metadataNet setFileNameTo: self.fileNameTo];
  1107. [metadataNet setFileNameView: self.fileNameView];
  1108. [metadataNet setKey: self.key];
  1109. [metadataNet setKeyCipher: self.keyCipher];
  1110. [metadataNet setOptions: self.options];
  1111. [metadataNet setPassword: self.password];
  1112. [metadataNet setPathFolder: self.pathFolder];
  1113. [metadataNet setPriority: self.priority];
  1114. [metadataNet setServerUrl: self.serverUrl];
  1115. [metadataNet setServerUrlTo: self.serverUrlTo];
  1116. [metadataNet setSelector: self.selector];
  1117. [metadataNet setSelectorPost: self.selectorPost];
  1118. [metadataNet setSession: self.session];
  1119. [metadataNet setSessionID: self.sessionID];
  1120. [metadataNet setShare: self.share];
  1121. [metadataNet setShareeType: self.shareeType];
  1122. [metadataNet setSharePermission: self.sharePermission];
  1123. [metadataNet setSize: self.size];
  1124. [metadataNet setTaskStatus: self.taskStatus];
  1125. return metadataNet;
  1126. }
  1127. @end