12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151 |
- //
- // CCCreateCloud.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 09/01/17.
- // Copyright © 2017 TWS. All rights reserved.
- //
- // Author Marino Faggiana <m.faggiana@twsweb.it>
- //
- // 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 Foundation
- // MARK: -
- class CreateMenuAdd: NSObject {
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- let fontButton = [NSAttributedString.Key.font:UIFont(name: "HelveticaNeue", size: 16)!, NSAttributedString.Key.foregroundColor: UIColor.black]
- let fontEncrypted = [NSAttributedString.Key.font:UIFont(name: "HelveticaNeue", size: 16)!, NSAttributedString.Key.foregroundColor: NCBrandColor.sharedInstance.encrypted as UIColor]
- let fontCancel = [NSAttributedString.Key.font:UIFont(name: "HelveticaNeue-Bold", size: 17)!, NSAttributedString.Key.foregroundColor: UIColor.black]
- let fontDisable = [NSAttributedString.Key.font:UIFont(name: "HelveticaNeue", size: 16)!, NSAttributedString.Key.foregroundColor: UIColor.darkGray]
- let colorLightGray = UIColor(red: 250.0/255.0, green: 250.0/255.0, blue: 250.0/255.0, alpha: 1)
- let colorGray = UIColor(red: 150.0/255.0, green: 150.0/255.0, blue: 150.0/255.0, alpha: 1)
- var colorIcon = NCBrandColor.sharedInstance.brandElement
-
- @objc init (themingColor : UIColor) {
-
- super.init()
- colorIcon = themingColor
- }
-
- @objc func createMenu(view : UIView) {
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- let actionSheet = AHKActionSheet.init(view: view, title: nil)!
-
- actionSheet.animationDuration = 0.2
- actionSheet.automaticallyTintButtonImages = 0
-
- actionSheet.buttonHeight = 50.0
- actionSheet.cancelButtonHeight = 50.0
- actionSheet.separatorHeight = 5.0
-
- actionSheet.separatorColor = NCBrandColor.sharedInstance.seperator
-
- actionSheet.buttonTextAttributes = fontButton
- actionSheet.encryptedButtonTextAttributes = fontEncrypted
- actionSheet.cancelButtonTextAttributes = fontCancel
- actionSheet.disableButtonTextAttributes = fontDisable
-
- actionSheet.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
-
- actionSheet.addButton(withTitle: NSLocalizedString("_upload_photos_videos_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "media"), multiplier:2, color: colorGray), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
- appDelegate.activeMain.openAssetsPickerController()
- })
-
- actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "file"), multiplier:2, color: colorGray), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
- appDelegate.activeMain.openImportDocumentPicker()
- })
-
- actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_text_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "file_txt"), multiplier:2, color: colorGray), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
-
- let storyboard = UIStoryboard(name: "NCText", bundle: nil)
- let controller = storyboard.instantiateViewController(withIdentifier: "NCText")
- controller.modalPresentationStyle = UIModalPresentationStyle.pageSheet
- appDelegate.activeMain.present(controller, animated: true, completion: nil)
- })
-
- if #available(iOS 11.0, *) {
- actionSheet.addButton(withTitle: NSLocalizedString("_scans_document_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "scan"), multiplier:2, color: colorGray), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
- NCCreateScanDocument.sharedInstance.openScannerDocument(viewController: appDelegate.activeMain, openScan: true)
- })
- }
-
- actionSheet.addButton(withTitle: NSLocalizedString("_create_folder_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "folder"), multiplier:2, color: colorIcon), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0 ,type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
- appDelegate.activeMain.createFolder()
- })
-
- actionSheet.show()
- }
- }
- // MARK: -
- @objc protocol createFormUploadAssetsDelegate {
-
- func dismissFormUploadAssets()
- }
- // MARK: -
- class CreateFormUploadAssets: XLFormViewController, CCMoveDelegate {
-
- var serverUrl : String = ""
- var titleServerUrl : String?
- var assets: NSMutableArray = []
- var cryptated : Bool = false
- var session : String = ""
- weak var delegate: createFormUploadAssetsDelegate?
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- @objc convenience init(serverUrl : String, assets : NSMutableArray, cryptated : Bool, session : String, delegate: createFormUploadAssetsDelegate) {
-
- self.init()
-
- if serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl) {
- titleServerUrl = "/"
- } else {
- titleServerUrl = (serverUrl as NSString).lastPathComponent
- }
-
- self.serverUrl = serverUrl
- self.assets = assets
- self.cryptated = cryptated
- self.session = session
- self.delegate = delegate
-
- self.initializeForm()
- }
-
- //MARK: XLFormDescriptorDelegate
- func initializeForm() {
- let form : XLFormDescriptor = XLFormDescriptor(title: NSLocalizedString("_upload_photos_videos_", comment: "")) as XLFormDescriptor
- form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
- var section : XLFormSectionDescriptor
- var row : XLFormRowDescriptor
-
- // Section: Destination Folder
-
- section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_save_path_", comment: ""))
- form.addFormSection(section)
-
- row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
- row.action.formSelector = #selector(changeDestinationFolder(_:))
- let imageFolder = CCGraphics.changeThemingColorImage(UIImage(named: "folder")!, multiplier:2, color: NCBrandColor.sharedInstance.brandElement) as UIImage
- row.cellConfig["imageView.image"] = imageFolder
-
- row.cellConfig["textLabel.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- section.addFormRow(row)
-
- // User folder Media
- row = XLFormRowDescriptor(tag: "useFolderMedia", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_use_folder_media_", comment: ""))
- row.value = 0
-
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- section.addFormRow(row)
-
- // Use Sub folder
- row = XLFormRowDescriptor(tag: "useSubFolder", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_autoupload_create_subfolder_", comment: ""))
- let tableAccount = NCManageDatabase.sharedInstance.getAccountActive()
- if tableAccount?.autoUploadCreateSubfolder == true {
- row.value = 1
- } else {
- row.value = 0
- }
- row.hidden = "$\("useFolderMedia") == 0"
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- section.addFormRow(row)
-
- // Section Mode filename
-
- section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_mode_filename_", comment: ""))
- form.addFormSection(section)
-
- // Maintain the original fileName
-
- row = XLFormRowDescriptor(tag: "maintainOriginalFileName", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_maintain_original_filename_", comment: ""))
- row.value = CCUtility.getOriginalFileName(k_keyFileNameOriginal)
-
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- section.addFormRow(row)
-
- // Add File Name Type
- row = XLFormRowDescriptor(tag: "addFileNameType", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_add_filenametype_", comment: ""))
- row.value = CCUtility.getFileNameType(k_keyFileNameType)
- row.hidden = "$\("maintainOriginalFileName") == 1"
-
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
- section.addFormRow(row)
-
- // Section: Rename File Name
-
- section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_filename_", comment: ""))
- form.addFormSection(section)
-
- row = XLFormRowDescriptor(tag: "maskFileName", rowType: XLFormRowDescriptorTypeAccount, title: (NSLocalizedString("_filename_", comment: "")))
- let fileNameMask : String = CCUtility.getFileNameMask(k_keyFileNameMask)
- if fileNameMask.count > 0 {
- row.value = fileNameMask
- }
- row.hidden = "$\("maintainOriginalFileName") == 1"
-
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- section.addFormRow(row)
-
- // Section: Preview File Name
-
- row = XLFormRowDescriptor(tag: "previewFileName", rowType: XLFormRowDescriptorTypeTextView, title: "")
- row.height = 180
- row.disabled = true
- row.cellConfig["textView.backgroundColor"] = NCBrandColor.sharedInstance.backgroundView
- row.cellConfig["textView.font"] = UIFont.systemFont(ofSize: 14.0)
-
- section.addFormRow(row)
-
- self.form = form
- }
-
- override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
-
- super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
-
- if formRow.tag == "useFolderMedia" {
-
- if (formRow.value! as AnyObject).boolValue == true {
-
- let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
- buttonDestinationFolder.hidden = true
-
- } else{
-
- let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
- buttonDestinationFolder.hidden = false
- }
- }
- else if formRow.tag == "useSubFolder" {
-
- if (formRow.value! as AnyObject).boolValue == true {
-
- } else{
-
- }
- }
- else if formRow.tag == "maintainOriginalFileName" {
- CCUtility.setOriginalFileName((formRow.value! as AnyObject).boolValue, key: k_keyFileNameOriginal)
- self.reloadForm()
- }
- else if formRow.tag == "addFileNameType" {
- CCUtility.setFileNameType((formRow.value! as AnyObject).boolValue, key: k_keyFileNameType)
- self.reloadForm()
- }
- else if formRow.tag == "maskFileName" {
-
- let fileName = formRow.value as? String
-
- self.form.delegate = nil
-
- if let fileName = fileName {
- formRow.value = CCUtility.removeForbiddenCharactersServer(fileName)
- }
-
- self.form.delegate = self
-
- let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
- previewFileName.value = self.previewFileName(valueRename: formRow.value as? String)
-
- // reload cell
- if fileName != nil {
-
- if newValue as! String != formRow.value as! String {
-
- self.reloadFormRow(formRow)
-
- appDelegate.messageNotification("_info_", description: "_forbidden_characters_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
- }
- }
-
- self.reloadFormRow(previewFileName)
- }
- }
-
- // MARK: - View Life Cycle
- override func viewDidLoad() {
-
- super.viewDidLoad()
-
- let cancelButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_cancel_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(cancel))
- let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(save))
-
- self.navigationItem.leftBarButtonItem = cancelButton
- self.navigationItem.rightBarButtonItem = saveButton
-
- self.navigationController?.navigationBar.isTranslucent = false
- self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
- self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
- self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: NCBrandColor.sharedInstance.brandText]
-
- self.tableView.separatorStyle = UITableViewCell.SeparatorStyle.none
-
- self.reloadForm()
- }
-
- override func viewWillDisappear(_ animated: Bool)
- {
- super.viewWillDisappear(animated)
- self.delegate?.dismissFormUploadAssets()
- }
- func reloadForm() {
-
- self.form.delegate = nil
-
- let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
- buttonDestinationFolder.title = self.titleServerUrl
-
- let maskFileName : XLFormRowDescriptor = self.form.formRow(withTag: "maskFileName")!
- let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
- previewFileName.value = self.previewFileName(valueRename: maskFileName.value as? String)
-
- self.tableView.reloadData()
- self.form.delegate = self
- }
- // MARK: - Action
- func moveServerUrl(to serverUrlTo: String!, title: String!) {
-
- self.serverUrl = serverUrlTo
-
- if let title = title {
-
- self.titleServerUrl = title
-
- } else {
-
- self.titleServerUrl = "/"
- }
-
- self.reloadForm()
- }
-
- @objc func save() {
-
- self.dismiss(animated: true, completion: {
-
- let useFolderPhotoRow : XLFormRowDescriptor = self.form.formRow(withTag: "useFolderMedia")!
- let useSubFolderRow : XLFormRowDescriptor = self.form.formRow(withTag: "useSubFolder")!
- var useSubFolder : Bool = false
-
- if (useFolderPhotoRow.value! as AnyObject).boolValue == true {
-
- self.serverUrl = NCManageDatabase.sharedInstance.getAccountAutoUploadPath(self.appDelegate.activeUrl)
- useSubFolder = (useSubFolderRow.value! as AnyObject).boolValue
- }
-
- self.appDelegate.activeMain.uploadFileAsset(self.assets, serverUrl: self.serverUrl, useSubFolder: useSubFolder, session: self.session)
- })
- }
- @objc func cancel() {
-
- self.dismiss(animated: true, completion: nil)
- }
-
- // MARK: - Utility
-
- func previewFileName(valueRename : String?) -> String {
-
- var returnString: String = ""
- let asset = assets[0] as! PHAsset
-
- if (CCUtility.getOriginalFileName(k_keyFileNameOriginal)) {
-
- return (NSLocalizedString("_filename_", comment: "") + ": " + (asset.value(forKey: "filename") as! String))
-
- } else if let valueRename = valueRename {
-
- let valueRenameTrimming = valueRename.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
-
- if valueRenameTrimming.count > 0 {
-
- self.form.delegate = nil
- CCUtility.setFileNameMask(valueRename, key: k_keyFileNameMask)
- self.form.delegate = self
-
- returnString = CCUtility.createFileName(asset.value(forKey: "filename") as! String?, fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: k_keyFileNameMask, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)
-
- } else {
-
- CCUtility.setFileNameMask("", key: k_keyFileNameMask)
- returnString = CCUtility.createFileName(asset.value(forKey: "filename") as! String?, fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: nil, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)
- }
-
- } else {
-
- CCUtility.setFileNameMask("", key: k_keyFileNameMask)
- returnString = CCUtility.createFileName(asset.value(forKey: "filename") as! String?, fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: nil, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)
- }
-
- return String(format: NSLocalizedString("_preview_filename_", comment: ""), "MM,MMM,DD,YY,YYYY and HH,hh,mm,ss,ampm") + ":" + "\n\n" + returnString
- }
-
- @objc func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
-
- self.deselectFormRow(sender)
-
- let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
- let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
- let viewController : CCMove = navigationController.topViewController as! CCMove
-
- viewController.delegate = self;
- viewController.tintColor = NCBrandColor.sharedInstance.brandText
- viewController.barTintColor = NCBrandColor.sharedInstance.brand
- viewController.tintColorTitle = NCBrandColor.sharedInstance.brandText
- viewController.move.title = NSLocalizedString("_select_", comment: "");
- viewController.networkingOperationQueue = appDelegate.netQueue
- // E2EE
- viewController.includeDirectoryE2EEncryption = true;
-
- navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
- self.present(navigationController, animated: true, completion: nil)
- }
-
- }
- // MARK: -
- class CreateFormUploadFileText: XLFormViewController, CCMoveDelegate {
-
- var serverUrl = ""
- var titleServerUrl = ""
- var fileName = ""
- var text = ""
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
-
- convenience init(serverUrl: String, text: String, fileName: String) {
-
- self.init()
-
- if serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl) {
- titleServerUrl = "/"
- } else {
- titleServerUrl = (serverUrl as NSString).lastPathComponent
- }
-
- self.fileName = fileName
- self.serverUrl = serverUrl
- self.text = text
-
- initializeForm()
- }
-
- //MARK: XLFormDescriptorDelegate
-
- func initializeForm() {
-
- let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
- form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
-
- var section : XLFormSectionDescriptor
- var row : XLFormRowDescriptor
-
- // Section: Destination Folder
-
- section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_save_path_", comment: ""))
- form.addFormSection(section)
-
- row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
- row.action.formSelector = #selector(changeDestinationFolder(_:))
- let imageFolder = CCGraphics.changeThemingColorImage(UIImage(named: "folder")!, multiplier:2, color: NCBrandColor.sharedInstance.brandElement) as UIImage
- row.cellConfig["imageView.image"] = imageFolder
-
- row.cellConfig["textLabel.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- section.addFormRow(row)
-
- // Section: File Name
-
- section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_filename_", comment: ""))
- form.addFormSection(section)
-
-
- row = XLFormRowDescriptor(tag: "fileName", rowType: XLFormRowDescriptorTypeAccount, title: NSLocalizedString("_filename_", comment: ""))
- row.value = self.fileName
-
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
-
- section.addFormRow(row)
-
- self.form = form
- }
-
- override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
-
- super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
-
- if formRow.tag == "fileName" {
-
- self.form.delegate = nil
-
- if let fileNameNew = formRow.value {
- self.fileName = CCUtility.removeForbiddenCharactersServer(fileNameNew as? String)
- }
-
- formRow.value = self.fileName
- self.title = fileName
-
- self.updateFormRow(formRow)
-
- self.form.delegate = self
- }
- }
-
- // MARK: - View Life Cycle
-
- override func viewDidLoad() {
-
- super.viewDidLoad()
-
- let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(save))
- self.navigationItem.rightBarButtonItem = saveButton
-
- self.navigationController?.navigationBar.isTranslucent = false
- self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
- self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
- self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: NCBrandColor.sharedInstance.brandText]
-
- self.tableView.separatorStyle = UITableViewCell.SeparatorStyle.none
- }
-
- // MARK: - Action
-
- func moveServerUrl(to serverUrlTo: String!, title: String!) {
-
- self.serverUrl = serverUrlTo
-
- if let title = title {
-
- self.titleServerUrl = title
-
- } else {
-
- self.titleServerUrl = "/"
- }
-
- // Update
- let row : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
- row.title = self.titleServerUrl
- self.updateFormRow(row)
- }
-
- @objc func save() {
-
- let rowFileName : XLFormRowDescriptor = self.form.formRow(withTag: "fileName")!
- guard let name = rowFileName.value else {
- return
- }
- let ext = (name as! NSString).pathExtension.uppercased()
- var fileNameSave = ""
-
- if (ext == "") {
- fileNameSave = name as! String + ".txt"
- } else if (CCUtility.isDocumentModifiableExtension(ext)) {
- fileNameSave = name as! String
- } else {
- fileNameSave = (name as! NSString).deletingPathExtension + ".txt"
- }
-
- guard let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(self.serverUrl) else {
- return
- }
- let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "directoryID == %@ AND fileNameView == %@", directoryID, fileNameSave))
-
- if (metadata != nil) {
-
- let alertController = UIAlertController(title: fileNameSave, message: NSLocalizedString("_file_already_exists_", comment: ""), preferredStyle: .alert)
-
- let cancelAction = UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .default) { (action:UIAlertAction) in
- }
-
- let overwriteAction = UIAlertAction(title: NSLocalizedString("_overwrite_", comment: ""), style: .cancel) { (action:UIAlertAction) in
- self.dismissAndUpload(fileNameSave, fileID: metadata!.fileID, directoryID: directoryID)
- }
-
- alertController.addAction(cancelAction)
- alertController.addAction(overwriteAction)
-
- self.present(alertController, animated: true, completion:nil)
-
- } else {
- let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(self.serverUrl)!
- dismissAndUpload(fileNameSave, fileID: directoryID + fileNameSave, directoryID: directoryID)
- }
- }
-
- func dismissAndUpload(_ fileNameSave: String, fileID: String, directoryID: String) {
-
- self.dismiss(animated: true, completion: {
-
- let data = self.text.data(using: .utf8)
- let success = FileManager.default.createFile(atPath: CCUtility.getDirectoryProviderStorageFileID(fileID, fileNameView: fileNameSave), contents: data, attributes: nil)
-
- if success {
-
- let metadataForUpload = tableMetadata()
-
- metadataForUpload.account = self.appDelegate.activeAccount
- metadataForUpload.date = NSDate()
- metadataForUpload.directoryID = directoryID
- metadataForUpload.fileID = fileID
- metadataForUpload.fileName = fileNameSave
- metadataForUpload.fileNameView = fileNameSave
- metadataForUpload.session = k_upload_session
- metadataForUpload.sessionSelector = selectorUploadFile
- metadataForUpload.status = Int(k_metadataStatusWaitUpload)
-
- _ = NCManageDatabase.sharedInstance.addMetadata(metadataForUpload)
- self.appDelegate.perform(#selector(self.appDelegate.loadAutoDownloadUpload), on: Thread.main, with: nil, waitUntilDone: true)
-
- NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: self.serverUrl, fileID: nil, action: Int32(k_action_NULL))
-
- } else {
-
- self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
- }
- })
- }
-
- func cancel() {
-
- self.dismiss(animated: true, completion: nil)
- }
-
- @objc func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
-
- self.deselectFormRow(sender)
-
- let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
- let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
- let viewController : CCMove = navigationController.topViewController as! CCMove
-
- viewController.delegate = self;
- viewController.tintColor = NCBrandColor.sharedInstance.brandText
- viewController.barTintColor = NCBrandColor.sharedInstance.brand
- viewController.tintColorTitle = NCBrandColor.sharedInstance.brandText
- viewController.move.title = NSLocalizedString("_select_", comment: "");
- viewController.networkingOperationQueue = appDelegate.netQueue
- // E2EE
- viewController.includeDirectoryE2EEncryption = true;
-
- navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
- self.present(navigationController, animated: true, completion: nil)
- }
- }
- //MARK: -
- class CreateFormUploadScanDocument: XLFormViewController, CCMoveDelegate {
-
- var serverUrl = ""
- var titleServerUrl = ""
- var arrayImages = [UIImage]()
- var fileName = CCUtility.createFileNameDate("scan", extension: "pdf")
- var password : PDFPassword = ""
- var compressionQuality: Double = 0.5
- var fileType = "PDF"
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
-
- convenience init(serverUrl: String, arrayImages: [UIImage]) {
-
- self.init()
-
- if serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl) {
- titleServerUrl = "/"
- } else {
- titleServerUrl = (serverUrl as NSString).lastPathComponent
- }
-
- self.serverUrl = serverUrl
- self.arrayImages = arrayImages
-
- initializeForm()
- }
-
- //MARK: XLFormDescriptorDelegate
-
- func initializeForm() {
-
- let form : XLFormDescriptor = XLFormDescriptor(title: NSLocalizedString("_save_settings_", comment: "")) as XLFormDescriptor
- form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
-
- var section : XLFormSectionDescriptor
- var row : XLFormRowDescriptor
-
- // Section: Destination Folder
-
- section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_save_path_", comment: ""))
- form.addFormSection(section)
-
- row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
- row.action.formSelector = #selector(changeDestinationFolder(_:))
- let imageFolder = CCGraphics.changeThemingColorImage(UIImage(named: "folder")!, multiplier:2, color: NCBrandColor.sharedInstance.brandElement) as UIImage
- row.cellConfig["imageView.image"] = imageFolder
- row.cellConfig["textLabel.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- section.addFormRow(row)
-
- // Section: Quality
-
- section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_quality_image_title_", comment: ""))
- form.addFormSection(section)
-
- row = XLFormRowDescriptor(tag: "compressionQuality", rowType: XLFormRowDescriptorTypeSlider)
- row.value = 0.5
- row.title = NSLocalizedString("_quality_medium_", comment: "")
-
- row.cellConfig["slider.minimumTrackTintColor"] = NCBrandColor.sharedInstance.brand
- row.cellConfig["slider.maximumValue"] = 1
- row.cellConfig["slider.minimumValue"] = 0
- row.cellConfig["steps"] = 2
- row.cellConfig["textLabel.textAlignment"] = NSTextAlignment.center.rawValue
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- section.addFormRow(row)
- // Section: Password
-
- section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_pdf_password_", comment: ""))
- form.addFormSection(section)
-
- row = XLFormRowDescriptor(tag: "password", rowType: XLFormRowDescriptorTypePassword, title: NSLocalizedString("_password_", comment: ""))
-
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
-
- section.addFormRow(row)
-
- // Section: File
-
- section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_file_creation_", comment: ""))
- form.addFormSection(section)
-
- if arrayImages.count == 1 {
- row = XLFormRowDescriptor(tag: "filetype", rowType: XLFormRowDescriptorTypeSelectorSegmentedControl, title: NSLocalizedString("_file_type_", comment: ""))
- row.selectorOptions = ["PDF","JPG"]
- row.value = "PDF"
-
- row.cellConfig["tintColor"] = NCBrandColor.sharedInstance.brand
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- section.addFormRow(row)
- }
-
- row = XLFormRowDescriptor(tag: "fileName", rowType: XLFormRowDescriptorTypeAccount, title: NSLocalizedString("_filename_", comment: ""))
- row.value = self.fileName
- row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
-
- row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
- row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
- section.addFormRow(row)
-
- self.form = form
- }
-
- override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
-
- super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
-
- if formRow.tag == "fileName" {
-
- self.form.delegate = nil
-
- let fileNameNew = newValue as? String
-
- if fileNameNew != nil {
- self.fileName = CCUtility.removeForbiddenCharactersServer(fileNameNew)
- } else {
- self.fileName = ""
- }
-
- formRow.value = self.fileName
-
- self.updateFormRow(formRow)
-
- self.form.delegate = self
- }
-
- if formRow.tag == "compressionQuality" {
-
- self.form.delegate = nil
-
- //let row : XLFormRowDescriptor = self.form.formRow(withTag: "descriptionQuality")!
- let newQuality = newValue as? NSNumber
- compressionQuality = (newQuality?.doubleValue)!
-
- if compressionQuality >= 0.0 && compressionQuality <= 0.3 {
- formRow.title = NSLocalizedString("_quality_low_", comment: "")
- compressionQuality = 0.1
- } else if compressionQuality >= 0.4 && compressionQuality <= 0.6 {
- formRow.title = NSLocalizedString("_quality_medium_", comment: "")
- compressionQuality = 0.5
- } else if compressionQuality >= 0.7 && compressionQuality <= 1.0 {
- formRow.title = NSLocalizedString("_quality_high_", comment: "")
- compressionQuality = 0.8
- }
-
- self.updateFormRow(formRow)
-
- self.form.delegate = self
- }
-
- if formRow.tag == "password" {
- let stringPassword = newValue as? String
- if stringPassword != nil {
- password = PDFPassword(stringPassword!)
- } else {
- password = PDFPassword("")
- }
- }
-
- if formRow.tag == "filetype" {
- fileType = newValue as! String
-
- let rowFileName : XLFormRowDescriptor = self.form.formRow(withTag: "fileName")!
- let rowPassword : XLFormRowDescriptor = self.form.formRow(withTag: "password")!
-
- // rowFileName
- guard var name = rowFileName.value else {
- return
- }
- if name as! String == "" {
- name = CCUtility.createFileNameDate("scan", extension: "pdf")
- }
-
- let ext = (name as! NSString).pathExtension.uppercased()
- var newFileName = ""
-
- if (ext == "") {
- newFileName = name as! String + "." + fileType.lowercased()
- } else {
- newFileName = (name as! NSString).deletingPathExtension + "." + fileType.lowercased()
- }
-
- rowFileName.value = newFileName
-
- self.updateFormRow(rowFileName)
-
- // rowPassword
- if fileType == "JPG" {
- rowPassword.value = ""
- password = PDFPassword("")
- rowPassword.disabled = true
- } else {
- rowPassword.disabled = false
- }
-
- self.updateFormRow(rowPassword)
- }
- }
-
- // MARK: - View Life Cycle
-
- override func viewDidLoad() {
-
- super.viewDidLoad()
-
- let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(save))
- self.navigationItem.rightBarButtonItem = saveButton
-
- self.navigationController?.navigationBar.isTranslucent = false
- self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
- self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
- self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: NCBrandColor.sharedInstance.brandText]
-
- self.tableView.separatorStyle = UITableViewCell.SeparatorStyle.none
- // self.tableView.sectionHeaderHeight = 10
- // self.tableView.sectionFooterHeight = 10
- // self.tableView.backgroundColor = NCBrandColor.sharedInstance.backgroundView
-
-
- // let row : XLFormRowDescriptor = self.form.formRow(withTag: "fileName")!
- // let rowCell = row.cell(forForm: self)
- // rowCell.becomeFirstResponder()
- }
-
- // MARK: - Action
-
- func moveServerUrl(to serverUrlTo: String!, title: String!) {
-
- self.serverUrl = serverUrlTo
-
- if let title = title {
-
- self.titleServerUrl = title
-
- } else {
-
- self.titleServerUrl = "/"
- }
-
- // Update
- let row : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
- row.title = self.titleServerUrl
- self.updateFormRow(row)
- }
-
- @objc func save() {
-
- let rowFileName : XLFormRowDescriptor = self.form.formRow(withTag: "fileName")!
- guard let name = rowFileName.value else {
- return
- }
- if name as! String == "" {
- return
- }
-
- let ext = (name as! NSString).pathExtension.uppercased()
- var fileNameSave = ""
-
- if (ext == "") {
- fileNameSave = name as! String + "." + fileType.lowercased()
- } else {
- fileNameSave = (name as! NSString).deletingPathExtension + "." + fileType.lowercased()
- }
-
- guard let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(self.serverUrl) else {
- return
- }
- let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "directoryID == %@ AND fileNameView == %@", directoryID, fileNameSave))
-
- if (metadata != nil) {
-
- let alertController = UIAlertController(title: fileNameSave, message: NSLocalizedString("_file_already_exists_", comment: ""), preferredStyle: .alert)
-
- let cancelAction = UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .default) { (action:UIAlertAction) in
- }
-
- let overwriteAction = UIAlertAction(title: NSLocalizedString("_overwrite_", comment: ""), style: .cancel) { (action:UIAlertAction) in
- NCManageDatabase.sharedInstance.deleteMetadata(predicate: NSPredicate(format: "directoryID == %@ AND fileNameView == %@", directoryID, fileNameSave), clearDateReadDirectoryID: directoryID)
- self.dismissAndUpload(fileNameSave, fileID: directoryID + fileNameSave, directoryID: directoryID)
- }
-
- alertController.addAction(cancelAction)
- alertController.addAction(overwriteAction)
-
- self.present(alertController, animated: true, completion:nil)
-
- } else {
- let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(self.serverUrl)!
- dismissAndUpload(fileNameSave, fileID: directoryID + fileNameSave, directoryID: directoryID)
- }
- }
-
- func dismissAndUpload(_ fileNameSave: String, fileID: String, directoryID: String) {
-
- guard let fileNameGenerateExport = CCUtility.getDirectoryProviderStorageFileID(fileID, fileNameView: fileNameSave) else {
- self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
- return
- }
-
- if fileType == "PDF" {
-
- var pdfPages = [PDFPage]()
- //Generate PDF
- for image in self.arrayImages {
- guard let data = image.jpegData(compressionQuality: CGFloat(compressionQuality)) else {
- self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
- return
- }
- let page = PDFPage.image(UIImage(data: data)!)
- pdfPages.append(page)
- }
-
- do {
- try PDFGenerator.generate(pdfPages, to: fileNameGenerateExport, password: password)
- } catch {
- self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
- return
- }
- }
-
- if fileType == "JPG" {
-
- guard let data = self.arrayImages[0].jpegData(compressionQuality: CGFloat(compressionQuality)) else {
- self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
- return
- }
-
- do {
- try data.write(to: NSURL.fileURL(withPath: fileNameGenerateExport), options: .atomic)
- } catch {
- self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
- return
- }
- }
-
- //Create metadata for upload
- let metadataForUpload = tableMetadata()
-
- metadataForUpload.account = self.appDelegate.activeAccount
- metadataForUpload.date = NSDate()
- metadataForUpload.directoryID = directoryID
- metadataForUpload.fileID = fileID
- metadataForUpload.fileName = fileNameSave
- metadataForUpload.fileNameView = fileNameSave
- metadataForUpload.session = k_upload_session
- metadataForUpload.sessionSelector = selectorUploadFile
- metadataForUpload.status = Int(k_metadataStatusWaitUpload)
-
- _ = NCManageDatabase.sharedInstance.addMetadata(metadataForUpload)
- self.appDelegate.perform(#selector(self.appDelegate.loadAutoDownloadUpload), on: Thread.main, with: nil, waitUntilDone: true)
-
- NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: self.serverUrl, fileID: nil, action: Int32(k_action_NULL))
-
- self.dismiss(animated: true, completion: nil)
- }
-
- func cancel() {
-
- self.dismiss(animated: true, completion: nil)
- }
-
- @objc func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
-
- self.deselectFormRow(sender)
-
- let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
- let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
- let viewController : CCMove = navigationController.topViewController as! CCMove
-
- viewController.delegate = self;
- viewController.tintColor = NCBrandColor.sharedInstance.brandText
- viewController.barTintColor = NCBrandColor.sharedInstance.brand
- viewController.tintColorTitle = NCBrandColor.sharedInstance.brandText
- viewController.move.title = NSLocalizedString("_select_", comment: "");
- viewController.networkingOperationQueue = appDelegate.netQueue
- // E2EE
- viewController.includeDirectoryE2EEncryption = true;
-
- navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
- self.present(navigationController, animated: true, completion: nil)
- }
- }
- class NCCreateScanDocument : NSObject, ImageScannerControllerDelegate {
-
- @objc static let sharedInstance: NCCreateScanDocument = {
- let instance = NCCreateScanDocument()
- return instance
- }()
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- var viewController: UIViewController?
- var openScan: Bool = false
-
- @available(iOS 10, *)
- func openScannerDocument(viewController: UIViewController, openScan: Bool) {
-
- self.viewController = viewController
- self.openScan = openScan
-
- let scannerVC = ImageScannerController()
- scannerVC.imageScannerDelegate = self
- self.viewController?.present(scannerVC, animated: true, completion: nil)
- }
-
- @available(iOS 10, *)
- func imageScannerController(_ scanner: ImageScannerController, didFinishScanningWithResults results: ImageScannerResults) {
-
- let fileName = CCUtility.createFileName("scan.png", fileDate: Date(), fileType: PHAssetMediaType.image, keyFileName: k_keyFileNameMask, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)!
- let fileNamePath = CCUtility.getDirectoryScan() + "/" + fileName
-
- // A4 74 DPI : 595 x 842 px
-
- var image = results.scannedImage
- let imageWidthInPixels = image.size.width * results.scannedImage.scale
- let imageHeightInPixels = image.size.height * results.scannedImage.scale
-
- if imageWidthInPixels > 595 || imageHeightInPixels > 842 {
- image = CCGraphics.scale(image, to: CGSize(width: 595, height: 842), isAspectRation: true)
- }
-
- do {
- try image.pngData()?.write(to: NSURL.fileURL(withPath: fileNamePath), options: .atomic)
- } catch { }
-
- scanner.dismiss(animated: true, completion: {
- if (self.openScan) {
- let storyboard = UIStoryboard(name: "Scan", bundle: nil)
- let controller = storyboard.instantiateInitialViewController()!
-
- controller.modalPresentationStyle = UIModalPresentationStyle.pageSheet
- self.viewController?.present(controller, animated: true, completion: nil)
- }
- })
- }
-
- @available(iOS 10, *)
- func imageScannerControllerDidCancel(_ scanner: ImageScannerController) {
- scanner.dismiss(animated: true, completion: nil)
- }
-
- @available(iOS 10, *)
- func imageScannerController(_ scanner: ImageScannerController, didFailWithError error: Error) {
- appDelegate.messageNotification("_error_", description: error.localizedDescription, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: Int(k_CCErrorInternalError))
- }
- }
|