CCCreateCloud.swift 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  1. //
  2. // CCCreateCloud.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 09/01/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. // MARK: - CreateMenuAdd
  25. class CreateMenuAdd: NSObject {
  26. let fontButton = [NSFontAttributeName:UIFont(name: "HelveticaNeue", size: 14)!, NSForegroundColorAttributeName:UIColor(colorLiteralRed: 65.0/255.0, green: 64.0/255.0, blue: 66.0/255.0, alpha: 1.0)]
  27. let fontEncrypted = [NSFontAttributeName:UIFont(name: "HelveticaNeue", size: 14)!, NSForegroundColorAttributeName:UIColor(colorLiteralRed: 241.0/255.0, green: 90.0/255.0, blue: 34.0/255.0, alpha: 1.0)]
  28. let fontCancel = [NSFontAttributeName:UIFont(name: "HelveticaNeue", size: 16)!, NSForegroundColorAttributeName:UIColor(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 1.0)]
  29. let fontDisable = [NSFontAttributeName:UIFont(name: "HelveticaNeue", size: 12)!, NSForegroundColorAttributeName:UIColor(colorLiteralRed: 65.0/255.0, green: 64.0/255.0, blue: 66.0/255.0, alpha: 1.0)]
  30. let colorLightGray = UIColor(colorLiteralRed: 250.0/255.0, green: 250.0/255.0, blue: 250.0/255.0, alpha: 1)
  31. func createMenuPlain(view : UIView) {
  32. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  33. let actionSheet = AHKActionSheet.init(view: view, title: nil)!
  34. actionSheet.animationDuration = 0.2
  35. actionSheet.automaticallyTintButtonImages = 0
  36. actionSheet.blurRadius = 0.0
  37. actionSheet.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  38. actionSheet.buttonHeight = 50.0
  39. actionSheet.cancelButtonHeight = 50.0
  40. actionSheet.separatorHeight = 5.0
  41. actionSheet.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  42. actionSheet.buttonTextAttributes = fontButton
  43. actionSheet.encryptedButtonTextAttributes = fontEncrypted
  44. actionSheet.cancelButtonTextAttributes = fontCancel
  45. actionSheet.disableButtonTextAttributes = fontDisable
  46. actionSheet.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  47. actionSheet.addButton(withTitle: NSLocalizedString("_create_folder_", comment: ""), image: UIImage(named: "createFolderNextcloud"), backgroundColor: UIColor.white, height: 50.0 ,type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  48. appDelegate.activeMain.returnCreate(Int(returnCreateFolderPlain))
  49. })
  50. actionSheet.addButton(withTitle: NSLocalizedString("_upload_photos_videos_", comment: ""), image: UIImage(named: "uploadPhotoNextcloud"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  51. appDelegate.activeMain.returnCreate(Int(returnCreateFotoVideoPlain))
  52. })
  53. actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_", comment: ""), image: UIImage(named: "uploadFileNextcloud"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  54. appDelegate.activeMain.returnCreate(Int(returnCreateFilePlain))
  55. })
  56. actionSheet.addButton(withTitle: NSLocalizedString("_upload_encrypted_mode", comment: ""), image: UIImage(named: "actionSheetLock"), backgroundColor: colorLightGray, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  57. self.createMenuEncrypted(view: view)
  58. })
  59. actionSheet.show()
  60. CCUtility.setCreateMenuEncrypted(false)
  61. }
  62. func createMenuEncrypted(view : UIView) {
  63. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  64. let actionSheet = AHKActionSheet.init(view: view, title: nil)!
  65. actionSheet.animationDuration = 0.2
  66. actionSheet.blurRadius = 0.0
  67. actionSheet.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  68. actionSheet.buttonHeight = 50.0
  69. actionSheet.cancelButtonHeight = 50.0
  70. actionSheet.separatorHeight = 5.0
  71. actionSheet.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  72. actionSheet.buttonTextAttributes = fontButton
  73. actionSheet.encryptedButtonTextAttributes = fontEncrypted
  74. actionSheet.cancelButtonTextAttributes = fontCancel
  75. actionSheet.disableButtonTextAttributes = fontDisable
  76. actionSheet.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  77. actionSheet.addButton(withTitle: NSLocalizedString("_create_folder_", comment: ""), image: UIImage(named: "foldercrypto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  78. appDelegate.activeMain.returnCreate(Int(returnCreateFolderEncrypted))
  79. })
  80. actionSheet.addButton(withTitle: NSLocalizedString("_upload_photos_videos_", comment: ""), image: UIImage(named: "photocrypto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  81. appDelegate.activeMain.returnCreate(Int(returnCreateFotoVideoEncrypted))
  82. })
  83. actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_", comment: ""), image: UIImage(named: "importCloudCrypto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  84. appDelegate.activeMain.returnCreate(Int(returnCreateFileEncrypted))
  85. })
  86. actionSheet.addButton(withTitle: NSLocalizedString("_upload_template_", comment: ""), image: UIImage(named: "template"), backgroundColor: colorLightGray, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  87. self.createMenuTemplate(view: view)
  88. })
  89. actionSheet.addButton(withTitle: NSLocalizedString("_upload_plain_mode", comment: ""), image: UIImage(named: "uploadPlainModeNextcloud"), backgroundColor: colorLightGray, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  90. self.createMenuPlain(view: view)
  91. })
  92. actionSheet.show()
  93. CCUtility.setCreateMenuEncrypted(true)
  94. }
  95. func createMenuTemplate(view : UIView) {
  96. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  97. let actionSheet = AHKActionSheet.init(view: view, title: nil)!
  98. actionSheet.animationDuration = 0.2
  99. actionSheet.blurRadius = 0.0
  100. actionSheet.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  101. actionSheet.buttonHeight = 50.0
  102. actionSheet.cancelButtonHeight = 50.0
  103. actionSheet.separatorHeight = 5.0
  104. actionSheet.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  105. actionSheet.buttonTextAttributes = fontButton
  106. actionSheet.encryptedButtonTextAttributes = fontEncrypted
  107. actionSheet.cancelButtonTextAttributes = fontCancel
  108. actionSheet.disableButtonTextAttributes = fontDisable
  109. actionSheet.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  110. actionSheet.addButton(withTitle: NSLocalizedString("_add_notes_", comment: ""), image: UIImage(named: "note"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  111. appDelegate.activeMain.returnCreate(Int(returnNote))
  112. })
  113. actionSheet.addButton(withTitle: NSLocalizedString("_add_web_account_", comment: ""), image: UIImage(named: "baseurl"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  114. appDelegate.activeMain.returnCreate(Int(returnAccountWeb))
  115. })
  116. actionSheet.addButton(withTitle: "", image: nil, backgroundColor: UIColor(colorLiteralRed: 250.0/255.0, green: 250.0/255.0, blue: 250.0/255.0, alpha: 1), height: 10.0, type: AHKActionSheetButtonType.disabled, handler: {(AHKActionSheet) -> Void in
  117. print("disable")
  118. })
  119. actionSheet.addButton(withTitle: NSLocalizedString("_add_credit_card_", comment: ""), image: UIImage(named: "cartadicredito"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  120. appDelegate.activeMain.returnCreate(Int(returnCartaDiCredito))
  121. })
  122. actionSheet.addButton(withTitle: NSLocalizedString("_add_atm_", comment: ""), image: UIImage(named: "bancomat"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  123. appDelegate.activeMain.returnCreate(Int(returnBancomat))
  124. })
  125. actionSheet.addButton(withTitle: NSLocalizedString("_add_bank_account_", comment: ""), image: UIImage(named: "contocorrente"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  126. appDelegate.activeMain.returnCreate(Int(returnContoCorrente))
  127. })
  128. actionSheet.addButton(withTitle: "", image: nil, backgroundColor: UIColor(colorLiteralRed: 250.0/255.0, green: 250.0/255.0, blue: 250.0/255.0, alpha: 1), height: 10.0, type: AHKActionSheetButtonType.disabled, handler: {(AHKActionSheet) -> Void in
  129. print("disable")
  130. })
  131. actionSheet.addButton(withTitle: NSLocalizedString("_add_driving_license_", comment: ""), image: UIImage(named: "patenteguida"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  132. appDelegate.activeMain.returnCreate(Int(returnPatenteGuida))
  133. })
  134. actionSheet.addButton(withTitle: NSLocalizedString("_add_id_card_", comment: ""), image: UIImage(named: "cartaidentita"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  135. appDelegate.activeMain.returnCreate(Int(returnCartaIdentita))
  136. })
  137. actionSheet.addButton(withTitle: NSLocalizedString("_add_passport_", comment: ""), image: UIImage(named: "passaporto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  138. appDelegate.activeMain.returnCreate(Int(returnPassaporto))
  139. })
  140. actionSheet.show()
  141. }
  142. }
  143. // MARK: - CreateFormUploadAssets
  144. class CreateFormUploadAssets: XLFormViewController, CCMoveDelegate {
  145. var serverUrl : String = ""
  146. var titleServerUrl : String?
  147. var assets: NSMutableArray = []
  148. var cryptated : Bool = false
  149. var session : String = ""
  150. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  151. let sectionColor: UIColor = UIColor(colorLiteralRed: 239.0/255.0, green: 239.0/255.0, blue: 244.0/255.0, alpha: 1)
  152. convenience init(_ titleServerUrl : String?, serverUrl : String, assets : NSMutableArray, cryptated : Bool, session : String) {
  153. self.init()
  154. if titleServerUrl == nil || titleServerUrl?.isEmpty == true {
  155. self.titleServerUrl = "/"
  156. } else {
  157. self.titleServerUrl = titleServerUrl
  158. }
  159. self.serverUrl = serverUrl
  160. self.assets = assets
  161. self.cryptated = cryptated
  162. self.session = session
  163. self.initializeForm()
  164. }
  165. //MARK: XLFormDescriptorDelegate
  166. func initializeForm() {
  167. let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
  168. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  169. var section : XLFormSectionDescriptor
  170. var row : XLFormRowDescriptor
  171. // Section: Destination Folder
  172. section = XLFormSectionDescriptor.formSection()
  173. form.addFormSection(section)
  174. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
  175. row.cellConfig.setObject(UIImage(named: image_settingsManagePhotos)!, forKey: "imageView.image" as NSCopying)
  176. row.action.formSelector = #selector(changeDestinationFolder(_:))
  177. section.addFormRow(row)
  178. // Section: Folder Photo
  179. section = XLFormSectionDescriptor.formSection()
  180. form.addFormSection(section)
  181. row = XLFormRowDescriptor(tag: "useFolderPhoto", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_photo_camera_", comment: ""))
  182. row.value = 0
  183. section.addFormRow(row)
  184. row = XLFormRowDescriptor(tag: "useSubFolder", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_upload_camera_create_subfolder_", comment: ""))
  185. row.hidden = "$\("useFolderPhoto") == 0"
  186. if CCCoreData.getCameraUploadCreateSubfolderActiveAccount(appDelegate.activeAccount) == true {
  187. row.value = 1
  188. } else {
  189. row.value = 0
  190. }
  191. section.addFormRow(row)
  192. // Section: Rename File Name
  193. section = XLFormSectionDescriptor.formSection()
  194. form.addFormSection(section)
  195. row = XLFormRowDescriptor(tag: "maskFileName", rowType: XLFormRowDescriptorTypeAccount, title: NSLocalizedString("_filename_", comment: ""))
  196. let fileNameMask : String = CCUtility.getFileNameMask(k_keyFileNameMask)
  197. if fileNameMask.characters.count > 0 {
  198. row.value = fileNameMask
  199. }
  200. section.addFormRow(row)
  201. // Section: Preview File Name
  202. //section = XLFormSectionDescriptor.formSection()
  203. //form.addFormSection(section)
  204. row = XLFormRowDescriptor(tag: "previewFileName", rowType: XLFormRowDescriptorTypeTextView, title: "")
  205. row.height = 180
  206. row.cellConfig.setObject(sectionColor, forKey: "backgroundColor" as NSCopying)
  207. row.cellConfig.setObject(sectionColor, forKey: "textView.backgroundColor" as NSCopying)
  208. //row.cellConfig.setObject(10, forKey: "textView.layer.borderWidth" as NSCopying)
  209. row.disabled = true
  210. section.addFormRow(row)
  211. self.form = form
  212. }
  213. override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
  214. super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
  215. if formRow.tag == "useFolderPhoto" {
  216. if (formRow.value! as AnyObject).boolValue == true {
  217. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  218. buttonDestinationFolder.hidden = true
  219. } else{
  220. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  221. buttonDestinationFolder.hidden = false
  222. }
  223. }
  224. else if formRow.tag == "useSubFolder" {
  225. if (formRow.value! as AnyObject).boolValue == true {
  226. } else{
  227. }
  228. }
  229. else if formRow.tag == "maskFileName" {
  230. let fileName : String? = formRow.value as? String
  231. self.form.delegate = nil
  232. if fileName != nil {
  233. formRow.value = CCUtility.removeForbiddenCharacters(fileName, hasServerForbiddenCharactersSupport: appDelegate.hasServerForbiddenCharactersSupport)
  234. }
  235. self.form.delegate = self
  236. let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
  237. previewFileName.value = self.previewFileName(valueRename: formRow.value as? String)
  238. // reload cell
  239. if fileName != nil {
  240. if newValue as! String != formRow.value as! String {
  241. self.reloadFormRow(formRow)
  242. appDelegate.messageNotification("_info_", description: "_forbidden_characters_", visible: true, delay: TimeInterval(dismissAfterSecond), type: TWMessageBarMessageType.info)
  243. }
  244. }
  245. self.reloadFormRow(previewFileName)
  246. }
  247. }
  248. // MARK: - View Life Cycle
  249. override func viewDidLoad() {
  250. super.viewDidLoad()
  251. let cancelButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_cancel_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(cancel))
  252. let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(save))
  253. self.navigationItem.leftBarButtonItem = cancelButton
  254. self.navigationItem.rightBarButtonItem = saveButton
  255. self.tableView.separatorStyle = UITableViewCellSeparatorStyle.none
  256. //self.tableView.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
  257. self.reloadForm()
  258. }
  259. func reloadForm() {
  260. self.form.delegate = nil
  261. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  262. buttonDestinationFolder.title = self.titleServerUrl
  263. let maskFileName : XLFormRowDescriptor = self.form.formRow(withTag: "maskFileName")!
  264. let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
  265. previewFileName.value = self.previewFileName(valueRename: maskFileName.value as? String)
  266. self.tableView.reloadData()
  267. self.form.delegate = self
  268. }
  269. //MARK: TableView
  270. override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
  271. switch section {
  272. case 0:
  273. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  274. if buttonDestinationFolder.isHidden() {
  275. return ""
  276. } else {
  277. return " " + NSLocalizedString("_destination_folder_", comment: "")
  278. }
  279. case 1:
  280. return " " + NSLocalizedString("_use_folder_photos_", comment: "")
  281. case 2:
  282. return " " + NSLocalizedString("_rename_filename_", comment: "")
  283. case 3:
  284. return NSLocalizedString("_preview_filename_", comment: "")
  285. default:
  286. return ""
  287. }
  288. }
  289. override func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? {
  290. switch section {
  291. /*
  292. case 2:
  293. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "maskFileName")!
  294. let text = self.writePreviewFileName(buttonDestinationFolder)
  295. return text
  296. */
  297. default:
  298. return ""
  299. }
  300. }
  301. // MARK: - Action
  302. func moveServerUrl(to serverUrlTo: String!, title: String!, selectedMetadatas: [Any]!) {
  303. self.serverUrl = serverUrlTo
  304. if title == nil {
  305. self.titleServerUrl = "/"
  306. } else {
  307. self.titleServerUrl = title
  308. }
  309. self.reloadForm()
  310. }
  311. func save() {
  312. self.dismiss(animated: true, completion: {
  313. let useFolderPhotoRow : XLFormRowDescriptor = self.form.formRow(withTag: "useFolderPhoto")!
  314. let useSubFolderRow : XLFormRowDescriptor = self.form.formRow(withTag: "useSubFolder")!
  315. var useSubFolder : Bool = false
  316. if (useFolderPhotoRow.value! as AnyObject).boolValue == true {
  317. self.serverUrl = CCCoreData.getCameraUploadFolderNamePathActiveAccount(self.appDelegate.activeAccount, activeUrl: self.appDelegate.activeUrl, typeCloud: self.appDelegate.typeCloud)
  318. useSubFolder = (useSubFolderRow.value! as AnyObject).boolValue
  319. }
  320. self.appDelegate.activeMain.uploadFileAsset(self.assets, serverUrl: self.serverUrl, cryptated: self.cryptated, useSubFolder: useSubFolder, session: self.session)
  321. })
  322. }
  323. func cancel() {
  324. self.dismiss(animated: true, completion: nil)
  325. }
  326. // MARK: - Utility
  327. func previewFileName(valueRename : String?) -> String {
  328. var returnString : String = ""
  329. if valueRename != nil {
  330. let valueRenameTrimming = valueRename!.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
  331. if valueRenameTrimming.characters.count > 0 {
  332. self.form.delegate = nil
  333. CCUtility.setFileNameMask(valueRenameTrimming, key: k_keyFileNameMask)
  334. self.form.delegate = self
  335. returnString = CCUtility.createFileName(from: assets[0] as! PHAsset, key: k_keyFileNameMask)
  336. } else {
  337. CCUtility.setFileNameMask("", key: k_keyFileNameMask)
  338. returnString = CCUtility.createFileName(from: assets[0] as! PHAsset, key: nil)
  339. }
  340. } else {
  341. CCUtility.setFileNameMask("", key: k_keyFileNameMask)
  342. returnString = CCUtility.createFileName(from: assets[0] as! PHAsset, key: nil)
  343. }
  344. return NSLocalizedString("_preview_filename_", comment: "") + ":" + "\n\n" + returnString
  345. }
  346. func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
  347. self.deselectFormRow(sender)
  348. let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
  349. let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
  350. let viewController : CCMove = navigationController.topViewController as! CCMove
  351. viewController.delegate = self;
  352. viewController.tintColor = UIColor.init(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 1.0) // COLOR_BRAND
  353. viewController.barTintColor = UIColor.init(colorLiteralRed: 248.0/255.0, green: 248.0/255.0, blue: 248.0/255.0, alpha: 1.0) // COLOR_BAR;
  354. viewController.tintColorTitle = UIColor.init(colorLiteralRed: 65.0/255.0, green: 64.0/255.0, blue: 66.0/255.0, alpha: 1.0) // COLOR_GRAY;
  355. viewController.move.title = NSLocalizedString("_select_", comment: "");
  356. viewController.networkingOperationQueue = appDelegate.netQueue
  357. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  358. self.present(navigationController, animated: true, completion: nil)
  359. }
  360. }