CCCreateCloud.swift 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  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. }
  174. func initializeForm() {
  175. let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
  176. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  177. var section : XLFormSectionDescriptor
  178. var row : XLFormRowDescriptor
  179. section = XLFormSectionDescriptor.formSection()
  180. form.addFormSection(section)
  181. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.titleLocalServerUrl)
  182. row.cellConfig.setObject(UIImage(named: image_settingsManagePhotos)!, forKey: "imageView.image" as NSCopying)
  183. row.action.formSelector = #selector(changeDestinationFolder(_:))
  184. section.addFormRow(row)
  185. section = XLFormSectionDescriptor.formSection()
  186. form.addFormSection(section)
  187. row = XLFormRowDescriptor(tag: "useFolderPhoto", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_photo_camera_", comment: ""))
  188. row.value = 0
  189. section.addFormRow(row)
  190. row = XLFormRowDescriptor(tag: "useSubFolder", rowType: XLFormRowDescriptorTypeBooleanSwitch, title: NSLocalizedString("_upload_camera_create_subfolder_", comment: ""))
  191. row.hidden = "$\("useFolderPhoto") == 0"
  192. if CCCoreData.getCameraUploadCreateSubfolderActiveAccount(appDelegate.activeAccount) == true {
  193. row.value = 1
  194. } else {
  195. row.value = 0
  196. }
  197. section.addFormRow(row)
  198. /*
  199. section = XLFormSectionDescriptor.formSection(withTitle: "B") as XLFormSectionDescriptor
  200. form.addFormSection(section)
  201. row = XLFormRowDescriptor(tag: "TextFieldAndTextView", rowType: XLFormRowDescriptorTypeName, title: NSLocalizedString("_add_passport_", comment: ""))
  202. section.addFormRow(row)
  203. */
  204. self.form = form
  205. }
  206. //MARK: XLFormDescriptorDelegate
  207. override func formRowDescriptorValueHasChanged(_ formRow: XLFormRowDescriptor!, oldValue: Any!, newValue: Any!) {
  208. super.formRowDescriptorValueHasChanged(formRow, oldValue: oldValue, newValue: newValue)
  209. if formRow.tag == "useFolderPhoto" {
  210. if (formRow.value! as AnyObject).boolValue == true {
  211. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  212. buttonDestinationFolder.hidden = true
  213. } else{
  214. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  215. buttonDestinationFolder.hidden = false
  216. }
  217. }
  218. else if formRow.tag == "useSubFolder" {
  219. if (formRow.value! as AnyObject).boolValue == true {
  220. } else{
  221. }
  222. }
  223. }
  224. override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
  225. var returnTitle : String?
  226. if section == 0 {
  227. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  228. if buttonDestinationFolder.isHidden() {
  229. returnTitle = ""
  230. } else {
  231. returnTitle = NSLocalizedString("_destination_folder_", comment: "")
  232. }
  233. }
  234. if section == 1 {
  235. returnTitle = NSLocalizedString("_use_folder_photos_", comment: "")
  236. }
  237. return returnTitle
  238. }
  239. func reloadForm() {
  240. self.form.delegate = nil
  241. let buttonDestinationFolder : XLFormRowDescriptor = self.form.formRow(withTag: "ButtonDestinationFolder")!
  242. buttonDestinationFolder.title = self.titleLocalServerUrl
  243. self.tableView.reloadData()
  244. self.form.delegate = self
  245. }
  246. func changeDestinationFolder(_ sender: XLFormRowDescriptor) {
  247. self.deselectFormRow(sender)
  248. let storyboard : UIStoryboard = UIStoryboard(name: "CCMove", bundle: nil)
  249. let navigationController = storyboard.instantiateViewController(withIdentifier: "CCMove") as! UINavigationController
  250. let viewController : CCMove = navigationController.topViewController as! CCMove
  251. viewController.delegate = self;
  252. viewController.tintColor = UIColor.init(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 1.0) // COLOR_BRAND
  253. viewController.barTintColor = UIColor.init(colorLiteralRed: 248.0/255.0, green: 248.0/255.0, blue: 248.0/255.0, alpha: 1.0) // COLOR_BAR;
  254. viewController.tintColorTitle = UIColor.init(colorLiteralRed: 65.0/255.0, green: 64.0/255.0, blue: 66.0/255.0, alpha: 1.0) // COLOR_GRAY;
  255. viewController.move.title = NSLocalizedString("_select_", comment: "");
  256. viewController.networkingOperationQueue = appDelegate.netQueue
  257. navigationController.modalPresentationStyle = UIModalPresentationStyle.formSheet
  258. self.present(navigationController, animated: true, completion: nil)
  259. }
  260. func move(_ serverUrlTo: String!, title: String!, selectedMetadatas: [Any]!) {
  261. self.localServerUrl = serverUrlTo
  262. if title == nil {
  263. self.titleLocalServerUrl = "/"
  264. } else {
  265. self.titleLocalServerUrl = title
  266. }
  267. self.reloadForm()
  268. }
  269. func save() {
  270. self.dismiss(animated: true, completion: {
  271. let useFolderPhotoRow : XLFormRowDescriptor = self.form.formRow(withTag: "useFolderPhoto")!
  272. let useSubFolderRow : XLFormRowDescriptor = self.form.formRow(withTag: "useSubFolder")!
  273. var useSubFolder : Bool = false
  274. if (useFolderPhotoRow.value! as AnyObject).boolValue == true {
  275. self.localServerUrl = CCCoreData.getCameraUploadFolderNamePathActiveAccount(self.appDelegate.activeAccount, activeUrl: self.appDelegate.activeUrl, typeCloud: self.appDelegate.typeCloud)
  276. useSubFolder = (useSubFolderRow.value! as AnyObject).boolValue
  277. }
  278. self.appDelegate.activeMain.uploadFileAsset(self.assets, serverUrl: self.localServerUrl, cryptated: self.cryptated!, useSubFolder: useSubFolder, session: self.session)
  279. })
  280. }
  281. func cancel() {
  282. self.dismiss(animated: true, completion: nil)
  283. }
  284. }