CCNetworking.m 81 KB

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