CCDetail.m 46 KB

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