CCCreateCloud.swift 9.3 KB

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