CCDetail.m 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000
  1. //
  2. // CCDetail.m
  3. // Nextcloud iOS
  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. NSMutableOrderedSet *_dataSourceDirectoryID;
  41. NSString *_fileNameExtension;
  42. CCHud *_hud;
  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. appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
  53. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(triggerProgressTask:) name:@"NotificationProgressTask" object:nil];
  54. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeTheming) name:@"changeTheming" object:nil];
  55. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(backNavigationController) name:@"detailBack" object:nil];
  56. self.metadataDetail = [[tableMetadata alloc] init];
  57. self.photos = [[NSMutableArray alloc] init];
  58. self.dataSourceImagesVideos = [[NSMutableArray alloc] init];
  59. _dataSourceDirectoryID = [[NSMutableOrderedSet alloc] init];
  60. _hud = [[CCHud alloc] initWithView:[[[UIApplication sharedApplication] delegate] window]];
  61. _indexNowVisible = -1;
  62. _fileIDNowVisible = nil;
  63. appDelegate.activeDetail = self;
  64. }
  65. return self;
  66. }
  67. #pragma --------------------------------------------------------------------------------------------
  68. #pragma mark ===== View =====
  69. #pragma --------------------------------------------------------------------------------------------
  70. - (void)viewDidLoad
  71. {
  72. [super viewDidLoad];
  73. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(insertGeocoderLocation:) name:@"insertGeocoderLocation" object:nil];
  74. self.imageBackground.image = [UIImage imageNamed:@"backgroundDetail"];
  75. // Change bar bottom line shadow
  76. self.navigationController.navigationBar.shadowImage = [CCGraphics generateSinglePixelImageWithColor:[NCBrandColor sharedInstance].brand];
  77. if ([self.metadataDetail.fileNameView length] > 0 || [self.metadataDetail.directoryID length] > 0 || [self.metadataDetail.fileID length] > 0) {
  78. // open view
  79. [self viewFile];
  80. }
  81. }
  82. // Apparirà
  83. - (void)viewWillAppear:(BOOL)animated
  84. {
  85. [super viewWillAppear:animated];
  86. if (self.splitViewController.isCollapsed) {
  87. self.tabBarController.tabBar.hidden = YES;
  88. self.tabBarController.tabBar.translucent = YES;
  89. }
  90. if (self.splitViewController.isCollapsed)
  91. [appDelegate plusButtonVisibile:false];
  92. }
  93. // E' scomparso
  94. - (void)viewDidDisappear:(BOOL)animated
  95. {
  96. [super viewDidDisappear:animated];
  97. // remove all
  98. if (self.isMovingFromParentViewController)
  99. [self removeAllView];
  100. }
  101. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
  102. {
  103. [coordinator animateAlongsideTransition:nil completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
  104. }];
  105. [super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
  106. }
  107. // remove all view
  108. - (void)removeAllView
  109. {
  110. // Document
  111. if (_webView) {
  112. [_webView removeFromSuperview];
  113. _webView = nil;
  114. }
  115. // PDF
  116. if (_readerPDFViewController) {
  117. [_readerPDFViewController.view removeFromSuperview];
  118. _readerPDFViewController.delegate = nil;
  119. _readerPDFViewController = nil;
  120. }
  121. // Photo-Video-Audio
  122. if (_photoBrowser) {
  123. [_photos removeAllObjects];
  124. _photoBrowser.delegate = nil;
  125. _photoBrowser = nil;
  126. }
  127. // ToolBar
  128. if (_toolbar) {
  129. [_toolbar removeFromSuperview];
  130. _toolbar = nil;
  131. }
  132. // Title
  133. self.title = nil;
  134. }
  135. - (void)backNavigationController
  136. {
  137. [self removeAllView];
  138. [self.navigationController popViewControllerAnimated:NO];
  139. }
  140. - (void)changeToDisplayMode
  141. {
  142. if (_readerPDFViewController)
  143. [self.readerPDFViewController updateContentViews];
  144. }
  145. - (void)createToolbar
  146. {
  147. CGFloat safeAreaBottom = 0;
  148. if (@available(iOS 11, *)) {
  149. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  150. }
  151. _toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, self.view.bounds.size.height - TOOLBAR_HEIGHT - safeAreaBottom, self.view.bounds.size.width, TOOLBAR_HEIGHT)];
  152. UIBarButtonItem *flexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
  153. UIBarButtonItem *fixedSpaceMini = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:self action:nil];
  154. fixedSpaceMini.width = 25;
  155. _buttonModifyTxt = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"actionSheetModify"] style:UIBarButtonItemStylePlain target:self action:@selector(modifyTxtButtonPressed:)];
  156. _buttonAction = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"openFile"] style:UIBarButtonItemStylePlain target:self action:@selector(actionButtonPressed:)];
  157. _buttonShare = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"share"] style:UIBarButtonItemStylePlain target:self action:@selector(shareButtonPressed:)];
  158. _buttonDelete = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemTrash target:self action:@selector(deleteButtonPressed:)];
  159. if ([_fileNameExtension isEqualToString:@"TXT"]) {
  160. if ([CCUtility isFolderEncrypted:[[NCManageDatabase sharedInstance] getServerUrl:_metadataDetail.directoryID] account:appDelegate.activeAccount]) // E2EE
  161. [_toolbar setItems:[NSArray arrayWithObjects: _buttonModifyTxt, flexible, _buttonDelete, fixedSpaceMini, _buttonAction, nil]];
  162. else
  163. [_toolbar setItems:[NSArray arrayWithObjects: _buttonModifyTxt, flexible, _buttonDelete, fixedSpaceMini, _buttonShare, fixedSpaceMini, _buttonAction, nil]];
  164. } else {
  165. if ([CCUtility isFolderEncrypted:[[NCManageDatabase sharedInstance] getServerUrl:_metadataDetail.directoryID] account:appDelegate.activeAccount]) // E2EE
  166. [_toolbar setItems:[NSArray arrayWithObjects: flexible, _buttonDelete, fixedSpaceMini, _buttonAction, nil]];
  167. else
  168. [_toolbar setItems:[NSArray arrayWithObjects: flexible, _buttonDelete, fixedSpaceMini, _buttonShare, fixedSpaceMini, _buttonAction, nil]];
  169. }
  170. [_toolbar setAutoresizingMask:UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin];
  171. _toolbar.barTintColor = [NCBrandColor sharedInstance].tabBar;
  172. _toolbar.tintColor = [NCBrandColor sharedInstance].brandElement;
  173. [self.view addSubview:_toolbar];
  174. }
  175. - (void)changeTheming
  176. {
  177. [appDelegate changeTheming:self];
  178. if (_toolbar) {
  179. _toolbar.barTintColor = [NCBrandColor sharedInstance].tabBar;
  180. _toolbar.tintColor = [NCBrandColor sharedInstance].brandElement;
  181. }
  182. }
  183. #pragma --------------------------------------------------------------------------------------------
  184. #pragma mark ===== View File =====
  185. #pragma --------------------------------------------------------------------------------------------
  186. - (void)viewFile
  187. {
  188. // verifico se esiste l'icona e se la posso creare
  189. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:self.metadataDetail.fileID fileNameView:self.metadataDetail.fileNameView]] == NO) {
  190. [CCGraphics createNewImageFrom:self.metadataDetail.fileNameView fileID:self.metadataDetail.fileID extension:[self.metadataDetail.fileNameView pathExtension] size:@"m" imageForUpload:NO typeFile:self.metadataDetail.typeFile writeImage:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  191. }
  192. if ([self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_image] || [self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_video] || [self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_audio]) {
  193. self.edgesForExtendedLayout = UIRectEdgeAll;
  194. [self viewImageVideoAudio];
  195. }
  196. if ([self.metadataDetail.typeFile isEqualToString: k_metadataTypeFile_document]) {
  197. _fileNameExtension = [[self.metadataDetail.fileNameView pathExtension] uppercaseString];
  198. if ([_fileNameExtension isEqualToString:@"PDF"]) {
  199. self.edgesForExtendedLayout = UIRectEdgeBottom;
  200. [self viewPDF:@""];
  201. [self createToolbar];
  202. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  203. } else {
  204. self.edgesForExtendedLayout = UIRectEdgeBottom;
  205. [self viewDocument];
  206. [self createToolbar];
  207. [appDelegate aspectNavigationControllerBar:self.navigationController.navigationBar online:[appDelegate.reachability isReachable] hidden:NO];
  208. }
  209. }
  210. }
  211. #pragma --------------------------------------------------------------------------------------------
  212. #pragma mark ===== View Document =====
  213. #pragma --------------------------------------------------------------------------------------------
  214. - (void)viewDocument
  215. {
  216. CGFloat safeAreaBottom = 0;
  217. if (@available(iOS 11, *)) {
  218. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  219. }
  220. if ([CCUtility fileProviderStorageExists:self.metadataDetail.fileID fileName:self.metadataDetail.fileNameView] == NO) {
  221. [self backNavigationController];
  222. return;
  223. }
  224. NSString *fileNamePath = [NSTemporaryDirectory() stringByAppendingString:self.metadataDetail.fileNameView];
  225. [[NSFileManager defaultManager] removeItemAtPath:fileNamePath error:nil];
  226. [[NSFileManager defaultManager] linkItemAtPath:[CCUtility getDirectoryProviderStorageFileID:self.metadataDetail.fileID fileName:self.metadataDetail.fileNameView] toPath:fileNamePath error:nil];
  227. NSURL *url = [NSURL fileURLWithPath:fileNamePath];
  228. WKPreferences *wkPreferences = [[WKPreferences alloc] init];
  229. wkPreferences.javaScriptEnabled = true;
  230. WKWebViewConfiguration *wkConfig = [[WKWebViewConfiguration alloc] init];
  231. wkConfig.preferences = wkPreferences;
  232. self.webView = [[WKWebView alloc] initWithFrame:(CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT - safeAreaBottom)) configuration:wkConfig];
  233. self.webView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
  234. [self.webView setBackgroundColor:[NCBrandColor sharedInstance].backgroundView];
  235. [self.webView setOpaque:NO];
  236. if ( [_fileNameExtension isEqualToString:@"CSS"] || [_fileNameExtension isEqualToString:@"PY"] || [_fileNameExtension isEqualToString:@"XML"] || [_fileNameExtension isEqualToString:@"JS"] ) {
  237. NSString *dataFile = [[NSString alloc] initWithData:[NSData dataWithContentsOfURL:url] encoding:NSASCIIStringEncoding];
  238. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
  239. [self.webView loadHTMLString:[NSString stringWithFormat:@"<div style='font-size:%@;font-family:%@;'><pre>%@",@"40",@"Sans-Serif",dataFile] baseURL:nil];
  240. }else{
  241. [self.webView loadHTMLString:[NSString stringWithFormat:@"<div style='font-size:%@;font-family:%@;'><pre>%@",@"20",@"Sans-Serif",dataFile] baseURL:nil];
  242. }
  243. } else if ([_fileNameExtension isEqualToString:@"TXT"] || [_fileNameExtension isEqualToString:@"MD"]) {
  244. NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
  245. NSURLSession *session = [NSURLSession sessionWithConfiguration:configuration delegate:nil delegateQueue:nil];
  246. NSMutableURLRequest *headRequest = [NSMutableURLRequest requestWithURL:url];
  247. [headRequest setHTTPMethod:@"HEAD"];
  248. NSURLSessionDataTask *task = [session dataTaskWithRequest:headRequest completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
  249. dispatch_async(dispatch_get_main_queue(), ^{
  250. NSString *encodingName = [[NCUchardet sharedNUCharDet] encodingStringDetectWithData:data];
  251. [self.webView loadData:[NSData dataWithContentsOfURL: url] MIMEType:response.MIMEType characterEncodingName:encodingName baseURL:url];
  252. });
  253. }];
  254. [task resume];
  255. } else {
  256. [self.webView loadRequest:[NSMutableURLRequest requestWithURL:url]];
  257. }
  258. [self.view addSubview:self.webView];
  259. }
  260. #pragma --------------------------------------------------------------------------------------------
  261. #pragma mark ===== View Image =====
  262. #pragma --------------------------------------------------------------------------------------------
  263. - (void)viewImageVideoAudio
  264. {
  265. self.photoBrowser = [[MWPhotoBrowser alloc] initWithDelegate:self];
  266. _indexNowVisible = -1;
  267. _fileIDNowVisible = nil;
  268. [self.photos removeAllObjects];
  269. [_dataSourceDirectoryID removeAllObjects];
  270. // if not images, exit
  271. if ([self.dataSourceImagesVideos count] == 0) return;
  272. NSUInteger index = 0;
  273. for (tableMetadata *metadata in self.dataSourceImagesVideos) {
  274. // start from here ?
  275. if (self.metadataDetail.fileID && [metadata.fileID isEqualToString:self.metadataDetail.fileID])
  276. [self.photoBrowser setCurrentPhotoIndex:index];
  277. [self.photos addObject:[MWPhoto photoWithImage:nil]];
  278. // add directory
  279. [_dataSourceDirectoryID addObject:metadata.directoryID];
  280. index++;
  281. }
  282. // PhotoBrowser
  283. self.photoBrowser.displayActionButton = YES;
  284. self.photoBrowser.displayDeleteButton = YES;
  285. if ([CCUtility isFolderEncrypted:[[NCManageDatabase sharedInstance] getServerUrl:_metadataDetail.directoryID] account:appDelegate.activeAccount]) // E2EE
  286. self.photoBrowser.displayShareButton = NO;
  287. else
  288. self.photoBrowser.displayShareButton = YES;
  289. self.photoBrowser.displayNavArrows = YES;
  290. self.photoBrowser.displaySelectionButtons = NO;
  291. self.photoBrowser.alwaysShowControls = NO;
  292. self.photoBrowser.zoomPhotosToFill = NO;
  293. self.photoBrowser.autoPlayOnAppear = NO;
  294. self.photoBrowser.delayToHideElements = 15;
  295. if ([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPad)
  296. self.photoBrowser.enableSwipeToDismiss = NO;
  297. if (self.traitCollection.horizontalSizeClass == UIUserInterfaceSizeClassCompact) {
  298. [self addChildViewController:self.photoBrowser];
  299. [self.view addSubview:self.photoBrowser.view];
  300. [self.photoBrowser didMoveToParentViewController:self];
  301. } else {
  302. [self.navigationController pushViewController:self.photoBrowser animated:NO];
  303. }
  304. }
  305. - (NSUInteger)numberOfPhotosInPhotoBrowser:(MWPhotoBrowser *)photoBrowser
  306. {
  307. return [self.dataSourceImagesVideos count];
  308. }
  309. - (NSString *)photoBrowser:(MWPhotoBrowser *)photoBrowser titleForPhotoAtIndex:(NSUInteger)index
  310. {
  311. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  312. NSString *titleDir = metadata.fileNameView;
  313. self.title = titleDir;
  314. return titleDir;
  315. }
  316. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser didDisplayPhotoAtIndex:(NSUInteger)index
  317. {
  318. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  319. _indexNowVisible = index;
  320. _fileIDNowVisible = metadata.fileID;
  321. photoBrowser.toolbar.hidden = NO;
  322. // Download image ?
  323. if (metadata) {
  324. tableMetadata *metadataDB = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", metadata.fileID]];
  325. if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView] == NO && metadataDB.status == k_metadataStatusNormal) {
  326. [self downloadPhotoBrowser:metadata];
  327. }
  328. }
  329. // Title
  330. if (metadata)
  331. self.title = metadata.fileNameView;
  332. }
  333. - (id <MWPhoto>)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:(NSUInteger)index
  334. {
  335. UIImage *image;
  336. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  337. if (index < self.photos.count) {
  338. if (metadata.fileID) {
  339. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_image]) {
  340. NSString *fileImage = [CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView];
  341. NSString *ext = [CCUtility getExtension:metadata.fileNameView];
  342. if ([ext isEqualToString:@"GIF"]) image = [UIImage animatedImageWithAnimatedGIFURL:[NSURL fileURLWithPath:fileImage]];
  343. else image = [UIImage imageWithContentsOfFile:fileImage];
  344. if (image) {
  345. MWPhoto *photo = [MWPhoto photoWithImage:image];
  346. // Location ??
  347. [self setLocationCaptionPhoto:photo fileID:metadata.fileID];
  348. [self.photos replaceObjectAtIndex:index withObject:photo];
  349. } else {
  350. if (metadata.status == k_metadataStatusDownloadError) {
  351. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewError"]]];
  352. }
  353. }
  354. }
  355. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_video]) {
  356. if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
  357. NSURL *url = [NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView]];
  358. MWPhoto *video = [MWPhoto photoWithImage:[CCGraphics thumbnailImageForVideo:url atTime:1.0]];
  359. video.videoURL = url;
  360. [self.photos replaceObjectAtIndex:index withObject:video];
  361. } else {
  362. if (metadata.status == k_metadataStatusDownloadError) {
  363. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewError"]]];
  364. }
  365. }
  366. }
  367. if ([metadata.typeFile isEqualToString: k_metadataTypeFile_audio]) {
  368. if ([CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView]) {
  369. MWPhoto *audio;
  370. UIImage *audioImage;
  371. NSURL *url = [NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView]];
  372. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]]) {
  373. audioImage = [UIImage imageWithContentsOfFile:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]];
  374. } else {
  375. audioImage = [UIImage imageNamed:@"notaMusic"]; //[CCGraphics scaleImage:[UIImage imageNamed:@"notaMusic"] toSize:CGSizeMake(200, 200) isAspectRation:YES];
  376. }
  377. audio = [MWPhoto photoWithImage:audioImage];
  378. audio.videoURL = url;
  379. [self.photos replaceObjectAtIndex:index withObject:audio];
  380. } else {
  381. if (metadata.status == k_metadataStatusDownloadError) {
  382. [self.photos replaceObjectAtIndex:index withObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"filePreviewError"]]];
  383. }
  384. }
  385. }
  386. }
  387. // energy saving memory
  388. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  389. int iPrev = (int)index - 2;
  390. if (iPrev >= 0) {
  391. if ([self.photos objectAtIndex:iPrev] != nil)
  392. [self.photos replaceObjectAtIndex:iPrev withObject:[MWPhoto photoWithImage:nil]];
  393. }
  394. int iNext = (int)index + 2;
  395. if (iNext < _photos.count) {
  396. if ([self.photos objectAtIndex:iNext] != nil)
  397. [self.photos replaceObjectAtIndex:iNext withObject:[MWPhoto photoWithImage:nil]];
  398. }
  399. });
  400. return [self.photos objectAtIndex:index];
  401. }
  402. return nil;
  403. }
  404. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser actionButtonPressedForPhotoAtIndex:(NSUInteger)index
  405. {
  406. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  407. if (metadata == nil) return;
  408. self.docController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:[CCUtility getDirectoryProviderStorageFileID:metadata.fileID fileName:metadata.fileNameView]]];
  409. self.docController.delegate = self;
  410. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
  411. [self.docController presentOptionsMenuFromRect:photoBrowser.view.frame inView:photoBrowser.view animated:YES];
  412. [self.docController presentOptionsMenuFromBarButtonItem:photoBrowser.actionButton animated:YES];
  413. }
  414. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser shareButtonPressedForPhotoAtIndex:(NSUInteger)index
  415. {
  416. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  417. [appDelegate.activeMain openWindowShare:metadata];
  418. }
  419. - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser deleteButtonPressedForPhotoAtIndex:(NSUInteger)index deleteButton:(UIBarButtonItem *)deleteButton
  420. {
  421. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  422. if (metadata == nil || [CCUtility fileProviderStorageExists:metadata.fileID fileName:metadata.fileNameView] == NO) {
  423. [appDelegate messageNotification:@"_info_" description:@"_file_not_found_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeInfo errorCode:0];
  424. return;
  425. }
  426. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  427. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
  428. style:UIAlertActionStyleDestructive
  429. handler:^(UIAlertAction *action) {
  430. [[CCActions sharedInstance] deleteFileOrFolder:metadata delegate:self hud:nil hudTitled:nil];
  431. }]];
  432. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
  433. style:UIAlertActionStyleCancel
  434. handler:^(UIAlertAction *action) {
  435. [alertController dismissViewControllerAnimated:YES completion:nil];
  436. }]];
  437. alertController.popoverPresentationController.barButtonItem = deleteButton;
  438. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  439. [alertController.view layoutIfNeeded];
  440. [self.parentViewController presentViewController:alertController animated:YES completion:NULL];
  441. }
  442. - (void)photoBrowserDidFinishPresentation:(MWPhotoBrowser *)photoBrowser
  443. {
  444. [self removeAllView];
  445. [self.navigationController popViewControllerAnimated:YES];
  446. }
  447. - (void)triggerProgressTask:(NSNotification *)notification
  448. {
  449. NSDictionary *dict = notification.userInfo;
  450. NSString *fileID = [dict valueForKey:@"fileID"];
  451. //NSString *serverUrl = [dict valueForKey:@"serverUrl"];
  452. //long status = [[dict valueForKey:@"status"] longValue];
  453. float progress = [[dict valueForKey:@"progress"] floatValue];
  454. //long long totalBytes = [[dict valueForKey:@"totalBytes"] longLongValue];
  455. //long long totalBytesExpected = [[dict valueForKey:@"totalBytesExpected"] longLongValue];
  456. if ([fileID isEqualToString:_fileIDNowVisible])
  457. [_hud progress:progress];
  458. }
  459. - (void)downloadPhotoBrowserSuccessFailure:(tableMetadata *)metadata selector:(NSString *)selector errorCode:(NSInteger)errorCode
  460. {
  461. // if a message for a directory of these
  462. if (![metadata.fileID isEqualToString:_fileIDNowVisible])
  463. return;
  464. [_hud hideHud];
  465. if (errorCode == 0) {
  466. // verifico se esiste l'icona e se la posso creare
  467. if ([[NSFileManager defaultManager] fileExistsAtPath:[CCUtility getDirectoryProviderStorageIconFileID:metadata.fileID fileNameView:metadata.fileNameView]] == NO)
  468. [CCGraphics createNewImageFrom:metadata.fileNameView fileID:metadata.fileID extension:[metadata.fileNameView pathExtension] size:@"m" imageForUpload:NO typeFile:metadata.typeFile writeImage:YES optimizedFileName:[CCUtility getOptimizedPhoto]];
  469. [self.photoBrowser reloadData];
  470. } else {
  471. [appDelegate messageNotification:@"_download_selected_files_" description:@"_error_download_photobrowser_" visible:YES delay:k_dismissAfterSecond type:TWMessageBarMessageTypeError errorCode:errorCode];
  472. [self backNavigationController];
  473. }
  474. }
  475. - (void)downloadPhotoBrowser:(tableMetadata *)metadata
  476. {
  477. NSString *serverUrl = [[NCManageDatabase sharedInstance] getServerUrl:metadata.directoryID];
  478. if (serverUrl) {
  479. [_hud visibleHudTitle:@"" mode:MBProgressHUDModeDeterminate color:[NCBrandColor sharedInstance].brandElement];
  480. metadata.session = k_download_session;
  481. metadata.sessionError = @"";
  482. metadata.sessionSelector = selectorLoadViewImage;
  483. metadata.status = k_metadataStatusWaitDownload;
  484. // Add Metadata for Download
  485. (void)[[NCManageDatabase sharedInstance] addMetadata:metadata];
  486. [appDelegate performSelectorOnMainThread:@selector(loadAutoDownloadUpload) withObject:nil waitUntilDone:YES];
  487. }
  488. }
  489. - (void)insertGeocoderLocation:(NSNotification *)notification
  490. {
  491. if (notification.userInfo.count == 0)
  492. return;
  493. NSString *fileID = [[notification.userInfo allKeys] objectAtIndex:0];
  494. //NSDate *date = [[notification.userInfo allValues] objectAtIndex:0];
  495. // test [Chrash V 1.14,15]
  496. if (_indexNowVisible >= [self.photos count])
  497. return;
  498. if ([fileID isEqualToString:_fileIDNowVisible]) {
  499. MWPhoto *photo = [self.photos objectAtIndex:_indexNowVisible];
  500. [self setLocationCaptionPhoto:photo fileID:fileID];
  501. [self.photoBrowser reloadData];
  502. }
  503. }
  504. - (void)setLocationCaptionPhoto:(MWPhoto *)photo fileID:(NSString *)fileID
  505. {
  506. tableLocalFile *localFile;
  507. // read Geocoder
  508. localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  509. if ([localFile.exifLatitude doubleValue] != 0 || [localFile.exifLongitude doubleValue] != 0) {
  510. // Fix BUG Geo latitude & longitude
  511. if ([localFile.exifLatitude doubleValue] == 9999 || [localFile.exifLongitude doubleValue] == 9999) {
  512. tableMetadata *metadata = [[NCManageDatabase sharedInstance] getMetadataWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  513. if (metadata) {
  514. [[CCExifGeo sharedInstance] setExifLocalTableEtag:metadata];
  515. }
  516. }
  517. [[CCExifGeo sharedInstance] setGeocoderEtag:fileID exifDate:localFile.exifDate latitude:localFile.exifLatitude longitude:localFile.exifLongitude];
  518. localFile = [[NCManageDatabase sharedInstance] getTableLocalFileWithPredicate:[NSPredicate predicateWithFormat:@"fileID == %@", fileID]];
  519. if ([localFile.exifLatitude floatValue] != 0 || [localFile.exifLongitude floatValue] != 0) {
  520. NSString *location = [[NCManageDatabase sharedInstance] getLocationFromGeoLatitude:localFile.exifLatitude longitude:localFile.exifLongitude];
  521. if ([localFile.exifDate isEqualToDate:[NSDate distantPast]] == NO && location) {
  522. NSString *localizedDateTime = [NSDateFormatter localizedStringFromDate:localFile.exifDate dateStyle:NSDateFormatterFullStyle timeStyle:NSDateFormatterMediumStyle];
  523. photo.caption = [NSString stringWithFormat:NSLocalizedString(@"%@\n%@", nil), localizedDateTime, location];
  524. }
  525. }
  526. }
  527. }
  528. #pragma --------------------------------------------------------------------------------------------
  529. #pragma mark ===== View PDF =====
  530. #pragma --------------------------------------------------------------------------------------------
  531. - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
  532. {
  533. [alertView dismissWithClickedButtonIndex:buttonIndex animated:YES];
  534. [[alertView textFieldAtIndex:0] resignFirstResponder];
  535. if (alertView.tag == alertRequestPasswordPDF) [self performSelector:@selector(viewPDF:) withObject:[alertView textFieldAtIndex:0].text afterDelay:0.3];
  536. }
  537. - (void)viewPDF:(NSString *)password
  538. {
  539. NSString *fileNamePath = [CCUtility getDirectoryProviderStorageFileID:self.metadataDetail.fileID fileName:self.metadataDetail.fileNameView];
  540. if ([CCUtility fileProviderStorageExists:self.metadataDetail.fileID fileName:self.metadataDetail.fileNameView] == NO) {
  541. // read file error
  542. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_read_file_error_", nil) preferredStyle:UIAlertControllerStyleAlert];
  543. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  544. [alertController addAction:okAction];
  545. [self presentViewController:alertController animated:YES completion:nil];
  546. }
  547. CGPDFDocumentRef pdf = CGPDFDocumentCreateWithURL((CFURLRef)[NSURL fileURLWithPath:fileNamePath]);
  548. if (pdf) {
  549. // Encrypted
  550. if (CGPDFDocumentIsEncrypted(pdf) == YES) {
  551. // Try a blank password first, per Apple's Quartz PDF example
  552. if (CGPDFDocumentUnlockWithPassword(pdf, "") == YES) {
  553. // blank password
  554. [self readerPDF:fileNamePath password:@""];
  555. } else {
  556. if ([password length] == 0) {
  557. // password request
  558. UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"_insert_password_pfd_",nil) message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"_ok_", nil), nil];
  559. [alertView setAlertViewStyle:UIAlertViewStylePlainTextInput];
  560. alertView.tag = alertRequestPasswordPDF;
  561. [alertView show];
  562. } else {
  563. const char *key = [password UTF8String];
  564. // failure
  565. if (CGPDFDocumentUnlockWithPassword(pdf, key) == NO) {
  566. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_password_pdf_error_", nil) preferredStyle:UIAlertControllerStyleAlert];
  567. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  568. [alertController addAction:okAction];
  569. [self presentViewController:alertController animated:YES completion:nil];
  570. } else {
  571. // pdf with password
  572. [self readerPDF:fileNamePath password:password];
  573. }
  574. }
  575. }
  576. } else{
  577. // No password
  578. [self readerPDF:fileNamePath password:@""];
  579. }
  580. } else {
  581. // read file error
  582. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_read_file_error_", nil) preferredStyle:UIAlertControllerStyleAlert];
  583. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  584. [alertController addAction:okAction];
  585. [self presentViewController:alertController animated:YES completion:nil];
  586. }
  587. }
  588. - (void)readerPDF:(NSString *)fileName password:(NSString *)password
  589. {
  590. ReaderDocument *documentPDF = [ReaderDocument withDocumentFilePath:fileName password:password];
  591. CGFloat safeAreaBottom = 0;
  592. if (@available(iOS 11, *)) {
  593. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  594. }
  595. if (documentPDF != nil) {
  596. self.readerPDFViewController = [[ReaderViewController alloc] initWithReaderDocument:documentPDF];
  597. self.readerPDFViewController.delegate = self;
  598. self.readerPDFViewController.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT - safeAreaBottom);
  599. [self.readerPDFViewController updateContentViews];
  600. [self addChildViewController:self.readerPDFViewController];
  601. [self.view addSubview:self.readerPDFViewController.view];
  602. [self.readerPDFViewController didMoveToParentViewController:self];
  603. } else {
  604. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message:NSLocalizedString(@"_read_file_error_", nil) preferredStyle:UIAlertControllerStyleAlert];
  605. UIAlertAction *okAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"_ok_", nil) style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {}];
  606. [alertController addAction:okAction];
  607. [self presentViewController:alertController animated:YES completion:nil];
  608. }
  609. }
  610. - (void)handleSingleTapReader
  611. {
  612. UILayoutGuide *layoutGuide;
  613. CGFloat safeAreaTop = 0;
  614. CGFloat safeAreaBottom = 0;
  615. if (@available(iOS 11, *)) {
  616. layoutGuide = [UIApplication sharedApplication].delegate.window.safeAreaLayoutGuide;
  617. safeAreaTop = [UIApplication sharedApplication].delegate.window.safeAreaInsets.top;
  618. safeAreaBottom = [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom;
  619. }
  620. self.navigationController.navigationBarHidden = !self.navigationController.navigationBarHidden;
  621. _toolbar.hidden = !_toolbar.isHidden;
  622. if (_toolbar.isHidden) {
  623. self.readerPDFViewController.view.frame = CGRectMake(0, safeAreaTop, self.view.bounds.size.width, self.view.bounds.size.height - safeAreaTop - safeAreaBottom);
  624. } else {
  625. self.readerPDFViewController.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height - TOOLBAR_HEIGHT - safeAreaBottom);
  626. }
  627. [self.readerPDFViewController updateContentViews];
  628. }
  629. - (void)handleSwipeUpDown
  630. {
  631. // REMOVE IT'S UNUSABLE
  632. /*
  633. self.navigationController.navigationBarHidden = false; // iOS App is unusable after swipe up or down with PDF in fullscreen #526
  634. [self removeAllView];
  635. [self.navigationController popViewControllerAnimated:YES];
  636. */
  637. }
  638. #pragma --------------------------------------------------------------------------------------------
  639. #pragma mark ===== Delete =====
  640. #pragma --------------------------------------------------------------------------------------------
  641. - (void)deleteFileOrFolderSuccessFailure:(CCMetadataNet *)metadataNet message:(NSString *)message errorCode:(NSInteger)errorCode
  642. {
  643. if (errorCode == 0) {
  644. // reload Main
  645. [appDelegate.activeMain reloadDatasource];
  646. // If removed document (web) or PDF close
  647. if (_webView || _readerPDFViewController)
  648. [self removeAllView];
  649. // if a message for a directory of these
  650. if (![_dataSourceDirectoryID containsObject:metadataNet.directoryID])
  651. return;
  652. // if we are not in browserPhoto and it's removed photo/video in preview then "< Back"
  653. if (!self.photoBrowser && [self.metadataDetail.fileID isEqualToString:metadataNet.fileID]) {
  654. NSArray *viewsToRemove = [self.view subviews];
  655. for (id element in viewsToRemove) {
  656. if ([element isMemberOfClass:[UIView class]] || [element isMemberOfClass:[UIToolbar class]])
  657. [element removeFromSuperview];
  658. }
  659. self.title = @"";
  660. [self.navigationController popViewControllerAnimated:YES];
  661. } else {
  662. // only photoBrowser if exists
  663. for (NSUInteger index=0; index < [self.dataSourceImagesVideos count] && _photoBrowser; index++ ) {
  664. tableMetadata *metadata = [self.dataSourceImagesVideos objectAtIndex:index];
  665. if ([metadata isInvalidated] || [metadata.fileID isEqualToString:metadataNet.fileID]) {
  666. [self.dataSourceImagesVideos removeObjectAtIndex:index];
  667. [self.photos removeObjectAtIndex:index];
  668. [self.photoBrowser reloadData];
  669. // Title
  670. if ([self.dataSourceImagesVideos count] == 0) {
  671. self.title = @"";
  672. [self.navigationController popViewControllerAnimated:YES];
  673. }
  674. }
  675. }
  676. }
  677. } else {
  678. NSLog(@"[LOG] DeleteFileOrFolder failure error %d, %@", (int)errorCode, message);
  679. }
  680. }
  681. #pragma --------------------------------------------------------------------------------------------
  682. #pragma mark ===== ButtonPressed =====
  683. #pragma --------------------------------------------------------------------------------------------
  684. - (void)modifyTxtButtonPressed:(UIBarButtonItem *)sender
  685. {
  686. UINavigationController* navigationController = [[UIStoryboard storyboardWithName:@"NCText" bundle:nil] instantiateViewControllerWithIdentifier:@"NCText"];
  687. NCText *viewController = (NCText *)navigationController.topViewController;
  688. viewController.metadata = self.metadataDetail;
  689. navigationController.modalPresentationStyle = UIModalPresentationPageSheet;
  690. navigationController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
  691. [self presentViewController:navigationController animated:YES completion:nil];
  692. }
  693. - (void)actionButtonPressed:(UIBarButtonItem *)sender
  694. {
  695. if ([self.metadataDetail.fileNameView length] == 0) return;
  696. NSString *filePath = [NSString stringWithFormat:@"%@%@", NSTemporaryDirectory(), self.metadataDetail.fileNameView];
  697. self.docController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:filePath]];
  698. self.docController.delegate = self;
  699. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
  700. [self.docController presentOptionsMenuFromRect:self.view.frame inView:self.view animated:YES];
  701. [self.docController presentOptionsMenuFromBarButtonItem:sender animated:YES];
  702. }
  703. - (void)shareButtonPressed:(UIBarButtonItem *)sender
  704. {
  705. [appDelegate.activeMain openWindowShare:self.metadataDetail];
  706. }
  707. - (void)deleteButtonPressed:(UIBarButtonItem *)sender
  708. {
  709. if ([self.metadataDetail.fileNameView length] == 0) return;
  710. UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
  711. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
  712. style:UIAlertActionStyleDestructive
  713. handler:^(UIAlertAction *action) {
  714. [[CCActions sharedInstance] deleteFileOrFolder:self.metadataDetail delegate:self hud:nil hudTitled:nil];
  715. }]];
  716. [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)
  717. style:UIAlertActionStyleCancel
  718. handler:^(UIAlertAction *action) {
  719. [alertController dismissViewControllerAnimated:YES completion:nil];
  720. }]];
  721. alertController.popoverPresentationController.barButtonItem = _buttonDelete;
  722. if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
  723. [alertController.view layoutIfNeeded];
  724. [self presentViewController:alertController animated:YES completion:NULL];
  725. }
  726. @end