CCDetail.m 43 KB

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