CCDetail.m 53 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187
  1. //
  2. // CCDetail.m
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 16/01/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 "CCDetail.h"
  24. #import "AppDelegate.h"
  25. #import "CCMain.h"
  26. #import "NCUchardet.h"
  27. #import "NCBridgeSwift.h"
  28. #import <KTVHTTPCache/KTVHTTPCache.h>
  29. #import "NCBridgeSwift.h"
  30. #define TOOLBAR_HEIGHT 49.0f
  31. #define alertRequestPasswordPDF 1
  32. @interface CCDetail () <NCTextDelegate, UIDocumentInteractionControllerDelegate>
  33. {
  34. AppDelegate *appDelegate;
  35. UIDocumentInteractionController *docController;
  36. UIBarButtonItem *buttonModifyTxt;
  37. UIBarButtonItem *buttonAction;
  38. UIBarButtonItem *buttonShare;
  39. UIBarButtonItem *buttonDelete;
  40. NSInteger indexNowVisible;
  41. NSString *fileIDNowVisible;
  42. NSMutableOrderedSet *dataSourceDirectoryID;
  43. NSString *fileNameExtension;
  44. NSURL *videoURLProxy;
  45. NSURL *videoURL;
  46. BOOL isMediaObserver;
  47. }
  48. @end
  49. @implementation CCDetail
  50. #pragma --------------------------------------------------------------------------------------------
  51. #pragma mark ===== init =====
  52. #pragma --------------------------------------------------------------------------------------------
  53. - (id)initWithCoder:(NSCoder *)aDecoder
  54. {
  55. if (self = [super initWithCoder:aDecoder]) {
  56. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  57. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:@"NotificationProgressTask" object:nil];
  58. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:@"changeTheming" object:nil];
  59. self.metadataDetail = [[tableMetadata alloc] init];
  60. self.photos = [[NSMutableArray alloc] init];
  61. self.photoDataSource = [NSMutableArray new];
  62. dataSourceDirectoryID = [[NSMutableOrderedSet alloc] init];
  63. indexNowVisible = -1;
  64. fileIDNowVisible = nil;
  65. appDelegate.activeDetail = self;
  66. }
  67. return self;
  68. }
  69. #pragma --------------------------------------------------------------------------------------------
  70. #pragma mark ===== View =====
  71. #pragma --------------------------------------------------------------------------------------------
  72. - (void)viewDidLoad
  73. {
  74. [super viewDidLoad];
  75. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(insertGeocoderLocation:) name:@"insertGeocoderLocation" object:nil];
  76. self.imageBackground.image = [UIImage imageNamed:@"backgroundDetail"];
  77. // Proxy
  78. static dispatch_once_t onceToken;
  79. dispatch_once(&onceToken, ^{
  80. [self setupHTTPCache];
  81. });
  82. // Change bar bottom line shadow and remove title back button <"title"
  83. self.navigationController.navigationBar.shadowImage = [CCGraphics generateSinglePixelImageWithColor:[NCBrandColor sharedInstance].brand];
  84. self.navigationController.navigationBar.topItem.title = @"";
  85. // TabBar
  86. self.tabBarController.tabBar.hidden = YES;
  87. self.tabBarController.tabBar.translucent = YES;
  88. // Open View
  89. if ([self.metadataDetail.fileNameView length] > 0 || [self.metadataDetail.directoryID length] > 0 || [self.metadataDetail.fileID length] > 0) {
  90. // open view
  91. [self viewFile];
  92. }
  93. }
  94. - (void)viewWillAppear:(BOOL)animated
  95. {
  96. [super viewWillAppear:animated];
  97. self.tabBarController.tabBar.hidden = YES;
  98. self.tabBarController.tabBar.translucent = YES;
  99. }
  100. - (void)viewDidDisappear:(BOOL)animated
  101. {
  102. [super viewDidDisappear:animated];
  103. // If AVPlayer in play -> Stop
  104. if (appDelegate.player != nil && appDelegate.player.rate != 0) {
  105. [appDelegate.player pause];
  106. }
  107. // remove Observer AVPlayer
  108. if (isMediaObserver) {
  109. isMediaObserver = NO;
  110. @try{
  111. [appDelegate.player removeObserver:self forKeyPath:@"rate" context:nil];
  112. [[NSNotificationCenter defaultCenter] removeObserver:self name:AVPlayerItemDidPlayToEndTimeNotification object:[appDelegate.player currentItem]];
  113. }@catch(id anException) { }
  114. }
  115. }
  116. - (void)changeTheming
  117. {
  118. [appDelegate changeTheming:self];
  119. if (self.toolbar) {
  120. self.toolbar.barTintColor = [NCBrandColor sharedInstance].tabBar;
  121. self.toolbar.tintColor = [NCBrandColor sharedInstance].brandElement;
  122. }
  123. }
  124. - (void)backNavigationController
  125. {
  126. [self.navigationController popViewControllerAnimated:YES];
  127. }
  128. - (void)changeToDisplayMode
  129. {
  130. if (_readerPDFViewController)
  131. [self.readerPDFViewController updateContentViews];
  132. }
  133. #pragma --------------------------------------------------------------------------------------------
  134. #pragma mark ===== View File =====
  135. #pragma --------------------------------------------------------------------------------------------
  136. - (void)viewFile
  137. {
  138. // verifico se esiste l'icona e se la posso creare
  139. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView]] == NO) {
  140. [CCGraphics createNewImageFrom:self.metadataDetail.fileNameView fileID:self.metadataDetail.fileID extension:[self.metadataDetail.fileNameView pathExtension] filterGrayScale:NO typeFile:self.metadataDetail.typeFile writeImage:YES];
  141. }
  142. // remove Observer AVPlayer
  143. if (isMediaObserver) {
  144. isMediaObserver = NO;
  145. [appDelegate.player removeObserver:self forKeyPath:@"rate" context:nil];
  146. [[NSNotificationCenter defaultCenter] removeObserver:self name:AVPlayerItemDidPlayToEndTimeNotification object:[appDelegate.player currentItem]];
  147. }
  148. // IMAGE
  149. if ([self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_image]) {
  150. self.edgesForExtendedLayout = UIRectEdgeAll;
  151. [self viewImage];
  152. }
  153. // AUDIO VIDEO
  154. if ([self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_video] || [self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_audio]) {
  155. self.edgesForExtendedLayout = UIRectEdgeAll;
  156. [self createToolbar];
  157. [self viewMedia];
  158. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  159. }
  160. // DOCUMENT
  161. if ([self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_document]) {
  162. fileNameExtension = [[self.metadataDetail.fileNameView pathExtension] uppercaseString];
  163. if ([fileNameExtension isEqualToString:@"PDF"]) {
  164. self.edgesForExtendedLayout = UIRectEdgeBottom;
  165. [self createToolbar];
  166. [self viewPDF:@""];
  167. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  168. } else {
  169. self.edgesForExtendedLayout = UIRectEdgeBottom;
  170. [self createToolbar];
  171. [self viewDocument];
  172. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  173. }
  174. }
  175. self.title = _metadataDetail.fileNameView;
  176. }
  177. #pragma --------------------------------------------------------------------------------------------
  178. #pragma mark ===== Toolbar =====
  179. #pragma --------------------------------------------------------------------------------------------
  180. - (void)createToolbar
  181. {
  182. CGFloat safeAreaBottom = 0;
  183. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadataDetail.directoryID];
  184. if (!serverUrl)
  185. return;
  186. if (@available(iOS 11, *)) {
  187. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  188. }
  189. self.toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, self.view.bounds.size.height - TOOLBAR_HEIGHT - safeAreaBottom, self.view.bounds.size.width, TOOLBAR_HEIGHT)];
  190. UIBarButtonItem *flexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
  191. UIBarButtonItem *fixedSpaceMini = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:self action:nil];
  192. fixedSpaceMini.width = 25;
  193. buttonModifyTxt = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"actionSheetModify"] style:UIBarButtonItemStylePlain target:self action:@selector(modifyTxtButtonPressed:)];
  194. buttonAction = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"openFile"] style:UIBarButtonItemStylePlain target:self action:@selector(actionButtonPressed:)];
  195. buttonShare = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"share"] style:UIBarButtonItemStylePlain target:self action:@selector(shareButtonPressed:)];
  196. buttonDelete = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemTrash target:self action:@selector(deleteButtonPressed:)];
  197. if ([CCUtility isDocumentModifiableExtension:fileNameExtension]) {
  198. if ([CCUtility isFolderEncrypted:serverUrl account:appDelegate.activeAccount]) // E2EE
  199. [self.toolbar setItems:[NSArray arrayWithObjects: buttonModifyTxt, flexible, buttonDelete, fixedSpaceMini, buttonAction, nil]];
  200. else
  201. [self.toolbar setItems:[NSArray arrayWithObjects: buttonModifyTxt, flexible, buttonDelete, fixedSpaceMini, buttonShare, fixedSpaceMini, buttonAction, nil]];
  202. } else {
  203. if ([CCUtility isFolderEncrypted:serverUrl account:appDelegate.activeAccount]) // E2EE
  204. [self.toolbar setItems:[NSArray arrayWithObjects: flexible, buttonDelete, fixedSpaceMini, buttonAction, nil]];
  205. else
  206. [self.toolbar setItems:[NSArray arrayWithObjects: flexible, buttonDelete, fixedSpaceMini, buttonShare, fixedSpaceMini, buttonAction, nil]];
  207. }
  208. [self.toolbar setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  209. self.toolbar.barTintColor = [NCBrandColor sharedInstance].tabBar;
  210. self.toolbar.tintColor = [NCBrandColor sharedInstance].brandElement;
  211. [self.view addSubview:self.toolbar];
  212. }
  213. #pragma --------------------------------------------------------------------------------------------
  214. #pragma mark ===== View Document =====
  215. #pragma --------------------------------------------------------------------------------------------
  216. - (void)viewDocument
  217. {
  218. CGFloat safeAreaBottom = 0;
  219. if (@available(iOS 11, *)) {
  220. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  221. }
  222. if ([CCUtility fileProviderStorageExists:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView] == NO) {
  223. [self backNavigationController];
  224. return;
  225. }
  226. NSString *fileNamePath = [NSTemporaryDirectory() stringByAppendingString:self.metadataDetail.fileNameView];
  227. [[NSFileManager defaultManager] removeItemAtPath:fileNamePath error:nil];
  228. [[NSFileManager defaultManager] linkItemAtPath:[CCUtility getDirectoryProviderStorageFileID:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView] toPath:fileNamePath error:nil];
  229. NSURL *url = [NSURL fileURLWithPath:fileNamePath];
  230. WKPreferences *wkPreferences = [[WKPreferences alloc] init];
  231. wkPreferences.javaScriptEnabled = true;
  232. WKWebViewConfiguration *wkConfig = [[WKWebViewConfiguration alloc] init];
  233. wkConfig.preferences = wkPreferences;
  234. self.webView = [[WKWebView alloc] initWithFrame:(CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT - safeAreaBottom)) configuration:wkConfig];
  235. self.webView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
  236. [self.webView setBackgroundColor:[NCBrandColor sharedInstance].backgroundView];
  237. [self.webView setOpaque:NO];
  238. if ( [fileNameExtension isEqualToString:@"CSS"] || [fileNameExtension isEqualToString:@"PY"] || [fileNameExtension isEqualToString:@"XML"] || [fileNameExtension isEqualToString:@"JS"] ) {
  239. NSString *dataFile = [[NSString alloc] initWithData:[NSData dataWithContentsOfURL:url] encoding:NSASCIIStringEncoding];
  240. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
  241. [self.webView loadHTMLString:[NSString stringWithFormat:@"<div style='font-size:%@;font-family:%@;'><pre>%@",@"40",@"Sans-Serif",dataFile] baseURL:nil];
  242. }else{
  243. [self.webView loadHTMLString:[NSString stringWithFormat:@"<div style='font-size:%@;font-family:%@;'><pre>%@",@"20",@"Sans-Serif",dataFile] baseURL:nil];
  244. }
  245. } else if ([CCUtility isDocumentModifiableExtension:fileNameExtension]) {
  246. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  247. NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration delegate:nil delegateQueue:nil];
  248. NSMutableURLRequest *headRequest = [NSMutableURLRequest requestWithURL:url];
  249. [headRequest setHTTPMethod:@"HEAD"];
  250. NSURLSessionDataTask *task = [session dataTaskWithRequest:headRequest completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
  251. dispatch_async(dispatch_get_main_queue(), ^{
  252. NSString *encodingName = [[NCUchardet sharedNUCharDet] encodingStringDetectWithData:data];
  253. [self.webView loadData:[NSData dataWithContentsOfURL: url] MIMEType:response.MIMEType characterEncodingName:encodingName baseURL:url];
  254. });
  255. }];
  256. [task resume];
  257. } else {
  258. [self.webView loadRequest:[NSMutableURLRequest requestWithURL:url]];
  259. }
  260. [self.view addSubview:self.webView];
  261. }
  262. #pragma --------------------------------------------------------------------------------------------
  263. #pragma mark ===== View Media =====
  264. #pragma --------------------------------------------------------------------------------------------
  265. - (void)viewMedia
  266. {
  267. CGFloat safeAreaBottom = 0;
  268. if (@available(iOS 11, *)) {
  269. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  270. }
  271. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadataDetail.directoryID];
  272. if (!serverUrl)
  273. return;
  274. if ([CCUtility fileProviderStorageExists:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView]) {
  275. videoURL = [NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView]];
  276. videoURLProxy = videoURL;
  277. } else {
  278. videoURL = [NSURL URLWithString:[[NSString stringWithFormat:@"%@/%@", serverUrl, _metadataDetail.fileName] stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]]];
  279. videoURLProxy = [KTVHTTPCache proxyURLWithOriginalURL:videoURL];
  280. NSMutableDictionary *header = [NSMutableDictionary new];
  281. NSData *authData = [[NSString stringWithFormat:@"%@:%@", appDelegate.activeUser, appDelegate.activePassword] dataUsingEncoding:NSUTF8StringEncoding];
  282. NSString *authValue = [NSString stringWithFormat: @"Basic %@",[authData base64EncodedStringWithOptions:0]];
  283. [header setValue:authValue forKey:@"Authorization"];
  284. [header setValue:[CCUtility getUserAgent] forKey:@"User-Agent"];
  285. [KTVHTTPCache downloadSetAdditionalHeaders:header];
  286. // Disable Button Action (the file is in download via Proxy Server)
  287. buttonAction.enabled = false;
  288. }
  289. appDelegate.player = [AVPlayer playerWithURL:videoURLProxy];
  290. appDelegate.playerController = [AVPlayerViewController new];
  291. appDelegate.playerController.player = appDelegate.player;
  292. appDelegate.playerController.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT - safeAreaBottom);
  293. appDelegate.playerController.allowsPictureInPicturePlayback = false;
  294. [self addChildViewController:appDelegate.playerController];
  295. [self.view addSubview:appDelegate.playerController.view];
  296. [appDelegate.playerController didMoveToParentViewController:self];
  297. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(itemDidFinishPlaying:) name:AVPlayerItemDidPlayToEndTimeNotification object:[appDelegate.player currentItem]];
  298. [appDelegate.player addObserver:self forKeyPath:@"rate" options:0 context:nil];
  299. isMediaObserver = YES;
  300. [appDelegate.player play];
  301. }
  302. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
  303. if ([keyPath isEqualToString:@"rate"]) {
  304. if ([appDelegate.player rate]) {
  305. NSLog(@"start");
  306. }
  307. else {
  308. NSLog(@"pause");
  309. }
  310. [self saveCacheToFileProvider];
  311. }
  312. }
  313. - (void)itemDidFinishPlaying:(NSNotification *)notification
  314. {
  315. AVPlayerItem *player = [notification object];
  316. [player seekToTime:kCMTimeZero];
  317. }
  318. - (void)saveCacheToFileProvider
  319. {
  320. if (![CCUtility fileProviderStorageExists:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView]) {
  321. NSURL *url = [KTVHTTPCache cacheCompleteFileURLIfExistedWithURL:videoURL];
  322. if (url) {
  323. [CCUtility copyFileAtPath:[url path] toPath:[CCUtility getDirectoryProviderStorageFileID:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView]];
  324. [[NCManageDatabase sharedInstance] addLocalFileWithMetadata:self.metadataDetail];
  325. [KTVHTTPCache cacheDeleteCacheWithURL:videoURL];
  326. // reload Data Source
  327. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:[[NCManageDatabase sharedInstance] getServerUrl:self.metadataDetail.directoryID] fileID:self.metadataDetail.fileID action:k_action_MOD];
  328. // Enabled Button Action (the file is in local)
  329. buttonAction.enabled = true;
  330. }
  331. }
  332. }
  333. - (void)setupHTTPCache
  334. {
  335. [KTVHTTPCache cacheSetMaxCacheLength:k_maxHTTPCache];
  336. #if TARGET_IPHONE_SIMULATOR
  337. [KTVHTTPCache logSetConsoleLogEnable:YES];
  338. #endif
  339. NSError * error;
  340. [KTVHTTPCache proxyStart:&error];
  341. if (error) {
  342. NSLog(@"Proxy Start Failure, %@", error);
  343. } else {
  344. NSLog(@"Proxy Start Success");
  345. }
  346. [KTVHTTPCache tokenSetURLFilter:^NSURL * (NSURL * URL) {
  347. NSLog(@"URL Filter reviced URL : %@", URL);
  348. return URL;
  349. }];
  350. [KTVHTTPCache downloadSetUnsupportContentTypeFilter:^BOOL(NSURL * URL, NSString * contentType) {
  351. NSLog(@"Unsupport Content-Type Filter reviced URL : %@, %@", URL, contentType);
  352. return NO;
  353. }];
  354. }
  355. #pragma --------------------------------------------------------------------------------------------
  356. #pragma mark ===== View Image =====
  357. #pragma --------------------------------------------------------------------------------------------
  358. - (void)viewImage
  359. {
  360. self.photoBrowser = [[MWPhotoBrowser alloc] initWithDelegate:self];
  361. indexNowVisible = -1;
  362. fileIDNowVisible = nil;
  363. [self.photos removeAllObjects];
  364. [dataSourceDirectoryID removeAllObjects];
  365. // if not images, exit
  366. if ([self.photoDataSource count] == 0)
  367. return;
  368. // test
  369. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:_metadataDetail.directoryID];
  370. if (!serverUrl)
  371. return;
  372. NSUInteger index = 0;
  373. for (tableMetadata *metadata in self.photoDataSource) {
  374. // start from here ?
  375. if (self.metadataDetail.fileID && [metadata.fileID isEqualToString:self.metadataDetail.fileID])
  376. [self.photoBrowser setCurrentPhotoIndex:index];
  377. [self.photos addObject:[MWPhoto photoWithImage:nil]];
  378. // add directory
  379. [dataSourceDirectoryID addObject:metadata.directoryID];
  380. index++;
  381. }
  382. // PhotoBrowser
  383. self.photoBrowser.displayActionButton = YES;
  384. self.photoBrowser.displayDeleteButton = YES;
  385. if ([CCUtility isFolderEncrypted:serverUrl account:appDelegate.activeAccount]) // E2EE
  386. self.photoBrowser.displayShareButton = NO;
  387. else
  388. self.photoBrowser.displayShareButton = YES;
  389. self.photoBrowser.displayNavArrows = YES;
  390. self.photoBrowser.displaySelectionButtons = NO;
  391. self.photoBrowser.alwaysShowControls = NO;
  392. self.photoBrowser.zoomPhotosToFill = NO;
  393. self.photoBrowser.autoPlayOnAppear = NO;
  394. self.photoBrowser.delayToHideElements = 15;
  395. if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPad)
  396. self.photoBrowser.enableSwipeToDismiss = NO;
  397. if (self.traitCollection.horizontalSizeClass == UIUserInterfaceSizeClassCompact) {
  398. [self addChildViewController:self.photoBrowser];
  399. [self.view addSubview:self.photoBrowser.view];
  400. [self.photoBrowser didMoveToParentViewController:self];
  401. } else {
  402. [self.navigationController pushViewController:self.photoBrowser animated:NO];
  403. }
  404. }
  405. - (NSUInteger)numberOfPhotosInPhotoBrowser:(MWPhotoBrowser *)photoBrowser
  406. {
  407. return [self.photoDataSource count];
  408. }
  409. - (NSString *)photoBrowser:(MWPhotoBrowser *)photoBrowser titleForPhotoAtIndex:(NSUInteger)index
  410. {
  411. tableMetadata *metadata = [self.photoDataSource objectAtIndex:index];
  412. NSString *titleDir = metadata.fileNameView;
  413. self.title = titleDir;
  414. return titleDir;
  415. }
  416. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser didDisplayPhotoAtIndex:(NSUInteger)index
  417. {
  418. tableMetadata *metadata = [self.photoDataSource objectAtIndex:index];
  419. indexNowVisible = index;
  420. fileIDNowVisible = metadata.fileID;
  421. photoBrowser.toolbar.hidden = NO;
  422. // Download image ?
  423. if (metadata) {
  424. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  425. NSInteger status;
  426. tableMetadata *metadataDB = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  427. if (metadataDB) {
  428. status = metadataDB.status;
  429. } else {
  430. status = k_metadataStatusNormal;
  431. }
  432. NSString *ext = [[metadata.fileNameView pathExtension] uppercaseString];
  433. if ([CCUtility fileProviderStorageExists:metadata.fileID fileNameView:metadata.fileNameView] == NO && status == k_metadataStatusNormal) {
  434. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]] == NO) {
  435. [CCGraphics addImageToTitle:NSLocalizedString(@"_...loading..._", nil) colorTitle:[NCBrandColor sharedInstance].brandText imageTitle:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"load"] multiplier:2 color:[NCBrandColor sharedInstance].brandText] imageRight:NO navigationItem:self.navigationItem];
  436. CGFloat width = [[NCUtility sharedInstance] getScreenWidthForPreview];
  437. CGFloat height = [[NCUtility sharedInstance] getScreenHeightForPreview];
  438. OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:nil metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
  439. [ocNetworking downloadPreviewWithMetadata:metadata serverUrl:serverUrl withWidth:width andHeight:height completion:^(NSString *message, NSInteger errorCode) {
  440. self.navigationItem.titleView = nil;
  441. self.title = metadata.fileNameView;
  442. if (([CCUtility getOptimizedPhoto] == YES && errorCode != 0) || [CCUtility getOptimizedPhoto] == NO || [ext isEqualToString:@"GIF"]) {
  443. [self downloadPhotoBrowser:metadata serverUrl:serverUrl];
  444. }
  445. [self.photoBrowser reloadData];
  446. }];
  447. } else {
  448. if ([CCUtility getOptimizedPhoto] == NO || [ext isEqualToString:@"GIF"]) {
  449. [self downloadPhotoBrowser:metadata serverUrl:serverUrl];
  450. }
  451. }
  452. }
  453. }
  454. // Title
  455. if (metadata)
  456. self.title = metadata.fileNameView;
  457. }
  458. - (id <MWPhoto>)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:(NSUInteger)index
  459. {
  460. UIImage *image;
  461. tableMetadata *metadata = [self.photoDataSource objectAtIndex:index];
  462. if (index < self.photos.count) {
  463. if (metadata.fileID) {
  464. UIImage *imagePreview = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  465. // if (!imagePreview) imagePreview = [CCGraphics changeThemingColorImage:[UIImage imageNamed:@"file_photo"] multiplier:3 color:[[NCBrandColor sharedInstance] icon]];
  466. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
  467. NSString *fileImage = [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileNameView];
  468. NSString *ext = [CCUtility getExtension:metadata.fileNameView];
  469. if ([ext isEqualToString:@"GIF"]) image = [UIImage animatedImageWithAnimatedGIFURL:[NSURL fileURLWithPath:fileImage]];
  470. else image = [UIImage imageWithContentsOfFile:fileImage];
  471. if (image) {
  472. MWPhoto *photo = [MWPhoto photoWithImage:image];
  473. // Location ??
  474. [self setLocationCaptionPhoto:photo fileID:metadata.fileID];
  475. [self.photos replaceObjectAtIndex:index withObject:photo];
  476. } else {
  477. if (metadata.status == k_metadataStatusDownloadError) {
  478. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewError"]]];
  479. } else {
  480. if (imagePreview)
  481. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:imagePreview]];
  482. }
  483. }
  484. }
  485. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video]) {
  486. if ([CCUtility fileProviderStorageExists:metadata.fileID fileNameView:metadata.fileNameView]) {
  487. NSURL *url = [NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  488. MWPhoto *video = [MWPhoto photoWithImage:[CCGraphics thumbnailImageForVideo:url atTime:1.0]];
  489. video.videoURL = url;
  490. [self.photos replaceObjectAtIndex:index withObject:video];
  491. } else {
  492. if (metadata.status == k_metadataStatusDownloadError) {
  493. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewError"]]];
  494. } else {
  495. if (imagePreview)
  496. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:imagePreview]];
  497. }
  498. }
  499. }
  500. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_audio]) {
  501. if ([CCUtility fileProviderStorageExists:metadata.fileID fileNameView:metadata.fileNameView]) {
  502. MWPhoto *audio;
  503. UIImage *audioImage;
  504. NSURL *url = [NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  505. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]]) {
  506. audioImage = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  507. } else {
  508. audioImage = [UIImage imageNamed:@"notaMusic"]; //[CCGraphics scaleImage:[UIImage imageNamed:@"notaMusic"] toSize:CGSizeMake(200, 200) isAspectRation:YES];
  509. }
  510. audio = [MWPhoto photoWithImage:audioImage];
  511. audio.videoURL = url;
  512. [self.photos replaceObjectAtIndex:index withObject:audio];
  513. } else {
  514. if (metadata.status == k_metadataStatusDownloadError) {
  515. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewError"]]];
  516. } else {
  517. if (imagePreview)
  518. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:imagePreview]];
  519. }
  520. }
  521. }
  522. }
  523. // energy saving memory
  524. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  525. int iPrev = (int)index - 2;
  526. if (iPrev >= 0) {
  527. if ([self.photos objectAtIndex:iPrev] != nil)
  528. [self.photos replaceObjectAtIndex:iPrev withObject:[MWPhoto photoWithImage:nil]];
  529. }
  530. int iNext = (int)index + 2;
  531. if (iNext < _photos.count) {
  532. if ([self.photos objectAtIndex:iNext] != nil)
  533. [self.photos replaceObjectAtIndex:iNext withObject:[MWPhoto photoWithImage:nil]];
  534. }
  535. });
  536. return [self.photos objectAtIndex:index];
  537. }
  538. return nil;
  539. }
  540. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser actionButtonPressedForPhotoAtIndex:(NSUInteger)index
  541. {
  542. tableMetadata *metadata = [self.photoDataSource objectAtIndex:index];
  543. if (metadata == nil) return;
  544. docController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileNameView:metadata.fileNameView]]];
  545. docController.delegate = self;
  546. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
  547. [docController presentOptionsMenuFromRect:photoBrowser.view.frame inView:photoBrowser.view animated:YES];
  548. [docController presentOptionsMenuFromBarButtonItem:photoBrowser.actionButton animated:YES];
  549. }
  550. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser shareButtonPressedForPhotoAtIndex:(NSUInteger)index
  551. {
  552. tableMetadata *metadata = [self.photoDataSource objectAtIndex:index];
  553. [appDelegate.activeMain openWindowShare:metadata];
  554. }
  555. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser deleteButtonPressedForPhotoAtIndex:(NSUInteger)index deleteButton:(UIBarButtonItem *)deleteButton
  556. {
  557. tableMetadata *metadata = [self.photoDataSource objectAtIndex:index];
  558. if (metadata == nil || [CCUtility fileProviderStorageExists:metadata.fileID fileNameView:metadata.fileNameView] == NO) {
  559. [appDelegate messageNotification:@"_info_" description:@"_file_not_found_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  560. return;
  561. }
  562. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  563. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
  564. style:UIAlertActionStyleDestructive
  565. handler:^(UIAlertAction *action) {
  566. [self deleteFile:metadata];
  567. }]];
  568. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
  569. style:UIAlertActionStyleCancel
  570. handler:^(UIAlertAction *action) {
  571. }]];
  572. alertController.popoverPresentationController.barButtonItem = deleteButton;
  573. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  574. [alertController.view layoutIfNeeded];
  575. [self.parentViewController presentViewController:alertController animated:YES completion:NULL];
  576. }
  577. - (void)photoBrowserDidFinishPresentation:(MWPhotoBrowser *)photoBrowser
  578. {
  579. [self.navigationController popViewControllerAnimated:YES];
  580. }
  581. - (void)triggerProgressTask:(NSNotification *)notification
  582. {
  583. /*
  584. NSDictionary *dict = notification.userInfo;
  585. NSString *fileID = [dict valueForKey:@"fileID"];
  586. //NSString *serverUrl = [dict valueForKey:@"serverUrl"];
  587. //long status = [[dict valueForKey:@"status"] longValue];
  588. float progress = [[dict valueForKey:@"progress"] floatValue];
  589. //long long totalBytes = [[dict valueForKey:@"totalBytes"] longLongValue];
  590. //long long totalBytesExpected = [[dict valueForKey:@"totalBytesExpected"] longLongValue];
  591. if ([fileID isEqualToString:_fileIDNowVisible])
  592. [_hud progress:progress];
  593. */
  594. }
  595. - (void)downloadPhotoBrowserSuccessFailure:(tableMetadata *)metadata selector:(NSString *)selector errorCode:(NSInteger)errorCode
  596. {
  597. // if a message for a directory of these
  598. if (![metadata.fileID isEqualToString:fileIDNowVisible])
  599. return;
  600. // Title
  601. self.navigationItem.titleView = nil;
  602. self.title = metadata.fileNameView;
  603. if (errorCode == 0) {
  604. // verifico se esiste l'icona e se la posso creare
  605. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]] == NO) {
  606. [CCGraphics createNewImageFrom:metadata.fileNameView fileID:metadata.fileID extension:[metadata.fileNameView pathExtension] filterGrayScale:NO typeFile:metadata.typeFile writeImage:YES];
  607. }
  608. [self.photoBrowser reloadData];
  609. } else {
  610. [appDelegate messageNotification:@"_download_selected_files_" description:@"_error_download_photobrowser_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  611. [self backNavigationController];
  612. }
  613. }
  614. - (void)downloadPhotoBrowser:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl
  615. {
  616. tableMetadata *metadataForDownload = [[NCManageDatabase sharedInstance] initNewMetadata:metadata];
  617. metadataForDownload.session = k_download_session;
  618. metadataForDownload.sessionError = @"";
  619. metadataForDownload.sessionSelector = selectorLoadViewImage;
  620. metadataForDownload.status = k_metadataStatusWaitDownload;
  621. // Add Metadata for Download
  622. (void)[[NCManageDatabase sharedInstance] addMetadata:metadataForDownload];
  623. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  624. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:serverUrl fileID:metadataForDownload.fileID action:k_action_MOD];
  625. [CCGraphics addImageToTitle:NSLocalizedString(@"_...loading..._", nil) colorTitle:[NCBrandColor sharedInstance].brandText imageTitle:[CCGraphics changeThemingColorImage:[UIImage imageNamed:@"load"] multiplier:2 color:[NCBrandColor sharedInstance].brandText] imageRight:NO navigationItem:self.navigationItem];
  626. }
  627. - (void)insertGeocoderLocation:(NSNotification *)notification
  628. {
  629. if (notification.userInfo.count == 0)
  630. return;
  631. NSString *fileID = [[notification.userInfo allKeys] objectAtIndex:0];
  632. //NSDate *date = [[notification.userInfo allValues] objectAtIndex:0];
  633. // test [Chrash V 1.14,15]
  634. if (indexNowVisible >= [self.photos count])
  635. return;
  636. if ([fileID isEqualToString:fileIDNowVisible]) {
  637. MWPhoto *photo = [self.photos objectAtIndex:indexNowVisible];
  638. [self setLocationCaptionPhoto:photo fileID:fileID];
  639. [self.photoBrowser reloadData];
  640. }
  641. }
  642. - (void)setLocationCaptionPhoto:(MWPhoto *)photo fileID:(NSString *)fileID
  643. {
  644. tableLocalFile *localFile;
  645. // read Geocoder
  646. localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  647. if ([localFile.exifLatitude doubleValue] != 0 || [localFile.exifLongitude doubleValue] != 0) {
  648. // Fix BUG Geo latitude & longitude
  649. if ([localFile.exifLatitude doubleValue] == 9999 || [localFile.exifLongitude doubleValue] == 9999) {
  650. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  651. if (metadata) {
  652. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata];
  653. }
  654. }
  655. [[CCExifGeo sharedInstance] setGeocoderEtag:fileID exifDate:localFile.exifDate latitude:localFile.exifLatitude longitude:localFile.exifLongitude];
  656. localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  657. if ([localFile.exifLatitude floatValue] != 0 || [localFile.exifLongitude floatValue] != 0) {
  658. NSString *location = [[NCManageDatabase sharedInstance] getLocationFromGeoLatitude:localFile.exifLatitude longitude:localFile.exifLongitude];
  659. if ([localFile.exifDate isEqualToDate:[NSDate distantPast]] == NO && location) {
  660. NSString *localizedDateTime = [NSDateFormatter localizedStringFromDate:localFile.exifDate dateStyle:NSDateFormatterFullStyle timeStyle:NSDateFormatterMediumStyle];
  661. photo.caption = [NSString stringWithFormat:NSLocalizedString(@"%@\n%@", nil), localizedDateTime, location];
  662. }
  663. }
  664. }
  665. }
  666. #pragma --------------------------------------------------------------------------------------------
  667. #pragma mark ===== View PDF =====
  668. #pragma --------------------------------------------------------------------------------------------
  669. - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
  670. {
  671. [alertView dismissWithClickedButtonIndex:buttonIndex animated:YES];
  672. [[alertView textFieldAtIndex:0] resignFirstResponder];
  673. if (alertView.tag == alertRequestPasswordPDF) [self performSelector:@selector(viewPDF:) withObject:[alertView textFieldAtIndex:0].text afterDelay:0.3];
  674. }
  675. - (void)viewPDF:(NSString *)password
  676. {
  677. // remove cache PDF
  678. NSString *filePlistReader = [NSString stringWithFormat:@"%@/%@.plist", [CCUtility getDirectoryReaderMetadata], self.metadataDetail.fileNameView.stringByDeletingPathExtension];
  679. [CCUtility removeFileAtPath:filePlistReader];
  680. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageFileID:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView];
  681. if ([CCUtility fileProviderStorageExists:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView] == NO) {
  682. // read file error
  683. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_read_file_error_", nil) preferredStyle:UIAlertControllerStyleAlert];
  684. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  685. [alertController addAction:okAction];
  686. [self presentViewController:alertController animated:YES completion:nil];
  687. }
  688. CGPDFDocumentRef pdf = CGPDFDocumentCreateWithURL((CFURLRef)[NSURL fileURLWithPath:fileNamePath]);
  689. if (pdf) {
  690. // Encrypted
  691. if (CGPDFDocumentIsEncrypted(pdf) == YES) {
  692. // Try a blank password first, per Apple's Quartz PDF example
  693. if (CGPDFDocumentUnlockWithPassword(pdf, "") == YES) {
  694. // blank password
  695. [self readerPDF:fileNamePath password:@""];
  696. } else {
  697. if ([password length] == 0) {
  698. // password request
  699. UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_insert_password_pfd_",nil) message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"_ok_", nil), nil];
  700. [alertView setAlertViewStyle:UIAlertViewStylePlainTextInput];
  701. alertView.tag = alertRequestPasswordPDF;
  702. [alertView show];
  703. } else {
  704. const char *key = [password UTF8String];
  705. // failure
  706. if (CGPDFDocumentUnlockWithPassword(pdf, key) == NO) {
  707. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_password_pdf_error_", nil) preferredStyle:UIAlertControllerStyleAlert];
  708. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  709. [alertController addAction:okAction];
  710. [self presentViewController:alertController animated:YES completion:nil];
  711. } else {
  712. // pdf with password
  713. [self readerPDF:fileNamePath password:password];
  714. }
  715. }
  716. }
  717. } else{
  718. // No password
  719. [self readerPDF:fileNamePath password:@""];
  720. }
  721. } else {
  722. // read file error
  723. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_read_file_error_", nil) preferredStyle:UIAlertControllerStyleAlert];
  724. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  725. [alertController addAction:okAction];
  726. [self presentViewController:alertController animated:YES completion:nil];
  727. }
  728. }
  729. - (void)readerPDF:(NSString *)fileName password:(NSString *)password
  730. {
  731. ReaderDocument *documentPDF = [ReaderDocument withDocumentFilePath:fileName password:password];
  732. CGFloat safeAreaBottom = 0;
  733. if (@available(iOS 11, *)) {
  734. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  735. }
  736. if (documentPDF != nil) {
  737. self.readerPDFViewController = [[ReaderViewController alloc] initWithReaderDocument:documentPDF];
  738. self.readerPDFViewController.delegate = self;
  739. self.readerPDFViewController.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT - safeAreaBottom);
  740. [self.readerPDFViewController updateContentViews];
  741. [self addChildViewController:self.readerPDFViewController];
  742. [self.view addSubview:self.readerPDFViewController.view];
  743. [self.readerPDFViewController didMoveToParentViewController:self];
  744. } else {
  745. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_read_file_error_", nil) preferredStyle:UIAlertControllerStyleAlert];
  746. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  747. [alertController addAction:okAction];
  748. [self presentViewController:alertController animated:YES completion:nil];
  749. }
  750. }
  751. - (void)handleSingleTapReader
  752. {
  753. UILayoutGuide *layoutGuide;
  754. CGFloat safeAreaTop = 0;
  755. CGFloat safeAreaBottom = 0;
  756. if (@available(iOS 11, *)) {
  757. layoutGuide = [UIApplication sharedApplication].delegate.window.safeAreaLayoutGuide;
  758. safeAreaTop = [UIApplication sharedApplication].delegate.window.safeAreaInsets.top;
  759. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  760. }
  761. self.navigationController.navigationBarHidden = !self.navigationController.navigationBarHidden;
  762. self.toolbar.hidden = !self.toolbar.isHidden;
  763. if (self.toolbar.isHidden) {
  764. self.readerPDFViewController.view.frame = CGRectMake(0, safeAreaTop, self.view.bounds.size.width, self.view.bounds.size.height - safeAreaTop - safeAreaBottom);
  765. } else {
  766. self.readerPDFViewController.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT - safeAreaBottom);
  767. }
  768. [self.readerPDFViewController updateContentViews];
  769. }
  770. - (void)handleSwipeUpDown
  771. {
  772. // REMOVE IT'S UNUSABLE
  773. /*
  774. self.navigationController.navigationBarHidden = false; // iOS App is unusable after swipe up or down with PDF in fullscreen #526
  775. [self removeAllView];
  776. [self.navigationController popViewControllerAnimated:YES];
  777. */
  778. }
  779. #pragma --------------------------------------------------------------------------------------------
  780. #pragma mark ===== Delete =====
  781. #pragma --------------------------------------------------------------------------------------------
  782. - (void)deleteFile:(tableMetadata *)metadata
  783. {
  784. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  785. tableDirectory *tableDirectory = [[NCManageDatabase sharedInstance] getTableDirectoryWithPredicate:[NSPredicate predicateWithFormat:@"account == %@ AND e2eEncrypted == 1 AND serverUrl == %@", appDelegate.activeAccount, serverUrl]];
  786. [[NCMainCommon sharedInstance ] deleteFileWithMetadatas:[[NSArray alloc] initWithObjects:metadata, nil] e2ee:tableDirectory.e2eEncrypted serverUrl:serverUrl folderFileID:tableDirectory.fileID completion:^(NSInteger errorCode, NSString *message) {
  787. if (errorCode == 0) {
  788. // reload data source
  789. [[NCMainCommon sharedInstance] reloadDatasourceWithServerUrl:serverUrl fileID:metadata.fileID action:k_action_DEL];
  790. // Not image
  791. if ([self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_image] == NO) {
  792. // exit
  793. [self backNavigationController];
  794. } else {
  795. for (NSUInteger index=0; index < [self.photoDataSource count] && _photoBrowser; index++ ) {
  796. tableMetadata *metadataTemp = [self.photoDataSource objectAtIndex:index];
  797. if ([metadata isInvalidated] || [metadataTemp.fileID isEqualToString:metadata.fileID]) {
  798. [self.photoDataSource removeObjectAtIndex:index];
  799. [self.photos removeObjectAtIndex:index];
  800. [self.photoBrowser reloadData];
  801. // exit
  802. if ([self.photoDataSource count] == 0) {
  803. [self backNavigationController];
  804. }
  805. }
  806. }
  807. }
  808. } else {
  809. NSLog(@"[LOG] DeleteFileOrFolder failure error %d, %@", (int)errorCode, message);
  810. }
  811. }];
  812. }
  813. #pragma --------------------------------------------------------------------------------------------
  814. #pragma mark ===== ButtonPressed =====
  815. #pragma --------------------------------------------------------------------------------------------
  816. - (void)dismissTextView
  817. {
  818. if (self.webView) {
  819. NSString *fileNamePath = [NSTemporaryDirectory() stringByAppendingString:self.metadataDetail.fileNameView];
  820. [[NSFileManager defaultManager] removeItemAtPath:fileNamePath error:nil];
  821. [[NSFileManager defaultManager] linkItemAtPath:[CCUtility getDirectoryProviderStorageFileID:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView] toPath:fileNamePath error:nil];
  822. [self.webView reload];
  823. }
  824. }
  825. - (void)modifyTxtButtonPressed:(UIBarButtonItem *)sender
  826. {
  827. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", self.metadataDetail.fileID]];
  828. if (metadata) {
  829. UINavigationController* navigationController = [[UIStoryboard storyboardWithName:@"NCText" bundle:nil] instantiateViewControllerWithIdentifier:@"NCText"];
  830. NCText *viewController = (NCText *)navigationController.topViewController;
  831. viewController.metadata = metadata;
  832. viewController.delegate = self;
  833. navigationController.modalPresentationStyle = UIModalPresentationPageSheet;
  834. navigationController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
  835. [self presentViewController:navigationController animated:YES completion:nil];
  836. }
  837. }
  838. - (void)actionButtonPressed:(UIBarButtonItem *)sender
  839. {
  840. if ([self.metadataDetail.fileNameView length] == 0) return;
  841. NSString *filePath = [CCUtility getDirectoryProviderStorageFileID:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView];
  842. docController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
  843. docController.delegate = self;
  844. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
  845. [docController presentOptionsMenuFromRect:self.view.frame inView:self.view animated:YES];
  846. [docController presentOptionsMenuFromBarButtonItem:sender animated:YES];
  847. }
  848. - (void)shareButtonPressed:(UIBarButtonItem *)sender
  849. {
  850. [appDelegate.activeMain openWindowShare:self.metadataDetail];
  851. }
  852. - (void)deleteButtonPressed:(UIBarButtonItem *)sender
  853. {
  854. if ([self.metadataDetail.fileNameView length] == 0) return;
  855. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  856. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
  857. style:UIAlertActionStyleDestructive
  858. handler:^(UIAlertAction *action) {
  859. [self deleteFile:self.metadataDetail];
  860. }]];
  861. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
  862. style:UIAlertActionStyleCancel
  863. handler:^(UIAlertAction *action) {
  864. [alertController dismissViewControllerAnimated:YES completion:nil];
  865. }]];
  866. alertController.popoverPresentationController.barButtonItem = buttonDelete;
  867. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  868. [alertController.view layoutIfNeeded];
  869. [self presentViewController:alertController animated:YES completion:NULL];
  870. }
  871. @end