CCNetworking.m 81 KB

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