CCCreateCloud.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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 colorLightGray = UIColor(colorLiteralRed: 250.0/255.0, green: 250.0/255.0, blue: 250.0/255.0, alpha: 1)
  30. func createMenuPlain(view : UIView) {
  31. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  32. let actionSheet = AHKActionSheet.init(view: view, title: nil)
  33. actionSheet?.animationDuration = 0.2
  34. actionSheet?.cancelOnTapEmptyAreaEnabled = 1
  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?.selectedBackgroundColor = UIColor(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
  41. actionSheet?.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  42. actionSheet?.buttonTextAttributes = fontButton
  43. actionSheet?.encryptedButtonTextAttributes = fontEncrypted
  44. actionSheet?.cancelButtonTextAttributes = fontCancel
  45. actionSheet?.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  46. actionSheet?.addButton(withTitle: "Create a new folder", image: UIImage(named: "createFolderNextcloud"), backgroundColor: UIColor.white,type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  47. appDelegate.activeMain.returnCreate(Int(returnCreateFolderPlain))
  48. })
  49. actionSheet?.addButton(withTitle: "Upload photos and videos", image: UIImage(named: "uploadPhotoNextcloud"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  50. appDelegate.activeMain.returnCreate(Int(returnCreateFotoVideoPlain))
  51. })
  52. actionSheet?.addButton(withTitle: "Upload a file", image: UIImage(named: "uploadFileNextcloud"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  53. appDelegate.activeMain.returnCreate(Int(returnCreateFilePlain))
  54. })
  55. actionSheet?.addButton(withTitle: "Upload Encrypted mode", image: UIImage(named: "actionSheetLock"), backgroundColor: colorLightGray, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  56. self.createMenuEncrypted(view: view)
  57. })
  58. actionSheet?.show()
  59. }
  60. func createMenuEncrypted(view : UIView) {
  61. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  62. let actionSheet = AHKActionSheet.init(view: view, title: nil)
  63. actionSheet?.animationDuration = 0.2
  64. actionSheet?.cancelOnTapEmptyAreaEnabled = 1
  65. actionSheet?.blurRadius = 0.0
  66. actionSheet?.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  67. actionSheet?.buttonHeight = 50.0
  68. actionSheet?.cancelButtonHeight = 50.0
  69. actionSheet?.selectedBackgroundColor = UIColor(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
  70. actionSheet?.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  71. actionSheet?.buttonTextAttributes = fontButton
  72. actionSheet?.encryptedButtonTextAttributes = fontEncrypted
  73. actionSheet?.cancelButtonTextAttributes = fontCancel
  74. actionSheet?.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  75. actionSheet?.addButton(withTitle: "Create a new folder", image: UIImage(named: "foldercrypto"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  76. appDelegate.activeMain.returnCreate(Int(returnCreateFolderEncrypted))
  77. })
  78. actionSheet?.addButton(withTitle: "Upload photos and videos", image: UIImage(named: "photocrypto"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  79. appDelegate.activeMain.returnCreate(Int(returnCreateFotoVideoEncrypted))
  80. })
  81. actionSheet?.addButton(withTitle: "Upload a file", image: UIImage(named: "importCloudCrypto"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  82. appDelegate.activeMain.returnCreate(Int(returnCreateFileEncrypted))
  83. })
  84. actionSheet?.addButton(withTitle: NSLocalizedString("Upload Template", comment: ""), image: UIImage(named: "template"), backgroundColor: colorLightGray, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  85. self.createMenuTemplate(view: view)
  86. })
  87. actionSheet?.show()
  88. }
  89. func createMenuTemplate(view : UIView) {
  90. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  91. let actionSheet = AHKActionSheet.init(view: view, title: nil)
  92. actionSheet?.animationDuration = 0.2
  93. actionSheet?.cancelOnTapEmptyAreaEnabled = 1
  94. actionSheet?.blurRadius = 0.0
  95. actionSheet?.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  96. actionSheet?.buttonHeight = 50.0
  97. actionSheet?.cancelButtonHeight = 50.0
  98. actionSheet?.selectedBackgroundColor = UIColor(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
  99. actionSheet?.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  100. actionSheet?.buttonTextAttributes = fontButton
  101. actionSheet?.encryptedButtonTextAttributes = fontEncrypted
  102. actionSheet?.cancelButtonTextAttributes = fontCancel
  103. actionSheet?.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  104. actionSheet?.addButton(withTitle: NSLocalizedString("_add_notes_", comment: ""), image: UIImage(named: "note"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  105. appDelegate.activeMain.returnCreate(Int(returnNote))
  106. })
  107. actionSheet?.addButton(withTitle: NSLocalizedString("_add_web_account_", comment: ""), image: UIImage(named: "baseurl"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  108. appDelegate.activeMain.returnCreate(Int(returnAccountWeb))
  109. })
  110. actionSheet?.addButton(withTitle: NSLocalizedString("_add_credit_card_", comment: ""), image: UIImage(named: "cartadicredito"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  111. appDelegate.activeMain.returnCreate(Int(returnCartaDiCredito))
  112. })
  113. actionSheet?.addButton(withTitle: NSLocalizedString("_add_atm_", comment: ""), image: UIImage(named: "bancomat"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  114. appDelegate.activeMain.returnCreate(Int(returnBancomat))
  115. })
  116. actionSheet?.addButton(withTitle: NSLocalizedString("_add_bank_account_", comment: ""), image: UIImage(named: "contocorrente"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  117. appDelegate.activeMain.returnCreate(Int(returnContoCorrente))
  118. })
  119. actionSheet?.addButton(withTitle: NSLocalizedString("_add_driving_license_", comment: ""), image: UIImage(named: "patenteguida"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  120. appDelegate.activeMain.returnCreate(Int(returnPatenteGuida))
  121. })
  122. actionSheet?.addButton(withTitle: NSLocalizedString("_add_id_card_", comment: ""), image: UIImage(named: "cartaidentita"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  123. appDelegate.activeMain.returnCreate(Int(returnCartaIdentita))
  124. })
  125. actionSheet?.addButton(withTitle: NSLocalizedString("_add_passport_", comment: ""), image: UIImage(named: "passaporto"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  126. appDelegate.activeMain.returnCreate(Int(returnPassaporto))
  127. })
  128. actionSheet?.show()
  129. }
  130. }
  131. // MARK: - CreateFormUpload
  132. class CreateFormUpload: XLFormViewController {
  133. var destinationFolder : String?
  134. convenience init(_ destionationFolder : String?) {
  135. self.init()
  136. if destionationFolder == nil || destionationFolder?.isEmpty == true {
  137. self.destinationFolder = "/" //NSLocalizedString("_root_", comment: "")
  138. } else {
  139. self.destinationFolder = destionationFolder
  140. }
  141. self.initializeForm()
  142. }
  143. override func viewDidLoad() {
  144. super.viewDidLoad()
  145. let cancelButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_cancel_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(cancel))
  146. let saveButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_save_", comment: ""), style: UIBarButtonItemStyle.plain, target: self, action: #selector(save))
  147. self.navigationItem.leftBarButtonItem = cancelButton
  148. self.navigationItem.rightBarButtonItem = saveButton
  149. }
  150. func initializeForm() {
  151. let form : XLFormDescriptor = XLFormDescriptor() as XLFormDescriptor
  152. form.rowNavigationOptions = XLFormRowNavigationOptions.stopDisableRow
  153. var section : XLFormSectionDescriptor
  154. var row : XLFormRowDescriptor
  155. section = XLFormSectionDescriptor.formSection(withTitle: "_destination_folder_") as XLFormSectionDescriptor
  156. form.addFormSection(section)
  157. row = XLFormRowDescriptor(tag: "ButtonDestinationFolder", rowType: XLFormRowDescriptorTypeButton, title: self.destinationFolder)
  158. row.cellConfig.setObject(UIImage(named: image_settingsManagePhotos)!, forKey: "imageView.image" as NSCopying)
  159. section.addFormRow(row)
  160. section = XLFormSectionDescriptor.formSection() as XLFormSectionDescriptor
  161. form.addFormSection(section)
  162. section = XLFormSectionDescriptor.formSection() as XLFormSectionDescriptor
  163. form.addFormSection(section)
  164. row = XLFormRowDescriptor(tag: "TextFieldAndTextView", rowType: XLFormRowDescriptorTypeName, title: "File name")
  165. section.addFormRow(row)
  166. self.form = form
  167. }
  168. func save() {
  169. }
  170. func cancel() {
  171. }
  172. }