CCNetworking.m 83 KB

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