CCCreateCloud.swift 9.3 KB

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