CCCreateCloud.swift 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763
  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 appDelegate = UIApplication.shared.delegate as! AppDelegate
  27. let fontButton = [NSFontAttributeName:UIFont(name: "HelveticaNeue", size: 16)!, NSForegroundColorAttributeName: UIColor(colorLiteralRed: 65.0/255.0, green: 64.0/255.0, blue: 66.0/255.0, alpha: 1.0)]
  28. let fontEncrypted = [NSFontAttributeName:UIFont(name: "HelveticaNeue", size: 16)!, NSForegroundColorAttributeName: NCBrandColor.sharedInstance.cryptocloud] as [String : Any]
  29. let fontCancel = [NSFontAttributeName:UIFont(name: "HelveticaNeue", size: 16)!, NSForegroundColorAttributeName: NCBrandColor.sharedInstance.brand] as [String : Any]
  30. let fontDisable = [NSFontAttributeName:UIFont(name: "HelveticaNeue", size: 16)!, NSForegroundColorAttributeName: UIColor(colorLiteralRed: 65.0/255.0, green: 64.0/255.0, blue: 66.0/255.0, alpha: 1.0)]
  31. let colorLightGray = UIColor(colorLiteralRed: 250.0/255.0, green: 250.0/255.0, blue: 250.0/255.0, alpha: 1)
  32. let colorGray = UIColor(colorLiteralRed: 150.0/255.0, green: 150.0/255.0, blue: 150.0/255.0, alpha: 1)
  33. var colorIcon = NCBrandColor.sharedInstance.brand
  34. init (themingColor : UIColor) {
  35. super.init()
  36. colorIcon = themingColor
  37. }
  38. func createMenuPlain(view : UIView) {
  39. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  40. let actionSheet = AHKActionSheet.init(view: view, title: nil)!
  41. actionSheet.animationDuration = 0.2
  42. actionSheet.automaticallyTintButtonImages = 0
  43. actionSheet.blurRadius = 0.0
  44. actionSheet.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  45. actionSheet.buttonHeight = 50.0
  46. actionSheet.cancelButtonHeight = 50.0
  47. actionSheet.separatorHeight = 5.0
  48. actionSheet.separatorColor = NCBrandColor.sharedInstance.seperator
  49. actionSheet.buttonTextAttributes = fontButton
  50. actionSheet.encryptedButtonTextAttributes = fontEncrypted
  51. actionSheet.cancelButtonTextAttributes = fontCancel
  52. actionSheet.disableButtonTextAttributes = fontDisable
  53. actionSheet.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  54. actionSheet.addButton(withTitle: NSLocalizedString("_upload_photos_videos_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "menuUploadPhoto"), color: colorGray), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  55. appDelegate.activeMain.returnCreate(Int(k_returnCreateFotoVideoPlain))
  56. })
  57. actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "menuUploadFile"), color: colorGray), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  58. appDelegate.activeMain.returnCreate(Int(k_returnCreateFilePlain))
  59. })
  60. actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_text_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "file_txt"), color: colorGray), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  61. appDelegate.activeMain.returnCreate(Int(k_returnCreateFileText))
  62. })
  63. actionSheet.addButton(withTitle: NSLocalizedString("_create_folder_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "folder"), color: colorIcon), backgroundColor: UIColor.white, height: 50.0 ,type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  64. appDelegate.activeMain.returnCreate(Int(k_returnCreateFolderPlain))
  65. })
  66. if appDelegate.isCryptoCloudMode {
  67. actionSheet.addButton(withTitle: NSLocalizedString("_upload_encrypted_mode", comment: ""), image: UIImage(named: "actionSheetLock"), backgroundColor: colorLightGray, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  68. self.createMenuEncrypted(view: view)
  69. })
  70. }
  71. actionSheet.show()
  72. CCUtility.setCreateMenuEncrypted(false)
  73. }
  74. func createMenuEncrypted(view : UIView) {
  75. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  76. let actionSheet = AHKActionSheet.init(view: view, title: nil)!
  77. actionSheet.animationDuration = 0.2
  78. actionSheet.blurRadius = 0.0
  79. actionSheet.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  80. actionSheet.buttonHeight = 50.0
  81. actionSheet.cancelButtonHeight = 50.0
  82. actionSheet.separatorHeight = 5.0
  83. actionSheet.separatorColor = NCBrandColor.sharedInstance.seperator
  84. actionSheet.buttonTextAttributes = fontButton
  85. actionSheet.encryptedButtonTextAttributes = fontEncrypted
  86. actionSheet.cancelButtonTextAttributes = fontCancel
  87. actionSheet.disableButtonTextAttributes = fontDisable
  88. actionSheet.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  89. actionSheet.addButton(withTitle: NSLocalizedString("_upload_photos_videos_", comment: ""), image: UIImage(named: "menuUploadPhotoCrypto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  90. appDelegate.activeMain.returnCreate(Int(k_returnCreateFotoVideoEncrypted))
  91. })
  92. actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_", comment: ""), image: UIImage(named: "menuUploadFileCrypto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  93. appDelegate.activeMain.returnCreate(Int(k_returnCreateFileEncrypted))
  94. })
  95. actionSheet.addButton(withTitle: NSLocalizedString("_create_folder_", comment: ""), image: UIImage(named: "foldercrypto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  96. appDelegate.activeMain.returnCreate(Int(k_returnCreateFolderEncrypted))
  97. })
  98. actionSheet.addButton(withTitle: NSLocalizedString("_upload_template_", comment: ""), image: UIImage(named: "menuTemplate"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  99. self.createMenuTemplate(view: view)
  100. })
  101. actionSheet.addButton(withTitle: NSLocalizedString("_upload_plain_mode", comment: ""), image: UIImage(named: "menuUploadPlainMode"), backgroundColor: colorLightGray, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  102. self.createMenuPlain(view: view)
  103. })
  104. actionSheet.show()
  105. CCUtility.setCreateMenuEncrypted(true)
  106. }
  107. func createMenuTemplate(view : UIView) {
  108. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  109. let actionSheet = AHKActionSheet.init(view: view, title: nil)!
  110. actionSheet.animationDuration = 0.2
  111. actionSheet.blurRadius = 0.0
  112. actionSheet.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  113. actionSheet.buttonHeight = 50.0
  114. actionSheet.cancelButtonHeight = 50.0
  115. actionSheet.separatorHeight = 5.0
  116. actionSheet.separatorColor = NCBrandColor.sharedInstance.seperator
  117. actionSheet.buttonTextAttributes = fontButton
  118. actionSheet.encryptedButtonTextAttributes = fontEncrypted
  119. actionSheet.cancelButtonTextAttributes = fontCancel
  120. actionSheet.disableButtonTextAttributes = fontDisable
  121. actionSheet.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  122. actionSheet.addButton(withTitle: NSLocalizedString("_add_notes_", comment: ""), image: UIImage(named: "note"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  123. appDelegate.activeMain.returnCreate(Int(k_returnNote))
  124. })
  125. actionSheet.addButton(withTitle: NSLocalizedString("_add_web_account_", comment: ""), image: UIImage(named: "templateWebAccount"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  126. appDelegate.activeMain.returnCreate(Int(k_returnAccountWeb))
  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_credit_card_", comment: ""), image: UIImage(named: "cartadicredito"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  132. appDelegate.activeMain.returnCreate(Int(k_returnCartaDiCredito))
  133. })
  134. actionSheet.addButton(withTitle: NSLocalizedString("_add_atm_", comment: ""), image: UIImage(named: "bancomat"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  135. appDelegate.activeMain.returnCreate(Int(k_returnBancomat))
  136. })
  137. 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
  138. appDelegate.activeMain.returnCreate(Int(k_returnContoCorrente))
  139. })
  140. 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
  141. print("disable")
  142. })
  143. 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
  144. appDelegate.activeMain.returnCreate(Int(k_returnPatenteGuida))
  145. })
  146. 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
  147. appDelegate.activeMain.returnCreate(Int(k_returnCartaIdentita))
  148. })
  149. actionSheet.addButton(withTitle: NSLocalizedString("_add_passport_", comment: ""), image: UIImage(named: "passaporto"), backgroundColor: UIColor.white, height: 50.0, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  150. appDelegate.activeMain.returnCreate(Int(k_returnPassaporto))
  151. })
  152. actionSheet.show()
  153. }
  154. }
  155. // MARK: - CreateFormUploadAssets
  156. @objc protocol createFormUploadAssetsDelegate {
  157. func dismissFormUploadAssets()
  158. }
  159. class CreateFormUploadAssets: XLFormViewController, CCMoveDelegate {
  160. var serverUrl : String = ""
  161. var titleServerUrl : String?
  162. var assets: NSMutableArray = []
  163. var cryptated : Bool = false
  164. var session : String = ""
  165. weak var delegate: createFormUploadAssetsDelegate?
  166. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  167. convenience init(serverUrl : String, assets : NSMutableArray, cryptated : Bool, session : String, delegate: createFormUploadAssetsDelegate) {
  168. self.init()
  169. if serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl) {
  170. titleServerUrl = "/"
  171. } else {
  172. titleServerUrl = (serverUrl as NSString).lastPathComponent
  173. }
  174. self.serverUrl = serverUrl
  175. self.assets = assets
  176. self.cryptated = cryptated
  177. self.session = session
  178. self.delegate = delegate
  179. self.initializeForm()
  180. }
  181. //MARK: XLFormDescriptorDelegate
  182. func initializeForm() {
  183. let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
  184. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  185. var section : XLFormSectionDescriptor
  186. var row : XLFormRowDescriptor
  187. // Section: Destination Folder
  188. section = XLFormSectionDescriptor.formSection()
  189. form.addFormSection(section)
  190. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
  191. let imageFolder = CCGraphics.changeThemingColorImage(UIImage(named: "folder")!, color: NCBrandColor.sharedInstance.brand) as UIImage
  192. row.cellConfig.setObject(imageFolder, forKey: "imageView.image" as NSCopying)
  193. row.cellConfig.setObject(UIColor.black, forKey: "textLabel.textColor" as NSCopying)
  194. row.action.formSelector = #selector(changeDestinationFolder(_:))
  195. section.addFormRow(row)
  196. // Section: Folder Photo
  197. section = XLFormSectionDescriptor.formSection()
  198. form.addFormSection(section)
  199. row = XLFormRowDescriptor(tag: "useFolderPhoto", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_photo_camera_", comment: ""))
  200. row.value = 0
  201. section.addFormRow(row)
  202. row = XLFormRowDescriptor(tag: "useSubFolder", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_autoupload_create_subfolder_", comment: ""))
  203. row.hidden = "$\("useFolderPhoto") == 0"
  204. let tableAccount = NCManageDatabase.sharedInstance.getAccountActive()
  205. if tableAccount?.autoUploadCreateSubfolder == true {
  206. row.value = 1
  207. } else {
  208. row.value = 0
  209. }
  210. section.addFormRow(row)
  211. // Section: Add File Name Type
  212. section = XLFormSectionDescriptor.formSection()
  213. form.addFormSection(section)
  214. row = XLFormRowDescriptor(tag: "addFileNameType", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_filenametype_photo_video_", comment: ""))
  215. row.value = CCUtility.getFileNameType(k_keyFileNameType)
  216. section.addFormRow(row)
  217. // Section: Rename File Name
  218. section = XLFormSectionDescriptor.formSection()
  219. form.addFormSection(section)
  220. row = XLFormRowDescriptor(tag: "maskFileName", rowType: XLFormRowDescriptorTypeAccount, title: NSLocalizedString("_filename_", comment: ""))
  221. let fileNameMask : String = CCUtility.getFileNameMask(k_keyFileNameMask)
  222. if fileNameMask.characters.count > 0 {
  223. row.value = fileNameMask
  224. }
  225. section.addFormRow(row)
  226. // Section: Preview File Name
  227. //section = XLFormSectionDescriptor.formSection()
  228. //form.addFormSection(section)
  229. row = XLFormRowDescriptor(tag: "previewFileName", rowType: XLFormRowDescriptorTypeTextView, title: "")
  230. row.height = 180
  231. row.cellConfig.setObject(NCBrandColor.sharedInstance.tableBackground, forKey: "backgroundColor" as NSCopying)
  232. row.cellConfig.setObject(NCBrandColor.sharedInstance.tableBackground, forKey: "textView.backgroundColor" as NSCopying)
  233. row.disabled = true
  234. section.addFormRow(row)
  235. self.form = form
  236. }
  237. override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
  238. super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
  239. if formRow.tag == "useFolderPhoto" {
  240. if (formRow.value! as AnyObject).boolValue == true {
  241. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  242. buttonDestinationFolder.hidden = true
  243. } else{
  244. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  245. buttonDestinationFolder.hidden = false
  246. }
  247. }
  248. else if formRow.tag == "useSubFolder" {
  249. if (formRow.value! as AnyObject).boolValue == true {
  250. } else{
  251. }
  252. }
  253. else if formRow.tag == "addFileNameType" {
  254. CCUtility.setFileNameType((formRow.value! as AnyObject).boolValue, key: k_keyFileNameType)
  255. self.reloadForm()
  256. }
  257. else if formRow.tag == "maskFileName" {
  258. let fileName = formRow.value as? String
  259. self.form.delegate = nil
  260. if let fileName = fileName {
  261. formRow.value = CCUtility.removeForbiddenCharactersServer(fileName)
  262. }
  263. self.form.delegate = self
  264. let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
  265. previewFileName.value = self.previewFileName(valueRename: formRow.value as? String)
  266. // reload cell
  267. if fileName != nil {
  268. if newValue as! String != formRow.value as! String {
  269. self.reloadFormRow(formRow)
  270. appDelegate.messageNotification("_info_", description: "_forbidden_characters_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  271. }
  272. }
  273. self.reloadFormRow(previewFileName)
  274. }
  275. }
  276. // MARK: - View Life Cycle
  277. override func viewDidLoad() {
  278. super.viewDidLoad()
  279. let cancelButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_cancel_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(cancel))
  280. let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(save))
  281. self.navigationItem.leftBarButtonItem = cancelButton
  282. self.navigationItem.rightBarButtonItem = saveButton
  283. self.navigationController?.navigationBar.isTranslucent = false
  284. self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
  285. self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.navigationBarText
  286. self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: NCBrandColor.sharedInstance.navigationBarText]
  287. self.tableView.separatorStyle = UITableViewCellSeparatorStyle.none
  288. self.tableView.backgroundColor = NCBrandColor.sharedInstance.tableBackground
  289. self.reloadForm()
  290. }
  291. override func viewWillDisappear(_ animated: Bool)
  292. {
  293. super.viewWillDisappear(animated)
  294. self.delegate?.dismissFormUploadAssets()
  295. }
  296. func reloadForm() {
  297. self.form.delegate = nil
  298. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  299. buttonDestinationFolder.title = self.titleServerUrl
  300. let maskFileName : XLFormRowDescriptor = self.form.formRow(withTag: "maskFileName")!
  301. let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
  302. previewFileName.value = self.previewFileName(valueRename: maskFileName.value as? String)
  303. self.tableView.reloadData()
  304. self.form.delegate = self
  305. }
  306. //MARK: TableView
  307. override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
  308. switch section {
  309. case 0:
  310. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  311. if buttonDestinationFolder.isHidden() {
  312. return ""
  313. } else {
  314. return " " + NSLocalizedString("_destination_folder_", comment: "")
  315. }
  316. case 1:
  317. return " " + NSLocalizedString("_use_folder_photos_", comment: "")
  318. case 2:
  319. return " " + NSLocalizedString("_add_filenametype_", comment: "")
  320. case 3:
  321. return " " + NSLocalizedString("_rename_filename_", comment: "")
  322. case 4:
  323. return NSLocalizedString("_preview_filename_", comment: "")
  324. default:
  325. return ""
  326. }
  327. }
  328. override func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? {
  329. switch section {
  330. /*
  331. case 2:
  332. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "maskFileName")!
  333. let text = self.writePreviewFileName(buttonDestinationFolder)
  334. return text
  335. */
  336. default:
  337. return ""
  338. }
  339. }
  340. // MARK: - Action
  341. func moveServerUrl(to serverUrlTo: String!, title: String!) {
  342. self.serverUrl = serverUrlTo
  343. if let title = title {
  344. self.titleServerUrl = title
  345. } else {
  346. self.titleServerUrl = "/"
  347. }
  348. self.reloadForm()
  349. }
  350. func save() {
  351. self.dismiss(animated: true, completion: {
  352. let useFolderPhotoRow : XLFormRowDescriptor = self.form.formRow(withTag: "useFolderPhoto")!
  353. let useSubFolderRow : XLFormRowDescriptor = self.form.formRow(withTag: "useSubFolder")!
  354. var useSubFolder : Bool = false
  355. if (useFolderPhotoRow.value! as AnyObject).boolValue == true {
  356. self.serverUrl = NCManageDatabase.sharedInstance.getAccountAutoUploadPath(self.appDelegate.activeUrl)
  357. useSubFolder = (useSubFolderRow.value! as AnyObject).boolValue
  358. }
  359. self.appDelegate.activeMain.uploadFileAsset(self.assets, serverUrl: self.serverUrl, cryptated: self.cryptated, useSubFolder: useSubFolder, session: self.session)
  360. })
  361. }
  362. func cancel() {
  363. self.dismiss(animated: true, completion: nil)
  364. }
  365. // MARK: - Utility
  366. func previewFileName(valueRename : String?) -> String {
  367. var returnString : String = ""
  368. let asset = assets[0] as! PHAsset
  369. if let valueRename = valueRename {
  370. let valueRenameTrimming = valueRename.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
  371. if valueRenameTrimming.characters.count > 0 {
  372. self.form.delegate = nil
  373. CCUtility.setFileNameMask(valueRenameTrimming, key: k_keyFileNameMask)
  374. self.form.delegate = self
  375. returnString = CCUtility.createFileName(asset.value(forKey: "filename"), fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: k_keyFileNameMask, keyFileNameType: k_keyFileNameType)
  376. } else {
  377. CCUtility.setFileNameMask("", key: k_keyFileNameMask)
  378. returnString = CCUtility.createFileName(asset.value(forKey: "filename"), fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: nil, keyFileNameType: k_keyFileNameType)
  379. }
  380. } else {
  381. CCUtility.setFileNameMask("", key: k_keyFileNameMask)
  382. returnString = CCUtility.createFileName(asset.value(forKey: "filename"), fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: nil, keyFileNameType: k_keyFileNameType)
  383. }
  384. return NSLocalizedString("_preview_filename_", comment: "") + ":" + "\n\n" + returnString
  385. }
  386. func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
  387. self.deselectFormRow(sender)
  388. let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
  389. let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
  390. let viewController : CCMove = navigationController.topViewController as! CCMove
  391. viewController.delegate = self;
  392. viewController.tintColor = NCBrandColor.sharedInstance.navigationBarText
  393. viewController.barTintColor = NCBrandColor.sharedInstance.brand
  394. viewController.tintColorTitle = NCBrandColor.sharedInstance.navigationBarText
  395. viewController.move.title = NSLocalizedString("_select_", comment: "");
  396. viewController.networkingOperationQueue = appDelegate.netQueue
  397. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  398. self.present(navigationController, animated: true, completion: nil)
  399. }
  400. }
  401. class CreateFormUploadFile: XLFormViewController, CCMoveDelegate {
  402. var serverUrl = ""
  403. var titleServerUrl = ""
  404. var fileName = ""
  405. var text = ""
  406. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  407. convenience init(serverUrl: String, text: String, fileName: String) {
  408. self.init()
  409. if serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl) {
  410. titleServerUrl = "/"
  411. } else {
  412. titleServerUrl = (serverUrl as NSString).lastPathComponent
  413. }
  414. self.fileName = fileName
  415. self.serverUrl = serverUrl
  416. self.text = text
  417. initializeForm()
  418. }
  419. //MARK: XLFormDescriptorDelegate
  420. func initializeForm() {
  421. let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
  422. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  423. var section : XLFormSectionDescriptor
  424. var row : XLFormRowDescriptor
  425. // Section: Destination Folder
  426. section = XLFormSectionDescriptor.formSection()
  427. form.addFormSection(section)
  428. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
  429. let imageFolder = CCGraphics.changeThemingColorImage(UIImage(named: "folder")!, color: NCBrandColor.sharedInstance.brand) as UIImage
  430. row.cellConfig.setObject(imageFolder, forKey: "imageView.image" as NSCopying)
  431. row.cellConfig.setObject(UIColor.black, forKey: "textLabel.textColor" as NSCopying)
  432. row.action.formSelector = #selector(changeDestinationFolder(_:))
  433. section.addFormRow(row)
  434. // Section: File Name
  435. section = XLFormSectionDescriptor.formSection()
  436. form.addFormSection(section)
  437. row = XLFormRowDescriptor(tag: "fileName", rowType: XLFormRowDescriptorTypeAccount, title: NSLocalizedString("_filename_", comment: ""))
  438. row.value = fileName
  439. section.addFormRow(row)
  440. self.form = form
  441. }
  442. override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
  443. super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
  444. if formRow.tag == "fileName" {
  445. self.form.delegate = nil
  446. if let fileNameNew = formRow.value {
  447. self.fileName = CCUtility.removeForbiddenCharactersServer(fileNameNew as! String)
  448. }
  449. self.title = fileName
  450. self.form.delegate = self
  451. }
  452. }
  453. // MARK: - View Life Cycle
  454. override func viewDidLoad() {
  455. super.viewDidLoad()
  456. let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(save))
  457. self.navigationItem.rightBarButtonItem = saveButton
  458. self.navigationController?.navigationBar.isTranslucent = false
  459. self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
  460. self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.navigationBarText
  461. self.navigationController?.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: NCBrandColor.sharedInstance.navigationBarText]
  462. self.tableView.separatorStyle = UITableViewCellSeparatorStyle.none
  463. self.tableView.backgroundColor = NCBrandColor.sharedInstance.tableBackground
  464. self.reloadForm()
  465. }
  466. func reloadForm() {
  467. self.form.delegate = nil
  468. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  469. buttonDestinationFolder.title = self.titleServerUrl
  470. self.title = fileName
  471. self.tableView.reloadData()
  472. self.form.delegate = self
  473. }
  474. // MARK: - Action
  475. func moveServerUrl(to serverUrlTo: String!, title: String!) {
  476. self.serverUrl = serverUrlTo
  477. if let title = title {
  478. self.titleServerUrl = title
  479. } else {
  480. self.titleServerUrl = "/"
  481. }
  482. self.reloadForm()
  483. }
  484. func save() {
  485. let rowFileName : XLFormRowDescriptor = self.form.formRow(withTag: "fileName")!
  486. guard let name = rowFileName.value else {
  487. return
  488. }
  489. let ext = (name as! NSString).pathExtension.uppercased()
  490. var fileNameSave = ""
  491. switch ext
  492. {
  493. case "":
  494. fileNameSave = name as! String + ".txt"
  495. case "TXT":
  496. fileNameSave = name as! String
  497. default:
  498. fileNameSave = (name as! NSString).deletingPathExtension + ".txt"
  499. }
  500. self.dismiss(animated: true, completion: {
  501. let data = self.text.data(using: .utf8)
  502. let success = FileManager.default.createFile(atPath: "\(self.appDelegate.directoryUser!)/\(fileNameSave)", contents: data, attributes: nil)
  503. if success {
  504. CCNetworking.shared().uploadFile(fileNameSave, serverUrl: self.serverUrl, cryptated: false, onlyPlist: false, session: k_upload_session, taskStatus: Int(k_taskStatusResume), selector: nil, selectorPost: nil, errorCode: 0, delegate: self.appDelegate.activeMain)
  505. } else {
  506. self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  507. }
  508. })
  509. }
  510. func cancel() {
  511. self.dismiss(animated: true, completion: nil)
  512. }
  513. func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
  514. self.deselectFormRow(sender)
  515. let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
  516. let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
  517. let viewController : CCMove = navigationController.topViewController as! CCMove
  518. viewController.delegate = self;
  519. viewController.tintColor = NCBrandColor.sharedInstance.navigationBarText
  520. viewController.barTintColor = NCBrandColor.sharedInstance.brand
  521. viewController.tintColorTitle = NCBrandColor.sharedInstance.navigationBarText
  522. viewController.move.title = NSLocalizedString("_select_", comment: "");
  523. viewController.networkingOperationQueue = appDelegate.netQueue
  524. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  525. self.present(navigationController, animated: true, completion: nil)
  526. }
  527. }