CCCreateCloud.swift 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  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: -
  25. class CreateMenuAdd: NSObject {
  26. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  27. let fontButton = [NSAttributedStringKey.font:UIFont(name: "HelveticaNeue", size: 16)!, NSAttributedStringKey.foregroundColor: UIColor.black]
  28. let fontEncrypted = [NSAttributedStringKey.font:UIFont(name: "HelveticaNeue", size: 16)!, NSAttributedStringKey.foregroundColor: NCBrandColor.sharedInstance.encrypted as UIColor]
  29. let fontCancel = [NSAttributedStringKey.font:UIFont(name: "HelveticaNeue-Bold", size: 17)!, NSAttributedStringKey.foregroundColor: UIColor.black]
  30. let fontDisable = [NSAttributedStringKey.font:UIFont(name: "HelveticaNeue", size: 16)!, NSAttributedStringKey.foregroundColor: UIColor.darkGray]
  31. let colorLightGray = UIColor(red: 250.0/255.0, green: 250.0/255.0, blue: 250.0/255.0, alpha: 1)
  32. let colorGray = UIColor(red: 150.0/255.0, green: 150.0/255.0, blue: 150.0/255.0, alpha: 1)
  33. var colorIcon = NCBrandColor.sharedInstance.brandElement
  34. @objc init (themingColor : UIColor) {
  35. super.init()
  36. colorIcon = themingColor
  37. }
  38. @objc func createMenu(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.buttonHeight = 50.0
  44. actionSheet.cancelButtonHeight = 50.0
  45. actionSheet.separatorHeight = 5.0
  46. actionSheet.separatorColor = NCBrandColor.sharedInstance.seperator
  47. actionSheet.buttonTextAttributes = fontButton
  48. actionSheet.encryptedButtonTextAttributes = fontEncrypted
  49. actionSheet.cancelButtonTextAttributes = fontCancel
  50. actionSheet.disableButtonTextAttributes = fontDisable
  51. actionSheet.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  52. actionSheet.addButton(withTitle: NSLocalizedString("_upload_photos_videos_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "media"), multiplier:2, color: colorGray), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  53. appDelegate.activeMain.openAssetsPickerController()
  54. })
  55. actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "file"), multiplier:2, color: colorGray), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  56. appDelegate.activeMain.openImportDocumentPicker()
  57. })
  58. actionSheet.addButton(withTitle: NSLocalizedString("_upload_file_text_", comment: ""), image: CCGraphics.changeThemingColorImage(UIImage(named: "file_txt"), multiplier:2, color: colorGray), backgroundColor: NCBrandColor.sharedInstance.backgroundView, height: 50.0, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  59. let storyboard = UIStoryboard(name: "NCText", bundle: nil)
  60. let controller = storyboard.instantiateViewController(withIdentifier: "NCText")
  61. controller.modalPresentationStyle = UIModalPresentationStyle.pageSheet
  62. appDelegate.activeMain.present(controller, animated: true, completion: nil)
  63. })
  64. 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
  65. appDelegate.activeMain.createFolder()
  66. })
  67. actionSheet.show()
  68. }
  69. }
  70. // MARK: -
  71. @objc protocol createFormUploadAssetsDelegate {
  72. func dismissFormUploadAssets()
  73. }
  74. // MARK: -
  75. class CreateFormUploadAssets: XLFormViewController, CCMoveDelegate {
  76. var serverUrl : String = ""
  77. var titleServerUrl : String?
  78. var assets: NSMutableArray = []
  79. var cryptated : Bool = false
  80. var session : String = ""
  81. weak var delegate: createFormUploadAssetsDelegate?
  82. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  83. @objc convenience init(serverUrl : String, assets : NSMutableArray, cryptated : Bool, session : String, delegate: createFormUploadAssetsDelegate) {
  84. self.init()
  85. if serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl) {
  86. titleServerUrl = "/"
  87. } else {
  88. titleServerUrl = (serverUrl as NSString).lastPathComponent
  89. }
  90. self.serverUrl = serverUrl
  91. self.assets = assets
  92. self.cryptated = cryptated
  93. self.session = session
  94. self.delegate = delegate
  95. self.initializeForm()
  96. }
  97. //MARK: XLFormDescriptorDelegate
  98. func initializeForm() {
  99. let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
  100. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  101. var section : XLFormSectionDescriptor
  102. var row : XLFormRowDescriptor
  103. // Section: Destination Folder
  104. section = XLFormSectionDescriptor.formSection()
  105. form.addFormSection(section)
  106. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
  107. let imageFolder = CCGraphics.changeThemingColorImage(UIImage(named: "folder")!, multiplier:2, color: NCBrandColor.sharedInstance.brandElement) as UIImage
  108. row.cellConfig.setObject(imageFolder, forKey: "imageView.image" as NSCopying)
  109. row.cellConfig.setObject(UIColor.black, forKey: "textLabel.textColor" as NSCopying)
  110. row.cellConfig.setObject(UIFont.systemFont(ofSize: 15.0), forKey: "textLabel.font" as NSCopying)
  111. row.action.formSelector = #selector(changeDestinationFolder(_:))
  112. section.addFormRow(row)
  113. // Section Switch
  114. section = XLFormSectionDescriptor.formSection()
  115. form.addFormSection(section)
  116. // Folder Photo
  117. row = XLFormRowDescriptor(tag: "useFolderMedia", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_use_folder_media_", comment: ""))
  118. row.value = 0
  119. row.cellConfig.setObject(UIFont.systemFont(ofSize: 15.0), forKey: "textLabel.font" as NSCopying)
  120. section.addFormRow(row)
  121. // Use Sub folder
  122. row = XLFormRowDescriptor(tag: "useSubFolder", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_autoupload_create_subfolder_", comment: ""))
  123. row.hidden = "$\("useFolderMedia") == 0"
  124. row.cellConfig.setObject(UIFont.systemFont(ofSize: 15.0), forKey: "textLabel.font" as NSCopying)
  125. let tableAccount = NCManageDatabase.sharedInstance.getAccountActive()
  126. if tableAccount?.autoUploadCreateSubfolder == true {
  127. row.value = 1
  128. } else {
  129. row.value = 0
  130. }
  131. section.addFormRow(row)
  132. // Maintain the original fileName
  133. row = XLFormRowDescriptor(tag: "maintainOriginalFileName", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_maintain_original_filename_", comment: ""))
  134. row.value = CCUtility.getOriginalFileName(k_keyFileNameOriginal)
  135. row.cellConfig.setObject(UIFont.systemFont(ofSize: 15.0), forKey: "textLabel.font" as NSCopying)
  136. section.addFormRow(row)
  137. // Add File Name Type
  138. row = XLFormRowDescriptor(tag: "addFileNameType", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_add_filenametype_", comment: ""))
  139. row.hidden = "$\("maintainOriginalFileName") == 1"
  140. row.cellConfig.setObject(UIFont.systemFont(ofSize: 15.0), forKey: "textLabel.font" as NSCopying)
  141. row.value = CCUtility.getFileNameType(k_keyFileNameType)
  142. section.addFormRow(row)
  143. // Section: Rename File Name
  144. section = XLFormSectionDescriptor.formSection()
  145. form.addFormSection(section)
  146. row = XLFormRowDescriptor(tag: "maskFileName", rowType: XLFormRowDescriptorTypeAccount, title: (NSLocalizedString("_filename_", comment: ""))+":")
  147. row.hidden = "$\("maintainOriginalFileName") == 1"
  148. row.cellConfig.setObject(UIFont.systemFont(ofSize: 15.0), forKey: "textLabel.font" as NSCopying)
  149. let fileNameMask : String = CCUtility.getFileNameMask(k_keyFileNameMask)
  150. if fileNameMask.count > 0 {
  151. row.value = fileNameMask
  152. }
  153. section.addFormRow(row)
  154. // Section: Preview File Name
  155. row = XLFormRowDescriptor(tag: "previewFileName", rowType: XLFormRowDescriptorTypeTextView, title: "")
  156. row.height = 180
  157. row.cellConfig.setObject(NCBrandColor.sharedInstance.backgroundView, forKey: "backgroundColor" as NSCopying)
  158. row.cellConfig.setObject(NCBrandColor.sharedInstance.backgroundView, forKey: "textView.backgroundColor" as NSCopying)
  159. row.disabled = true
  160. row.cellConfig.setObject(UIFont.systemFont(ofSize: 15.0), forKey: "textLabel.font" as NSCopying)
  161. section.addFormRow(row)
  162. self.form = form
  163. }
  164. override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
  165. super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
  166. if formRow.tag == "useFolderMedia" {
  167. if (formRow.value! as AnyObject).boolValue == true {
  168. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  169. buttonDestinationFolder.hidden = true
  170. } else{
  171. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  172. buttonDestinationFolder.hidden = false
  173. }
  174. }
  175. else if formRow.tag == "useSubFolder" {
  176. if (formRow.value! as AnyObject).boolValue == true {
  177. } else{
  178. }
  179. }
  180. else if formRow.tag == "maintainOriginalFileName" {
  181. CCUtility.setOriginalFileName((formRow.value! as AnyObject).boolValue, key: k_keyFileNameOriginal)
  182. self.reloadForm()
  183. }
  184. else if formRow.tag == "addFileNameType" {
  185. CCUtility.setFileNameType((formRow.value! as AnyObject).boolValue, key: k_keyFileNameType)
  186. self.reloadForm()
  187. }
  188. else if formRow.tag == "maskFileName" {
  189. let fileName = formRow.value as? String
  190. self.form.delegate = nil
  191. if let fileName = fileName {
  192. formRow.value = CCUtility.removeForbiddenCharactersServer(fileName)
  193. }
  194. self.form.delegate = self
  195. let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
  196. previewFileName.value = self.previewFileName(valueRename: formRow.value as? String)
  197. // reload cell
  198. if fileName != nil {
  199. if newValue as! String != formRow.value as! String {
  200. self.reloadFormRow(formRow)
  201. appDelegate.messageNotification("_info_", description: "_forbidden_characters_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  202. }
  203. }
  204. self.reloadFormRow(previewFileName)
  205. }
  206. }
  207. // MARK: - View Life Cycle
  208. override func viewDidLoad() {
  209. super.viewDidLoad()
  210. let cancelButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_cancel_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(cancel))
  211. let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(save))
  212. self.navigationItem.leftBarButtonItem = cancelButton
  213. self.navigationItem.rightBarButtonItem = saveButton
  214. self.navigationController?.navigationBar.isTranslucent = false
  215. self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
  216. self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
  217. self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor: NCBrandColor.sharedInstance.brandText]
  218. self.tableView.separatorStyle = UITableViewCellSeparatorStyle.none
  219. self.tableView.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  220. self.reloadForm()
  221. }
  222. override func viewWillDisappear(_ animated: Bool)
  223. {
  224. super.viewWillDisappear(animated)
  225. self.delegate?.dismissFormUploadAssets()
  226. }
  227. func reloadForm() {
  228. self.form.delegate = nil
  229. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  230. buttonDestinationFolder.title = self.titleServerUrl
  231. let maskFileName : XLFormRowDescriptor = self.form.formRow(withTag: "maskFileName")!
  232. let previewFileName : XLFormRowDescriptor = self.form.formRow(withTag: "previewFileName")!
  233. previewFileName.value = self.previewFileName(valueRename: maskFileName.value as? String)
  234. self.tableView.reloadData()
  235. self.form.delegate = self
  236. }
  237. // MARK: - Action
  238. func moveServerUrl(to serverUrlTo: String!, title: String!) {
  239. self.serverUrl = serverUrlTo
  240. if let title = title {
  241. self.titleServerUrl = title
  242. } else {
  243. self.titleServerUrl = "/"
  244. }
  245. self.reloadForm()
  246. }
  247. @objc func save() {
  248. self.dismiss(animated: true, completion: {
  249. let useFolderPhotoRow : XLFormRowDescriptor = self.form.formRow(withTag: "useFolderMedia")!
  250. let useSubFolderRow : XLFormRowDescriptor = self.form.formRow(withTag: "useSubFolder")!
  251. var useSubFolder : Bool = false
  252. if (useFolderPhotoRow.value! as AnyObject).boolValue == true {
  253. self.serverUrl = NCManageDatabase.sharedInstance.getAccountAutoUploadPath(self.appDelegate.activeUrl)
  254. useSubFolder = (useSubFolderRow.value! as AnyObject).boolValue
  255. }
  256. self.appDelegate.activeMain.uploadFileAsset(self.assets, serverUrl: self.serverUrl, useSubFolder: useSubFolder, session: self.session)
  257. })
  258. }
  259. @objc func cancel() {
  260. self.dismiss(animated: true, completion: nil)
  261. }
  262. // MARK: - Utility
  263. func previewFileName(valueRename : String?) -> String {
  264. var returnString: String = ""
  265. let asset = assets[0] as! PHAsset
  266. if (CCUtility.getOriginalFileName(k_keyFileNameOriginal)) {
  267. return (NSLocalizedString("_filename_", comment: "") + ": " + (asset.value(forKey: "filename") as! String))
  268. } else if let valueRename = valueRename {
  269. let valueRenameTrimming = valueRename.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
  270. if valueRenameTrimming.count > 0 {
  271. self.form.delegate = nil
  272. CCUtility.setFileNameMask(valueRename, key: k_keyFileNameMask)
  273. self.form.delegate = self
  274. returnString = CCUtility.createFileName(asset.value(forKey: "filename"), fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: k_keyFileNameMask, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)
  275. } else {
  276. CCUtility.setFileNameMask("", key: k_keyFileNameMask)
  277. returnString = CCUtility.createFileName(asset.value(forKey: "filename"), fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: nil, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)
  278. }
  279. } else {
  280. CCUtility.setFileNameMask("", key: k_keyFileNameMask)
  281. returnString = CCUtility.createFileName(asset.value(forKey: "filename"), fileDate: asset.creationDate, fileType: asset.mediaType, keyFileName: nil, keyFileNameType: k_keyFileNameType, keyFileNameOriginal: k_keyFileNameOriginal)
  282. }
  283. return String(format: NSLocalizedString("_preview_filename_", comment: ""), "MM,MMM,DD,YY,YYYY and HH,hh,mm,ss,ampm") + ":" + "\n\n" + returnString
  284. }
  285. @objc func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
  286. self.deselectFormRow(sender)
  287. let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
  288. let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
  289. let viewController : CCMove = navigationController.topViewController as! CCMove
  290. viewController.delegate = self;
  291. viewController.tintColor = NCBrandColor.sharedInstance.brandText
  292. viewController.barTintColor = NCBrandColor.sharedInstance.brand
  293. viewController.tintColorTitle = NCBrandColor.sharedInstance.brandText
  294. viewController.move.title = NSLocalizedString("_select_", comment: "");
  295. viewController.networkingOperationQueue = appDelegate.netQueue
  296. // E2EE
  297. viewController.includeDirectoryE2EEncryption = true;
  298. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  299. self.present(navigationController, animated: true, completion: nil)
  300. }
  301. }
  302. // MARK: -
  303. class CreateFormUploadFile: XLFormViewController, CCMoveDelegate {
  304. var serverUrl = ""
  305. var titleServerUrl = ""
  306. var fileName = ""
  307. var text = ""
  308. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  309. convenience init(serverUrl: String, text: String, fileName: String) {
  310. self.init()
  311. if serverUrl == CCUtility.getHomeServerUrlActiveUrl(appDelegate.activeUrl) {
  312. titleServerUrl = "/"
  313. } else {
  314. titleServerUrl = (serverUrl as NSString).lastPathComponent
  315. }
  316. self.fileName = fileName
  317. self.serverUrl = serverUrl
  318. self.text = text
  319. initializeForm()
  320. }
  321. //MARK: XLFormDescriptorDelegate
  322. func initializeForm() {
  323. let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
  324. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  325. var section : XLFormSectionDescriptor
  326. var row : XLFormRowDescriptor
  327. // Section: Destination Folder
  328. section = XLFormSectionDescriptor.formSection()
  329. form.addFormSection(section)
  330. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleServerUrl)
  331. let imageFolder = CCGraphics.changeThemingColorImage(UIImage(named: "folder")!, multiplier:2, color: NCBrandColor.sharedInstance.brandElement) as UIImage
  332. row.cellConfig.setObject(imageFolder, forKey: "imageView.image" as NSCopying)
  333. row.cellConfig.setObject(UIColor.black, forKey: "textLabel.textColor" as NSCopying)
  334. row.cellConfig.setObject(UIFont.systemFont(ofSize: 15.0), forKey: "textLabel.font" as NSCopying)
  335. row.action.formSelector = #selector(changeDestinationFolder(_:))
  336. section.addFormRow(row)
  337. // Section: File Name
  338. section = XLFormSectionDescriptor.formSection()
  339. form.addFormSection(section)
  340. row = XLFormRowDescriptor(tag: "fileName", rowType: XLFormRowDescriptorTypeAccount, title: NSLocalizedString("_filename_", comment: ""))
  341. row.cellConfig.setObject(UIFont.systemFont(ofSize: 15.0), forKey: "textLabel.font" as NSCopying)
  342. row.value = fileName
  343. section.addFormRow(row)
  344. self.form = form
  345. }
  346. override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
  347. super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
  348. if formRow.tag == "fileName" {
  349. self.form.delegate = nil
  350. if let fileNameNew = formRow.value {
  351. self.fileName = CCUtility.removeForbiddenCharactersServer(fileNameNew as! String)
  352. }
  353. self.title = fileName
  354. self.form.delegate = self
  355. }
  356. }
  357. // MARK: - View Life Cycle
  358. override func viewDidLoad() {
  359. super.viewDidLoad()
  360. let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(save))
  361. self.navigationItem.rightBarButtonItem = saveButton
  362. self.navigationController?.navigationBar.isTranslucent = false
  363. self.navigationController?.navigationBar.barTintColor = NCBrandColor.sharedInstance.brand
  364. self.navigationController?.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText
  365. self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor: NCBrandColor.sharedInstance.brandText]
  366. self.tableView.separatorStyle = UITableViewCellSeparatorStyle.none
  367. self.tableView.backgroundColor = NCBrandColor.sharedInstance.backgroundView
  368. self.reloadForm()
  369. }
  370. func reloadForm() {
  371. self.form.delegate = nil
  372. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  373. buttonDestinationFolder.title = self.titleServerUrl
  374. self.title = fileName
  375. self.tableView.reloadData()
  376. self.form.delegate = self
  377. }
  378. // MARK: - Action
  379. func moveServerUrl(to serverUrlTo: String!, title: String!) {
  380. self.serverUrl = serverUrlTo
  381. if let title = title {
  382. self.titleServerUrl = title
  383. } else {
  384. self.titleServerUrl = "/"
  385. }
  386. self.reloadForm()
  387. }
  388. @objc func save() {
  389. let rowFileName : XLFormRowDescriptor = self.form.formRow(withTag: "fileName")!
  390. guard let name = rowFileName.value else {
  391. return
  392. }
  393. let ext = (name as! NSString).pathExtension.uppercased()
  394. var fileNameSave = ""
  395. if (ext == "") {
  396. fileNameSave = name as! String + ".txt"
  397. } else if (CCUtility.isDocumentModifiableExtension(ext)) {
  398. fileNameSave = name as! String
  399. } else {
  400. fileNameSave = (name as! NSString).deletingPathExtension + ".txt"
  401. }
  402. guard let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(self.serverUrl) else {
  403. return
  404. }
  405. let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "directoryID == %@ AND fileNameView == %@", directoryID, fileNameSave))
  406. if (metadata != nil) {
  407. let alertController = UIAlertController(title: fileNameSave, message: NSLocalizedString("_file_already_exists_", comment: ""), preferredStyle: .alert)
  408. let cancelAction = UIAlertAction(title: NSLocalizedString("_cancel_", comment: ""), style: .default) { (action:UIAlertAction) in
  409. }
  410. let overwriteAction = UIAlertAction(title: NSLocalizedString("_overwrite_", comment: ""), style: .cancel) { (action:UIAlertAction) in
  411. self.dismissAndUpload(fileNameSave, fileID: metadata!.fileID, directoryID: directoryID)
  412. }
  413. alertController.addAction(cancelAction)
  414. alertController.addAction(overwriteAction)
  415. self.present(alertController, animated: true, completion:nil)
  416. } else {
  417. let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(self.serverUrl)!
  418. dismissAndUpload(fileNameSave, fileID: directoryID + fileNameSave, directoryID: directoryID)
  419. }
  420. }
  421. func dismissAndUpload(_ fileNameSave: String, fileID: String, directoryID: String) {
  422. self.dismiss(animated: true, completion: {
  423. let data = self.text.data(using: .utf8)
  424. let success = FileManager.default.createFile(atPath: CCUtility.getDirectoryProviderStorageFileID(fileID, fileNameView: fileNameSave), contents: data, attributes: nil)
  425. if success {
  426. let metadataForUpload = tableMetadata()
  427. metadataForUpload.account = self.appDelegate.activeAccount
  428. metadataForUpload.date = NSDate()
  429. metadataForUpload.directoryID = directoryID
  430. metadataForUpload.fileID = fileID
  431. metadataForUpload.fileName = fileNameSave
  432. metadataForUpload.fileNameView = fileNameSave
  433. metadataForUpload.session = k_upload_session
  434. metadataForUpload.sessionSelector = selectorUploadFile
  435. metadataForUpload.status = Int(k_metadataStatusWaitUpload)
  436. _ = NCManageDatabase.sharedInstance.addMetadata(metadataForUpload)
  437. self.appDelegate.perform(#selector(self.appDelegate.loadAutoDownloadUpload), on: Thread.main, with: nil, waitUntilDone: true)
  438. NCMainCommon.sharedInstance.reloadDatasource(ServerUrl: self.serverUrl, fileID: nil, action: Int32(k_action_NULL))
  439. } else {
  440. self.appDelegate.messageNotification("_error_", description: "_error_creation_file_", visible: true, delay: TimeInterval(k_dismissAfterSecond), type: TWMessageBarMessageType.info, errorCode: 0)
  441. }
  442. })
  443. }
  444. func cancel() {
  445. self.dismiss(animated: true, completion: nil)
  446. }
  447. @objc func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
  448. self.deselectFormRow(sender)
  449. let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
  450. let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
  451. let viewController : CCMove = navigationController.topViewController as! CCMove
  452. viewController.delegate = self;
  453. viewController.tintColor = NCBrandColor.sharedInstance.brandText
  454. viewController.barTintColor = NCBrandColor.sharedInstance.brand
  455. viewController.tintColorTitle = NCBrandColor.sharedInstance.brandText
  456. viewController.move.title = NSLocalizedString("_select_", comment: "");
  457. viewController.networkingOperationQueue = appDelegate.netQueue
  458. // E2EE
  459. viewController.includeDirectoryE2EEncryption = true;
  460. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  461. self.present(navigationController, animated: true, completion: nil)
  462. }
  463. }