CCCreateCloud.swift 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199
  1. //
  2. // CCCreateCloud.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 09/01/17.
  6. // Copyright © 2017 Marino Faggiana. 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 Foundation
  24. import PDFGenerator
  25. // MARK: -
  26. class CreateMenuAdd: NSObject {
  27. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  28. let fontButton = [NSAttributedString.Key.font:UIFont(name: "HelveticaNeue", size: 16)!, NSAttributedString.Key.foregroundColor: UIColor.black]
  29. let fontEncrypted = [NSAttributedString.Key.font:UIFont(name: "HelveticaNeue", size: 16)!, NSAttributedString.Key.foregroundColor: NCBrandColor.sharedInstance.encrypted as UIColor]
  30. let fontCancel = [NSAttributedString.Key.font:UIFont(name: "HelveticaNeue-Bold", size: 17)!, NSAttributedString.Key.foregroundColor: UIColor.black]
  31. let fontDisable = [NSAttributedString.Key.font:UIFont(name: "HelveticaNeue", size: 16)!, NSAttributedString.Key.foregroundColor: UIColor.darkGray]
  32. var colorIcon = NCBrandColor.sharedInstance.brandElement
  33. @objc init (themingColor : UIColor) {
  34. super.init()
  35. colorIcon = themingColor
  36. }
  37. @objc func createMenu(view : UIView) {
  38. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  39. let actionSheet = AHKActionSheet.init(view: view, title: nil)!
  40. actionSheet.animationDuration = 0.2
  41. actionSheet.automaticallyTintButtonImages = 0
  42. actionSheet.buttonHeight = 50.0
  43. actionSheet.cancelButtonHeight = 50.0
  44. actionSheet.separatorHeight = 5.0
  45. actionSheet.separatorColor = NCBrandColor.sharedInstance.seperator
  46. actionSheet.buttonTextAttributes = fontButton
  47. actionSheet.encryptedButtonTextAttributes = fontEncrypted
  48. actionSheet.cancelButtonTextAttributes = fontCancel
  49. actionSheet.disableButtonTextAttributes = fontDisable
  50. actionSheet.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  51. actionSheet.addButton(withTitle: NSLocalizedString("_upload_photos_videos_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "media"), multiplier:2, color: NCBrandColor.sharedInstance.icon), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  52. appDelegate.activeMain.openAssetsPickerController()
  53. })
  54. actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "file"), multiplier:2, color: NCBrandColor.sharedInstance.icon), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  55. appDelegate.activeMain.openImportDocumentPicker()
  56. })
  57. actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_text_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "file_txt"), multiplier:2, color: NCBrandColor.sharedInstance.icon), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  58. let storyboard = UIStoryboard(name: "NCText", bundle: nil)
  59. let controller = storyboard.instantiateViewController(withIdentifier: "NCText")
  60. controller.modalPresentationStyle = UIModalPresentationStyle.pageSheet
  61. appDelegate.activeMain.present(controller, animated: true, completion: nil)
  62. })
  63. if #available(iOS 11.0, *) {
  64. actionSheet.addButton(withTitle: NSLocalizedString("_scans_document_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "scan"), multiplier:2, color: NCBrandColor.sharedInstance.icon), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  65. NCCreateScanDocument.sharedInstance.openScannerDocument(viewController: appDelegate.activeMain, openScan: true)
  66. })
  67. }
  68. 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
  69. appDelegate.activeMain.createFolder()
  70. })
  71. actionSheet.show()
  72. }
  73. }
  74. // MARK: -
  75. @objc protocol createFormUploadAssetsDelegate {
  76. func dismissFormUploadAssets()
  77. }
  78. // MARK: -
  79. class CreateFormUploadAssets: XLFormViewController, CCMoveDelegate {
  80. var serverUrl : String = ""
  81. var titleServerUrl : String?
  82. var assets: NSMutableArray = []
  83. var cryptated : Bool = false
  84. var session : String = ""
  85. weak var delegate: createFormUploadAssetsDelegate?
  86. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  87. @objc convenience init(serverUrl : String, assets : NSMutableArray, cryptated : Bool, session : String, delegate: createFormUploadAssetsDelegate) {
  88. self.init()
  89. if serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl) {
  90. titleServerUrl = "/"
  91. } else {
  92. titleServerUrl = (serverUrl as NSString).lastPathComponent
  93. }
  94. self.serverUrl = serverUrl
  95. self.assets = assets
  96. self.cryptated = cryptated
  97. self.session = session
  98. self.delegate = delegate
  99. self.initializeForm()
  100. }
  101. //MARK: XLFormDescriptorDelegate
  102. func initializeForm() {
  103. let form : XLFormDescriptor = XLFormDescriptor(title: NSLocalizedString("_upload_photos_videos_", comment: "")) as XLFormDescriptor
  104. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  105. var section : XLFormSectionDescriptor
  106. var row : XLFormRowDescriptor
  107. // Section: Destination Folder
  108. section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_save_path_", comment: ""))
  109. form.addFormSection(section)
  110. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
  111. row.action.formSelector = #selector(changeDestinationFolder(_:))
  112. let imageFolder = CCGraphics.changeThemingColorImage(UIImage(named: "folder")!, multiplier:2, color: NCBrandColor.sharedInstance.brandElement) as UIImage
  113. row.cellConfig["imageView.image"] = imageFolder
  114. row.cellConfig["textLabel.textAlignment"] = NSTextAlignment.right.rawValue
  115. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  116. section.addFormRow(row)
  117. // User folder Autoupload
  118. row = XLFormRowDescriptor(tag: "useFolderAutoUpload", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_use_folder_auto_upload_", comment: ""))
  119. row.value = 0
  120. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  121. section.addFormRow(row)
  122. // Use Sub folder
  123. row = XLFormRowDescriptor(tag: "useSubFolder", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_autoupload_create_subfolder_", comment: ""))
  124. let tableAccount = NCManageDatabase.sharedInstance.getAccountActive()
  125. if tableAccount?.autoUploadCreateSubfolder == true {
  126. row.value = 1
  127. } else {
  128. row.value = 0
  129. }
  130. row.hidden = "$\("useFolderAutoUpload") == 0"
  131. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  132. section.addFormRow(row)
  133. // Section Mode filename
  134. section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_mode_filename_", comment: ""))
  135. form.addFormSection(section)
  136. // Maintain the original fileName
  137. row = XLFormRowDescriptor(tag: "maintainOriginalFileName", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_maintain_original_filename_", comment: ""))
  138. row.value = CCUtility.getOriginalFileName(k_keyFileNameOriginal)
  139. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  140. section.addFormRow(row)
  141. // Add File Name Type
  142. row = XLFormRowDescriptor(tag: "addFileNameType", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_add_filenametype_", comment: ""))
  143. row.value = CCUtility.getFileNameType(k_keyFileNameType)
  144. row.hidden = "$\("maintainOriginalFileName") == 1"
  145. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  146. section.addFormRow(row)
  147. // Section: Rename File Name
  148. section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_filename_", comment: ""))
  149. form.addFormSection(section)
  150. row = XLFormRowDescriptor(tag: "maskFileName", rowType: XLFormRowDescriptorTypeAccount, title: (NSLocalizedString("_filename_", comment: "")))
  151. let fileNameMask : String = CCUtility.getFileNameMask(k_keyFileNameMask)
  152. if fileNameMask.count > 0 {
  153. row.value = fileNameMask
  154. }
  155. row.hidden = "$\("maintainOriginalFileName") == 1"
  156. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  157. row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
  158. row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
  159. section.addFormRow(row)
  160. // Section: Preview File Name
  161. row = XLFormRowDescriptor(tag: "previewFileName", rowType: XLFormRowDescriptorTypeTextView, title: "")
  162. row.height = 180
  163. row.disabled = true
  164. row.cellConfig["textView.backgroundColor"] = NCBrandColor.sharedInstance.backgroundView
  165. row.cellConfig["textView.font"] = UIFont.systemFont(ofSize: 14.0)
  166. section.addFormRow(row)
  167. self.form = form
  168. }
  169. override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
  170. super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
  171. if formRow.tag == "useFolderAutoUpload" {
  172. if (formRow.value! as AnyObject).boolValue == true {
  173. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  174. buttonDestinationFolder.hidden = true
  175. } else{
  176. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  177. buttonDestinationFolder.hidden = false
  178. }
  179. }
  180. else if formRow.tag == "useSubFolder" {
  181. if (formRow.value! as AnyObject).boolValue == true {
  182. } else{
  183. }
  184. }
  185. else if formRow.tag == "maintainOriginalFileName" {
  186. CCUtility.setOriginalFileName((formRow.value! as AnyObject).boolValue, key: k_keyFileNameOriginal)
  187. self.reloadForm()
  188. }
  189. else if formRow.tag == "addFileNameType" {
  190. CCUtility.setFileNameType((formRow.value! as AnyObject).boolValue, key: k_keyFileNameType)
  191. self.reloadForm()
  192. }
  193. else if formRow.tag == "maskFileName" {
  194. let fileName = formRow.value as? String
  195. self.form.delegate = nil
  196. if let fileName = fileName {
  197. formRow.value = CCUtility.removeForbiddenCharactersServer(fileName)
  198. }
  199. self.form.delegate = self
  200. let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
  201. previewFileName.value = self.previewFileName(valueRename: formRow.value as? String)
  202. // reload cell
  203. if fileName != nil {
  204. if newValue as! String != formRow.value as! String {
  205. self.reloadFormRow(formRow)
  206. appDelegate.messageNotification("_info_", description: "_forbidden_characters_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  207. }
  208. }
  209. self.reloadFormRow(previewFileName)
  210. }
  211. }
  212. // MARK: - View Life Cycle
  213. override func viewDidLoad() {
  214. super.viewDidLoad()
  215. let cancelButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_cancel_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(cancel))
  216. let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(save))
  217. self.navigationItem.leftBarButtonItem = cancelButton
  218. self.navigationItem.rightBarButtonItem = saveButton
  219. self.navigationController?.navigationBar.isTranslucent = false
  220. self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
  221. self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
  222. self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: NCBrandColor.sharedInstance.brandText]
  223. self.tableView.separatorStyle = UITableViewCell.SeparatorStyle.none
  224. self.reloadForm()
  225. }
  226. override func viewWillDisappear(_ animated: Bool)
  227. {
  228. super.viewWillDisappear(animated)
  229. self.delegate?.dismissFormUploadAssets()
  230. }
  231. func reloadForm() {
  232. self.form.delegate = nil
  233. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  234. buttonDestinationFolder.title = self.titleServerUrl
  235. let maskFileName : XLFormRowDescriptor = self.form.formRow(withTag: "maskFileName")!
  236. let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
  237. previewFileName.value = self.previewFileName(valueRename: maskFileName.value as? String)
  238. self.tableView.reloadData()
  239. self.form.delegate = self
  240. }
  241. // MARK: - Action
  242. func moveServerUrl(to serverUrlTo: String!, title: String!, type: String!) {
  243. self.serverUrl = serverUrlTo
  244. if let title = title {
  245. self.titleServerUrl = title
  246. } else {
  247. self.titleServerUrl = "/"
  248. }
  249. self.reloadForm()
  250. }
  251. @objc func save() {
  252. self.dismiss(animated: true, completion: {
  253. let useFolderPhotoRow : XLFormRowDescriptor = self.form.formRow(withTag: "useFolderAutoUpload")!
  254. let useSubFolderRow : XLFormRowDescriptor = self.form.formRow(withTag: "useSubFolder")!
  255. var useSubFolder : Bool = false
  256. if (useFolderPhotoRow.value! as AnyObject).boolValue == true {
  257. self.serverUrl = NCManageDatabase.sharedInstance.getAccountAutoUploadPath(self.appDelegate.activeUrl)
  258. useSubFolder = (useSubFolderRow.value! as AnyObject).boolValue
  259. }
  260. self.appDelegate.activeMain.uploadFileAsset(self.assets, serverUrl: self.serverUrl, useSubFolder: useSubFolder, session: self.session)
  261. })
  262. }
  263. @objc func cancel() {
  264. self.dismiss(animated: true, completion: nil)
  265. }
  266. // MARK: - Utility
  267. func previewFileName(valueRename : String?) -> String {
  268. var returnString: String = ""
  269. let asset = assets[0] as! PHAsset
  270. if (CCUtility.getOriginalFileName(k_keyFileNameOriginal)) {
  271. return (NSLocalizedString("_filename_", comment: "") + ": " + (asset.value(forKey: "filename") as! String))
  272. } else if let valueRename = valueRename {
  273. let valueRenameTrimming = valueRename.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
  274. if valueRenameTrimming.count > 0 {
  275. self.form.delegate = nil
  276. CCUtility.setFileNameMask(valueRename, key: k_keyFileNameMask)
  277. self.form.delegate = self
  278. returnString = CCUtility.createFileName(asset.value(forKey: "filename") as! String?, fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: k_keyFileNameMask, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)
  279. } else {
  280. CCUtility.setFileNameMask("", key: k_keyFileNameMask)
  281. returnString = CCUtility.createFileName(asset.value(forKey: "filename") as! String?, fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: nil, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)
  282. }
  283. } else {
  284. CCUtility.setFileNameMask("", key: k_keyFileNameMask)
  285. returnString = CCUtility.createFileName(asset.value(forKey: "filename") as! String?, fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: nil, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)
  286. }
  287. return String(format: NSLocalizedString("_preview_filename_", comment: ""), "MM,MMM,DD,YY,YYYY and HH,hh,mm,ss,ampm") + ":" + "\n\n" + returnString
  288. }
  289. @objc func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
  290. self.deselectFormRow(sender)
  291. let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
  292. let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
  293. let viewController : CCMove = navigationController.topViewController as! CCMove
  294. viewController.delegate = self;
  295. viewController.tintColor = NCBrandColor.sharedInstance.brandText
  296. viewController.barTintColor = NCBrandColor.sharedInstance.brand
  297. viewController.tintColorTitle = NCBrandColor.sharedInstance.brandText
  298. viewController.move.title = NSLocalizedString("_select_", comment: "");
  299. viewController.networkingOperationQueue = appDelegate.netQueue
  300. // E2EE
  301. viewController.includeDirectoryE2EEncryption = true;
  302. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  303. self.present(navigationController, animated: true, completion: nil)
  304. }
  305. }
  306. // MARK: -
  307. class CreateFormUploadFileText: XLFormViewController, CCMoveDelegate {
  308. var serverUrl = ""
  309. var titleServerUrl = ""
  310. var fileName = ""
  311. var text = ""
  312. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  313. convenience init(serverUrl: String, text: String, fileName: String) {
  314. self.init()
  315. if serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl) {
  316. titleServerUrl = "/"
  317. } else {
  318. titleServerUrl = (serverUrl as NSString).lastPathComponent
  319. }
  320. self.fileName = fileName
  321. self.serverUrl = serverUrl
  322. self.text = text
  323. initializeForm()
  324. }
  325. //MARK: XLFormDescriptorDelegate
  326. func initializeForm() {
  327. let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
  328. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  329. var section : XLFormSectionDescriptor
  330. var row : XLFormRowDescriptor
  331. // Section: Destination Folder
  332. section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_save_path_", comment: ""))
  333. form.addFormSection(section)
  334. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
  335. row.action.formSelector = #selector(changeDestinationFolder(_:))
  336. let imageFolder = CCGraphics.changeThemingColorImage(UIImage(named: "folder")!, multiplier:2, color: NCBrandColor.sharedInstance.brandElement) as UIImage
  337. row.cellConfig["imageView.image"] = imageFolder
  338. row.cellConfig["textLabel.textAlignment"] = NSTextAlignment.right.rawValue
  339. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  340. section.addFormRow(row)
  341. // Section: File Name
  342. section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_filename_", comment: ""))
  343. form.addFormSection(section)
  344. row = XLFormRowDescriptor(tag: "fileName", rowType: XLFormRowDescriptorTypeAccount, title: NSLocalizedString("_filename_", comment: ""))
  345. row.value = self.fileName
  346. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  347. row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
  348. row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
  349. section.addFormRow(row)
  350. self.form = form
  351. }
  352. override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
  353. super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
  354. if formRow.tag == "fileName" {
  355. self.form.delegate = nil
  356. if let fileNameNew = formRow.value {
  357. self.fileName = CCUtility.removeForbiddenCharactersServer(fileNameNew as? String)
  358. }
  359. formRow.value = self.fileName
  360. self.title = fileName
  361. self.updateFormRow(formRow)
  362. self.form.delegate = self
  363. }
  364. }
  365. // MARK: - View Life Cycle
  366. override func viewDidLoad() {
  367. super.viewDidLoad()
  368. let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(save))
  369. self.navigationItem.rightBarButtonItem = saveButton
  370. self.navigationController?.navigationBar.isTranslucent = false
  371. self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
  372. self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
  373. self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: NCBrandColor.sharedInstance.brandText]
  374. self.tableView.separatorStyle = UITableViewCell.SeparatorStyle.none
  375. }
  376. // MARK: - Action
  377. func moveServerUrl(to serverUrlTo: String!, title: String!, type: String!) {
  378. self.serverUrl = serverUrlTo
  379. if let title = title {
  380. self.titleServerUrl = title
  381. } else {
  382. self.titleServerUrl = "/"
  383. }
  384. // Update
  385. let row : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  386. row.title = self.titleServerUrl
  387. self.updateFormRow(row)
  388. }
  389. @objc func save() {
  390. let rowFileName : XLFormRowDescriptor = self.form.formRow(withTag: "fileName")!
  391. guard let name = rowFileName.value else {
  392. return
  393. }
  394. let ext = (name as! NSString).pathExtension.uppercased()
  395. var fileNameSave = ""
  396. if (ext == "") {
  397. fileNameSave = name as! String + ".txt"
  398. } else if (CCUtility.isDocumentModifiableExtension(ext)) {
  399. fileNameSave = name as! String
  400. } else {
  401. fileNameSave = (name as! NSString).deletingPathExtension + ".txt"
  402. }
  403. guard let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(self.serverUrl) else {
  404. return
  405. }
  406. let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "directoryID == %@ AND fileNameView == %@", directoryID, fileNameSave))
  407. if (metadata != nil) {
  408. let alertController = UIAlertController(title: fileNameSave, message: NSLocalizedString("_file_already_exists_", comment: ""), preferredStyle: .alert)
  409. let cancelAction = UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .default) { (action:UIAlertAction) in
  410. }
  411. let overwriteAction = UIAlertAction(title: NSLocalizedString("_overwrite_", comment: ""), style: .cancel) { (action:UIAlertAction) in
  412. self.dismissAndUpload(fileNameSave, fileID: metadata!.fileID, directoryID: directoryID)
  413. }
  414. alertController.addAction(cancelAction)
  415. alertController.addAction(overwriteAction)
  416. self.present(alertController, animated: true, completion:nil)
  417. } else {
  418. let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(self.serverUrl)!
  419. dismissAndUpload(fileNameSave, fileID: directoryID + fileNameSave, directoryID: directoryID)
  420. }
  421. }
  422. func dismissAndUpload(_ fileNameSave: String, fileID: String, directoryID: String) {
  423. self.dismiss(animated: true, completion: {
  424. let data = self.text.data(using: .utf8)
  425. let success = FileManager.default.createFile(atPath: CCUtility.getDirectoryProviderStorageFileID(fileID, fileNameView: fileNameSave), contents: data, attributes: nil)
  426. if success {
  427. let metadataForUpload = tableMetadata()
  428. metadataForUpload.account = self.appDelegate.activeAccount
  429. metadataForUpload.date = NSDate()
  430. metadataForUpload.directoryID = directoryID
  431. metadataForUpload.fileID = fileID
  432. metadataForUpload.fileName = fileNameSave
  433. metadataForUpload.fileNameView = fileNameSave
  434. metadataForUpload.session = k_upload_session
  435. metadataForUpload.sessionSelector = selectorUploadFile
  436. metadataForUpload.status = Int(k_metadataStatusWaitUpload)
  437. _ = NCManageDatabase.sharedInstance.addMetadata(metadataForUpload)
  438. self.appDelegate.perform(#selector(self.appDelegate.loadAutoDownloadUpload), on: Thread.main, with: nil, waitUntilDone: true)
  439. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: self.serverUrl, fileID: nil, action: Int32(k_action_NULL))
  440. } else {
  441. self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  442. }
  443. })
  444. }
  445. func cancel() {
  446. self.dismiss(animated: true, completion: nil)
  447. }
  448. @objc func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
  449. self.deselectFormRow(sender)
  450. let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
  451. let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
  452. let viewController : CCMove = navigationController.topViewController as! CCMove
  453. viewController.delegate = self;
  454. viewController.tintColor = NCBrandColor.sharedInstance.brandText
  455. viewController.barTintColor = NCBrandColor.sharedInstance.brand
  456. viewController.tintColorTitle = NCBrandColor.sharedInstance.brandText
  457. viewController.move.title = NSLocalizedString("_select_", comment: "");
  458. viewController.networkingOperationQueue = appDelegate.netQueue
  459. // E2EE
  460. viewController.includeDirectoryE2EEncryption = true;
  461. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  462. self.present(navigationController, animated: true, completion: nil)
  463. }
  464. }
  465. //MARK: -
  466. class CreateFormUploadScanDocument: XLFormViewController, CCMoveDelegate {
  467. enum typeDpiQuality {
  468. case low
  469. case medium
  470. case hight
  471. }
  472. var dpiQuality: typeDpiQuality = typeDpiQuality.medium
  473. var serverUrl = ""
  474. var titleServerUrl = ""
  475. var arrayImages = [UIImage]()
  476. var fileName = CCUtility.createFileNameDate("scan", extension: "pdf")
  477. var password : PDFPassword = ""
  478. var fileType = "PDF"
  479. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  480. convenience init(serverUrl: String, arrayImages: [UIImage]) {
  481. self.init()
  482. if serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl) {
  483. titleServerUrl = "/"
  484. } else {
  485. titleServerUrl = (serverUrl as NSString).lastPathComponent
  486. }
  487. self.serverUrl = serverUrl
  488. self.arrayImages = arrayImages
  489. initializeForm()
  490. }
  491. //MARK: XLFormDescriptorDelegate
  492. func initializeForm() {
  493. let form : XLFormDescriptor = XLFormDescriptor(title: NSLocalizedString("_save_settings_", comment: "")) as XLFormDescriptor
  494. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  495. var section : XLFormSectionDescriptor
  496. var row : XLFormRowDescriptor
  497. // Section: Destination Folder
  498. section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_save_path_", comment: ""))
  499. form.addFormSection(section)
  500. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
  501. row.action.formSelector = #selector(changeDestinationFolder(_:))
  502. let imageFolder = CCGraphics.changeThemingColorImage(UIImage(named: "folder")!, multiplier:2, color: NCBrandColor.sharedInstance.brandElement) as UIImage
  503. row.cellConfig["imageView.image"] = imageFolder
  504. row.cellConfig["textLabel.textAlignment"] = NSTextAlignment.right.rawValue
  505. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  506. section.addFormRow(row)
  507. // Section: Quality
  508. section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_quality_image_title_", comment: ""))
  509. form.addFormSection(section)
  510. row = XLFormRowDescriptor(tag: "compressionQuality", rowType: XLFormRowDescriptorTypeSlider)
  511. row.value = 0.5
  512. row.title = NSLocalizedString("_quality_medium_", comment: "")
  513. row.cellConfig["slider.minimumTrackTintColor"] = NCBrandColor.sharedInstance.brand
  514. row.cellConfig["slider.maximumValue"] = 1
  515. row.cellConfig["slider.minimumValue"] = 0
  516. row.cellConfig["steps"] = 2
  517. row.cellConfig["textLabel.textAlignment"] = NSTextAlignment.center.rawValue
  518. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  519. section.addFormRow(row)
  520. // Section: Password
  521. section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_pdf_password_", comment: ""))
  522. form.addFormSection(section)
  523. row = XLFormRowDescriptor(tag: "password", rowType: XLFormRowDescriptorTypePassword, title: NSLocalizedString("_password_", comment: ""))
  524. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  525. row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
  526. row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
  527. section.addFormRow(row)
  528. // Section: File
  529. section = XLFormSectionDescriptor.formSection(withTitle: NSLocalizedString("_file_creation_", comment: ""))
  530. form.addFormSection(section)
  531. if arrayImages.count == 1 {
  532. row = XLFormRowDescriptor(tag: "filetype", rowType: XLFormRowDescriptorTypeSelectorSegmentedControl, title: NSLocalizedString("_file_type_", comment: ""))
  533. row.selectorOptions = ["PDF","JPG"]
  534. row.value = "PDF"
  535. row.cellConfig["tintColor"] = NCBrandColor.sharedInstance.brand
  536. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  537. section.addFormRow(row)
  538. }
  539. row = XLFormRowDescriptor(tag: "fileName", rowType: XLFormRowDescriptorTypeAccount, title: NSLocalizedString("_filename_", comment: ""))
  540. row.value = self.fileName
  541. row.cellConfig["textLabel.font"] = UIFont.systemFont(ofSize: 15.0)
  542. row.cellConfig["textField.textAlignment"] = NSTextAlignment.right.rawValue
  543. row.cellConfig["textField.font"] = UIFont.systemFont(ofSize: 15.0)
  544. section.addFormRow(row)
  545. self.form = form
  546. }
  547. override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
  548. super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
  549. if formRow.tag == "fileName" {
  550. self.form.delegate = nil
  551. let fileNameNew = newValue as? String
  552. if fileNameNew != nil {
  553. self.fileName = CCUtility.removeForbiddenCharactersServer(fileNameNew)
  554. } else {
  555. self.fileName = ""
  556. }
  557. formRow.value = self.fileName
  558. self.updateFormRow(formRow)
  559. self.form.delegate = self
  560. }
  561. if formRow.tag == "compressionQuality" {
  562. self.form.delegate = nil
  563. //let row : XLFormRowDescriptor = self.form.formRow(withTag: "descriptionQuality")!
  564. let newQuality = newValue as? NSNumber
  565. let compressionQuality = (newQuality?.doubleValue)!
  566. if compressionQuality >= 0.0 && compressionQuality <= 0.3 {
  567. formRow.title = NSLocalizedString("_quality_low_", comment: "")
  568. dpiQuality = typeDpiQuality.low
  569. } else if compressionQuality > 0.3 && compressionQuality <= 0.6 {
  570. formRow.title = NSLocalizedString("_quality_medium_", comment: "")
  571. dpiQuality = typeDpiQuality.medium
  572. } else if compressionQuality > 0.6 && compressionQuality <= 1.0 {
  573. formRow.title = NSLocalizedString("_quality_high_", comment: "")
  574. dpiQuality = typeDpiQuality.hight
  575. }
  576. self.updateFormRow(formRow)
  577. self.form.delegate = self
  578. }
  579. if formRow.tag == "password" {
  580. let stringPassword = newValue as? String
  581. if stringPassword != nil {
  582. password = PDFPassword(stringPassword!)
  583. } else {
  584. password = PDFPassword("")
  585. }
  586. }
  587. if formRow.tag == "filetype" {
  588. fileType = newValue as! String
  589. let rowFileName : XLFormRowDescriptor = self.form.formRow(withTag: "fileName")!
  590. let rowPassword : XLFormRowDescriptor = self.form.formRow(withTag: "password")!
  591. // rowFileName
  592. guard var name = rowFileName.value else {
  593. return
  594. }
  595. if name as! String == "" {
  596. name = CCUtility.createFileNameDate("scan", extension: "pdf")
  597. }
  598. let ext = (name as! NSString).pathExtension.uppercased()
  599. var newFileName = ""
  600. if (ext == "") {
  601. newFileName = name as! String + "." + fileType.lowercased()
  602. } else {
  603. newFileName = (name as! NSString).deletingPathExtension + "." + fileType.lowercased()
  604. }
  605. rowFileName.value = newFileName
  606. self.updateFormRow(rowFileName)
  607. // rowPassword
  608. if fileType == "JPG" {
  609. rowPassword.value = ""
  610. password = PDFPassword("")
  611. rowPassword.disabled = true
  612. } else {
  613. rowPassword.disabled = false
  614. }
  615. self.updateFormRow(rowPassword)
  616. }
  617. }
  618. // MARK: - View Life Cycle
  619. override func viewDidLoad() {
  620. super.viewDidLoad()
  621. let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(save))
  622. self.navigationItem.rightBarButtonItem = saveButton
  623. self.navigationController?.navigationBar.isTranslucent = false
  624. self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
  625. self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
  626. self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedString.Key.foregroundColor: NCBrandColor.sharedInstance.brandText]
  627. self.tableView.separatorStyle = UITableViewCell.SeparatorStyle.none
  628. // self.tableView.sectionHeaderHeight = 10
  629. // self.tableView.sectionFooterHeight = 10
  630. // self.tableView.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  631. // let row : XLFormRowDescriptor = self.form.formRow(withTag: "fileName")!
  632. // let rowCell = row.cell(forForm: self)
  633. // rowCell.becomeFirstResponder()
  634. }
  635. // MARK: - Action
  636. func moveServerUrl(to serverUrlTo: String!, title: String!, type: String!) {
  637. self.serverUrl = serverUrlTo
  638. if let title = title {
  639. self.titleServerUrl = title
  640. } else {
  641. self.titleServerUrl = "/"
  642. }
  643. // Update
  644. let row : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  645. row.title = self.titleServerUrl
  646. self.updateFormRow(row)
  647. }
  648. @objc func save() {
  649. let rowFileName : XLFormRowDescriptor = self.form.formRow(withTag: "fileName")!
  650. guard let name = rowFileName.value else {
  651. return
  652. }
  653. if name as! String == "" {
  654. return
  655. }
  656. let ext = (name as! NSString).pathExtension.uppercased()
  657. var fileNameSave = ""
  658. if (ext == "") {
  659. fileNameSave = name as! String + "." + fileType.lowercased()
  660. } else {
  661. fileNameSave = (name as! NSString).deletingPathExtension + "." + fileType.lowercased()
  662. }
  663. guard let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(self.serverUrl) else {
  664. return
  665. }
  666. let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "directoryID == %@ AND fileNameView == %@", directoryID, fileNameSave))
  667. if (metadata != nil) {
  668. let alertController = UIAlertController(title: fileNameSave, message: NSLocalizedString("_file_already_exists_", comment: ""), preferredStyle: .alert)
  669. let cancelAction = UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .default) { (action:UIAlertAction) in
  670. }
  671. let overwriteAction = UIAlertAction(title: NSLocalizedString("_overwrite_", comment: ""), style: .cancel) { (action:UIAlertAction) in
  672. NCManageDatabase.sharedInstance.deleteMetadata(predicate: NSPredicate(format: "directoryID == %@ AND fileNameView == %@", directoryID, fileNameSave), clearDateReadDirectoryID: directoryID)
  673. self.dismissAndUpload(fileNameSave, fileID: directoryID + fileNameSave, directoryID: directoryID)
  674. }
  675. alertController.addAction(cancelAction)
  676. alertController.addAction(overwriteAction)
  677. self.present(alertController, animated: true, completion:nil)
  678. } else {
  679. let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(self.serverUrl)!
  680. dismissAndUpload(fileNameSave, fileID: directoryID + fileNameSave, directoryID: directoryID)
  681. }
  682. }
  683. func dismissAndUpload(_ fileNameSave: String, fileID: String, directoryID: String) {
  684. guard let fileNameGenerateExport = CCUtility.getDirectoryProviderStorageFileID(fileID, fileNameView: fileNameSave) else {
  685. self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  686. return
  687. }
  688. if fileType == "PDF" {
  689. var pdfPages = [PDFPage]()
  690. //Generate PDF
  691. for var image in self.arrayImages {
  692. image = changeImageFromQuality(image, dpiQuality: dpiQuality)
  693. guard let data = image.jpegData(compressionQuality: 0.5) else {
  694. self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  695. return
  696. }
  697. let page = PDFPage.image(UIImage(data: data)!)
  698. pdfPages.append(page)
  699. }
  700. do {
  701. try PDFGenerator.generate(pdfPages, to: fileNameGenerateExport, password: password)
  702. } catch {
  703. self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  704. return
  705. }
  706. }
  707. if fileType == "JPG" {
  708. let image = changeImageFromQuality(self.arrayImages[0], dpiQuality: dpiQuality)
  709. guard let data = image.jpegData(compressionQuality: CGFloat(0.5)) else {
  710. self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  711. return
  712. }
  713. do {
  714. try data.write(to: NSURL.fileURL(withPath: fileNameGenerateExport), options: .atomic)
  715. } catch {
  716. self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  717. return
  718. }
  719. }
  720. //Create metadata for upload
  721. let metadataForUpload = tableMetadata()
  722. metadataForUpload.account = self.appDelegate.activeAccount
  723. metadataForUpload.date = NSDate()
  724. metadataForUpload.directoryID = directoryID
  725. metadataForUpload.fileID = fileID
  726. metadataForUpload.fileName = fileNameSave
  727. metadataForUpload.fileNameView = fileNameSave
  728. metadataForUpload.session = k_upload_session
  729. metadataForUpload.sessionSelector = selectorUploadFile
  730. metadataForUpload.status = Int(k_metadataStatusWaitUpload)
  731. _ = NCManageDatabase.sharedInstance.addMetadata(metadataForUpload)
  732. self.appDelegate.perform(#selector(self.appDelegate.loadAutoDownloadUpload), on: Thread.main, with: nil, waitUntilDone: true)
  733. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: self.serverUrl, fileID: nil, action: Int32(k_action_NULL))
  734. // Request delete all image scanned
  735. let alertController = UIAlertController(title: "", message: NSLocalizedString("_delete_all_scanned_images_", comment: ""), preferredStyle: .alert)
  736. let actionYes = UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (action:UIAlertAction) in
  737. let path = CCUtility.getDirectoryScan()!
  738. do {
  739. let filePaths = try FileManager.default.contentsOfDirectory(atPath: path)
  740. for filePath in filePaths {
  741. try FileManager.default.removeItem(atPath: path + "/" + filePath)
  742. }
  743. } catch let error as NSError {
  744. print("Error: \(error.debugDescription)")
  745. }
  746. self.dismiss(animated: true, completion: nil)
  747. }
  748. let actionNo = UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (action:UIAlertAction) in
  749. self.dismiss(animated: true, completion: nil)
  750. }
  751. alertController.addAction(actionYes)
  752. alertController.addAction(actionNo)
  753. self.present(alertController, animated: true, completion:nil)
  754. }
  755. func cancel() {
  756. self.dismiss(animated: true, completion: nil)
  757. }
  758. @objc func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
  759. self.deselectFormRow(sender)
  760. let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
  761. let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
  762. let viewController : CCMove = navigationController.topViewController as! CCMove
  763. viewController.delegate = self;
  764. viewController.tintColor = NCBrandColor.sharedInstance.brandText
  765. viewController.barTintColor = NCBrandColor.sharedInstance.brand
  766. viewController.tintColorTitle = NCBrandColor.sharedInstance.brandText
  767. viewController.move.title = NSLocalizedString("_select_", comment: "");
  768. viewController.networkingOperationQueue = appDelegate.netQueue
  769. // E2EE
  770. viewController.includeDirectoryE2EEncryption = true;
  771. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  772. self.present(navigationController, animated: true, completion: nil)
  773. }
  774. func changeImageFromQuality(_ image: UIImage, dpiQuality: typeDpiQuality) -> UIImage {
  775. let imageWidthInPixels = image.size.width * image.scale
  776. let imageHeightInPixels = image.size.height * image.scale
  777. switch dpiQuality {
  778. case typeDpiQuality.low: // 72 DPI
  779. if imageWidthInPixels > 595 || imageHeightInPixels > 842 {
  780. return CCGraphics.scale(image, to: CGSize(width: 595, height: 842), isAspectRation: true)
  781. }
  782. case typeDpiQuality.medium: // 150 DPI
  783. if imageWidthInPixels > 1240 || imageHeightInPixels > 1754 {
  784. return CCGraphics.scale(image, to: CGSize(width: 1240, height: 1754), isAspectRation: true)
  785. }
  786. case typeDpiQuality.hight: // 200 DPI
  787. if imageWidthInPixels > 1654 || imageHeightInPixels > 2339 {
  788. return CCGraphics.scale(image, to: CGSize(width: 1654, height: 2339), isAspectRation: true)
  789. }
  790. }
  791. return image
  792. }
  793. }
  794. class NCCreateScanDocument : NSObject, ImageScannerControllerDelegate {
  795. @objc static let sharedInstance: NCCreateScanDocument = {
  796. let instance = NCCreateScanDocument()
  797. return instance
  798. }()
  799. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  800. var viewController: UIViewController?
  801. var openScan: Bool = false
  802. @available(iOS 10, *)
  803. func openScannerDocument(viewController: UIViewController, openScan: Bool) {
  804. self.viewController = viewController
  805. self.openScan = openScan
  806. let scannerVC = ImageScannerController()
  807. scannerVC.imageScannerDelegate = self
  808. self.viewController?.present(scannerVC, animated: true, completion: nil)
  809. }
  810. @available(iOS 10, *)
  811. func imageScannerController(_ scanner: ImageScannerController, didFinishScanningWithResults results: ImageScannerResults) {
  812. let fileName = CCUtility.createFileName("scan.png", fileDate: Date(), fileType: PHAssetMediaType.image, keyFileName: k_keyFileNameMask, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)!
  813. let fileNamePath = CCUtility.getDirectoryScan() + "/" + fileName
  814. do {
  815. try results.scannedImage.pngData()?.write(to: NSURL.fileURL(withPath: fileNamePath), options: .atomic)
  816. } catch { }
  817. scanner.dismiss(animated: true, completion: {
  818. if (self.openScan) {
  819. let storyboard = UIStoryboard(name: "Scan", bundle: nil)
  820. let controller = storyboard.instantiateInitialViewController()!
  821. controller.modalPresentationStyle = UIModalPresentationStyle.pageSheet
  822. self.viewController?.present(controller, animated: true, completion: nil)
  823. }
  824. })
  825. }
  826. @available(iOS 10, *)
  827. func imageScannerControllerDidCancel(_ scanner: ImageScannerController) {
  828. scanner.dismiss(animated: true, completion: nil)
  829. }
  830. @available(iOS 10, *)
  831. func imageScannerController(_ scanner: ImageScannerController, didFailWithError error: Error) {
  832. appDelegate.messageNotification("_error_", description: error.localizedDescription, visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.error, errorCode: Int(k_CCErrorInternalError))
  833. }
  834. }