CCDetail.m 53 KB

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