CCCreateCloud.swift 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  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?.selectedBackgroundColor = UIColor(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
  42. actionSheet?.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  43. actionSheet?.buttonTextAttributes = fontButton
  44. actionSheet?.encryptedButtonTextAttributes = fontEncrypted
  45. actionSheet?.cancelButtonTextAttributes = fontCancel
  46. actionSheet?.disableButtonTextAttributes = fontDisable
  47. actionSheet?.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  48. actionSheet?.addButton(withTitle: NSLocalizedString("_create_folder_", comment: ""), image: UIImage(named: "createFolderNextcloud"), backgroundColor: UIColor.white, height: 50.0 ,type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  49. appDelegate.activeMain.returnCreate(Int(returnCreateFolderPlain))
  50. })
  51. 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
  52. appDelegate.activeMain.returnCreate(Int(returnCreateFotoVideoPlain))
  53. })
  54. actionSheet?.addButton(withTitle: NSLocalizedString("_upload_file_", comment: ""), image: UIImage(named: "uploadFileNextcloud"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  55. appDelegate.activeMain.returnCreate(Int(returnCreateFilePlain))
  56. })
  57. actionSheet?.addButton(withTitle: NSLocalizedString("_upload_encrypted_mode", comment: ""), image: UIImage(named: "actionSheetLock"), backgroundColor: colorLightGray, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  58. self.createMenuEncrypted(view: view)
  59. })
  60. actionSheet?.show()
  61. CCUtility.setCreateMenuEncrypted(false)
  62. }
  63. func createMenuEncrypted(view : UIView) {
  64. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  65. let actionSheet = AHKActionSheet.init(view: view, title: nil)
  66. actionSheet?.animationDuration = 0.2
  67. actionSheet?.blurRadius = 0.0
  68. actionSheet?.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  69. actionSheet?.buttonHeight = 50.0
  70. actionSheet?.cancelButtonHeight = 50.0
  71. actionSheet?.separatorHeight = 5.0
  72. actionSheet?.selectedBackgroundColor = UIColor(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
  73. actionSheet?.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  74. actionSheet?.buttonTextAttributes = fontButton
  75. actionSheet?.encryptedButtonTextAttributes = fontEncrypted
  76. actionSheet?.cancelButtonTextAttributes = fontCancel
  77. actionSheet?.disableButtonTextAttributes = fontDisable
  78. actionSheet?.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  79. actionSheet?.addButton(withTitle: NSLocalizedString("_create_folder_", comment: ""), image: UIImage(named: "foldercrypto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  80. appDelegate.activeMain.returnCreate(Int(returnCreateFolderEncrypted))
  81. })
  82. 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
  83. appDelegate.activeMain.returnCreate(Int(returnCreateFotoVideoEncrypted))
  84. })
  85. actionSheet?.addButton(withTitle: NSLocalizedString("_upload_file_", comment: ""), image: UIImage(named: "importCloudCrypto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  86. appDelegate.activeMain.returnCreate(Int(returnCreateFileEncrypted))
  87. })
  88. actionSheet?.addButton(withTitle: NSLocalizedString("_upload_template_", comment: ""), image: UIImage(named: "template"), backgroundColor: colorLightGray, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  89. self.createMenuTemplate(view: view)
  90. })
  91. actionSheet?.addButton(withTitle: NSLocalizedString("_upload_plain_mode", comment: ""), image: UIImage(named: "uploadPlainModeNextcloud"), backgroundColor: colorLightGray, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  92. self.createMenuPlain(view: view)
  93. })
  94. actionSheet?.show()
  95. CCUtility.setCreateMenuEncrypted(true)
  96. }
  97. func createMenuTemplate(view : UIView) {
  98. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  99. let actionSheet = AHKActionSheet.init(view: view, title: nil)
  100. actionSheet?.animationDuration = 0.2
  101. actionSheet?.blurRadius = 0.0
  102. actionSheet?.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  103. actionSheet?.buttonHeight = 50.0
  104. actionSheet?.cancelButtonHeight = 50.0
  105. actionSheet?.separatorHeight = 5.0
  106. actionSheet?.selectedBackgroundColor = UIColor(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
  107. actionSheet?.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  108. actionSheet?.buttonTextAttributes = fontButton
  109. actionSheet?.encryptedButtonTextAttributes = fontEncrypted
  110. actionSheet?.cancelButtonTextAttributes = fontCancel
  111. actionSheet?.disableButtonTextAttributes = fontDisable
  112. actionSheet?.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  113. actionSheet?.addButton(withTitle: NSLocalizedString("_add_notes_", comment: ""), image: UIImage(named: "note"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  114. appDelegate.activeMain.returnCreate(Int(returnNote))
  115. })
  116. 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
  117. appDelegate.activeMain.returnCreate(Int(returnAccountWeb))
  118. })
  119. 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
  120. print("disable")
  121. })
  122. 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
  123. appDelegate.activeMain.returnCreate(Int(returnCartaDiCredito))
  124. })
  125. actionSheet?.addButton(withTitle: NSLocalizedString("_add_atm_", comment: ""), image: UIImage(named: "bancomat"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  126. appDelegate.activeMain.returnCreate(Int(returnBancomat))
  127. })
  128. 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
  129. appDelegate.activeMain.returnCreate(Int(returnContoCorrente))
  130. })
  131. 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
  132. print("disable")
  133. })
  134. 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
  135. appDelegate.activeMain.returnCreate(Int(returnPatenteGuida))
  136. })
  137. 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
  138. appDelegate.activeMain.returnCreate(Int(returnCartaIdentita))
  139. })
  140. actionSheet?.addButton(withTitle: NSLocalizedString("_add_passport_", comment: ""), image: UIImage(named: "passaporto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  141. appDelegate.activeMain.returnCreate(Int(returnPassaporto))
  142. })
  143. actionSheet?.show()
  144. }
  145. }
  146. // MARK: - CreateFormUpload
  147. class CreateFormUpload: XLFormViewController, CCMoveDelegate {
  148. var localServerUrl : String?
  149. var titleLocalServerUrl : String?
  150. var assets: NSMutableArray = []
  151. var cryptated : Bool?
  152. var session : String?
  153. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  154. convenience init(_ titleLocalServerUrl : String?, localServerUrl : String?, assets : NSMutableArray?, cryptated : Bool, session : String?) {
  155. self.init()
  156. if titleLocalServerUrl == nil || titleLocalServerUrl?.isEmpty == true {
  157. self.titleLocalServerUrl = "/" //NSLocalizedString("_root_", comment: "")
  158. } else {
  159. self.titleLocalServerUrl = titleLocalServerUrl
  160. }
  161. self.localServerUrl = localServerUrl
  162. self.assets = assets!
  163. self.cryptated = cryptated
  164. self.session = session
  165. self.initializeForm()
  166. }
  167. override func viewDidLoad() {
  168. super.viewDidLoad()
  169. let cancelButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_cancel_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(cancel))
  170. let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(save))
  171. self.navigationItem.leftBarButtonItem = cancelButton
  172. self.navigationItem.rightBarButtonItem = saveButton
  173. self.reloadForm()
  174. }
  175. func initializeForm() {
  176. let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
  177. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  178. var section : XLFormSectionDescriptor
  179. var row : XLFormRowDescriptor
  180. // Section: Destination Folder
  181. section = XLFormSectionDescriptor.formSection()
  182. form.addFormSection(section)
  183. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleLocalServerUrl)
  184. row.cellConfig.setObject(UIImage(named: image_settingsManagePhotos)!, forKey: "imageView.image" as NSCopying)
  185. row.action.formSelector = #selector(changeDestinationFolder(_:))
  186. section.addFormRow(row)
  187. // Section: Folder Photo
  188. section = XLFormSectionDescriptor.formSection()
  189. form.addFormSection(section)
  190. row = XLFormRowDescriptor(tag: "useFolderPhoto", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_photo_camera_", comment: ""))
  191. row.value = 0
  192. section.addFormRow(row)
  193. row = XLFormRowDescriptor(tag: "useSubFolder", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_upload_camera_create_subfolder_", comment: ""))
  194. row.hidden = "$\("useFolderPhoto") == 0"
  195. if CCCoreData.getCameraUploadCreateSubfolderActiveAccount(appDelegate.activeAccount) == true {
  196. row.value = 1
  197. } else {
  198. row.value = 0
  199. }
  200. section.addFormRow(row)
  201. // Section: Rename File Name
  202. section = XLFormSectionDescriptor.formSection()
  203. form.addFormSection(section)
  204. row = XLFormRowDescriptor(tag: "maskFileName", rowType: XLFormRowDescriptorTypeName, title: NSLocalizedString("_filename_", comment: ""))
  205. let fileNameMask : String = CCUtility.getFileNameMask()
  206. if fileNameMask.characters.count > 0 {
  207. row.value = fileNameMask
  208. }
  209. section.addFormRow(row)
  210. // Section: Preview File Name
  211. section = XLFormSectionDescriptor.formSection()
  212. form.addFormSection(section)
  213. row = XLFormRowDescriptor(tag: "previewFileName", rowType: XLFormRowDescriptorTypeTextView, title: "")
  214. row.disabled = true
  215. section.addFormRow(row)
  216. self.form = form
  217. }
  218. //MARK: XLFormDescriptorDelegate
  219. override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
  220. super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
  221. if formRow.tag == "useFolderPhoto" {
  222. if (formRow.value! as AnyObject).boolValue == true {
  223. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  224. buttonDestinationFolder.hidden = true
  225. } else{
  226. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  227. buttonDestinationFolder.hidden = false
  228. }
  229. }
  230. else if formRow.tag == "useSubFolder" {
  231. if (formRow.value! as AnyObject).boolValue == true {
  232. } else{
  233. }
  234. }
  235. else if formRow.tag == "maskFileName" {
  236. let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
  237. previewFileName.value = self.previewFileName(valueRename: formRow.value as? String)
  238. let indexPathPreview : IndexPath = IndexPath(row: 0, section: 3)
  239. self.tableView.reloadRows(at: [indexPathPreview], with: UITableViewRowAnimation.none)
  240. }
  241. }
  242. override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
  243. switch section {
  244. case 0:
  245. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  246. if buttonDestinationFolder.isHidden() {
  247. return ""
  248. } else {
  249. return NSLocalizedString("_destination_folder_", comment: "")
  250. }
  251. case 1:
  252. return NSLocalizedString("_use_folder_photos_", comment: "")
  253. case 2:
  254. return NSLocalizedString("_rename_filename_", comment: "")
  255. case 3:
  256. return NSLocalizedString("_preview_filename_", comment: "")
  257. default:
  258. return ""
  259. }
  260. }
  261. override func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? {
  262. switch section {
  263. /*
  264. case 2:
  265. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "maskFileName")!
  266. let text = self.writePreviewFileName(buttonDestinationFolder)
  267. return text
  268. */
  269. default:
  270. return ""
  271. }
  272. }
  273. func reloadForm() {
  274. self.form.delegate = nil
  275. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  276. buttonDestinationFolder.title = self.titleLocalServerUrl
  277. let maskFileName : XLFormRowDescriptor = self.form.formRow(withTag: "maskFileName")!
  278. let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
  279. previewFileName.value = self.previewFileName(valueRename: maskFileName.value as? String)
  280. self.tableView.reloadData()
  281. self.form.delegate = self
  282. }
  283. func previewFileName(valueRename : String?) -> String {
  284. var returnString : String = ""
  285. if valueRename != nil {
  286. let valueRenameTrimming = valueRename!.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
  287. if valueRenameTrimming.characters.count > 0 {
  288. self.form.delegate = nil
  289. CCUtility.setFileNameMask(valueRenameTrimming)
  290. self.form.delegate = self
  291. returnString = CCUtility.createFileName(from: assets[0] as! PHAsset, withMask: true)
  292. }
  293. } else {
  294. CCUtility.setFileNameMask("")
  295. returnString = CCUtility.createFileName(from: assets[0] as! PHAsset, withMask: false)
  296. }
  297. return returnString
  298. }
  299. func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
  300. self.deselectFormRow(sender)
  301. let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
  302. let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
  303. let viewController : CCMove = navigationController.topViewController as! CCMove
  304. viewController.delegate = self;
  305. viewController.tintColor = UIColor.init(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 1.0) // COLOR_BRAND
  306. viewController.barTintColor = UIColor.init(colorLiteralRed: 248.0/255.0, green: 248.0/255.0, blue: 248.0/255.0, alpha: 1.0) // COLOR_BAR;
  307. viewController.tintColorTitle = UIColor.init(colorLiteralRed: 65.0/255.0, green: 64.0/255.0, blue: 66.0/255.0, alpha: 1.0) // COLOR_GRAY;
  308. viewController.move.title = NSLocalizedString("_select_", comment: "");
  309. viewController.networkingOperationQueue = appDelegate.netQueue
  310. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  311. self.present(navigationController, animated: true, completion: nil)
  312. }
  313. func move(_ serverUrlTo: String!, title: String!, selectedMetadatas: [Any]!) {
  314. self.localServerUrl = serverUrlTo
  315. if title == nil {
  316. self.titleLocalServerUrl = "/"
  317. } else {
  318. self.titleLocalServerUrl = title
  319. }
  320. self.reloadForm()
  321. }
  322. func save() {
  323. self.dismiss(animated: true, completion: {
  324. let useFolderPhotoRow : XLFormRowDescriptor = self.form.formRow(withTag: "useFolderPhoto")!
  325. let useSubFolderRow : XLFormRowDescriptor = self.form.formRow(withTag: "useSubFolder")!
  326. var useSubFolder : Bool = false
  327. if (useFolderPhotoRow.value! as AnyObject).boolValue == true {
  328. self.localServerUrl = CCCoreData.getCameraUploadFolderNamePathActiveAccount(self.appDelegate.activeAccount, activeUrl: self.appDelegate.activeUrl, typeCloud: self.appDelegate.typeCloud)
  329. useSubFolder = (useSubFolderRow.value! as AnyObject).boolValue
  330. }
  331. self.appDelegate.activeMain.uploadFileAsset(self.assets, serverUrl: self.localServerUrl, cryptated: self.cryptated!, useSubFolder: useSubFolder, session: self.session)
  332. })
  333. }
  334. func cancel() {
  335. self.dismiss(animated: true, completion: nil)
  336. }
  337. }