CCDetail.m 43 KB

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