CCNetworking.m 77 KB

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