CCCreateCloud.swift 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. class CreateMenu: NSObject {
  25. 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)]
  26. 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)]
  27. 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)]
  28. let colorLightGray = UIColor(colorLiteralRed: 250.0/255.0, green: 250.0/255.0, blue: 250.0/255.0, alpha: 1)
  29. func createMenuPlain(view : UIView) {
  30. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  31. let actionSheet = AHKActionSheet.init(view: view, title: nil)
  32. actionSheet?.animationDuration = 0.2
  33. actionSheet?.cancelOnTapEmptyAreaEnabled = 1
  34. actionSheet?.automaticallyTintButtonImages = 0
  35. actionSheet?.blurRadius = 0.0
  36. actionSheet?.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  37. actionSheet?.buttonHeight = 50.0
  38. actionSheet?.cancelButtonHeight = 50.0
  39. actionSheet?.selectedBackgroundColor = UIColor(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
  40. actionSheet?.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  41. actionSheet?.buttonTextAttributes = fontButton
  42. actionSheet?.encryptedButtonTextAttributes = fontEncrypted
  43. actionSheet?.cancelButtonTextAttributes = fontCancel
  44. actionSheet?.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  45. actionSheet?.addButton(withTitle: "Create a new folder", image: UIImage(named: "createFolderNextcloud"), backgroundColor: UIColor.white,type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  46. appDelegate.activeMain.returnCreate(Int(returnCreateFolderPlain))
  47. })
  48. actionSheet?.addButton(withTitle: "Upload photos and videos", image: UIImage(named: "uploadPhotoNextcloud"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  49. appDelegate.activeMain.returnCreate(Int(returnCreateFotoVideoPlain))
  50. })
  51. actionSheet?.addButton(withTitle: "Upload a file", image: UIImage(named: "uploadFileNextcloud"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.default, handler: {(AHKActionSheet) -> Void in
  52. appDelegate.activeMain.returnCreate(Int(returnCreateFilePlain))
  53. })
  54. actionSheet?.addButton(withTitle: "Upload Encrypted mode", image: UIImage(named: "actionSheetLock"), backgroundColor: colorLightGray, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  55. self.createMenuEncrypted(view: view)
  56. })
  57. actionSheet?.show()
  58. }
  59. func createMenuEncrypted(view : UIView) {
  60. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  61. let actionSheet = AHKActionSheet.init(view: view, title: nil)
  62. actionSheet?.animationDuration = 0.2
  63. actionSheet?.cancelOnTapEmptyAreaEnabled = 1
  64. actionSheet?.blurRadius = 0.0
  65. actionSheet?.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  66. actionSheet?.buttonHeight = 50.0
  67. actionSheet?.cancelButtonHeight = 50.0
  68. actionSheet?.selectedBackgroundColor = UIColor(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
  69. actionSheet?.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  70. actionSheet?.buttonTextAttributes = fontButton
  71. actionSheet?.encryptedButtonTextAttributes = fontEncrypted
  72. actionSheet?.cancelButtonTextAttributes = fontCancel
  73. actionSheet?.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  74. actionSheet?.addButton(withTitle: "Create a new folder", image: UIImage(named: "foldercrypto"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  75. appDelegate.activeMain.returnCreate(Int(returnCreateFolderEncrypted))
  76. })
  77. actionSheet?.addButton(withTitle: "Upload photos and videos", image: UIImage(named: "photocrypto"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  78. appDelegate.activeMain.returnCreate(Int(returnCreateFotoVideoEncrypted))
  79. })
  80. actionSheet?.addButton(withTitle: "Upload a file", image: UIImage(named: "importCloudCrypto"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  81. appDelegate.activeMain.returnCreate(Int(returnCreateFileEncrypted))
  82. })
  83. actionSheet?.addButton(withTitle: NSLocalizedString("Upload Template", comment: ""), image: UIImage(named: "template"), backgroundColor: colorLightGray, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  84. self.createMenuTemplate(view: view)
  85. })
  86. actionSheet?.show()
  87. }
  88. func createMenuTemplate(view : UIView) {
  89. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  90. let actionSheet = AHKActionSheet.init(view: view, title: nil)
  91. actionSheet?.animationDuration = 0.2
  92. actionSheet?.cancelOnTapEmptyAreaEnabled = 1
  93. actionSheet?.blurRadius = 0.0
  94. actionSheet?.blurTintColor = UIColor(white: 0.0, alpha: 0.50)
  95. actionSheet?.buttonHeight = 50.0
  96. actionSheet?.cancelButtonHeight = 50.0
  97. actionSheet?.selectedBackgroundColor = UIColor(colorLiteralRed: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 0.1)
  98. actionSheet?.separatorColor = UIColor(colorLiteralRed: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 0.2)
  99. actionSheet?.buttonTextAttributes = fontButton
  100. actionSheet?.encryptedButtonTextAttributes = fontEncrypted
  101. actionSheet?.cancelButtonTextAttributes = fontCancel
  102. actionSheet?.cancelButtonTitle = NSLocalizedString("_cancel_", comment: "")
  103. actionSheet?.addButton(withTitle: NSLocalizedString("_add_notes_", comment: ""), image: UIImage(named: "note"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  104. appDelegate.activeMain.returnCreate(Int(returnNote))
  105. })
  106. actionSheet?.addButton(withTitle: NSLocalizedString("_add_web_account_", comment: ""), image: UIImage(named: "baseurl"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  107. appDelegate.activeMain.returnCreate(Int(returnAccountWeb))
  108. })
  109. actionSheet?.addButton(withTitle: NSLocalizedString("_add_credit_card_", comment: ""), image: UIImage(named: "cartadicredito"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  110. appDelegate.activeMain.returnCreate(Int(returnCartaDiCredito))
  111. })
  112. actionSheet?.addButton(withTitle: NSLocalizedString("_add_atm_", comment: ""), image: UIImage(named: "bancomat"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  113. appDelegate.activeMain.returnCreate(Int(returnBancomat))
  114. })
  115. actionSheet?.addButton(withTitle: NSLocalizedString("_add_bank_account_", comment: ""), image: UIImage(named: "contocorrente"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  116. appDelegate.activeMain.returnCreate(Int(returnContoCorrente))
  117. })
  118. actionSheet?.addButton(withTitle: NSLocalizedString("_add_driving_license_", comment: ""), image: UIImage(named: "patenteguida"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  119. appDelegate.activeMain.returnCreate(Int(returnPatenteGuida))
  120. })
  121. actionSheet?.addButton(withTitle: NSLocalizedString("_add_id_card_", comment: ""), image: UIImage(named: "cartaidentita"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  122. appDelegate.activeMain.returnCreate(Int(returnCartaIdentita))
  123. })
  124. actionSheet?.addButton(withTitle: NSLocalizedString("_add_passport_", comment: ""), image: UIImage(named: "passaporto"), backgroundColor: UIColor.white, type: AHKActionSheetButtonType.encrypted, handler: {(AHKActionSheet) -> Void in
  125. appDelegate.activeMain.returnCreate(Int(returnPassaporto))
  126. })
  127. actionSheet?.show()
  128. }
  129. }