CCDetail.m 46 KB

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