CCDetail.m 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154
  1. //
  2. // CCDetail.m
  3. // Crypto Cloud Technology Nextcloud
  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 "NCBridgeSwift.h"
  27. #define TOOLBAR_HEIGHT 49.0f
  28. #define alertRequestPasswordPDF 1
  29. @interface CCDetail () <CCActionsDeleteDelegate>
  30. {
  31. AppDelegate *appDelegate;
  32. UIToolbar *_toolbar;
  33. UIBarButtonItem *_buttonModifyTxt;
  34. UIBarButtonItem *_buttonAction;
  35. UIBarButtonItem *_buttonShare;
  36. UIBarButtonItem *_buttonDelete;
  37. NSInteger _indexNowVisible;
  38. NSString *_fileIDNowVisible;
  39. BOOL _reload;
  40. NSMutableOrderedSet *_dataSourceDirectoryID;
  41. NSString *_fileNameExtension;
  42. }
  43. @end
  44. @implementation CCDetail
  45. #pragma --------------------------------------------------------------------------------------------
  46. #pragma mark ===== init =====
  47. #pragma --------------------------------------------------------------------------------------------
  48. - (id)initWithCoder:(NSCoder *)aDecoder
  49. {
  50. if (self = [super initWithCoder:aDecoder]) {
  51. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:@"NotificationProgressTask" object:nil];
  52. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:@"changeTheming" object:nil];
  53. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(backNavigationController) name:@"detailBack" object:nil];
  54. self.metadataDetail = [[tableMetadata alloc] init];
  55. self.photos = [[NSMutableArray alloc] init];
  56. self.thumbs = [[NSMutableArray alloc] init];
  57. self.dataSourceImagesVideos = [[NSMutableArray alloc] init];
  58. _dataSourceDirectoryID = [[NSMutableOrderedSet alloc] init];
  59. _indexNowVisible = -1;
  60. _fileIDNowVisible = nil;
  61. app.activeDetail = self;
  62. }
  63. return self;
  64. }
  65. #pragma --------------------------------------------------------------------------------------------
  66. #pragma mark ===== View =====
  67. #pragma --------------------------------------------------------------------------------------------
  68. - (void)viewDidLoad
  69. {
  70. [super viewDidLoad];
  71. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  72. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(insertGeocoderLocation:) name:@"insertGeocoderLocation" object:nil];
  73. self.imageBackground.image = [UIImage imageNamed:@"backgroundDetail"];
  74. if ([self.metadataDetail.fileName length] > 0 || [self.metadataDetail.directoryID length] > 0 || [self.metadataDetail.fileID length] > 0) {
  75. // open view
  76. [self viewFile];
  77. }
  78. }
  79. // Apparirà
  80. - (void)viewWillAppear:(BOOL)animated
  81. {
  82. [super viewWillAppear:animated];
  83. if (self.splitViewController.isCollapsed) {
  84. self.tabBarController.tabBar.hidden = YES;
  85. self.tabBarController.tabBar.translucent = YES;
  86. }
  87. if (self.splitViewController.isCollapsed)
  88. [app plusButtonVisibile:false];
  89. }
  90. // E' scomparso
  91. - (void)viewDidDisappear:(BOOL)animated
  92. {
  93. [super viewDidDisappear:animated];
  94. // remove all
  95. if (self.isMovingFromParentViewController)
  96. [self removeAllView];
  97. }
  98. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  99. {
  100. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  101. }];
  102. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  103. }
  104. // remove all view
  105. - (void)removeAllView
  106. {
  107. // Audio
  108. if (appDelegate.player)
  109. [appDelegate.player removeFromSuperview];
  110. // Document
  111. if (_webView) {
  112. [_webView removeFromSuperview];
  113. _webView = nil;
  114. }
  115. // PDF
  116. if (_readerPDFViewController) {
  117. [_readerPDFViewController.view removeFromSuperview];
  118. _readerPDFViewController.delegate = nil;
  119. _readerPDFViewController = nil;
  120. }
  121. // Photo-Video
  122. if (_photoBrowser) {
  123. [_photos removeAllObjects];
  124. [_thumbs removeAllObjects];
  125. _photoBrowser.delegate = nil;
  126. _photoBrowser = nil;
  127. }
  128. // ToolBar
  129. if (_toolbar) {
  130. [_toolbar removeFromSuperview];
  131. _toolbar = nil;
  132. }
  133. // Title
  134. self.title = nil;
  135. }
  136. - (void)backNavigationController
  137. {
  138. [self removeAllView];
  139. [self.navigationController popViewControllerAnimated:NO];
  140. }
  141. - (void)changeToDisplayMode
  142. {
  143. if (_readerPDFViewController)
  144. [self.readerPDFViewController updateContentViews];
  145. }
  146. - (void)createToolbar
  147. {
  148. _toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, self.view.bounds.size.height - TOOLBAR_HEIGHT, self.view.bounds.size.width, TOOLBAR_HEIGHT)];
  149. UIBarButtonItem *flexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
  150. UIBarButtonItem *fixedSpaceMini = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:self action:nil];
  151. fixedSpaceMini.width = 25;
  152. _buttonModifyTxt = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"actionSheetModify"] style:UIBarButtonItemStylePlain target:self action:@selector(modifyTxtButtonPressed:)];
  153. _buttonAction = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"actionSheetOpenIn"] style:UIBarButtonItemStylePlain target:self action:@selector(actionButtonPressed:)];
  154. _buttonShare = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"actionSheetShare"] style:UIBarButtonItemStylePlain target:self action:@selector(shareButtonPressed:)];
  155. _buttonDelete = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemTrash target:self action:@selector(deleteButtonPressed:)];
  156. if ([_fileNameExtension isEqualToString:@"TXT"])
  157. [_toolbar setItems:[NSArray arrayWithObjects: _buttonModifyTxt, flexible, _buttonDelete, fixedSpaceMini, _buttonShare, fixedSpaceMini, _buttonAction, nil]];
  158. else
  159. [_toolbar setItems:[NSArray arrayWithObjects: flexible, _buttonDelete, fixedSpaceMini, _buttonShare, fixedSpaceMini, _buttonAction, nil]];
  160. [_toolbar setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  161. _toolbar.barTintColor = [NCBrandColor sharedInstance].tabBar;
  162. _toolbar.tintColor = [NCBrandColor sharedInstance].brand;
  163. [self.view addSubview:_toolbar];
  164. }
  165. - (void)changeTheming
  166. {
  167. if (self.isViewLoaded && self.view.window)
  168. [app changeTheming:self];
  169. if (_toolbar) {
  170. _toolbar.barTintColor = [NCBrandColor sharedInstance].tabBar;
  171. _toolbar.tintColor = [NCBrandColor sharedInstance].brand;
  172. }
  173. }
  174. #pragma --------------------------------------------------------------------------------------------
  175. #pragma mark ===== View File =====
  176. #pragma --------------------------------------------------------------------------------------------
  177. - (void)viewFile
  178. {
  179. // verifico se esiste l'icona e se la posso creare
  180. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@.ico", app.directoryUser, self.metadataDetail.fileID]] == NO) {
  181. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),^{
  182. [CCGraphics createNewImageFrom:self.metadataDetail.fileID directoryUser:app.directoryUser fileNameTo:self.metadataDetail.fileID fileNamePrint:self.metadataDetail.fileNamePrint size:@"m" imageForUpload:NO typeFile:self.metadataDetail.typeFile writePreview:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  183. });
  184. }
  185. if ([self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_image] || [self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_video]) {
  186. self.edgesForExtendedLayout = UIRectEdgeAll;
  187. [self viewImage];
  188. }
  189. if ([self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_audio]) {
  190. self.edgesForExtendedLayout = UIRectEdgeBottom;
  191. [self viewAudio];
  192. [self createToolbar];
  193. [app aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
  194. }
  195. if ([self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_document]) {
  196. _fileNameExtension = [[self.metadataDetail.fileNamePrint pathExtension] uppercaseString];
  197. if ([_fileNameExtension isEqualToString:@"PDF"]) {
  198. self.edgesForExtendedLayout = UIRectEdgeBottom;
  199. [self viewPDF:@""];
  200. [self createToolbar];
  201. [app aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
  202. } else {
  203. self.edgesForExtendedLayout = UIRectEdgeBottom;
  204. [self viewDocument];
  205. [self createToolbar];
  206. [app aspectNavigationControllerBar:self.navigationController.navigationBar encrypted:NO online:[app.reachability isReachable] hidden:NO];
  207. }
  208. }
  209. }
  210. #pragma --------------------------------------------------------------------------------------------
  211. #pragma mark ===== View Audio =====
  212. #pragma --------------------------------------------------------------------------------------------
  213. - (void)viewAudio
  214. {
  215. NSString *fileName;
  216. if (_sourceDirectoryLocal) {
  217. fileName = [NSString stringWithFormat:@"%@/%@", self.metadataDetail.directoryID, self.metadataDetail.fileNamePrint];
  218. } else {
  219. fileName = [NSString stringWithFormat:@"%@/%@", [CCUtility getDirectoryAudio], self.metadataDetail.fileNamePrint];
  220. [[NSFileManager defaultManager] removeItemAtPath:fileName error:nil];
  221. [[NSFileManager defaultManager] linkItemAtPath:[NSString stringWithFormat:@"%@/%@", app.directoryUser, self.metadataDetail.fileID] toPath:fileName error:nil];
  222. }
  223. appDelegate.player.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT);
  224. appDelegate.player.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
  225. appDelegate.player.nextButton.hidden = true;
  226. appDelegate.player.previousButton.hidden = true;
  227. appDelegate.player.fullscreenButton_.hidden = true;
  228. LMMediaItem *item = [[LMMediaItem alloc] initWithInfo:@{LMMediaItemInfoURLKey:[NSURL fileURLWithPath:fileName], LMMediaItemInfoContentTypeKey:@(LMMediaItemContentTypeVideo)}];
  229. item.title = self.metadataDetail.fileNamePrint;
  230. item.artist = [NCBrandOptions sharedInstance].brand;
  231. [appDelegate.player.mediaPlayer removeAllMediaInQueue];
  232. [appDelegate.player.mediaPlayer addMedia:item];
  233. [appDelegate.player.mediaPlayer play];
  234. // Info
  235. NSMutableDictionary *songInfo = [[NSMutableDictionary alloc] init];
  236. [songInfo setObject:app.player.mediaPlayer.nowPlayingItem.title forKey:MPMediaItemPropertyTitle];
  237. [songInfo setObject:app.player.mediaPlayer.nowPlayingItem.artist forKey:MPMediaItemPropertyArtist];
  238. [[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:songInfo];
  239. [self.view addSubview:appDelegate.player];
  240. }
  241. #pragma --------------------------------------------------------------------------------------------
  242. #pragma mark ===== View Document =====
  243. #pragma --------------------------------------------------------------------------------------------
  244. - (void)viewDocument
  245. {
  246. NSString *fileName;
  247. if (_sourceDirectoryLocal) {
  248. fileName = [NSString stringWithFormat:@"%@/%@", self.metadataDetail.directoryID, self.metadataDetail.fileNamePrint];
  249. } else {
  250. fileName = [NSTemporaryDirectory() stringByAppendingString:self.metadataDetail.fileNamePrint];
  251. [[NSFileManager defaultManager] removeItemAtPath:fileName error:nil];
  252. [[NSFileManager defaultManager] linkItemAtPath:[NSString stringWithFormat:@"%@/%@", app.directoryUser, self.metadataDetail.fileID] toPath:fileName error:nil];
  253. }
  254. NSURL *url = [NSURL fileURLWithPath:fileName];
  255. WKPreferences *wkPreferences = [[WKPreferences alloc] init];
  256. wkPreferences.javaScriptEnabled = false;
  257. WKWebViewConfiguration *wkConfig = [[WKWebViewConfiguration alloc] init];
  258. wkConfig.preferences = wkPreferences;
  259. self.webView = [[WKWebView alloc] initWithFrame:(CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT)) configuration:wkConfig];
  260. self.webView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
  261. [self.webView setBackgroundColor:[UIColor whiteColor]];
  262. [self.webView setOpaque:NO];
  263. if ( [_fileNameExtension isEqualToString:@"CSS"] || [_fileNameExtension isEqualToString:@"PY"] || [_fileNameExtension isEqualToString:@"XML"] || [_fileNameExtension isEqualToString:@"JS"] ) {
  264. NSMutableURLRequest *headRequest = [NSMutableURLRequest requestWithURL:[NSURL fileURLWithPath:fileName]];
  265. [headRequest setHTTPMethod:@"HEAD"];
  266. NSHTTPURLResponse *headResponse;
  267. NSError *error = nil;
  268. [NSURLConnection sendSynchronousRequest:headRequest returningResponse:&headResponse error:&error];
  269. if (error != nil) {
  270. NSLog(@"[LOG] loadURLWithString %@",[error localizedDescription]);
  271. }
  272. NSString *dataFile = [[NSString alloc] initWithData:[NSData dataWithContentsOfURL:url] encoding:NSASCIIStringEncoding];
  273. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
  274. [self.webView loadHTMLString:[NSString stringWithFormat:@"<div style='font-size:%@;font-family:%@;'><pre>%@",@"40",@"Sans-Serif",dataFile] baseURL:nil];
  275. }else{
  276. [self.webView loadHTMLString:[NSString stringWithFormat:@"<div style='font-size:%@;font-family:%@;'><pre>%@",@"20",@"Sans-Serif",dataFile] baseURL:nil];
  277. }
  278. } else if ([_fileNameExtension isEqualToString:@"TXT"]) {
  279. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  280. NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration delegate:nil delegateQueue:nil];
  281. NSMutableURLRequest *headRequest = [NSMutableURLRequest requestWithURL:url];
  282. [headRequest setHTTPMethod:@"HEAD"];
  283. NSURLSessionDataTask *task = [session dataTaskWithRequest:headRequest completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
  284. [self.webView loadData:[NSData dataWithContentsOfURL: url] MIMEType:response.MIMEType characterEncodingName:@"utf-8" baseURL:url];
  285. }];
  286. [task resume];
  287. } else {
  288. [self.webView loadRequest:[NSMutableURLRequest requestWithURL:url]];
  289. }
  290. [self.view addSubview:self.webView];
  291. }
  292. #pragma --------------------------------------------------------------------------------------------
  293. #pragma mark ===== View Image =====
  294. #pragma --------------------------------------------------------------------------------------------
  295. - (void)viewImage
  296. {
  297. self.photoBrowser = [[MWPhotoBrowser alloc] initWithDelegate:self];
  298. _reload = NO;
  299. _indexNowVisible = -1;
  300. _fileIDNowVisible = nil;
  301. [self.photos removeAllObjects];
  302. [self.thumbs removeAllObjects];
  303. [_dataSourceDirectoryID removeAllObjects];
  304. // if not images, exit
  305. if ([self.dataSourceImagesVideos count] == 0) return;
  306. NSUInteger index = 0;
  307. for (tableMetadata *metadata in self.dataSourceImagesVideos) {
  308. // start from here ?
  309. if (self.metadataDetail.fileID && [metadata.fileID isEqualToString:self.metadataDetail.fileID])
  310. [self.photoBrowser setCurrentPhotoIndex:index];
  311. if (metadata.cryptated) {
  312. [self.photos addObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewDownloadCrypto"]]];
  313. [self.thumbs addObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewDownloadCrypto"]]];
  314. } else {
  315. [self.photos addObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewDownload"]]];
  316. MWPhoto *thumb = [MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewDownload"]];
  317. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video]) thumb.isVideo = YES;
  318. [self.thumbs addObject:thumb];
  319. }
  320. // add directory
  321. [_dataSourceDirectoryID addObject:metadata.directoryID];
  322. index++;
  323. }
  324. // PhotoBrowser
  325. self.photoBrowser.displayActionButton = YES;
  326. self.photoBrowser.displayDeleteButton = YES;
  327. self.photoBrowser.displayNavArrows = YES;
  328. self.photoBrowser.displaySelectionButtons = NO;
  329. self.photoBrowser.alwaysShowControls = NO;
  330. self.photoBrowser.zoomPhotosToFill = NO;
  331. self.photoBrowser.startOnGrid = NO;
  332. self.photoBrowser.autoPlayOnAppear = NO;
  333. self.photoBrowser.delayToHideElements = 15;
  334. self.photoBrowser.enableGrid = YES;
  335. if (self.traitCollection.horizontalSizeClass == UIUserInterfaceSizeClassCompact) {
  336. [self addChildViewController:self.photoBrowser];
  337. [self.view addSubview:self.photoBrowser.view];
  338. [self.photoBrowser didMoveToParentViewController:self];
  339. } else {
  340. [self.navigationController pushViewController:self.photoBrowser animated:NO];
  341. }
  342. }
  343. - (NSUInteger)numberOfPhotosInPhotoBrowser:(MWPhotoBrowser *)photoBrowser
  344. {
  345. return [self.dataSourceImagesVideos count];
  346. }
  347. - (NSString *)photoBrowser:(MWPhotoBrowser *)photoBrowser titleForPhotoAtIndex:(NSUInteger)index
  348. {
  349. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  350. NSString *titleDir = metadata.fileNamePrint;
  351. self.title = titleDir;
  352. return titleDir;
  353. }
  354. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser didDisplayPhotoAtIndex:(NSUInteger)index
  355. {
  356. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  357. NSString *directory;
  358. _indexNowVisible = index;
  359. _fileIDNowVisible = metadata.fileID;
  360. photoBrowser.toolbar.hidden = NO;
  361. if (_sourceDirectoryLocal)
  362. directory = self.metadataDetail.directoryID;
  363. else
  364. directory = app.directoryUser;
  365. // Download image ?
  366. if (metadata) {
  367. tableMetadata *metadataDB = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", metadata.fileID]];
  368. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", directory, metadata.fileID]] == NO && [metadataDB.session length] == 0)
  369. [self downloadPhotoBrowser:metadata];
  370. }
  371. // Title
  372. if (metadata && !photoBrowser.isGridController)
  373. self.title = metadata.fileNamePrint;
  374. if (_reload) {
  375. [self.photoBrowser performSelector:@selector(reloadData) withObject:nil];
  376. _reload = NO;
  377. }
  378. }
  379. - (id <MWPhoto>)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:(NSUInteger)index
  380. {
  381. NSString *directory;
  382. UIImage *image;
  383. if (_sourceDirectoryLocal)
  384. directory = self.metadataDetail.directoryID;
  385. else
  386. directory = app.directoryUser;
  387. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  388. if (index < self.photos.count) {
  389. if (metadata.fileID) {
  390. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
  391. NSString *fileImage = [NSString stringWithFormat:@"%@/%@", directory, metadata.fileID];
  392. NSString *ext = [CCUtility getExtension:metadata.fileNamePrint];
  393. if ([ext isEqualToString:@"GIF"]) image = [UIImage animatedImageWithAnimatedGIFURL:[NSURL fileURLWithPath:fileImage]];
  394. else image = [UIImage imageWithContentsOfFile:fileImage];
  395. if (image) {
  396. MWPhoto *photo = [MWPhoto photoWithImage:image];
  397. // Location ??
  398. [self setLocationCaptionPhoto:photo fileID:metadata.fileID];
  399. [self.photos replaceObjectAtIndex:index withObject:photo];
  400. } else {
  401. if ([metadata.sessionError length] > 0 ) {
  402. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewError"]]];
  403. } else {
  404. image = [CCGraphics drawText:[NSLocalizedString(@"_loading_", nil) stringByAppendingString:@"..."] inImage:[UIImage imageNamed:@"button1000x200"] colorText:[UIColor darkGrayColor] sizeOfFont:50];
  405. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:image]];
  406. }
  407. }
  408. }
  409. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video]) {
  410. if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", directory, metadata.fileID]]) {
  411. // remove and make the simbolic link in temp
  412. NSString *toPath = [NSTemporaryDirectory() stringByAppendingString:metadata.fileNamePrint];
  413. [[NSFileManager defaultManager] removeItemAtPath:toPath error:nil];
  414. [[NSFileManager defaultManager] linkItemAtPath:[NSString stringWithFormat:@"%@/%@", directory, metadata.fileID] toPath:toPath error:nil];
  415. NSURL *url = [NSURL fileURLWithPath:toPath];
  416. MWPhoto *video = [MWPhoto photoWithImage:[CCGraphics thumbnailImageForVideo:url atTime:1.0]];
  417. video.videoURL = url;
  418. [self.photos replaceObjectAtIndex:index withObject:video];
  419. } else {
  420. if ([metadata.sessionError length] > 0 ) {
  421. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewError"]]];
  422. } else {
  423. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:[CCGraphics drawText:[NSLocalizedString(@"_loading_", nil) stringByAppendingString:@"..."] inImage:[UIImage imageNamed:@"button1000x200"] colorText:[UIColor darkGrayColor] sizeOfFont:50]]];
  424. }
  425. }
  426. }
  427. }
  428. // energy saving memory
  429. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  430. int iPrev = (int)index - 2;
  431. if (iPrev >= 0) {
  432. if ([self.photos objectAtIndex:iPrev] != nil)
  433. [self.photos replaceObjectAtIndex:iPrev withObject:[MWPhoto photoWithImage:nil]];
  434. }
  435. int iNext = (int)index + 2;
  436. if (iNext < _photos.count) {
  437. if ([self.photos objectAtIndex:iNext] != nil)
  438. [self.photos replaceObjectAtIndex:iNext withObject:[MWPhoto photoWithImage:nil]];
  439. }
  440. });
  441. return [self.photos objectAtIndex:index];
  442. }
  443. return nil;
  444. }
  445. - (void)gridWillAppear:(MWPhotoBrowser *)photoBrowser
  446. {
  447. // reload [BUG]
  448. [self.photoBrowser reloadData];
  449. // in grid clear all MWPhoto : energy saving memory
  450. if (self.photos.count > 1 && [self.dataSourceImagesVideos count] > 0) {
  451. for(int index=0; index < self.photos.count; index++)
  452. [_photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:nil]];
  453. }
  454. self.title = [NSString stringWithFormat:@"Album %lu %@", (unsigned long)_photos.count, NSLocalizedString(@"photos", nil)];
  455. }
  456. - (void)gridWillDisappear:(MWPhotoBrowser *)photoBrowser
  457. {
  458. //
  459. photoBrowser.toolbar.hidden = NO;
  460. }
  461. - (id <MWPhoto>)photoBrowser:(MWPhotoBrowser *)photoBrowser thumbPhotoAtIndex:(NSUInteger)index
  462. {
  463. NSString *directory;
  464. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  465. if (_sourceDirectoryLocal)
  466. directory = self.metadataDetail.directoryID;
  467. else
  468. directory = app.directoryUser;
  469. if (index < self.thumbs.count) {
  470. if (metadata.fileID) {
  471. UIImage *image;
  472. if (_sourceDirectoryLocal) {
  473. image = [CCGraphics createNewImageFrom:metadata.fileID directoryUser:directory fileNameTo:metadata.fileID fileNamePrint:metadata.fileNamePrint size:@"m" imageForUpload:NO typeFile:metadata.typeFile writePreview:NO optimizedFileName:[CCUtility getOptimizedPhoto]];
  474. } else {
  475. NSString *fileImage = [NSString stringWithFormat:@"%@/%@.ico", directory, metadata.fileID];
  476. image = [UIImage animatedImageWithAnimatedGIFURL:[NSURL fileURLWithPath:fileImage]];
  477. }
  478. if (image) {
  479. MWPhoto *thumb = [MWPhoto photoWithImage:image];
  480. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video]) thumb.isVideo = YES;
  481. [self.thumbs replaceObjectAtIndex:index withObject:thumb];
  482. }
  483. }
  484. return [self.thumbs objectAtIndex:index];
  485. }
  486. return nil;
  487. }
  488. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser actionButtonPressedForPhotoAtIndex:(NSUInteger)index
  489. {
  490. NSString *filePath;
  491. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  492. if (metadata == nil) return;
  493. if (_sourceDirectoryLocal) {
  494. filePath = [NSString stringWithFormat:@"%@/%@", self.metadataDetail.directoryID, self.metadataDetail.fileNamePrint];
  495. } else {
  496. filePath = [NSString stringWithFormat:@"%@/%@", app.directoryUser, metadata.fileNamePrint];
  497. [[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
  498. [[NSFileManager defaultManager] linkItemAtPath:[NSString stringWithFormat:@"%@/%@", app.directoryUser, metadata.fileID] toPath:filePath error:nil];
  499. }
  500. self.docController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
  501. self.docController.delegate = self;
  502. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
  503. [self.docController presentOptionsMenuFromRect:photoBrowser.view.frame inView:photoBrowser.view animated:YES];
  504. [self.docController presentOptionsMenuFromBarButtonItem:photoBrowser.actionButton animated:YES];
  505. }
  506. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser shareButtonPressedForPhotoAtIndex:(NSUInteger)index
  507. {
  508. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  509. [app.activeMain openWindowShare:metadata];
  510. }
  511. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser deleteButtonPressedForPhotoAtIndex:(NSUInteger)index deleteButton:(UIBarButtonItem *)deleteButton
  512. {
  513. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  514. if (metadata == nil || [[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%@/%@", app.directoryUser, metadata.fileID]] == NO) {
  515. [app messageNotification:@"_info_" description:@"_file_not_found_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  516. return;
  517. }
  518. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  519. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
  520. style:UIAlertActionStyleDestructive
  521. handler:^(UIAlertAction *action) {
  522. [[CCActions sharedInstance] deleteFileOrFolder:metadata delegate:self];
  523. }]];
  524. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
  525. style:UIAlertActionStyleCancel
  526. handler:^(UIAlertAction *action) {
  527. [alertController dismissViewControllerAnimated:YES completion:nil];
  528. }]];
  529. alertController.popoverPresentationController.barButtonItem = deleteButton;
  530. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  531. [alertController.view layoutIfNeeded];
  532. [self.parentViewController presentViewController:alertController animated:YES completion:NULL];
  533. }
  534. - (void)triggerProgressTask:(NSNotification *)notification
  535. {
  536. NSDictionary *dict = notification.userInfo;
  537. float progress = [[dict valueForKey:@"progress"] floatValue];
  538. if (progress == 0)
  539. [self.navigationController cancelCCProgress];
  540. else
  541. [self.navigationController setCCProgressPercentage:progress*100 andTintColor:[NCBrandColor sharedInstance].navigationBarProgress];
  542. }
  543. - (void)downloadPhotoBrowserFailure:(NSInteger)errorCode
  544. {
  545. [app messageNotification:@"_download_selected_files_" description:@"_error_download_photobrowser_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  546. [self.photoBrowser reloadData];
  547. }
  548. - (void)downloadPhotoBrowserSuccess:(tableMetadata *)metadataVar selector:(NSString *)selector
  549. {
  550. NSUInteger index = 0;
  551. // if a message for a directory of these
  552. if (![_dataSourceDirectoryID containsObject:metadataVar.directoryID])
  553. return;
  554. for (NSUInteger i=0; i < [self.dataSourceImagesVideos count]; i++ ) {
  555. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:i];
  556. // search index
  557. if ([metadataVar.fileID isEqualToString:metadata.fileID]) {
  558. index = i;
  559. break;
  560. }
  561. }
  562. // do not reload is Video on air
  563. if (_photoBrowser.currentVideoPlayerViewController.isViewLoaded && _photoBrowser.currentVideoPlayerViewController.view.window) return;
  564. if ([metadataVar.fileID isEqualToString:_fileIDNowVisible] || [self.photoBrowser isGridReload:index]) {
  565. [self.photoBrowser reloadData];
  566. _reload = NO;
  567. } else {
  568. _reload = YES;
  569. }
  570. }
  571. - (void)downloadPhotoBrowser:(tableMetadata *)metadata
  572. {
  573. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  574. if (serverUrl)
  575. [[CCNetworking sharedNetworking] downloadFile:metadata.fileID serverUrl:serverUrl downloadData:YES downloadPlist:NO selector:selectorLoadViewImage selectorPost:nil session:k_download_session taskStatus:k_taskStatusResume delegate:nil];
  576. }
  577. - (void)insertGeocoderLocation:(NSNotification *)notification
  578. {
  579. if (notification.userInfo.count == 0)
  580. return;
  581. NSString *fileID = [[notification.userInfo allKeys] objectAtIndex:0];
  582. //NSDate *date = [[notification.userInfo allValues] objectAtIndex:0];
  583. // test [Chrash V 1.14,15]
  584. if (_indexNowVisible >= [self.photos count])
  585. return;
  586. if ([fileID isEqualToString:_fileIDNowVisible]) {
  587. MWPhoto *photo = [self.photos objectAtIndex:_indexNowVisible];
  588. [self setLocationCaptionPhoto:photo fileID:fileID];
  589. if (![self.photoBrowser isGridController]) {
  590. //[self.photoBrowser hideControls];
  591. //[self.photoBrowser showControls];
  592. }
  593. }
  594. }
  595. - (void)setLocationCaptionPhoto:(MWPhoto *)photo fileID:(NSString *)fileID
  596. {
  597. tableLocalFile *localFile;
  598. // read Geocoder
  599. localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  600. if ([localFile.exifLatitude doubleValue] != 0 || [localFile.exifLongitude doubleValue] != 0) {
  601. // Fix BUG Geo latitude & longitude
  602. if ([localFile.exifLatitude doubleValue] == 9999 || [localFile.exifLongitude doubleValue] == 9999) {
  603. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  604. if (metadata) {
  605. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata directoryUser:app.directoryUser activeAccount:app.activeAccount];
  606. }
  607. }
  608. [[CCExifGeo sharedInstance] setGeocoderEtag:fileID exifDate:localFile.exifDate latitude:localFile.exifLatitude longitude:localFile.exifLongitude];
  609. localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID = %@", fileID]];
  610. if ([localFile.exifLatitude floatValue] != 0 || [localFile.exifLongitude floatValue] != 0) {
  611. NSString *location = [[NCManageDatabase sharedInstance] getLocationFromGeoLatitude:localFile.exifLatitude longitude:localFile.exifLongitude];
  612. if ([localFile.exifDate isEqualToDate:[NSDate distantPast]] == NO && location) {
  613. NSString *localizedDateTime = [NSDateFormatter localizedStringFromDate:localFile.exifDate dateStyle:NSDateFormatterFullStyle timeStyle:NSDateFormatterMediumStyle];
  614. photo.caption = [NSString stringWithFormat:NSLocalizedString(@"%@\n%@", nil), localizedDateTime, location];
  615. }
  616. }
  617. }
  618. }
  619. #pragma --------------------------------------------------------------------------------------------
  620. #pragma mark ===== View PDF =====
  621. #pragma --------------------------------------------------------------------------------------------
  622. - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
  623. {
  624. [alertView dismissWithClickedButtonIndex:buttonIndex animated:YES];
  625. [[alertView textFieldAtIndex:0] resignFirstResponder];
  626. if (alertView.tag == alertRequestPasswordPDF) [self performSelector:@selector(viewPDF:) withObject:[alertView textFieldAtIndex:0].text afterDelay:0.3];
  627. }
  628. - (void)viewPDF:(NSString *)password
  629. {
  630. NSString *fileName;
  631. if (_sourceDirectoryLocal) {
  632. fileName = [NSString stringWithFormat:@"%@/%@", self.metadataDetail.directoryID, self.metadataDetail.fileNamePrint];
  633. } else {
  634. fileName = [NSTemporaryDirectory() stringByAppendingString:self.metadataDetail.fileNamePrint];
  635. [[NSFileManager defaultManager] removeItemAtPath:fileName error:nil];
  636. [[NSFileManager defaultManager] linkItemAtPath:[NSString stringWithFormat:@"%@/%@", app.directoryUser, self.metadataDetail.fileID] toPath:fileName error:nil];
  637. }
  638. if ([[NSFileManager defaultManager] fileExistsAtPath:fileName isDirectory:nil] == NO) {
  639. // read file error
  640. UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_read_file_error_", nil) delegate:nil cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"_ok_", nil), nil];
  641. [alertView show];
  642. }
  643. CGPDFDocumentRef pdf = CGPDFDocumentCreateWithURL((CFURLRef)[NSURL fileURLWithPath:fileName]);
  644. if (pdf) {
  645. // Encrypted
  646. if (CGPDFDocumentIsEncrypted(pdf) == YES) {
  647. // Try a blank password first, per Apple's Quartz PDF example
  648. if (CGPDFDocumentUnlockWithPassword(pdf, "") == YES) {
  649. // blank password
  650. [self readerPDF:fileName password:@""];
  651. } else {
  652. if ([password length] == 0) {
  653. // password request
  654. UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_insert_password_pfd_",nil) message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"_ok_", nil), nil];
  655. [alertView setAlertViewStyle:UIAlertViewStylePlainTextInput];
  656. alertView.tag = alertRequestPasswordPDF;
  657. [alertView show];
  658. } else {
  659. const char *key = [password UTF8String];
  660. // failure
  661. if (CGPDFDocumentUnlockWithPassword(pdf, key) == NO) {
  662. UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_password_pdf_error_", nil) delegate:nil cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"_ok_", nil), nil];
  663. [alertView show];
  664. } else {
  665. // pdf with password
  666. [self readerPDF:fileName password:password];
  667. }
  668. }
  669. }
  670. } else{
  671. // No password
  672. [self readerPDF:fileName password:@""];
  673. }
  674. } else {
  675. // read file error
  676. UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_read_file_error_", nil) delegate:nil cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"_ok_", nil), nil];
  677. [alertView show];
  678. }
  679. }
  680. - (void)readerPDF:(NSString *)fileName password:(NSString *)password
  681. {
  682. ReaderDocument *documentPDF = [ReaderDocument withDocumentFilePath:fileName password:password];
  683. if (documentPDF != nil) {
  684. self.readerPDFViewController = [[ReaderViewController alloc] initWithReaderDocument:documentPDF];
  685. self.readerPDFViewController.delegate = self;
  686. self.readerPDFViewController.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT);
  687. [self.readerPDFViewController updateContentViews];
  688. [self addChildViewController:self.readerPDFViewController];
  689. [self.view addSubview:self.readerPDFViewController.view];
  690. [self.readerPDFViewController didMoveToParentViewController:self];
  691. } else {
  692. UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_read_file_error_", nil) delegate:nil cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"_ok_", nil), nil];
  693. [alertView show];
  694. }
  695. }
  696. - (void)handleSingleTapReader
  697. {
  698. self.navigationController.navigationBarHidden = !self.navigationController.navigationBarHidden;
  699. _toolbar.hidden = !_toolbar.isHidden;
  700. if (_toolbar.isHidden) {
  701. self.readerPDFViewController.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height);
  702. } else {
  703. self.readerPDFViewController.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT);
  704. }
  705. [self.readerPDFViewController updateContentViews];
  706. }
  707. #pragma --------------------------------------------------------------------------------------------
  708. #pragma mark ===== Delete =====
  709. #pragma --------------------------------------------------------------------------------------------
  710. - (void)deleteFileOrFolderFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  711. {
  712. NSLog(@"[LOG] delete failure");
  713. }
  714. - (void)deleteFileOrFolderSuccess:(CCMetadataNet *)metadataNet
  715. {
  716. // reload Main
  717. [app.activeMain reloadDatasource];
  718. // If removed document (web) or PDF close
  719. if (_webView || _readerPDFViewController)
  720. [self removeAllView];
  721. // if a message for a directory of these
  722. if (![_dataSourceDirectoryID containsObject:metadataNet.directoryID])
  723. return;
  724. // if we are not in browserPhoto and it's removed photo/video in preview then "< Back"
  725. if (!self.photoBrowser && [self.metadataDetail.fileID isEqualToString:metadataNet.fileID]) {
  726. [app.player.mediaPlayer stop];
  727. NSArray *viewsToRemove = [self.view subviews];
  728. for (id element in viewsToRemove) {
  729. if ([element isMemberOfClass:[UIView class]] || [element isMemberOfClass:[UIToolbar class]] || [element isMemberOfClass:[LMMediaPlayerView class]])
  730. [element removeFromSuperview];
  731. }
  732. self.title = @"";
  733. [self.navigationController popViewControllerAnimated:YES];
  734. } else {
  735. // only photoBrowser if exists
  736. for (NSUInteger index=0; index < [self.dataSourceImagesVideos count] && _photoBrowser; index++ ) {
  737. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  738. // ricerca index
  739. if ([metadata.fileID isEqualToString:metadataNet.fileID]) {
  740. [self.dataSourceImagesVideos removeObjectAtIndex:index];
  741. [self.photos removeObjectAtIndex:index];
  742. [self.thumbs removeObjectAtIndex:index];
  743. [self.photoBrowser reloadData];
  744. // Title
  745. if ([self.dataSourceImagesVideos count] == 0) {
  746. self.title = @"";
  747. [self.navigationController popViewControllerAnimated:YES];
  748. }
  749. break;
  750. }
  751. }
  752. }
  753. }
  754. #pragma --------------------------------------------------------------------------------------------
  755. #pragma mark ===== ButtonPressed =====
  756. #pragma --------------------------------------------------------------------------------------------
  757. - (void)modifyTxtButtonPressed:(UIBarButtonItem *)sender
  758. {
  759. UINavigationController* navigationController = [[UIStoryboard storyboardWithName:@"NCText" bundle:nil] instantiateViewControllerWithIdentifier:@"NCText"];
  760. NCText *viewController = (NCText *)navigationController.topViewController;
  761. viewController.metadata = self.metadataDetail;
  762. /*
  763. typedef NS_ENUM(NSInteger, UIModalTransitionStyle) {
  764. UIModalTransitionStyleCoverVertical = 0,
  765. UIModalTransitionStyleFlipHorizontal __TVOS_PROHIBITED,
  766. UIModalTransitionStyleCrossDissolve,
  767. UIModalTransitionStylePartialCurl NS_ENUM_AVAILABLE_IOS(3_2) __TVOS_PROHIBITED,
  768. };
  769. typedef NS_ENUM(NSInteger, UIModalPresentationStyle) {
  770. UIModalPresentationFullScreen = 0,
  771. UIModalPresentationPageSheet NS_ENUM_AVAILABLE_IOS(3_2) __TVOS_PROHIBITED,
  772. UIModalPresentationFormSheet NS_ENUM_AVAILABLE_IOS(3_2) __TVOS_PROHIBITED,
  773. UIModalPresentationCurrentContext NS_ENUM_AVAILABLE_IOS(3_2),
  774. UIModalPresentationCustom NS_ENUM_AVAILABLE_IOS(7_0),
  775. UIModalPresentationOverFullScreen NS_ENUM_AVAILABLE_IOS(8_0),
  776. UIModalPresentationOverCurrentContext NS_ENUM_AVAILABLE_IOS(8_0),
  777. UIModalPresentationPopover NS_ENUM_AVAILABLE_IOS(8_0) __TVOS_PROHIBITED,
  778. UIModalPresentationNone NS_ENUM_AVAILABLE_IOS(7_0) = -1,
  779. };
  780. */
  781. navigationController.modalPresentationStyle = UIModalPresentationPageSheet;
  782. navigationController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
  783. [self presentViewController:navigationController animated:YES completion:nil];
  784. }
  785. - (void)actionButtonPressed:(UIBarButtonItem *)sender
  786. {
  787. NSString *filePath;
  788. if ([self.metadataDetail.fileNamePrint length] == 0) return;
  789. if (_sourceDirectoryLocal) {
  790. filePath = [NSString stringWithFormat:@"%@/%@", self.metadataDetail.directoryID, self.metadataDetail.fileNamePrint];
  791. } else {
  792. filePath = [NSString stringWithFormat:@"%@%@", NSTemporaryDirectory(), self.metadataDetail.fileNamePrint];
  793. }
  794. self.docController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
  795. self.docController.delegate = self;
  796. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
  797. [self.docController presentOptionsMenuFromRect:self.view.frame inView:self.view animated:YES];
  798. [self.docController presentOptionsMenuFromBarButtonItem:sender animated:YES];
  799. }
  800. - (void)shareButtonPressed:(UIBarButtonItem *)sender
  801. {
  802. [app.activeMain openWindowShare:self.metadataDetail];
  803. }
  804. - (void)deleteButtonPressed:(UIBarButtonItem *)sender
  805. {
  806. if ([self.metadataDetail.fileNamePrint length] == 0) return;
  807. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  808. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
  809. style:UIAlertActionStyleDestructive
  810. handler:^(UIAlertAction *action) {
  811. [[CCActions sharedInstance] deleteFileOrFolder:self.metadataDetail delegate:self];
  812. }]];
  813. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
  814. style:UIAlertActionStyleCancel
  815. handler:^(UIAlertAction *action) {
  816. [alertController dismissViewControllerAnimated:YES completion:nil];
  817. }]];
  818. alertController.popoverPresentationController.barButtonItem = _buttonDelete;
  819. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  820. [alertController.view layoutIfNeeded];
  821. [self presentViewController:alertController animated:YES completion:NULL];
  822. }
  823. @end