123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444 |
- //
- // ShareViewController.m
- // Nextcloud iOS
- //
- // Created by Marino Faggiana on 26/01/16.
- // Copyright (c) 2017 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- #import "ShareViewController.h"
- #import "NCBridgeSwift.h"
- @import MobileCoreServices;
- @interface ShareViewController () <NCSelectDestinationDelegate>
- {
- NSURL *dirGroup;
- NSUInteger totalSize;
-
- NSExtensionItem *inputItem;
-
- UIColor *barTintColor;
- UIColor *tintColor;
-
- NSString *fileNameOriginal;
-
- UIBarButtonItem *rightButtonUpload, *leftButtonCancel;
- }
- @end
- @implementation ShareViewController
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== View =====
- #pragma --------------------------------------------------------------------------------------------
- -(void)viewDidLoad
- {
- tableAccount *tableAccount = [[NCManageDatabase sharedInstance] getAccountActive];
-
- if (tableAccount == nil) {
-
- // close now
- [self performSelector:@selector(closeShareViewController) withObject:nil afterDelay:0.1];
-
- return;
-
- } else {
-
- NSInteger serverVersionMajor = [[NCManageDatabase sharedInstance] getCapabilitiesServerIntWithAccount:tableAccount.account elements:NCElementsJSON.shared.capabilitiesVersionMajor];
- NSString *webDavRoot = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:tableAccount.account elements:NCElementsJSON.shared.capabilitiesWebDavRoot];
-
- // Networking
- [[NCCommunicationCommon shared] setupWithUser:tableAccount.user userId:tableAccount.userID password:[CCUtility getPassword:tableAccount.account] account:tableAccount.account url:tableAccount.url userAgent:[CCUtility getUserAgent] capabilitiesGroup:[NCBrandOptions sharedInstance].capabilitiesGroups webDavRoot:webDavRoot davRoot:nil nextcloudVersion:serverVersionMajor delegate:[NCNetworking sharedInstance]];
-
- _activeAccount = tableAccount.account;
-
- if ([_activeAccount isEqualToString:[CCUtility getActiveAccountExt]]) {
-
- // load
-
- _serverUrl = [CCUtility getServerUrlExt];
-
- _destinyFolderButton.title = [NSString stringWithFormat:NSLocalizedString(@"_destiny_folder_", nil), [CCUtility getTitleServerUrlExt]];
-
- } else {
-
- // Default settings
-
- [CCUtility setActiveAccountExt:self.activeAccount];
- _serverUrl = [CCUtility getHomeServerUrlActiveUrl:tableAccount.url];
- [CCUtility setServerUrlExt:_serverUrl];
- _destinyFolderButton.title = [NSString stringWithFormat:NSLocalizedString(@"_destiny_folder_", nil), NSLocalizedString(@"_home_", nil)];
- [CCUtility setTitleServerUrlExt:NSLocalizedString(@"_home_", nil)];
- }
- }
-
- self.filesName = [[NSMutableArray alloc] init];
-
- self.hud = [[CCHud alloc] initWithView:self.navigationController.view];
-
- [self.shareTable registerNib:[UINib nibWithNibName:@"CCCellShareExt" bundle:nil] forCellReuseIdentifier:@"ShareExtCell"];
-
- [self navigationBarToolBar];
-
- [self loadDataSwift];
- }
- - (void)viewWillAppear:(BOOL)animated
- {
- [super viewWillAppear:animated];
-
- self.view.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
- self.shareTable.backgroundColor = NCBrandColor.sharedInstance.backgroundView;
- }
- - (void)closeShareViewController
- {
- [self.extensionContext completeRequestReturningItems:self.extensionContext.inputItems completionHandler:nil];
- }
- - (void)applicationWillTerminate:(UIApplication *)application
- {
- NSLog(@"[LOG] bye bye, Nextcloud Share Extension!");
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark == TextField Delegate ==
- #pragma --------------------------------------------------------------------------------------------
- - (void)textFieldDidBeginEditing:(UITextField *)textField
- {
- rightButtonUpload.enabled = false;
- fileNameOriginal = textField.text;
- }
- - (void)textFieldDidEndEditing:(UITextField *)textField
- {
- rightButtonUpload.enabled = true;
- NSInteger index = [self.filesName indexOfObject:fileNameOriginal];
- if (index != NSNotFound) {
- self.filesName[index] = textField.text;
- }
- }
- - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
- {
- NSError *error;
-
- if ([string isEqualToString:@"\n"]) {
-
- //NSString *fileName = [textField.text stringByDeletingPathExtension];
- NSString *ext = [textField.text pathExtension];
- if (![ext isEqualToString:@""]) {
- NSString *fileNameAtPath = [NSTemporaryDirectory() stringByAppendingString:fileNameOriginal];
- NSString *fileNameToPath = [NSTemporaryDirectory() stringByAppendingString:textField.text];
-
- [[NSFileManager defaultManager] moveItemAtPath:fileNameAtPath toPath:fileNameToPath error:&error];
-
- if (error != nil) {
- textField.text = fileNameOriginal;
- }
- } else {
- textField.text = fileNameOriginal;
- }
-
- [textField endEditing:true];
- return false;
- }
-
- return true;
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark == Action ==
- #pragma --------------------------------------------------------------------------------------------
- - (void)navigationBarToolBar
- {
- // Theming
- if ([NCBrandOptions sharedInstance].use_themingColor) {
- NSString *themingColor = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.activeAccount elements:NCElementsJSON.shared.capabilitiesThemingColor];
- NSString *themingColorElement = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.activeAccount elements:NCElementsJSON.shared.capabilitiesThemingColorElement];
- NSString *themingColorText = [[NCManageDatabase sharedInstance] getCapabilitiesServerStringWithAccount:self.activeAccount elements:NCElementsJSON.shared.capabilitiesThemingColorText];
- [CCGraphics settingThemingColor:themingColor themingColorElement:themingColorElement themingColorText:themingColorText];
- }
- self.navigationController.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand;
- self.navigationController.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText;
-
- self.toolBar.barTintColor = NCBrandColor.sharedInstance.tabBar;
- self.toolBar.tintColor = [UIColor grayColor];
-
- // Upload
- rightButtonUpload = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_save_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(selectPost)];
-
- // Cancel
- leftButtonCancel = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_cancel_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(cancelPost)];
-
- // Title
- [self.navigationController.navigationBar setTitleTextAttributes: @{NSForegroundColorAttributeName:self.navigationController.navigationBar.tintColor}];
-
- self.navigationItem.title = [NCBrandOptions sharedInstance].brand;
- self.navigationItem.leftBarButtonItem = leftButtonCancel;
- self.navigationItem.rightBarButtonItems = [[NSArray alloc] initWithObjects:rightButtonUpload, nil];
- self.navigationItem.hidesBackButton = YES;
- }
- - (void)moveServerUrlTo:(NSString *)serverUrlTo title:(NSString *)title type:(NSString *)type
- {
- // DENIED e2e
- if ([CCUtility isFolderEncrypted:serverUrlTo e2eEncrypted:false account:self.activeAccount]) {
- return;
- }
-
- if (serverUrlTo)
- _serverUrl = serverUrlTo;
-
- if (title) {
- self.destinyFolderButton.title = [NSString stringWithFormat:NSLocalizedString(@"_destiny_folder_", nil), title];
- [CCUtility setTitleServerUrlExt:title];
- } else {
- self.destinyFolderButton.title = [NSString stringWithFormat:NSLocalizedString(@"_destiny_folder_", nil), NSLocalizedString(@"_home_", nil)];
- [CCUtility setTitleServerUrlExt:NSLocalizedString(@"_home_", nil)];
- }
-
- [CCUtility setActiveAccountExt:self.activeAccount];
- [CCUtility setServerUrlExt:_serverUrl];
- }
- - (IBAction)destinyFolderButtonTapped:(UIBarButtonItem *)sender
- {
- UINavigationController* navigationController = [[UIStoryboard storyboardWithName:@"NCSelectDestination" bundle:nil] instantiateInitialViewController];
-
- NCSelectDestination *viewController = (NCSelectDestination *)navigationController.topViewController;
-
- viewController.delegate = self;
- viewController.move.title = NSLocalizedString(@"_select_", nil);
- viewController.tintColor = tintColor;
- viewController.barTintColor = barTintColor;
- viewController.tintColorTitle = tintColor;
- // E2EE
- viewController.includeDirectoryE2EEncryption = NO;
- [navigationController setModalPresentationStyle:UIModalPresentationFormSheet];
- [self presentViewController:navigationController animated:YES completion:nil];
- }
- - (void)selectPost
- {
- if ([self.filesName count] > 0) {
-
- [self.hud visibleHudTitle:NSLocalizedString(@"_uploading_", nil) mode:MBProgressHUDModeDeterminate color:NCBrandColor.sharedInstance.brandElement];
-
- NSString *fileName = [self.filesName objectAtIndex:0];
- NSString *fileNameLocal = [NSTemporaryDirectory() stringByAppendingString:fileName];
- // CONVERSION -->
-
- if ([fileName.pathExtension.uppercaseString isEqualToString:@"HEIC"] && [CCUtility getFormatCompatibility]) {
- UIImage *image = [UIImage imageWithContentsOfFile:fileNameLocal];
- if (image != nil) {
- fileName = fileName.stringByDeletingPathExtension;
- fileName = [NSString stringWithFormat:@"%@.jpg", fileName];
- [self.filesName replaceObjectAtIndex:0 withObject:fileName];
- fileNameLocal = [NSTemporaryDirectory() stringByAppendingString:fileName];
- [UIImageJPEGRepresentation(image, 1.0) writeToFile:fileNameLocal atomically:YES];
-
- [self.shareTable reloadData];
- }
- }
-
- // <--
-
- NSString *fileNameForUpload = [[NCUtility sharedInstance] createFileName:fileName serverUrl:self.serverUrl account:self.activeAccount];
- NSString *fileNameServer = [NSString stringWithFormat:@"%@/%@", self.serverUrl, fileNameForUpload];
-
- (void)[[NCCommunication shared] uploadWithServerUrlFileName:fileNameServer fileNameLocalPath:fileNameLocal dateCreationFile:nil dateModificationFile:nil customUserAgent:nil addCustomHeaders:nil progressHandler:^(NSProgress * progress) {
- [self.hud progress:progress.fractionCompleted];
- } completionHandler:^(NSString *account, NSString *ocId, NSString *etag, NSDate *date, int64_t size, NSInteger errorCode, NSString *errorDescription) {
- [self.hud hideHud];
- [self.filesName removeObject:fileName];
-
- if (errorCode == 0) {
-
- [CCUtility copyFileAtPath:fileNameLocal toPath:[CCUtility getDirectoryProviderStorageOcId:ocId fileNameView:fileNameForUpload]];
-
- tableMetadata *metadata = [[NCManageDatabase sharedInstance] createMetadataWithAccount:self.activeAccount fileName:fileNameForUpload ocId:ocId serverUrl:self.serverUrl url:@"" contentType:@""];
-
- metadata.date = date;
- metadata.etag = etag;
- metadata.serverUrl = self.serverUrl;
- metadata.size = size;
-
- metadata = [[NCManageDatabase sharedInstance] addMetadata:metadata];
- (void)[[NCManageDatabase sharedInstance] addLocalFileWithMetadata:metadata];
-
- [self.shareTable performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];
- [self performSelector:@selector(selectPost) withObject:nil];
-
- } else {
-
- UIAlertController * alert= [UIAlertController alertControllerWithTitle:NSLocalizedString(@"_error_", nil) message: errorDescription preferredStyle:UIAlertControllerStyleAlert];
- UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
- handler:^(UIAlertAction * action) {
- [alert dismissViewControllerAnimated:YES completion:nil];
- [self closeShareViewController];
- }];
- [alert addAction:ok];
- [self presentViewController:alert animated:YES completion:nil];
- }
- }];
-
- } else {
-
- [self closeShareViewController];
- }
- }
- - (void)cancelPost
- {
- // rimuoviamo i file+ico
- for (NSString *fileName in self.filesName) {
-
- [[NSFileManager defaultManager] removeItemAtPath:[NSTemporaryDirectory() stringByAppendingString:fileName] error:nil];
- }
-
- [self closeShareViewController];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark ===== Swipe Table DELETE -> menu =====
- #pragma--------------------------------------------------------------------------------------------
- - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
- {
- [self setEditing:NO animated:YES];
-
- NSString *fileName = [self.filesName objectAtIndex:indexPath.row];
-
- [[NSFileManager defaultManager] removeItemAtPath:[NSTemporaryDirectory() stringByAppendingString:fileName] error:nil];
- [self.filesName removeObjectAtIndex:indexPath.row];
-
- if ([self.filesName count] == 0) [self closeShareViewController];
- else [self.shareTable performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];
- }
- #pragma --------------------------------------------------------------------------------------------
- #pragma mark == Table ==
- #pragma --------------------------------------------------------------------------------------------
- - (void)loadDataSwift
- {
- CCloadItemData *loadItem = [[CCloadItemData alloc] init];
-
- [loadItem loadFiles:NSTemporaryDirectory() extensionContext:self.extensionContext vc:self];
- }
- - (void)reloadData:(NSArray *)files
- {
- totalSize = 0;
- for (NSString *file in files) {
-
- NSUInteger fileSize = (NSInteger)[[[NSFileManager defaultManager] attributesOfItemAtPath:[NSTemporaryDirectory() stringByAppendingString:file] error:nil] fileSize];
- totalSize += fileSize;
- }
-
- if (totalSize > 0) {
-
- self.filesName = [[NSMutableArray alloc] initWithArray:files];
- [self.shareTable reloadData];
-
- } else {
-
- [self closeShareViewController];
- }
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- return 80;
- }
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
- {
- return 1;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- {
- return [self.filesName count];
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- NSString *fileName = [self.filesName objectAtIndex:indexPath.row];
- UIImage *image = nil;
-
- CCCellShareExt *cell = (CCCellShareExt *)[tableView dequeueReusableCellWithIdentifier:@"ShareExtCell" forIndexPath:indexPath];
- CFStringRef fileExtension = (__bridge CFStringRef)[fileName pathExtension];
- CFStringRef fileUTI = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, fileExtension, NULL);
- if (UTTypeConformsTo(fileUTI, kUTTypeZipArchive) && [(__bridge NSString *)fileUTI containsString:@"org.openxmlformats"] == NO) image = [UIImage imageNamed:@"file_compress"];
- else if (UTTypeConformsTo(fileUTI, kUTTypeAudio)) image = [UIImage imageNamed:@"file_audio"];
- else if (UTTypeConformsTo(fileUTI, kUTTypeMovie)) image = [UIImage imageNamed:@"file_movie"];
- else if (UTTypeConformsTo(fileUTI, kUTTypeImage)) {
- image = [UIImage imageWithContentsOfFile:[NSTemporaryDirectory() stringByAppendingString:fileName]];
- if (image) {
- image = [NCUtility.sharedInstance resizeImageWithImage:image newWidth:cell.frame.size.width];
- } else {
- image = [UIImage imageNamed:@"file_photo"];
- }
- }
- else if (UTTypeConformsTo(fileUTI, kUTTypeContent)) {
-
- image = [UIImage imageNamed:@"document"];
-
- NSString *typeFile = (__bridge NSString *)fileUTI;
-
- if ([typeFile isEqualToString:@"com.adobe.pdf"]) image = [UIImage imageNamed:@"file_pdf"];
- if ([typeFile isEqualToString:@"org.openxmlformats.spreadsheetml.sheet"]) image = [UIImage imageNamed:@"file_xls"];
- if ([typeFile isEqualToString:@"public.plain-text"]) image = [UIImage imageNamed:@"file_txt"];
- }
- else image = [UIImage imageNamed:@"file"];
-
- NSUInteger fileSize = (NSInteger)[[[NSFileManager defaultManager] attributesOfItemAtPath:[NSTemporaryDirectory() stringByAppendingString:fileName] error:nil] fileSize];
-
- cell.fileImageView.image = image;
- cell.fileName.text = fileName;
- cell.fileName.textColor = NCBrandColor.sharedInstance.textView;
- cell.fileName.delegate = self;
-
- cell.info.text = [CCUtility transformedSize:fileSize];
- cell.info.textColor = NCBrandColor.sharedInstance.textView;
-
- return cell;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- {
- [tableView deselectRowAtIndexPath:indexPath animated:YES];
- }
- @end
|