CCNetworking.m 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. //
  2. // CCNetworking.m
  3. // Crypto Cloud Technology Nextcloud
  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 "AppDelegate.h"
  25. #import "CCCertificate.h"
  26. #import "TableAccount+CoreDataClass.h"
  27. #import "NSDate+ISO8601.h"
  28. #import "NSString+Encode.h"
  29. #import "NCBridgeSwift.h"
  30. @interface CCNetworking ()
  31. {
  32. NSManagedObjectContext *_context;
  33. NSMutableDictionary *_taskData;
  34. NSString *_activeAccount;
  35. NSString *_activePassword;
  36. NSString *_activeUser;
  37. NSString *_activeUrl;
  38. NSString *_directoryUser;
  39. }
  40. @end
  41. @implementation CCNetworking
  42. + (CCNetworking *)sharedNetworking {
  43. static CCNetworking *sharedNetworking;
  44. @synchronized(self)
  45. {
  46. if (!sharedNetworking) {
  47. sharedNetworking = [[CCNetworking alloc] init];
  48. }
  49. return sharedNetworking;
  50. }
  51. }
  52. - (id)init
  53. {
  54. self = [super init];
  55. _taskData = [[NSMutableDictionary alloc] init];
  56. _delegates = [[NSMutableDictionary alloc] init];
  57. // Initialization Sessions
  58. [self sessionDownload];
  59. [self sessionDownloadForeground];
  60. [self sessionWWanDownload];
  61. [self sessionUpload];
  62. [self sessionUploadForeground];
  63. [self sessionWWanUpload];
  64. [self sharedOCCommunication];
  65. [self settingAccount];
  66. return self;
  67. }
  68. - (void)settingDelegate:(id <CCNetworkingDelegate>)delegate
  69. {
  70. _delegate = delegate;
  71. }
  72. - (void)settingAccount
  73. {
  74. tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
  75. _activeAccount = tableAccount.account;
  76. _activePassword = tableAccount.password;
  77. _activeUser = tableAccount.user;
  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 *)sessionUploadForeground
  144. {
  145. static NSURLSession *sessionUploadForeground;
  146. if (sessionUploadForeground == nil) {
  147. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  148. configuration.allowsCellularAccess = YES;
  149. configuration.discretionary = NO;
  150. configuration.HTTPMaximumConnectionsPerHost = 1;
  151. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  152. sessionUploadForeground = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  153. sessionUploadForeground.sessionDescription = k_upload_session_foreground;
  154. }
  155. return sessionUploadForeground;
  156. }
  157. - (NSURLSession *)sessionWWanUpload
  158. {
  159. static NSURLSession *sessionWWanUpload = nil;
  160. if (sessionWWanUpload == nil) {
  161. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:k_upload_session_wwan];
  162. configuration.allowsCellularAccess = NO;
  163. configuration.sessionSendsLaunchEvents = YES;
  164. configuration.discretionary = NO;
  165. configuration.HTTPMaximumConnectionsPerHost = 1;
  166. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  167. sessionWWanUpload = [NSURLSession sessionWithConfiguration:configuration delegate:self delegateQueue:nil];
  168. sessionWWanUpload.sessionDescription = k_upload_session_wwan;
  169. }
  170. return sessionWWanUpload;
  171. }
  172. - (OCCommunication *)sharedOCCommunication
  173. {
  174. static OCCommunication* sharedOCCommunication = nil;
  175. if (sharedOCCommunication == nil)
  176. {
  177. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  178. configuration.allowsCellularAccess = YES;
  179. configuration.discretionary = NO;
  180. configuration.HTTPMaximumConnectionsPerHost = k_maxConcurrentOperation;
  181. configuration.requestCachePolicy = NSURLRequestReloadIgnoringLocalCacheData;
  182. OCURLSessionManager *networkSessionManager = [[OCURLSessionManager alloc] initWithSessionConfiguration:configuration];
  183. [networkSessionManager.operationQueue setMaxConcurrentOperationCount: k_maxConcurrentOperation];
  184. networkSessionManager.responseSerializer = [AFHTTPResponseSerializer serializer];
  185. sharedOCCommunication = [[OCCommunication alloc] initWithUploadSessionManager:nil andDownloadSessionManager:nil andNetworkSessionManager:networkSessionManager];
  186. }
  187. return sharedOCCommunication;
  188. }
  189. - (NSURLSession *)getSessionfromSessionDescription:(NSString *)sessionDescription
  190. {
  191. if ([sessionDescription isEqualToString:k_download_session]) return [self sessionDownload];
  192. if ([sessionDescription isEqualToString:k_download_session_foreground]) return [self sessionDownloadForeground];
  193. if ([sessionDescription isEqualToString:k_download_session_wwan]) return [self sessionWWanDownload];
  194. if ([sessionDescription isEqualToString:k_upload_session]) return [self sessionUpload];
  195. if ([sessionDescription isEqualToString:k_upload_session_foreground]) return [self sessionUploadForeground];
  196. if ([sessionDescription isEqualToString:k_upload_session_wwan]) return [self sessionWWanUpload];
  197. return nil;
  198. }
  199. - (void)invalidateAndCancelAllSession
  200. {
  201. [[self sessionDownload] invalidateAndCancel];
  202. [[self sessionDownloadForeground] invalidateAndCancel];
  203. [[self sessionWWanDownload] invalidateAndCancel];
  204. [[self sessionUpload] invalidateAndCancel];
  205. [[self sessionUploadForeground] invalidateAndCancel];
  206. [[self sessionWWanUpload] invalidateAndCancel];
  207. }
  208. - (void)settingSessionsDownload:(BOOL)download upload:(BOOL)upload taskStatus:(NSInteger)taskStatus activeAccount:(NSString *)activeAccount activeUser:(NSString *)activeUser activeUrl:(NSString *)activeUrl
  209. {
  210. if (download) {
  211. [[self sessionDownload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  212. for (NSURLSessionTask *task in downloadTasks)
  213. if (taskStatus == k_taskStatusCancel) [task cancel];
  214. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  215. else if (taskStatus == k_taskStatusResume) [task resume];
  216. }];
  217. [[self sessionDownloadForeground] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  218. for (NSURLSessionTask *task in downloadTasks)
  219. if (taskStatus == k_taskStatusCancel) [task cancel];
  220. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  221. else if (taskStatus == k_taskStatusResume) [task resume];
  222. }];
  223. [[self sessionWWanDownload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  224. for (NSURLSessionTask *task in downloadTasks)
  225. if (taskStatus == k_taskStatusCancel) [task cancel];
  226. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  227. else if (taskStatus == k_taskStatusResume) [task resume];
  228. }];
  229. }
  230. if (upload) {
  231. [[self sessionUpload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  232. for (NSURLSessionTask *task in uploadTasks)
  233. if (taskStatus == k_taskStatusCancel) [task cancel];
  234. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  235. else if (taskStatus == k_taskStatusResume) [task resume];
  236. }];
  237. [[self sessionUploadForeground] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  238. for (NSURLSessionTask *task in uploadTasks)
  239. if (taskStatus == k_taskStatusCancel) [task cancel];
  240. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  241. else if (taskStatus == k_taskStatusResume) [task resume];
  242. }];
  243. [[self sessionWWanUpload] getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  244. for (NSURLSessionTask *task in uploadTasks)
  245. if (taskStatus == k_taskStatusCancel) [task cancel];
  246. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  247. else if (taskStatus == k_taskStatusResume) [task resume];
  248. }];
  249. }
  250. // COREDATA FILE SYSTEM
  251. if (download && taskStatus == k_taskStatusCancel) {
  252. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:k_taskIdentifierDone sessionTaskIdentifierPlist:k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (session CONTAINS 'download')", _activeAccount]];
  253. }
  254. if (upload && taskStatus == k_taskStatusCancel) {
  255. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(session CONTAINS 'upload')"]];
  256. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  257. [CCUtility removeAllFileID_UPLOAD_ActiveUser:activeUser activeUrl:activeUrl];
  258. });
  259. }
  260. }
  261. - (void)settingSession:(NSString *)sessionDescription sessionTaskIdentifier:(NSUInteger)sessionTaskIdentifier taskStatus:(NSInteger)taskStatus
  262. {
  263. NSURLSession *session = [self getSessionfromSessionDescription:sessionDescription];
  264. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  265. if ([sessionDescription containsString:@"download"])
  266. for (NSURLSessionTask *task in downloadTasks)
  267. if (task.taskIdentifier == sessionTaskIdentifier) {
  268. if (taskStatus == k_taskStatusCancel) [task cancel];
  269. else if (taskStatus == k_taskStatusSuspend) [task suspend];
  270. else if (taskStatus == k_taskStatusResume) [task resume];
  271. }
  272. if ([sessionDescription containsString:@"upload"])
  273. for (NSURLSessionTask *task in uploadTasks)
  274. if (task.taskIdentifier == sessionTaskIdentifier) {
  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. }];
  280. }
  281. #pragma --------------------------------------------------------------------------------------------
  282. #pragma mark ===== URLSession download/upload =====
  283. #pragma --------------------------------------------------------------------------------------------
  284. - (void)URLSession:(NSURLSession *)session didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler
  285. {
  286. // The pinnning check
  287. if ([[CCCertificate sharedManager] checkTrustedChallenge:challenge]) {
  288. completionHandler(NSURLSessionAuthChallengeUseCredential, [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]);
  289. } else {
  290. completionHandler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  291. }
  292. }
  293. - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error
  294. {
  295. NSString *url = [[[task currentRequest].URL absoluteString] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
  296. NSString *fileName = [url lastPathComponent];
  297. NSString *serverUrl = [self getServerUrlFromUrl:url];
  298. NSInteger errorCode;
  299. __block NSDate *date = [NSDate date];
  300. NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
  301. [dateFormatter setDateFormat:@"EEE, dd MMM y HH:mm:ss zzz"];
  302. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)task.response;
  303. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  304. errorCode = error.code;
  305. } else {
  306. if (httpResponse.statusCode > 0)
  307. errorCode = httpResponse.statusCode;
  308. else
  309. errorCode = error.code;
  310. // Request trusted certificated
  311. if (errorCode == NSURLErrorServerCertificateUntrusted)
  312. [[CCCertificate sharedManager] presentViewControllerCertificateWithTitle:[error localizedDescription] viewController:(UIViewController *)self.delegate delegate:self];
  313. }
  314. // ----------------------- DOWNLOAD -----------------------
  315. if ([task isKindOfClass:[NSURLSessionDownloadTask class]]) {
  316. dispatch_async(dispatch_get_main_queue(), ^{
  317. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(session = %@) AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))",session.sessionDescription, task.taskIdentifier, task.taskIdentifier]];
  318. if (!metadata) return;
  319. NSString *rev = metadata.rev;
  320. NSString *fileID = metadata.fileID;
  321. NSDictionary *fields = [httpResponse allHeaderFields];
  322. if (errorCode == 0) {
  323. rev = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-ETag"]];
  324. date = [dateFormatter dateFromString:[fields objectForKey:@"Date"]];
  325. // Activity
  326. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:metadata.fileID action:k_activityDebugActionDownload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  327. } else {
  328. // Activity
  329. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:metadata.fileID action:k_activityDebugActionDownload selector:metadata.sessionSelector note:[NSString stringWithFormat:@"Server: %@ Error: %@", serverUrl, [CCError manageErrorKCF:errorCode withNumberError:YES]] type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  330. }
  331. NSArray *object = [[NSArray alloc] initWithObjects:session, fileID, task, nil];
  332. [[NSNotificationCenter defaultCenter] postNotificationName:k_networkingSessionNotification object:object];
  333. [self downloadFileSuccessFailure:fileName fileID:metadata.fileID rev:rev date:date serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost errorCode:errorCode];
  334. });
  335. }
  336. // ------------------------ UPLOAD -----------------------
  337. if ([task isKindOfClass:[NSURLSessionUploadTask class]]) {
  338. dispatch_async(dispatch_get_main_queue(), ^{
  339. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(session = %@) AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))",session.sessionDescription, task.taskIdentifier, task.taskIdentifier]];
  340. if (!metadata) return;
  341. NSDictionary *fields = [httpResponse allHeaderFields];
  342. __block NSString *fileID = metadata.fileID;
  343. __block NSString *rev = metadata.rev;
  344. if (errorCode == 0) {
  345. fileID = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-FileId"]];
  346. rev = [CCUtility removeForbiddenCharactersFileSystem:[fields objectForKey:@"OC-ETag"]];
  347. date = [dateFormatter dateFromString:[fields objectForKey:@"Date"]];
  348. // Activity
  349. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:fileID action:k_activityDebugActionUpload selector:metadata.sessionSelector note:serverUrl type:k_activityTypeSuccess verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  350. } else {
  351. // Activity
  352. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:metadata.fileID action:k_activityDebugActionUpload selector:metadata.sessionSelector note:[NSString stringWithFormat:@"Server: %@ Error: %@", serverUrl, [CCError manageErrorKCF:errorCode withNumberError:YES]] type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  353. }
  354. NSArray *object = [[NSArray alloc] initWithObjects:session, fileID, task, nil];
  355. [[NSNotificationCenter defaultCenter] postNotificationName:k_networkingSessionNotification object:object];
  356. [self uploadFileSuccessFailure:metadata fileName:fileName fileID:fileID rev:rev date:date serverUrl:serverUrl errorCode:errorCode];
  357. });
  358. }
  359. }
  360. #pragma --------------------------------------------------------------------------------------------
  361. #pragma mark ===== Download =====
  362. #pragma --------------------------------------------------------------------------------------------
  363. - (void)downloadFile:(NSString *)fileID serverUrl:(NSString *)serverUrl downloadData:(BOOL)downloadData downloadPlist:(BOOL)downloadPlist selector:(NSString *)selector selectorPost:(NSString *)selectorPost session:(NSString *)session taskStatus:(NSInteger)taskStatus delegate:(id)delegate
  364. {
  365. // add delegate
  366. if (delegate)
  367. [_delegates setObject:delegate forKey:fileID];
  368. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  369. if (downloadData) {
  370. // it's in download
  371. tableMetadata *result = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@ AND session CONTAINS 'download' AND sessionTaskIdentifier >= 0", _activeAccount, metadata.fileID]];
  372. if (result) return;
  373. // File exists ?
  374. tableLocalFile *localfile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", metadata.fileID]];
  375. if (localfile != nil && [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileID]]) {
  376. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:k_taskIdentifierDone sessionTaskIdentifierPlist:k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"fileID = %@", metadata.fileID]];
  377. if ([[self getDelegate:metadata.fileID] respondsToSelector:@selector(downloadFileSuccess:serverUrl:selector:selectorPost:)])
  378. [[self getDelegate:metadata.fileID] downloadFileSuccess:metadata.fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost];
  379. return;
  380. }
  381. [self downloaURLSession:metadata.fileNameData fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl fileID:metadata.fileID session:session taskStatus:taskStatus selector:selector];
  382. [[NCManageDatabase sharedInstance] setMetadataSession:session sessionError:@"" sessionSelector:selector sessionSelectorPost:selectorPost sessionTaskIdentifier:k_taskIdentifierNULL sessionTaskIdentifierPlist:k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"fileID = %@",metadata.fileID]];
  383. }
  384. if (downloadPlist) {
  385. tableMetadata *result = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (fileID == %@) AND (session CONTAINS 'download') AND (sessionTaskIdentifierPlist >= 0)", _activeAccount, metadata.fileID]];
  386. // it's in download
  387. if (result) {
  388. NSLog(@"[LOG] Download file already in progress %@ - %@", metadata.fileName, metadata.fileNamePrint);
  389. return;
  390. }
  391. [self downloaURLSession:metadata.fileName fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl fileID:metadata.fileID session:session taskStatus:taskStatus selector:selector];
  392. [[NCManageDatabase sharedInstance] setMetadataSession:session sessionError:@"" sessionSelector:selector sessionSelectorPost:selectorPost sessionTaskIdentifier:k_taskIdentifierNULL sessionTaskIdentifierPlist:k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"fileID = %@",metadata.fileID]];
  393. }
  394. }
  395. - (void)downloaURLSession:(NSString *)fileName fileNamePrint:(NSString *)fileNamePrint serverUrl:(NSString *)serverUrl fileID:(NSString *)fileID session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector
  396. {
  397. NSURLSession *sessionDownload;
  398. NSURL *url;
  399. NSMutableURLRequest *request;
  400. NSString *serverFileUrl = [[NSString stringWithFormat:@"%@/%@", serverUrl, fileName] encodeString:NSUTF8StringEncoding];
  401. url = [NSURL URLWithString:serverFileUrl];
  402. request = [NSMutableURLRequest requestWithURL:url];
  403. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  404. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  405. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  406. if ([session isEqualToString:k_download_session]) sessionDownload = [self sessionDownload];
  407. else if ([session isEqualToString:k_download_session_foreground]) sessionDownload = [self sessionDownloadForeground];
  408. else if ([session isEqualToString:k_download_session_wwan]) sessionDownload = [self sessionWWanDownload];
  409. NSURLSessionDownloadTask *downloadTask = [sessionDownload downloadTaskWithRequest:request];
  410. if (taskStatus == k_taskStatusCancel) [downloadTask cancel];
  411. else if (taskStatus == k_taskStatusSuspend) [downloadTask suspend];
  412. else if (taskStatus == k_taskStatusResume) [downloadTask resume];
  413. if ([[self getDelegate:fileID] respondsToSelector:@selector(downloadTaskSave:)])
  414. [[self getDelegate:fileID] downloadTaskSave:downloadTask];
  415. if (downloadTask == nil) {
  416. NSUInteger sessionTaskIdentifier = k_taskIdentifierNULL;
  417. NSUInteger sessionTaskIdentifierPlist = k_taskIdentifierNULL;
  418. if ([CCUtility isFileNotCryptated:fileName] || [CCUtility isCryptoString:fileName]) sessionTaskIdentifier = k_taskIdentifierError;
  419. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = k_taskIdentifierError;
  420. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[NSString stringWithFormat:@"%@", @k_CCErrorTaskNil] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  421. NSLog(@"[LOG] downloadFileSession TaskIdentifier [error CCErrorTaskNil] - %@ - %@", fileName, fileNamePrint);
  422. } else {
  423. NSUInteger sessionTaskIdentifier = k_taskIdentifierNULL;
  424. NSUInteger sessionTaskIdentifierPlist = k_taskIdentifierNULL;
  425. if ([CCUtility isCryptoString:fileName] || [CCUtility isFileNotCryptated:fileName]) sessionTaskIdentifier = downloadTask.taskIdentifier;
  426. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = downloadTask.taskIdentifier;
  427. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:nil sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  428. NSLog(@"[LOG] downloadFileSession %@ - %@ Task [%lu %lu]", fileID, fileNamePrint, (unsigned long)sessionTaskIdentifier, (unsigned long)sessionTaskIdentifierPlist);
  429. }
  430. // Refresh datasource if is not a Plist
  431. if ([_delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)] && [CCUtility isCryptoPlistString:fileName] == NO)
  432. [_delegate reloadDatasource:serverUrl fileID:fileID selector:selector];
  433. #ifndef EXTENSION
  434. [app updateApplicationIconBadgeNumber];
  435. #endif
  436. }
  437. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite
  438. {
  439. NSString *url = [[[downloadTask currentRequest].URL absoluteString] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
  440. NSString *fileName = [url lastPathComponent];
  441. NSString *serverUrl = [self getServerUrlFromUrl:url];
  442. // if plist return
  443. if ([CCUtility getTypeFileName:fileName] == k_metadataTypeFilenamePlist)
  444. return;
  445. float progress = (float) totalBytesWritten / (float)totalBytesExpectedToWrite;
  446. dispatch_async(dispatch_get_main_queue(), ^{
  447. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromFileName:fileName directoryID:[[NCManageDatabase sharedInstance] getDirectoryID:serverUrl]];
  448. if (metadata) {
  449. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"cryptated": ([NSNumber numberWithBool:metadata.cryptated]), @"progress": ([NSNumber numberWithFloat:progress])};
  450. [[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  451. }
  452. });
  453. }
  454. - (void)URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location
  455. {
  456. NSURLRequest *url = [downloadTask currentRequest];
  457. NSString *filename = [[url.URL absoluteString] lastPathComponent];
  458. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"session = %@ AND (sessionTaskIdentifier = %i OR sessionTaskIdentifierPlist = %i)",session.sessionDescription, downloadTask.taskIdentifier, downloadTask.taskIdentifier]];
  459. // If the record metadata do not exists, exit
  460. if (!metadata) return;
  461. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)downloadTask.response;
  462. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  463. NSString *destinationFilePath;
  464. if ([CCUtility isCryptoPlistString:filename]) {
  465. destinationFilePath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryActiveUser:_activeUser activeUrl:_activeUrl], filename];
  466. } else {
  467. if (metadata.cryptated) destinationFilePath = [NSString stringWithFormat:@"%@/%@.crypt", [CCUtility getDirectoryActiveUser:_activeUser activeUrl:_activeUrl], metadata.fileID];
  468. else destinationFilePath = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryActiveUser:_activeUser activeUrl:_activeUrl], metadata.fileID];
  469. }
  470. @autoreleasepool {
  471. NSURL *destinationURL = [NSURL fileURLWithPath:destinationFilePath];
  472. [[NSFileManager defaultManager] removeItemAtURL:destinationURL error:NULL];
  473. [[NSFileManager defaultManager] copyItemAtURL:location toURL:destinationURL error:nil];
  474. }
  475. }
  476. }
  477. - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID rev:(NSString *)rev date:(NSDate *)date serverUrl:(NSString *)serverUrl selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode
  478. {
  479. #ifndef EXTENSION
  480. if (fileID)
  481. [app.listProgressMetadata removeObjectForKey:fileID];
  482. #endif
  483. // If fileID do not exists return.
  484. if (!fileID) return;
  485. // Progress Task
  486. NSDictionary* userInfo = @{@"fileID": (fileID), @"serverUrl": (serverUrl), @"cryptated": ([NSNumber numberWithBool:NO]), @"progress": ([NSNumber numberWithFloat:0.0])};
  487. [[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  488. if (errorCode != 0) {
  489. if (errorCode != kCFURLErrorCancelled) {
  490. if ([CCUtility isCryptoPlistString:fileName]) {
  491. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:k_taskIdentifierDone sessionTaskIdentifierPlist:k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  492. } else {
  493. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[NSString stringWithFormat:@"%@", @(errorCode)] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierError sessionTaskIdentifierPlist:k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  494. }
  495. }
  496. if ([[self getDelegate:fileID] respondsToSelector:@selector(downloadFileFailure:serverUrl:selector:message:errorCode:)])
  497. [[self getDelegate:fileID] downloadFileFailure:fileID serverUrl:serverUrl selector:selector message:[CCError manageErrorKCF:errorCode withNumberError:YES] errorCode:errorCode];
  498. } else {
  499. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  500. if (!metadata) return;
  501. NSInteger sessionTaskIdentifier = metadata.sessionTaskIdentifier;
  502. NSInteger sessionTaskIdentifierPlist = metadata.sessionTaskIdentifierPlist;
  503. if ([CCUtility isCryptoString:fileName] || [CCUtility isFileNotCryptated:fileName]) sessionTaskIdentifier = k_taskIdentifierDone;
  504. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = k_taskIdentifierDone;
  505. if (sessionTaskIdentifier == k_taskIdentifierDone && sessionTaskIdentifierPlist == k_taskIdentifierDone) {
  506. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  507. } else {
  508. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:nil sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  509. }
  510. // DATA
  511. if ([CCUtility isCryptoString:fileName] || [CCUtility isFileNotCryptated:fileName]) {
  512. BOOL error = false;
  513. // if encrypted, rewrite
  514. if (metadata.cryptated == YES)
  515. if ([[CCCrypto sharedManager] decrypt:metadata.fileID fileNameDecrypted:metadata.fileID fileNamePrint:metadata.fileNamePrint password:[[CCCrypto sharedManager] getKeyPasscode:metadata.uuid] directoryUser:_directoryUser] == 0)
  516. error = true;
  517. if (!error) {
  518. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
  519. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  520. [CCExifGeo setExifLocalTableEtag:metadata directoryUser:_directoryUser activeAccount:_activeAccount];
  521. // Icon
  522. [CCGraphics createNewImageFrom:metadata.fileID directoryUser:_directoryUser fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:NO typeFile:metadata.typeFile writePreview:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  523. }
  524. }
  525. if ([[self getDelegate:fileID] respondsToSelector:@selector(downloadFileSuccess:serverUrl:selector:selectorPost:)])
  526. [[self getDelegate:fileID] downloadFileSuccess:fileID serverUrl:serverUrl selector:selector selectorPost:selectorPost];
  527. }
  528. }
  529. #pragma --------------------------------------------------------------------------------------------
  530. #pragma mark ===== Upload =====
  531. #pragma --------------------------------------------------------------------------------------------
  532. - (void)uploadFileFromAssetLocalIdentifier:(NSString *)assetLocalIdentifier fileName:(NSString *)fileName serverUrl:(NSString *)serverUrl cryptated:(BOOL)cryptated session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode delegate:(id)delegate
  533. {
  534. //delegate
  535. if (delegate == nil)
  536. delegate = self.delegate;
  537. // *** Upload Automatic ***
  538. if ([selector isEqualToString:selectorUploadAutomatic]) {
  539. [self upload:fileName serverUrl:serverUrl cryptated:NO template:NO onlyPlist:NO fileNameTemplate:nil assetLocalIdentifier:assetLocalIdentifier session:session taskStatus:taskStatus selector:selector selectorPost:selectorPost errorCode:errorCode delegate:delegate];
  540. } else {
  541. // *** Manual Upload & Upload Automatic All ***
  542. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[assetLocalIdentifier] options:nil];
  543. if (!result.count) {
  544. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:assetLocalIdentifier action:k_activityDebugActionUpload selector:selector note:@"Internal error image/video not found" type:k_activityTypeFailure verbose:k_activityVerboseHigh activeUrl:_activeUrl];
  545. if ([delegate respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  546. [delegate uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:@"Internal error image/video not found" errorCode: k_CCErrorInternalError];
  547. return;
  548. }
  549. PHAsset *asset = result[0];
  550. PHAssetMediaType assetMediaType = asset.mediaType;
  551. __block NSError *error = nil;
  552. // VIDEO
  553. if (assetMediaType == PHAssetMediaTypeVideo) {
  554. @autoreleasepool {
  555. PHVideoRequestOptions *options = [PHVideoRequestOptions new];
  556. options.networkAccessAllowed = true;
  557. [[PHImageManager defaultManager] requestPlayerItemForVideo:asset options:options resultHandler:^(AVPlayerItem * _Nullable playerItem, NSDictionary * _Nullable info) {
  558. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]])
  559. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName] error:nil];
  560. AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:playerItem.asset presetName:AVAssetExportPresetHighestQuality];
  561. if (exportSession) {
  562. exportSession.outputURL = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]];
  563. exportSession.outputFileType = AVFileTypeQuickTimeMovie;
  564. [exportSession exportAsynchronouslyWithCompletionHandler:^{
  565. if (AVAssetExportSessionStatusCompleted == exportSession.status) {
  566. dispatch_async(dispatch_get_main_queue(), ^{
  567. [self upload:fileName serverUrl:serverUrl cryptated:cryptated template:NO onlyPlist:NO fileNameTemplate:nil assetLocalIdentifier:assetLocalIdentifier session:session taskStatus:taskStatus selector:selector selectorPost:selectorPost errorCode:errorCode delegate:delegate];
  568. });
  569. } else if (AVAssetExportSessionStatusFailed == exportSession.status) {
  570. // Activity
  571. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:assetLocalIdentifier action:k_activityDebugActionUpload selector:selector note:NSLocalizedString(@"_read_file_error_", nil) type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  572. dispatch_async(dispatch_get_main_queue(), ^{
  573. // Error for uploadFileFailure
  574. if ([delegate respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  575. [delegate uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:@"_read_file_error_" errorCode:[NSError errorWithDomain:@"it.twsweb.cryptocloud" code:kCFURLErrorFileDoesNotExist userInfo:nil].code];
  576. });
  577. } else {
  578. NSLog(@"Export Session Status: %ld", (long)exportSession.status);
  579. }
  580. }];
  581. } else {
  582. // Activity
  583. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:assetLocalIdentifier action:k_activityDebugActionUpload selector:selector note:NSLocalizedString(@"_read_file_error_", nil) type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  584. dispatch_async(dispatch_get_main_queue(), ^{
  585. // Error for uploadFileFailure
  586. if ([delegate respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  587. [delegate uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:@"_read_file_error_" errorCode:[NSError errorWithDomain:@"it.twsweb.cryptocloud" code:kCFURLErrorFileDoesNotExist userInfo:nil].code];
  588. });
  589. }
  590. }];
  591. }
  592. }
  593. // IMAGE
  594. if (assetMediaType == PHAssetMediaTypeImage) {
  595. @autoreleasepool {
  596. PHImageRequestOptions *options = [PHImageRequestOptions new];
  597. options.synchronous = NO;
  598. [[PHImageManager defaultManager] requestImageDataForAsset:asset options:options resultHandler:^(NSData *imageData, NSString *dataUTI, UIImageOrientation orientation, NSDictionary *info) {
  599. [imageData writeToFile:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName] options:NSDataWritingAtomic error:&error];
  600. if (error) {
  601. // Activity
  602. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:assetLocalIdentifier action:k_activityDebugActionUpload selector:selector note:NSLocalizedString(@"_read_file_error_", nil) type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  603. dispatch_async(dispatch_get_main_queue(), ^{
  604. // Error for uploadFileFailure
  605. if ([delegate respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  606. [delegate uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:@"_read_file_error_" errorCode:error.code];
  607. });
  608. } else {
  609. dispatch_async(dispatch_get_main_queue(), ^{
  610. [self upload:fileName serverUrl:serverUrl cryptated:cryptated template:NO onlyPlist:NO fileNameTemplate:nil assetLocalIdentifier:assetLocalIdentifier session:session taskStatus:taskStatus selector:selector selectorPost:selectorPost errorCode:errorCode delegate:delegate];
  611. });
  612. }
  613. }];
  614. }
  615. }
  616. }
  617. }
  618. - (void)uploadFile:(NSString *)fileName serverUrl:(NSString *)serverUrl cryptated:(BOOL)cryptated onlyPlist:(BOOL)onlyPlist session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode delegate:(id)delegate
  619. {
  620. [self upload:fileName serverUrl:serverUrl cryptated:cryptated template:NO onlyPlist:onlyPlist fileNameTemplate:nil assetLocalIdentifier:nil session:session taskStatus:taskStatus selector:selector selectorPost:selectorPost errorCode:errorCode delegate:delegate];
  621. }
  622. - (void)uploadTemplate:(NSString *)fileNamePrint fileNameCrypto:(NSString *)fileNameCrypto serverUrl:(NSString *)serverUrl session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode delegate:(id)delegate
  623. {
  624. [self upload:fileNameCrypto serverUrl:serverUrl cryptated:YES template:YES onlyPlist:NO fileNameTemplate:fileNamePrint assetLocalIdentifier:nil session:session taskStatus:taskStatus selector:selector selectorPost:selectorPost errorCode:errorCode delegate:delegate];
  625. }
  626. - (void)upload:(NSString *)fileName serverUrl:(NSString *)serverUrl cryptated:(BOOL)cryptated template:(BOOL)template onlyPlist:(BOOL)onlyPlist fileNameTemplate:(NSString *)fileNameTemplate assetLocalIdentifier:(NSString *)assetLocalIdentifier session:(NSString *)session taskStatus:(NSInteger)taskStatus selector:(NSString *)selector selectorPost:(NSString *)selectorPost errorCode:(NSInteger)errorCode delegate:(id)delegate
  627. {
  628. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:serverUrl];
  629. NSString *fileNameCrypto;
  630. // create Metadata
  631. NSString *cameraFolderName = [[NCManageDatabase sharedInstance] getAccountCameraUploadFolderName];
  632. NSString *cameraFolderPath = [[NCManageDatabase sharedInstance] getAccountCameraUploadFolderPathWithActiveUrl:_activeUrl];
  633. tableMetadata *metadata = [CCUtility insertFileSystemInMetadata:fileName directory:_directoryUser activeAccount:_activeAccount cameraFolderName:cameraFolderName cameraFolderPath:cameraFolderPath];
  634. //fileID
  635. NSString *uploadID = [k_uploadSessionID stringByAppendingString:[CCUtility createRandomString:16]];
  636. //add delegate
  637. if (delegate)
  638. [_delegates setObject:delegate forKey:uploadID];
  639. if (onlyPlist == YES) {
  640. [CCUtility moveFileAtPath:[NSTemporaryDirectory() stringByAppendingString:fileName] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]];
  641. metadata = [CCUtility insertInformationPlist:metadata directoryUser:_directoryUser];
  642. metadata.date = [NSDate new];
  643. metadata.fileID = uploadID;
  644. metadata.directoryID = directoryID;
  645. metadata.fileNameData = [CCUtility trasformedFileNamePlistInCrypto:fileName];
  646. metadata.assetLocalIdentifier = assetLocalIdentifier;
  647. metadata.session = session;
  648. metadata.sessionID = uploadID;
  649. metadata.sessionSelector = selector;
  650. metadata.sessionSelectorPost = selectorPost;
  651. metadata.typeFile = k_metadataTypeFile_unknown;
  652. //[CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  653. [[NCManageDatabase sharedInstance] addMetadata:metadata activeUrl:_activeUrl];
  654. [self uploadURLSession:fileName fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  655. }
  656. else if (cryptated == YES) {
  657. if (template == YES) {
  658. // copy from temp to directory user
  659. [CCUtility moveFileAtPath:[NSTemporaryDirectory() stringByAppendingString:fileName] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]];
  660. [CCUtility moveFileAtPath:[NSTemporaryDirectory() stringByAppendingString:[fileName stringByAppendingString:@".plist"]] toPath:[NSString stringWithFormat:@"%@/%@.plist", _directoryUser, fileName]];
  661. fileNameCrypto = fileName; // file Name Crypto
  662. fileName = fileNameTemplate; // file Name Print
  663. metadata = [CCUtility insertInformationPlist:metadata directoryUser:_directoryUser];
  664. metadata.date = [NSDate new];
  665. metadata.fileID = uploadID;
  666. metadata.directoryID = directoryID;
  667. metadata.fileName = [fileNameCrypto stringByAppendingString:@".plist"];
  668. metadata.fileNameData = fileNameCrypto;
  669. metadata.assetLocalIdentifier = assetLocalIdentifier;
  670. metadata.session = session;
  671. metadata.sessionID = uploadID;
  672. metadata.sessionSelector = selector;
  673. metadata.sessionSelectorPost = selectorPost;
  674. metadata.typeFile = k_metadataTypeFile_template;
  675. //[CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  676. [[NCManageDatabase sharedInstance] addMetadata:metadata activeUrl:_activeUrl];
  677. // DATA
  678. [self uploadURLSession:fileNameCrypto fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  679. // PLIST
  680. [self uploadURLSession:[fileNameCrypto stringByAppendingString:@".plist"] fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  681. }
  682. if (template == NO) {
  683. NSString *passcode = [[CCCrypto sharedManager] getKeyPasscode:[CCUtility getUUID]];
  684. fileNameCrypto = [[CCCrypto sharedManager] encryptWithCreatePlist:fileName fileNameEncrypted:fileName passcode:passcode directoryUser:_directoryUser];
  685. // Encrypted file error
  686. if (fileNameCrypto == nil) {
  687. dispatch_async(dispatch_get_main_queue(), ^{
  688. NSString *msg = [NSString stringWithFormat:NSLocalizedString(@"_encrypt_error_", nil), fileName, @""];
  689. UIAlertController *alertController= [UIAlertController alertControllerWithTitle:nil message:msg preferredStyle:UIAlertControllerStyleAlert];
  690. UIAlertAction* ok = [UIAlertAction actionWithTitle: NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault
  691. handler:^(UIAlertAction * action) {
  692. [alertController dismissViewControllerAnimated:YES completion:nil];
  693. }];
  694. [alertController addAction:ok];
  695. UIWindow *alertWindow = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
  696. alertWindow.rootViewController = [[UIViewController alloc]init];
  697. alertWindow.windowLevel = UIWindowLevelAlert + 1;
  698. [alertWindow makeKeyAndVisible];
  699. [alertWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
  700. // Error for uploadFileFailure
  701. if ([[self getDelegate:uploadID] respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  702. [[self getDelegate:uploadID] uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:NSLocalizedString(@"_encrypt_error_", nil) errorCode:0];
  703. });
  704. return;
  705. }
  706. metadata.cryptated = YES;
  707. metadata.date = [NSDate new];
  708. metadata.fileID = uploadID;
  709. metadata.directoryID = directoryID;
  710. metadata.fileName = [fileNameCrypto stringByAppendingString:@".plist"];
  711. metadata.fileNameData = fileNameCrypto;
  712. metadata.fileNamePrint = fileName;
  713. metadata.assetLocalIdentifier = assetLocalIdentifier;
  714. metadata.session = session;
  715. metadata.sessionID = uploadID;
  716. metadata.sessionSelector = selector;
  717. metadata.sessionSelectorPost = selectorPost;
  718. metadata.title = [self getTitleFromPlistName:fileNameCrypto];
  719. metadata.type = k_metadataType_file;
  720. if (errorCode == 403) {
  721. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:fileName message:NSLocalizedString(@"_file_already_exists_", nil) preferredStyle:UIAlertControllerStyleAlert];
  722. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  723. // Activity
  724. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:uploadID action:k_activityDebugActionUpload selector:selector note:NSLocalizedString(@"_file_already_exists_", nil) type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  725. dispatch_async(dispatch_get_main_queue(), ^{
  726. // Error for uploadFileFailure
  727. if ([[self getDelegate:uploadID] respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  728. [[self getDelegate:uploadID] uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:NSLocalizedString(@"_file_already_exists_", nil) errorCode:403];
  729. });
  730. return;
  731. }];
  732. UIAlertAction *overwriteAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_overwrite_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  733. // -- remove record --
  734. tableMetadata *metadataDelete = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND fileName = %@ AND directoryID = %@", _activeAccount, [fileNameCrypto stringByAppendingString:@".plist"], directoryID]];
  735. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadataDelete.fileID] error:nil];
  736. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, metadataDelete.fileID] error:nil];
  737. if (metadataDelete.directory && serverUrl) {
  738. NSString *dirForDelete = [CCUtility stringAppendServerUrl:serverUrl addFileName:metadataDelete.fileNameData];
  739. [[NCManageDatabase sharedInstance] deleteDirectoryAndSubDirectoryWithServerUrl:dirForDelete];
  740. }
  741. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", metadataDelete.fileID]];
  742. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", metadataDelete.fileID]];
  743. #ifndef EXTENSION
  744. [CCGraphics createNewImageFrom:fileName directoryUser:_directoryUser fileNameTo:uploadID fileNamePrint:fileName size:@"m" imageForUpload:YES typeFile:metadata.typeFile writePreview:YES optimizedFileName:NO];
  745. #endif
  746. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  747. [[CCCrypto sharedManager] addPlistImage:[NSString stringWithFormat:@"%@/%@", _directoryUser, [fileNameCrypto stringByAppendingString:@".plist"]] fileNamePathImage:[NSTemporaryDirectory() stringByAppendingString:uploadID]];
  748. [[NCManageDatabase sharedInstance] addMetadata:metadata activeUrl:_activeUrl];
  749. // DATA
  750. [self uploadURLSession:fileNameCrypto fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  751. // PLIST
  752. [self uploadURLSession:[fileNameCrypto stringByAppendingString:@".plist"] fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  753. }];
  754. [alertController addAction:cancelAction];
  755. [alertController addAction:overwriteAction];
  756. UIWindow *alertWindow = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
  757. alertWindow.rootViewController = [[UIViewController alloc]init];
  758. alertWindow.windowLevel = UIWindowLevelAlert + 1;
  759. [alertWindow makeKeyAndVisible];
  760. [alertWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
  761. } else {
  762. #ifndef EXTENSION
  763. [CCGraphics createNewImageFrom:fileName directoryUser:_directoryUser fileNameTo:uploadID fileNamePrint:fileName size:@"m" imageForUpload:YES typeFile:metadata.typeFile writePreview:YES optimizedFileName:NO];
  764. #endif
  765. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image] || [metadata.typeFile isEqualToString: k_metadataTypeFile_video])
  766. [[CCCrypto sharedManager] addPlistImage:[NSString stringWithFormat:@"%@/%@", _directoryUser, [fileNameCrypto stringByAppendingString:@".plist"]] fileNamePathImage:[NSTemporaryDirectory() stringByAppendingString:uploadID]];
  767. //[CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  768. [[NCManageDatabase sharedInstance] addMetadata:metadata activeUrl:_activeUrl];
  769. // DATA
  770. [self uploadURLSession:fileNameCrypto fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  771. // PLIST
  772. [self uploadURLSession:[fileNameCrypto stringByAppendingString:@".plist"] fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  773. }
  774. }
  775. }
  776. else if (cryptated == NO) {
  777. metadata.cryptated = NO;
  778. metadata.date = [NSDate new];
  779. metadata.fileID = uploadID;
  780. metadata.directoryID = directoryID;
  781. metadata.fileName = fileName;
  782. metadata.fileNameData = fileName;
  783. metadata.fileNamePrint = fileName;
  784. metadata.assetLocalIdentifier = assetLocalIdentifier;
  785. metadata.session = session;
  786. metadata.sessionID = uploadID;
  787. metadata.sessionSelector = selector;
  788. metadata.sessionSelectorPost = selectorPost;
  789. metadata.type = k_metadataType_file;
  790. // File exists ???
  791. if (errorCode == 403) {
  792. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:fileName message:NSLocalizedString(@"_file_already_exists_", nil) preferredStyle:UIAlertControllerStyleAlert];
  793. UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
  794. // Activity
  795. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:uploadID action:k_activityDebugActionUpload selector:selector note:NSLocalizedString(@"_file_already_exists_", nil) type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  796. dispatch_async(dispatch_get_main_queue(), ^{
  797. // Error for uploadFileFailure
  798. if ([[self getDelegate:uploadID] respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  799. [[self getDelegate:uploadID] uploadFileFailure:nil fileID:nil serverUrl:serverUrl selector:selector message:NSLocalizedString(@"_file_already_exists_", nil) errorCode:403];
  800. });
  801. return;
  802. }];
  803. UIAlertAction *overwriteAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_overwrite_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
  804. // -- remove record --
  805. tableMetadata *metadataDelete = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND fileName = %@ AND directoryID = %@", _activeAccount, fileName, directoryID]];
  806. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadataDelete.fileID] error:nil];
  807. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, metadataDelete.fileID] error:nil];
  808. if (metadataDelete.directory && serverUrl) {
  809. NSString *dirForDelete = [CCUtility stringAppendServerUrl:serverUrl addFileName:metadataDelete.fileNameData];
  810. [[NCManageDatabase sharedInstance] deleteDirectoryAndSubDirectoryWithServerUrl:dirForDelete];
  811. }
  812. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", metadataDelete.fileID]];
  813. [[NCManageDatabase sharedInstance] deleteLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", metadataDelete.fileID]];
  814. // -- Go to Upload --
  815. [CCGraphics createNewImageFrom:metadata.fileNamePrint directoryUser:_directoryUser fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:YES typeFile:metadata.typeFile writePreview:YES optimizedFileName:NO];
  816. //[CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  817. [[NCManageDatabase sharedInstance] addMetadata:metadata activeUrl:_activeUrl];
  818. [self uploadURLSession:fileName fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  819. }];
  820. [alertController addAction:cancelAction];
  821. [alertController addAction:overwriteAction];
  822. UIWindow *alertWindow = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
  823. alertWindow.rootViewController = [[UIViewController alloc] init];
  824. alertWindow.windowLevel = UIWindowLevelAlert + 1;
  825. [alertWindow makeKeyAndVisible];
  826. [alertWindow.rootViewController presentViewController:alertController animated:YES completion:nil];
  827. } else {
  828. // -- Go to upload --
  829. #ifndef EXTENSION
  830. [CCGraphics createNewImageFrom:metadata.fileNamePrint directoryUser:_directoryUser fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:YES typeFile:metadata.typeFile writePreview:YES optimizedFileName:NO];
  831. #endif
  832. //[CCCoreData addMetadata:metadata activeAccount:_activeAccount activeUrl:_activeUrl context:_context];
  833. [[NCManageDatabase sharedInstance] addMetadata:metadata activeUrl:_activeUrl];
  834. [self uploadURLSession:fileName fileNamePrint:fileName serverUrl:serverUrl sessionID:uploadID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:assetLocalIdentifier cryptated:cryptated onlyPlist:onlyPlist selector:selector];
  835. }
  836. }
  837. }
  838. - (void)uploadFileMetadata:(tableMetadata *)metadata taskStatus:(NSInteger)taskStatus
  839. {
  840. BOOL send = NO;
  841. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  842. if (metadata.cryptated) {
  843. // ENCRYPTED
  844. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileNameData]] && [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileName]]) {
  845. send = YES;
  846. [self uploadURLSession:metadata.fileNameData fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl sessionID:metadata.sessionID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:nil cryptated:YES onlyPlist:NO selector:metadata.sessionSelector];
  847. [self uploadURLSession:metadata.fileName fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl sessionID:metadata.sessionID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:nil cryptated:YES onlyPlist:NO selector:metadata.sessionSelector];
  848. }
  849. } else {
  850. // PLAIN
  851. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.sessionID]]) {
  852. send = YES;
  853. [self uploadURLSession:metadata.fileName fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl sessionID:metadata.sessionID session:metadata.session taskStatus:taskStatus assetLocalIdentifier:nil cryptated:NO onlyPlist:NO selector:metadata.sessionSelector];
  854. }
  855. }
  856. if (send) {
  857. NSLog(@"[LOG] Re-upload File : %@ - fileID : %@", metadata.fileNamePrint, metadata.fileID);
  858. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierNULL sessionTaskIdentifierPlist:k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account == %@", metadata.sessionID, _activeAccount]];
  859. } else {
  860. NSLog(@"[LOG] Error reUploadBackground, file not found.");
  861. #ifndef EXTENSION
  862. UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_no_reuploadfile_", nil) delegate:nil cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"_ok_", nil), nil];
  863. [alertView show];
  864. #endif
  865. }
  866. }
  867. - (void)uploadURLSession:(NSString *)fileName fileNamePrint:(NSString *)fileNamePrint serverUrl:(NSString *)serverUrl sessionID:(NSString*)sessionID session:(NSString *)session taskStatus:(NSInteger)taskStatus assetLocalIdentifier:(NSString *)assetLocalIdentifier cryptated:(BOOL)cryptated onlyPlist:(BOOL)onlyPlist selector:(NSString *)selector
  868. {
  869. NSURLSession *sessionUpload;
  870. NSURL *url;
  871. NSMutableURLRequest *request;
  872. NSString *fileNamePath = [[NSString stringWithFormat:@"%@/%@", serverUrl, fileName] encodeString:NSUTF8StringEncoding];
  873. url = [NSURL URLWithString:fileNamePath];
  874. request = [NSMutableURLRequest requestWithURL:url];
  875. NSData *authData = [[NSString stringWithFormat:@"%@:%@", _activeUser, _activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  876. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  877. [request setHTTPMethod:@"PUT"];
  878. [request setValue:authValue forHTTPHeaderField:@"Authorization"];
  879. // Rename with the SessionID
  880. NSString *fileNameForUpload;
  881. if ([CCUtility isFileNotCryptated:fileName]) fileNameForUpload = sessionID;
  882. else fileNameForUpload = fileName;
  883. if (!onlyPlist) {
  884. if ([CCUtility isFileNotCryptated:fileName])
  885. [[NSFileManager defaultManager] moveItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNameForUpload] error:nil];
  886. if ([CCUtility isCryptoPlistString:fileName])
  887. [[NSFileManager defaultManager] moveItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNamePrint] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, sessionID] error:nil];
  888. }
  889. // file NOT exists
  890. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNameForUpload]] == NO) {
  891. dispatch_async(dispatch_get_main_queue(), ^{
  892. // Activity
  893. [[NCManageDatabase sharedInstance] addActivityClient:fileName fileID:sessionID action:k_activityDebugActionUpload selector:selector note:NSLocalizedString(@"_file_not_present_", nil) type:k_activityTypeFailure verbose:k_activityVerboseDefault activeUrl:_activeUrl];
  894. // Error for uploadFileFailure
  895. if ([[self getDelegate:sessionID] respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  896. [[self getDelegate:sessionID] uploadFileFailure:nil fileID:sessionID serverUrl:serverUrl selector:selector message:NSLocalizedString(@"_file_not_present_", nil) errorCode:404];
  897. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(sessionID == %@) AND (account == %@)", sessionID, _activeAccount]];
  898. });
  899. return;
  900. }
  901. if ([session isEqualToString:k_upload_session]) sessionUpload = [self sessionUpload];
  902. else if ([session isEqualToString:k_upload_session_foreground]) sessionUpload = [self sessionUploadForeground];
  903. else if ([session isEqualToString:k_upload_session_wwan]) sessionUpload = [self sessionWWanUpload];
  904. NSURLSessionUploadTask *uploadTask = [sessionUpload uploadTaskWithRequest:request fromFile:[NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileNameForUpload]]];
  905. if (taskStatus == k_taskStatusCancel) [uploadTask cancel];
  906. else if (taskStatus == k_taskStatusSuspend) [uploadTask suspend];
  907. else if (taskStatus == k_taskStatusResume) [uploadTask resume];
  908. if ([[self getDelegate:sessionID] respondsToSelector:@selector(uploadTaskSave:)])
  909. [[self getDelegate:sessionID] uploadTaskSave:uploadTask];
  910. // COREDATA
  911. if (uploadTask == nil) {
  912. NSUInteger sessionTaskIdentifier = k_taskIdentifierNULL;
  913. NSUInteger sessionTaskIdentifierPlist = k_taskIdentifierNULL;
  914. if ([CCUtility isFileNotCryptated:fileName] || [CCUtility isCryptoString:fileName]) sessionTaskIdentifier = k_taskIdentifierError;
  915. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = k_taskIdentifierError;
  916. [[NCManageDatabase sharedInstance] setMetadataSession:session sessionError:[NSString stringWithFormat:@"%@", @k_CCErrorTaskNil] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account = %@", sessionID, _activeAccount]];
  917. NSLog(@"[LOG] Upload file TaskIdentifier [error CCErrorTaskNil] - %@ - %@", fileName, fileNamePrint);
  918. } else {
  919. NSUInteger sessionTaskIdentifier = k_taskIdentifierNULL;
  920. NSUInteger sessionTaskIdentifierPlist = k_taskIdentifierNULL;
  921. if ([CCUtility isCryptoString:fileName] || [CCUtility isFileNotCryptated:fileName]) sessionTaskIdentifier = uploadTask.taskIdentifier;
  922. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = uploadTask.taskIdentifier;
  923. [[NCManageDatabase sharedInstance] setMetadataSession:session sessionError:@"" sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account = %@", sessionID, _activeAccount]];
  924. // Delete record on Table Automatic Upload
  925. if ([selector isEqualToString:selectorUploadAutomatic] || [selector isEqualToString:selectorUploadAutomaticAll])
  926. [[NCManageDatabase sharedInstance] deleteAutomaticUploadWithAssetLocalIdentifier:assetLocalIdentifier];
  927. NSLog(@"[LOG] Upload file %@ - %@ TaskIdentifier %lu", fileName,fileNamePrint, (unsigned long)uploadTask.taskIdentifier);
  928. }
  929. dispatch_async(dispatch_get_main_queue(), ^{
  930. // refresh main
  931. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  932. [self.delegate reloadDatasource:serverUrl fileID:nil selector:selector];
  933. #ifndef EXTENSION
  934. [app updateApplicationIconBadgeNumber];
  935. #endif
  936. });
  937. }
  938. - (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveData:(NSData *)data
  939. {
  940. NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)dataTask.response;
  941. if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
  942. NSNumber *taskIdentifier = [NSNumber numberWithLong:dataTask.taskIdentifier];
  943. if (data)
  944. [_taskData setObject:[data copy] forKey:taskIdentifier];
  945. }
  946. }
  947. - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend
  948. {
  949. NSString *url = [[[task currentRequest].URL absoluteString] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
  950. NSString *fileName = [url lastPathComponent];
  951. NSString *serverUrl = [self getServerUrlFromUrl:url];
  952. // if plist return
  953. if ([CCUtility getTypeFileName:fileName] == k_metadataTypeFilenamePlist)
  954. return;
  955. float progress = (float) totalBytesSent / (float)totalBytesExpectedToSend;
  956. dispatch_async(dispatch_get_main_queue(), ^{
  957. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataFromFileName:fileName directoryID:[[NCManageDatabase sharedInstance] getDirectoryID:serverUrl]];
  958. if (metadata) {
  959. NSDictionary* userInfo = @{@"fileID": (metadata.fileID), @"serverUrl": (serverUrl), @"cryptated": ([NSNumber numberWithBool:metadata.cryptated]), @"progress": ([NSNumber numberWithFloat:progress])};
  960. [[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  961. }
  962. });
  963. }
  964. - (void)uploadFileSuccessFailure:(tableMetadata *)metadata fileName:(NSString *)fileName fileID:(NSString *)fileID rev:(NSString *)rev date:(NSDate *)date serverUrl:(NSString *)serverUrl errorCode:(NSInteger)errorCode
  965. {
  966. NSString *sessionID = metadata.sessionID;
  967. // Progress Task
  968. NSDictionary* userInfo = @{@"fileID": (fileID), @"serverUrl": (serverUrl), @"cryptated": ([NSNumber numberWithBool:NO]), @"progress": ([NSNumber numberWithFloat:0.0])};
  969. [[NSNotificationCenter defaultCenter] postNotificationName:@"NotificationProgressTask" object:nil userInfo:userInfo];
  970. // ERRORE
  971. if (errorCode != 0) {
  972. #ifndef EXTENSION
  973. if (sessionID)
  974. [app.listProgressMetadata removeObjectForKey:sessionID];
  975. #endif
  976. // Mark error only if not Cancelled Task
  977. if (errorCode != kCFURLErrorCancelled) {
  978. NSUInteger sessionTaskIdentifier = k_taskIdentifierNULL;
  979. NSUInteger sessionTaskIdentifierPlist = k_taskIdentifierNULL;
  980. if ([CCUtility isFileNotCryptated:fileName] || [CCUtility isCryptoString:fileName]) sessionTaskIdentifier = k_taskIdentifierError;
  981. if ([CCUtility isCryptoPlistString:fileName]) sessionTaskIdentifierPlist = k_taskIdentifierError;
  982. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[NSString stringWithFormat:@"%@", @(errorCode)] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:sessionTaskIdentifier sessionTaskIdentifierPlist:sessionTaskIdentifierPlist predicate:[NSPredicate predicateWithFormat:@"sessionID = %@ AND account = %@", metadata.sessionID, _activeAccount]];
  983. }
  984. if ([[self getDelegate:sessionID] respondsToSelector:@selector(uploadFileFailure:fileID:serverUrl:selector:message:errorCode:)])
  985. [[self getDelegate:sessionID] uploadFileFailure:nil fileID:fileID serverUrl:serverUrl selector:metadata.sessionSelector message:[CCError manageErrorKCF:errorCode withNumberError:YES] errorCode:errorCode];
  986. return;
  987. }
  988. // PLAIN or PLIST
  989. if ([CCUtility isFileNotCryptated:fileName] || [CCUtility isCryptoPlistString:fileName]) {
  990. // copy ico in new fileID
  991. [CCUtility copyFileAtPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, sessionID] toPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, fileID]];
  992. metadata = [[NCManageDatabase sharedInstance] copyTableMetadata:metadata];
  993. metadata.fileID = fileID;
  994. metadata.rev = rev;
  995. metadata.date = date;
  996. metadata.sessionTaskIdentifierPlist = k_taskIdentifierDone;
  997. if ([CCUtility isFileNotCryptated:fileName])
  998. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  999. [[NCManageDatabase sharedInstance] addMetadata:metadata activeUrl:_activeUrl];
  1000. [[NCManageDatabase sharedInstance] deleteMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", sessionID]];
  1001. }
  1002. // CRYPTO
  1003. if ([CCUtility isCryptoString:fileName]) {
  1004. metadata = [[NCManageDatabase sharedInstance] copyTableMetadata:metadata];
  1005. metadata.sessionTaskIdentifier = k_taskIdentifierDone;
  1006. [[NCManageDatabase sharedInstance] updateMetadata:metadata activeUrl:_activeUrl];
  1007. }
  1008. // ALL TASK DONE (PLAIN/CRYPTO)
  1009. if (metadata.sessionTaskIdentifier == k_taskIdentifierDone && metadata.sessionTaskIdentifierPlist == k_taskIdentifierDone) {
  1010. metadata = [[NCManageDatabase sharedInstance] copyTableMetadata:metadata];
  1011. #ifndef EXTENSION
  1012. if (sessionID)
  1013. [app.listProgressMetadata removeObjectForKey:sessionID];
  1014. #endif
  1015. NSLog(@"[LOG] Insert new upload : %@ - FileNamePrint : %@ - fileID : %@", metadata.fileName, metadata.fileNamePrint, metadata.fileID);
  1016. metadata.session = @"";
  1017. metadata.sessionError = @"";
  1018. metadata.sessionID = @"";
  1019. [[NCManageDatabase sharedInstance] updateMetadata:metadata activeUrl:_activeUrl];
  1020. // rename file sessionID -> fileID
  1021. [CCUtility moveFileAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, sessionID] toPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileID]];
  1022. // remove temp icon
  1023. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, sessionID] error:nil];
  1024. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.ico", _directoryUser, metadata.fileID] error:nil];
  1025. // if crypto remove filename data
  1026. if (metadata.cryptated)
  1027. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileNameData] error:nil];
  1028. // Local
  1029. if (metadata.directory == NO)
  1030. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
  1031. // EXIF
  1032. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image])
  1033. [CCExifGeo setExifLocalTableEtag:metadata directoryUser:_directoryUser activeAccount:_activeAccount];
  1034. // Create ICON
  1035. if (metadata.directory == NO)
  1036. [CCGraphics createNewImageFrom:metadata.fileID directoryUser:_directoryUser fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:NO typeFile:metadata.typeFile writePreview:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  1037. // Optimization
  1038. if ([CCUtility getUploadAndRemovePhoto] || [metadata.sessionSelectorPost isEqualToString:selectorUploadRemovePhoto])
  1039. [[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, metadata.fileID] error:nil];
  1040. // Copy photo or video in the photo album for automatic upload
  1041. if ([metadata.assetLocalIdentifier length] > 0 && [metadata.sessionSelector isEqualToString:selectorUploadAutomatic]) {
  1042. PHAsset *asset;
  1043. PHFetchResult *result = [PHAsset fetchAssetsWithLocalIdentifiers:@[metadata.assetLocalIdentifier] options:nil];
  1044. if(result.count){
  1045. asset = result[0];
  1046. [asset saveToAlbum:[NCBrandOptions sharedInstance].brand completionBlock:^(BOOL success) {
  1047. if (success) NSLog(@"[LOG] Insert file %@ in %@", metadata.fileNamePrint, [NCBrandOptions sharedInstance].brand);
  1048. else NSLog(@"[LOG] File %@ do not insert in %@", metadata.fileNamePrint, [NCBrandOptions sharedInstance].brand);
  1049. }];
  1050. }
  1051. }
  1052. if ([[self getDelegate:sessionID] respondsToSelector:@selector(uploadFileSuccess:fileID:serverUrl:selector:selectorPost:)])
  1053. [[self getDelegate:sessionID] uploadFileSuccess:nil fileID:metadata.fileID serverUrl:serverUrl selector:metadata.sessionSelector selectorPost:metadata.sessionSelectorPost];
  1054. }
  1055. }
  1056. #pragma --------------------------------------------------------------------------------------------
  1057. #pragma mark ===== Download Verify =====
  1058. #pragma --------------------------------------------------------------------------------------------
  1059. - (void)verifyDownloadInProgress
  1060. {
  1061. NSArray *dataSourceDownload = [[NCManageDatabase sharedInstance] getTableMetadataDownload];
  1062. NSArray *dataSourceDownloadWWan = [[NCManageDatabase sharedInstance] getTableMetadataDownloadWWan];
  1063. NSMutableArray *dataSource = [[NSMutableArray alloc] init];
  1064. [dataSource addObjectsFromArray:dataSourceDownload];
  1065. [dataSource addObjectsFromArray:dataSourceDownloadWWan];
  1066. NSLog(@"[LOG] Verify download file in progress n. %lu", (unsigned long)[dataSource count]);
  1067. for (tableMetadata *metadata in dataSource) {
  1068. NSURLSession *session = [self getSessionfromSessionDescription:metadata.session];
  1069. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  1070. dispatch_async(dispatch_get_main_queue(), ^{
  1071. BOOL findTask = NO;
  1072. BOOL findTaskPlist = NO;
  1073. for (NSURLSessionDownloadTask *downloadTask in downloadTasks) {
  1074. NSLog(@"[LOG] Find metadata Tasks [%li %li] = [%lu] state : %lu", (long)metadata.sessionTaskIdentifier, (long)metadata.sessionTaskIdentifierPlist ,(unsigned long)downloadTask.taskIdentifier, (unsigned long)[downloadTask state]);
  1075. if (metadata.sessionTaskIdentifier == downloadTask.taskIdentifier) findTask = YES;
  1076. if (metadata.sessionTaskIdentifierPlist == downloadTask.taskIdentifier) findTaskPlist = YES;
  1077. if (findTask == YES || findTaskPlist == YES) break; // trovati, download ancora in corso
  1078. }
  1079. // DATA
  1080. if (findTask == NO && metadata.sessionTaskIdentifier >= 0) {
  1081. NSLog(@"[LOG] NOT Find metadata Task [%li] fileID : %@ - filename : %@", (long)metadata.sessionTaskIdentifier, metadata.fileID, metadata.fileNameData);
  1082. [[NCManageDatabase sharedInstance] setMetadataSession:nil sessionError:[NSString stringWithFormat:@"%@", @k_CCErrorTaskDownloadNotFound] sessionSelector:nil sessionSelectorPost:nil sessionTaskIdentifier:k_taskIdentifierError sessionTaskIdentifierPlist:k_taskIdentifierNULL predicate:[NSPredicate predicateWithFormat:@"fileID = %@ ", metadata.fileID]];
  1083. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  1084. [self.delegate reloadDatasource:[[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID] fileID:metadata.fileID selector:nil];
  1085. }
  1086. // PLIST
  1087. if (findTaskPlist == NO && metadata.sessionTaskIdentifierPlist >= 0) {
  1088. NSLog(@"[LOG] NOT Find metadata TaskPlist [%li] fileID : %@ - filename : %@", (long)metadata.sessionTaskIdentifierPlist, metadata.fileID, metadata.fileName);
  1089. [[NCManageDatabase sharedInstance] setMetadataSession:@"" sessionError:@"" sessionSelector:@"" sessionSelectorPost:@"" sessionTaskIdentifier:k_taskIdentifierNULL sessionTaskIdentifierPlist:k_taskIdentifierDone predicate:[NSPredicate predicateWithFormat:@"fileID = %@", metadata.fileID]];
  1090. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  1091. [self.delegate reloadDatasource:[[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID] fileID:metadata.fileID selector:nil];
  1092. }
  1093. });
  1094. }];
  1095. }
  1096. [self automaticDownloadInError];
  1097. }
  1098. - (void)automaticDownloadInError
  1099. {
  1100. NSMutableSet *serversUrl = [[NSMutableSet alloc] init];
  1101. NSArray *metadatas = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"account = %@ AND session CONTAINS 'download' AND (sessionTaskIdentifier = %i OR sessionTaskIdentifierPlist = %i)", _activeAccount, k_taskIdentifierError, k_taskIdentifierError] sorted:nil ascending:NO];
  1102. NSLog(@"[LOG] Verify re download n. %lu", (unsigned long)[metadatas count]);
  1103. for (tableMetadata *metadata in metadatas) {
  1104. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  1105. if (metadata.sessionTaskIdentifier == k_taskIdentifierError)
  1106. [self downloadFile:metadata.fileID serverUrl:serverUrl downloadData:YES downloadPlist:NO selector:metadata.sessionSelector selectorPost:nil session:k_download_session taskStatus: k_taskStatusResume delegate:nil];
  1107. if (metadata.sessionTaskIdentifierPlist == k_taskIdentifierError)
  1108. [self downloadFile:metadata.fileID serverUrl:serverUrl downloadData:NO downloadPlist:YES selector:metadata.sessionSelector selectorPost:nil session:k_download_session taskStatus: k_taskStatusResume delegate:nil];
  1109. [serversUrl addObject:serverUrl];
  1110. NSLog(@"[LOG] Re download file : %@ - %@ [%li %li]", metadata.fileName, metadata.fileNamePrint, (long)metadata.sessionTaskIdentifier, (long)metadata.sessionTaskIdentifierPlist);
  1111. }
  1112. dispatch_async(dispatch_get_main_queue(), ^{
  1113. for (NSString *serverUrl in serversUrl)
  1114. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  1115. [self.delegate reloadDatasource:serverUrl fileID:nil selector:nil];
  1116. });
  1117. }
  1118. #pragma --------------------------------------------------------------------------------------------
  1119. #pragma mark ===== Upload Verify =====
  1120. #pragma --------------------------------------------------------------------------------------------
  1121. - (void)verifyUploadInProgress
  1122. {
  1123. NSArray *dataSourceUpload = [[NCManageDatabase sharedInstance] getTableMetadataUpload];
  1124. NSArray *dataSourceUploadWWan = [[NCManageDatabase sharedInstance] getTableMetadataUploadWWan];
  1125. NSMutableArray *dataSource = [[NSMutableArray alloc] init];
  1126. [dataSource addObjectsFromArray:dataSourceUpload];
  1127. [dataSource addObjectsFromArray:dataSourceUploadWWan];
  1128. NSLog(@"[LOG] Verify upload file in progress n. %lu", (unsigned long)[dataSource count]);
  1129. for (tableMetadata *record in dataSource) {
  1130. __block NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:record.directoryID];
  1131. NSURLSession *session = [self getSessionfromSessionDescription:record.session];
  1132. id tradeReference = [[NCManageDatabase sharedInstance] getThreadConfined:record];
  1133. [session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks, NSArray *downloadTasks) {
  1134. tableMetadata *metadata = (tableMetadata *)[[NCManageDatabase sharedInstance] putThreadConfined:tradeReference];
  1135. BOOL findTask = NO;
  1136. BOOL findTaskPlist = NO;
  1137. // cerchiamo la corrispondenza dei task
  1138. for (NSURLSessionUploadTask *uploadTask in uploadTasks) {
  1139. NSLog(@"[LOG] Find metadata Tasks [%li %li] = [%lu] state : %lu", (long)metadata.sessionTaskIdentifier, (long)metadata.sessionTaskIdentifierPlist , (unsigned long)uploadTask.taskIdentifier, (unsigned long)[uploadTask state]);
  1140. if (metadata.sessionTaskIdentifier == uploadTask.taskIdentifier) findTask = YES;
  1141. if (metadata.sessionTaskIdentifierPlist == uploadTask.taskIdentifier) findTaskPlist = YES;
  1142. if (findTask == YES || findTaskPlist == YES) break;
  1143. }
  1144. // se non c'è (ci sono) il relativo uploadTask.taskIdentifier allora chiediamolo
  1145. if ((metadata.cryptated == YES && findTask == NO && findTaskPlist == NO) || (metadata.cryptated == NO && findTask == NO)) {
  1146. NSLog(@"[LOG] Call ReadFileVerifyUpload because this file %@ (criptated %i) is in progress but there is no task : [%li %li]", metadata.fileNamePrint, metadata.cryptated, (long)metadata.sessionTaskIdentifier, (long)metadata.sessionTaskIdentifierPlist);
  1147. if (metadata.sessionTaskIdentifier >= 0) [self readFileVerifyUpload:metadata.fileNameData fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl];
  1148. if (metadata.sessionTaskIdentifierPlist >= 0) [self readFileVerifyUpload:metadata.fileName fileNamePrint:metadata.fileNamePrint serverUrl:serverUrl];
  1149. }
  1150. }];
  1151. // Notification change session
  1152. NSArray *object = [[NSArray alloc] initWithObjects:session, record, nil];
  1153. [[NSNotificationCenter defaultCenter] postNotificationName:k_networkingSessionNotification object:object];
  1154. }
  1155. [self automaticUploadInError];
  1156. }
  1157. - (void)automaticUploadInError
  1158. {
  1159. NSMutableSet *directoryIDs = [[NSMutableSet alloc] init];
  1160. //NSArray *records = [CCCoreData getTableMetadataWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (session CONTAINS 'upload') AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))", _activeAccount, k_taskIdentifierError, k_taskIdentifierError] context:nil];
  1161. NSArray *metadatas = [[NCManageDatabase sharedInstance] getMetadatasWithPredicate:[NSPredicate predicateWithFormat:@"(account == %@) AND (session CONTAINS 'upload') AND ((sessionTaskIdentifier == %i) OR (sessionTaskIdentifierPlist == %i))", _activeAccount, k_taskIdentifierError, k_taskIdentifierError] sorted:nil ascending:NO];
  1162. NSLog(@"[LOG] Verify re upload n. %lu", (unsigned long)[metadatas count]);
  1163. for (tableMetadata *metadata in metadatas) {
  1164. [self uploadFileMetadata:metadata taskStatus: k_taskStatusResume];
  1165. [directoryIDs addObject:metadata.directoryID];
  1166. NSLog(@"[LOG] Re upload file : %@", metadata.fileName);
  1167. }
  1168. dispatch_async(dispatch_get_main_queue(), ^{
  1169. for (NSString *directoryID in directoryIDs)
  1170. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  1171. [self.delegate reloadDatasource:[[NCManageDatabase sharedInstance] getServerUrl:directoryID] fileID:nil selector:nil];
  1172. });
  1173. }
  1174. - (void)readFileVerifyUpload:(NSString *)fileName fileNamePrint:(NSString *)fileNamePrint serverUrl:(NSString *)serverUrl
  1175. {
  1176. #ifndef EXTENSION
  1177. CCMetadataNet *metadataNet = [[CCMetadataNet alloc] initWithAccount:_activeAccount];
  1178. metadataNet.action = actionReadFile;
  1179. metadataNet.fileName = fileName;
  1180. metadataNet.fileNamePrint = fileNamePrint;
  1181. metadataNet.serverUrl = serverUrl;
  1182. metadataNet.selector = selectorReadFileVerifyUpload;
  1183. [app addNetworkingOperationQueue:app.netQueue delegate:self metadataNet:metadataNet];
  1184. #else
  1185. NSLog(@"[LOG] Function not available for extension.");
  1186. #endif
  1187. }
  1188. //
  1189. // File exists : selectorReadFileVerifyUpload
  1190. //
  1191. - (void)readFileSuccess:(CCMetadataNet *)metadataNet metadata:(tableMetadata *)metadata
  1192. {
  1193. NSString *fileName;
  1194. if ([CCUtility isCryptoString:metadata.fileName])
  1195. fileName = [metadata.fileName stringByAppendingString:@".plist"];
  1196. else
  1197. fileName = metadataNet.fileName;
  1198. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:metadataNet.serverUrl];
  1199. tableMetadata *metadataTemp = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileName = %@ AND directoryID = %@ AND account = %@", fileName , directoryID, _activeAccount]];
  1200. // is completed ?
  1201. if (metadataTemp.sessionTaskIdentifier == k_taskIdentifierDone && metadataTemp.sessionTaskIdentifierPlist == k_taskIdentifierDone) {
  1202. [CCGraphics createNewImageFrom:metadata.fileID directoryUser:_directoryUser fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:NO typeFile:metadata.typeFile writePreview:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  1203. NSLog(@"[LOG] Verify read file success, but files already processed");
  1204. dispatch_async(dispatch_get_main_queue(), ^{
  1205. if ([self.delegate respondsToSelector:@selector(reloadDatasource:fileID:selector:)])
  1206. [self.delegate reloadDatasource:[[NCManageDatabase sharedInstance] getServerUrl:directoryID] fileID:metadataTemp.fileID selector:metadataNet.selector];
  1207. });
  1208. } else {
  1209. [self uploadFileSuccessFailure:metadataTemp fileName:metadataNet.fileName fileID:metadata.fileID rev:metadata.rev date:metadata.date serverUrl:metadataNet.serverUrl errorCode:0];
  1210. }
  1211. }
  1212. //
  1213. // File do not exists : selectorReadFileVerifyUpload
  1214. //
  1215. - (void)readFileFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  1216. {
  1217. NSString *fileName;
  1218. if ([CCUtility isCryptoString:metadataNet.fileName])
  1219. fileName = [metadataNet.fileName stringByAppendingString:@".plist"];
  1220. else
  1221. fileName = metadataNet.fileName;
  1222. NSString *directoryID = [[NCManageDatabase sharedInstance] getDirectoryID:metadataNet.serverUrl];
  1223. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileName = %@ AND directoryID = %@ AND account = %@",fileName , directoryID, _activeAccount]];
  1224. NSInteger error;
  1225. if (errorCode == kOCErrorServerPathNotFound)
  1226. error = k_CCErrorFileUploadNotFound;
  1227. else
  1228. error = errorCode;
  1229. // fix CCNetworking.m line 1340 2.17.2 (00005)
  1230. if (metadata)
  1231. [self uploadFileSuccessFailure:metadata fileName:metadataNet.fileName fileID:metadata.fileID rev:metadata.rev date:metadata.date serverUrl:metadataNet.serverUrl errorCode:error];
  1232. }
  1233. #pragma --------------------------------------------------------------------------------------------
  1234. #pragma mark ===== Utility =====
  1235. #pragma --------------------------------------------------------------------------------------------
  1236. - (id)getDelegate:(NSString *)fileID
  1237. {
  1238. id delegate = [_delegates objectForKey:fileID];
  1239. if (delegate)
  1240. return delegate;
  1241. else
  1242. return self.delegate;
  1243. }
  1244. - (NSString *)getServerUrlFromUrl:(NSString *)url
  1245. {
  1246. NSString *fileName = [url lastPathComponent];
  1247. url = [url stringByReplacingOccurrencesOfString:[@"/" stringByAppendingString:fileName] withString:@""];
  1248. return url;
  1249. }
  1250. - (NSString *)getTitleFromPlistName:(NSString *)fileName
  1251. {
  1252. if ([[fileName lastPathComponent] isEqualToString:@"plist"] == NO)
  1253. fileName = [fileName stringByAppendingString:@".plist"];
  1254. if (![[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]]) return nil;
  1255. NSMutableDictionary *data = [[NSMutableDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/%@", _directoryUser, fileName]];
  1256. return [data objectForKey:@"title"];
  1257. }
  1258. @end
  1259. #pragma --------------------------------------------------------------------------------------------
  1260. #pragma mark ===== CCMetadataNet =====
  1261. #pragma --------------------------------------------------------------------------------------------
  1262. @implementation CCMetadataNet
  1263. - (id)init
  1264. {
  1265. self = [super init];
  1266. self.priority = NSOperationQueuePriorityNormal;
  1267. return self;
  1268. }
  1269. - (id)initWithAccount:(NSString *)withAccount
  1270. {
  1271. self = [super init];
  1272. if (self) {
  1273. _account = withAccount;
  1274. _priority = NSOperationQueuePriorityNormal;
  1275. }
  1276. return self;
  1277. }
  1278. - (id)copyWithZone: (NSZone *) zone
  1279. {
  1280. CCMetadataNet *metadataNet = [[CCMetadataNet allocWithZone: zone] init];
  1281. [metadataNet setAccount: self.account];
  1282. [metadataNet setAction: self.action];
  1283. [metadataNet setAssetLocalIdentifier: self.assetLocalIdentifier];
  1284. [metadataNet setCryptated: self.cryptated];
  1285. [metadataNet setDate: self.date];
  1286. [metadataNet setDelegate: self.delegate];
  1287. [metadataNet setDirectory: self.directory];
  1288. [metadataNet setDirectoryID: self.directoryID];
  1289. [metadataNet setDirectoryIDTo: self.directoryIDTo];
  1290. [metadataNet setDownloadData: self.downloadData];
  1291. [metadataNet setDownloadPlist: self.downloadPlist];
  1292. [metadataNet setErrorCode: self.errorCode];
  1293. [metadataNet setErrorRetry: self.errorRetry];
  1294. [metadataNet setExpirationTime: self.expirationTime];
  1295. [metadataNet setFileID: self.fileID];
  1296. [metadataNet setFileName: self.fileName];
  1297. [metadataNet setFileNameTo: self.fileNameTo];
  1298. [metadataNet setFileNameLocal: self.fileNameLocal];
  1299. [metadataNet setFileNamePrint: self.fileNamePrint];
  1300. [metadataNet setOptions: self.options];
  1301. [metadataNet setPassword: self.password];
  1302. [metadataNet setPathFolder: self.pathFolder];
  1303. [metadataNet setPriority: self.priority];
  1304. [metadataNet setQueue: self.queue];
  1305. [metadataNet setRev:self.rev];
  1306. [metadataNet setServerUrl: self.serverUrl];
  1307. [metadataNet setServerUrlTo: self.serverUrlTo];
  1308. [metadataNet setSelector: self.selector];
  1309. [metadataNet setSelectorPost: self.selectorPost];
  1310. [metadataNet setSession: self.session];
  1311. [metadataNet setSessionID: self.sessionID];
  1312. [metadataNet setShare: self.share];
  1313. [metadataNet setShareeType: self.shareeType];
  1314. [metadataNet setSharePermission: self.sharePermission];
  1315. [metadataNet setSize: self.size];
  1316. [metadataNet setTaskStatus: self.taskStatus];
  1317. return metadataNet;
  1318. }
  1319. @end