NCBrand.swift 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. //
  2. // NCBrandColor.swift
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 24/04/17.
  6. // Copyright (c) 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 UIKit
  24. class NCBrandColor: NSObject {
  25. @objc static let sharedInstance: NCBrandColor = {
  26. let instance = NCBrandColor()
  27. return instance
  28. }()
  29. // Color
  30. @objc public let customer: UIColor = UIColor(red: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 1.0) // BLU NC : #0082c9
  31. @objc public var brand: UIColor
  32. @objc public var connectionNo: UIColor = UIColor(red: 204.0/255.0, green: 204.0/255.0, blue: 204.0/255.0, alpha: 1.0)
  33. @objc public var encrypted: UIColor = .red
  34. @objc public var navigationBarProgress: UIColor = .white
  35. @objc public var navigationBarText: UIColor = .white
  36. @objc public var menuBackground: UIColor = .white
  37. @objc public var moreNormal: UIColor = .black
  38. @objc public var moreSettings: UIColor = .black
  39. @objc public var seperator: UIColor = UIColor(red: 235.0/255.0, green: 235.0/255.0, blue: 235.0/255.0, alpha: 1.0)
  40. @objc public var tabBar: UIColor = .white
  41. @objc public var tableBackground: UIColor = .white
  42. @objc public var transferBackground: UIColor = UIColor(red: 178.0/255.0, green: 244.0/255.0, blue: 258.0/255.0, alpha: 0.1)
  43. @objc public let nextcloud: UIColor = UIColor(red: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 1.0)
  44. override init() {
  45. self.brand = self.customer
  46. }
  47. // Color modify
  48. @objc public func getColorSelectBackgrond() -> UIColor {
  49. return self.brand.withAlphaComponent(0.1)
  50. }
  51. }
  52. @objc class NCBrandOptions: NSObject {
  53. @objc static let sharedInstance: NCBrandOptions = {
  54. let instance = NCBrandOptions()
  55. return instance
  56. }()
  57. @objc public let brand: String = "Nextcloud"
  58. @objc public let mailMe: String = "ios@nextcloud.com"
  59. @objc public let textCopyrightNextcloudiOS: String = "Nextcloud for iOS %@ © 2017 T.W.S. Inc."
  60. @objc public let textCopyrightNextcloudServer: String = "Nextcloud Server %@"
  61. @objc public let loginBaseUrl: String = "https://cloud.twsweb.it"
  62. @objc public let pushNotificationServer: String = "https://push-notifications.nextcloud.com"
  63. @objc public let linkLoginProvider: String = "https://nextcloud.com/providers"
  64. @objc public let textLoginProvider: String = "_login_bottom_label_"
  65. @objc public let middlewarePingUrl: String = ""
  66. @objc public let webLoginAutenticationProtocol: String = ""
  67. @objc public let webCloseViewProtocol: String = ""
  68. @objc public let folderBrandAutoUpload: String = ""
  69. // Auto Upload default folder
  70. @objc public var folderDefaultAutoUpload: String = "Photos"
  71. // Capabilities Group
  72. @objc public let capabilitiesGroups: String = "group.it.twsweb.Crypto-Cloud"
  73. // Options
  74. @objc public let use_login_web: Bool = false
  75. @objc public let use_firebase: Bool = false
  76. @objc public let use_default_auto_upload: Bool = false
  77. @objc public let use_themingColor: Bool = true
  78. @objc public let use_themingBackground: Bool = true
  79. @objc public let use_middlewarePing: Bool = false
  80. @objc public let use_storeLocalAutoUploadAll: Bool = false
  81. @objc public let disable_intro: Bool = false
  82. @objc public let disable_linkLoginProvider: Bool = false
  83. @objc public let disable_request_login_url: Bool = false
  84. @objc public let disable_multiaccount: Bool = false
  85. @objc public let disable_manage_account: Bool = false
  86. override init() {
  87. if folderBrandAutoUpload != "" {
  88. self.folderDefaultAutoUpload = self.folderBrandAutoUpload
  89. }
  90. }
  91. }