CCDetail.m 47 KB

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