CCDetail.m 44 KB

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