NCBrand.swift 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. //
  2. // NCBrandColor.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/04/17.
  6. // Copyright (c) 2017 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  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. //MARK: - Configuration
  25. @objc class NCBrandConfiguration: NSObject {
  26. @objc static let shared: NCBrandConfiguration = {
  27. let instance = NCBrandConfiguration()
  28. return instance
  29. }()
  30. @objc public let configuration_bundleId: String = "it.twsweb.Nextcloud"
  31. @objc public let configuration_serverUrl: String = "serverUrl"
  32. @objc public let configuration_username: String = "username"
  33. @objc public let configuration_password: String = "password"
  34. }
  35. //MARK: - Options
  36. @objc class NCBrandOptions: NSObject {
  37. @objc static let shared: NCBrandOptions = {
  38. let instance = NCBrandOptions()
  39. return instance
  40. }()
  41. @objc public var brand: String = "Nextcloud"
  42. @objc public var mailMe: String = "ios@nextcloud.com"
  43. @objc public var textCopyrightNextcloudiOS: String = "Nextcloud Coherence for iOS %@ © 2021"
  44. @objc public var textCopyrightNextcloudServer: String = "Nextcloud Server %@"
  45. @objc public var loginBaseUrl: String = "https://cloud.nextcloud.com"
  46. @objc public var pushNotificationServerProxy: String = "https://push-notifications.nextcloud.com"
  47. @objc public var linkLoginHost: String = "https://nextcloud.com/install"
  48. @objc public var linkloginPreferredProviders: String = "https://nextcloud.com/signup-ios";
  49. @objc public var webLoginAutenticationProtocol: String = "nc://" // example "abc://"
  50. @objc public var privacy: String = "https://nextcloud.com/privacy"
  51. @objc public var sourceCode: String = "https://github.com/nextcloud/ios"
  52. // Personalized
  53. @objc public var webCloseViewProtocolPersonalized: String = "" // example "abc://change/plan" Don't touch me !!
  54. @objc public var folderBrandAutoUpload: String = "" // example "_auto_upload_folder_" Don't touch me !!
  55. // Auto Upload default folder
  56. @objc public var folderDefaultAutoUpload: String = "Photos"
  57. // Capabilities Group
  58. @objc public var capabilitiesGroups: String = "group.it.twsweb.Crypto-Cloud"
  59. // User Agent
  60. @objc public var userAgent: String = "Nextcloud-iOS" // Don't touch me !!
  61. // Options
  62. @objc public var use_login_web_personalized: Bool = false // Don't touch me !!
  63. @objc public var use_default_auto_upload: Bool = false
  64. @objc public var use_themingColor: Bool = true
  65. //@objc public var use_themingBackground: Bool = true // Deprecated
  66. @objc public var use_themingLogo: Bool = false
  67. @objc public var use_storeLocalAutoUploadAll: Bool = false
  68. @objc public var use_configuration: Bool = false // Don't touch me !!
  69. @objc public var use_loginflowv2: Bool = false // Don't touch me !!
  70. @objc public var disable_intro: Bool = false
  71. @objc public var disable_request_login_url: Bool = false
  72. @objc public var disable_multiaccount: Bool = false
  73. @objc public var disable_manage_account: Bool = false
  74. @objc public var disable_more_external_site: Bool = false
  75. @objc public var disable_openin_file: Bool = false // Don't touch me !!
  76. @objc public var disable_crash_service: Bool = false
  77. @objc public var disable_request_account: Bool = false
  78. override init() {
  79. if folderBrandAutoUpload != "" {
  80. folderDefaultAutoUpload = folderBrandAutoUpload
  81. }
  82. }
  83. }
  84. //MARK: - Color
  85. class NCBrandColor: NSObject {
  86. @objc static let shared: NCBrandColor = {
  87. let instance = NCBrandColor()
  88. instance.createImagesThemingColor()
  89. return instance
  90. }()
  91. struct cacheImages {
  92. static var file = UIImage()
  93. static var shared = UIImage()
  94. static var canShare = UIImage()
  95. static var shareByLink = UIImage()
  96. static var favorite = UIImage()
  97. static var comment = UIImage()
  98. static var livePhoto = UIImage()
  99. static var offlineFlag = UIImage()
  100. static var local = UIImage()
  101. static var folderEncrypted = UIImage()
  102. static var folderSharedWithMe = UIImage()
  103. static var folderPublic = UIImage()
  104. static var folderGroup = UIImage()
  105. static var folderExternal = UIImage()
  106. static var folderAutomaticUpload = UIImage()
  107. static var folder = UIImage()
  108. static var checkedYes = UIImage()
  109. static var checkedNo = UIImage()
  110. static var buttonMore = UIImage()
  111. static var buttonStop = UIImage()
  112. }
  113. // Color
  114. @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
  115. @objc public var customerText: UIColor = .white
  116. @objc public var brand: UIColor // don't touch me
  117. @objc public var brandElement: UIColor // don't touch me
  118. @objc public var brandText: UIColor // don't touch me
  119. @objc public let nextcloud: UIColor = UIColor(red: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 1.0)
  120. @objc public let nextcloudSoft: UIColor = UIColor(red: 90.0/255.0, green: 160.0/255.0, blue: 210.0/255.0, alpha: 1.0)
  121. @objc public let gray: UIColor = UIColor(red: 104.0/255.0, green: 104.0/255.0, blue: 104.0/255.0, alpha: 1.0)
  122. @objc public let graySoft: UIColor = UIColor(red: 162.0/255.0, green: 162.0/255.0, blue: 162.0/255.0, alpha: 0.5)
  123. @objc public let textInfo: UIColor = UIColor(red: 153.0/255.0, green: 153.0/255.0, blue: 153.0/255.0, alpha: 1.0)
  124. @objc public var systemBackground: UIColor {
  125. get {
  126. if #available(iOS 13, *) {
  127. return .systemBackground
  128. } else {
  129. return .white
  130. }
  131. }
  132. }
  133. @objc public var secondarySystemBackground: UIColor {
  134. get {
  135. if #available(iOS 13, *) {
  136. return .secondarySystemBackground
  137. } else {
  138. return UIColor(red: 0.95, green: 0.95, blue: 0.97, alpha: 1.0)
  139. }
  140. }
  141. }
  142. @objc public var systemGroupedBackground: UIColor {
  143. get {
  144. if #available(iOS 13, *) {
  145. return .systemGroupedBackground
  146. } else {
  147. return UIColor(red: 0.95, green: 0.95, blue: 0.97, alpha: 1.0)
  148. }
  149. }
  150. }
  151. @objc public var secondarySystemGroupedBackground: UIColor {
  152. get {
  153. if #available(iOS 13, *) {
  154. return .secondarySystemGroupedBackground
  155. } else {
  156. return .white
  157. }
  158. }
  159. }
  160. @objc public var label: UIColor {
  161. get {
  162. if #available(iOS 13, *) {
  163. return .label
  164. } else {
  165. return .black
  166. }
  167. }
  168. }
  169. @objc public var separator: UIColor {
  170. get {
  171. if #available(iOS 13, *) {
  172. return .separator
  173. } else {
  174. return UIColor(red: 0.24, green: 0.24, blue: 0.26, alpha: 1.0)
  175. }
  176. }
  177. }
  178. @objc public var opaqueSeparator: UIColor {
  179. get {
  180. if #available(iOS 13, *) {
  181. return .opaqueSeparator
  182. } else {
  183. return UIColor(red: 0.78, green: 0.78, blue: 0.78, alpha: 1.0)
  184. }
  185. }
  186. }
  187. @objc public var systemGray: UIColor {
  188. get {
  189. if #available(iOS 13, *) {
  190. return .systemGray
  191. } else {
  192. return UIColor(red: 0.56, green: 0.56, blue: 0.58, alpha: 1.0)
  193. }
  194. }
  195. }
  196. @objc public var systemGray2: UIColor {
  197. get {
  198. if #available(iOS 13, *) {
  199. return .systemGray2
  200. } else {
  201. return UIColor(red: 0.68, green: 0.68, blue: 0.7, alpha: 1.0)
  202. }
  203. }
  204. }
  205. @objc public var systemGray3: UIColor {
  206. get {
  207. if #available(iOS 13, *) {
  208. return .systemGray3
  209. } else {
  210. return UIColor(red: 0.78, green: 0.78, blue: 0.8, alpha: 1.0)
  211. }
  212. }
  213. }
  214. @objc public var systemGray4: UIColor {
  215. get {
  216. if #available(iOS 13, *) {
  217. return .systemGray4
  218. } else {
  219. return UIColor(red: 0.82, green: 0.82, blue: 0.84, alpha: 1.0)
  220. }
  221. }
  222. }
  223. @objc public var systemGray5: UIColor {
  224. get {
  225. if #available(iOS 13, *) {
  226. return .systemGray5
  227. } else {
  228. return UIColor(red: 0.9, green: 0.9, blue: 0.92, alpha: 1.0)
  229. }
  230. }
  231. }
  232. @objc public var systemGray6: UIColor {
  233. get {
  234. if #available(iOS 13, *) {
  235. return .systemGray6
  236. } else {
  237. return UIColor(red: 0.95, green: 0.95, blue: 0.97, alpha: 1.0)
  238. }
  239. }
  240. }
  241. @objc public var systemYellow: UIColor {
  242. get {
  243. if #available(iOS 13, *) {
  244. return .systemYellow
  245. } else {
  246. return UIColor(red: 1, green: 0.8, blue: 0, alpha: 1.0)
  247. }
  248. }
  249. }
  250. override init() {
  251. self.brand = self.customer
  252. self.brandElement = self.customer
  253. self.brandText = self.customerText
  254. }
  255. private func createImagesThemingColor() {
  256. cacheImages.file = UIImage.init(named: "file")!
  257. cacheImages.shared = UIImage(named: "share")!.image(color: graySoft, size: 50)
  258. cacheImages.canShare = UIImage(named: "share")!.image(color: graySoft, size: 50)
  259. cacheImages.shareByLink = UIImage(named: "sharebylink")!.image(color: graySoft, size: 50)
  260. cacheImages.favorite = NCUtility.shared.loadImage(named: "star.fill", color: systemYellow)
  261. cacheImages.comment = UIImage(named: "comment")!.image(color: graySoft, size: 50)
  262. cacheImages.livePhoto = NCUtility.shared.loadImage(named: "livephoto", color: label)
  263. cacheImages.offlineFlag = UIImage.init(named: "offlineFlag")!
  264. cacheImages.local = UIImage.init(named: "local")!
  265. let folderWidth: CGFloat = UIScreen.main.bounds.width / 3
  266. cacheImages.folderEncrypted = UIImage(named: "folderEncrypted")!.image(color: brandElement, size: folderWidth)
  267. cacheImages.folderSharedWithMe = UIImage(named: "folder_shared_with_me")!.image(color: brandElement, size: folderWidth)
  268. cacheImages.folderPublic = UIImage(named: "folder_public")!.image(color: brandElement, size: folderWidth)
  269. cacheImages.folderGroup = UIImage(named: "folder_group")!.image(color: brandElement, size: folderWidth)
  270. cacheImages.folderExternal = UIImage(named: "folder_external")!.image(color: brandElement, size: folderWidth)
  271. cacheImages.folderAutomaticUpload = UIImage(named: "folderAutomaticUpload")!.image(color: brandElement, size: folderWidth)
  272. cacheImages.folder = UIImage(named: "folder")!.image(color: brandElement, size: folderWidth)
  273. cacheImages.checkedYes = NCUtility.shared.loadImage(named: "checkmark.circle.fill", color: .darkGray)
  274. cacheImages.checkedNo = NCUtility.shared.loadImage(named: "circle", color: graySoft)
  275. cacheImages.buttonMore = UIImage(named: "more")!.image(color: graySoft, size: 50)
  276. cacheImages.buttonStop = UIImage(named: "stop")!.image(color: graySoft, size: 50)
  277. }
  278. #if !EXTENSION
  279. public func settingThemingColor(account: String) {
  280. let darker: CGFloat = 30 // %
  281. let lighter: CGFloat = 30 // %
  282. if NCBrandOptions.shared.use_themingColor {
  283. let themingColor = NCManageDatabase.shared.getCapabilitiesServerString(account: account, elements: NCElementsJSON.shared.capabilitiesThemingColor)
  284. let themingColorElement = NCManageDatabase.shared.getCapabilitiesServerString(account: account, elements: NCElementsJSON.shared.capabilitiesThemingColorElement)
  285. let themingColorText = NCManageDatabase.shared.getCapabilitiesServerString(account: account, elements: NCElementsJSON.shared.capabilitiesThemingColorText)
  286. settingBrandColor(themingColor, themingColorElement: themingColorElement, themingColorText: themingColorText)
  287. if NCBrandColor.shared.brandElement.isTooLight() {
  288. if let color = NCBrandColor.shared.brandElement.darker(by: darker) {
  289. NCBrandColor.shared.brandElement = color
  290. }
  291. } else if NCBrandColor.shared.brandElement.isTooDark() {
  292. if let color = NCBrandColor.shared.brandElement.lighter(by: lighter) {
  293. NCBrandColor.shared.brandElement = color
  294. }
  295. }
  296. } else {
  297. if NCBrandColor.shared.customer.isTooLight() {
  298. if let color = NCBrandColor.shared.customer.darker(by: darker) {
  299. NCBrandColor.shared.brandElement = color
  300. }
  301. } else if NCBrandColor.shared.customer.isTooDark() {
  302. if let color = NCBrandColor.shared.customer.lighter(by: lighter) {
  303. NCBrandColor.shared.brandElement = color
  304. }
  305. } else {
  306. NCBrandColor.shared.brandElement = NCBrandColor.shared.customer
  307. }
  308. NCBrandColor.shared.brand = NCBrandColor.shared.customer
  309. NCBrandColor.shared.brandText = NCBrandColor.shared.customerText
  310. }
  311. DispatchQueue.main.async {
  312. self.createImagesThemingColor()
  313. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterChangeTheming)
  314. }
  315. }
  316. #endif
  317. @objc func settingBrandColor(_ themingColor: String?, themingColorElement: String?, themingColorText: String?) {
  318. // COLOR
  319. if themingColor?.first == "#" {
  320. if let color = UIColor(hex: themingColor!) {
  321. NCBrandColor.shared.brand = color
  322. } else {
  323. NCBrandColor.shared.brand = NCBrandColor.shared.customer
  324. }
  325. } else {
  326. NCBrandColor.shared.brand = NCBrandColor.shared.customer
  327. }
  328. // COLOR TEXT
  329. if themingColorText?.first == "#" {
  330. if let color = UIColor(hex: themingColorText!) {
  331. NCBrandColor.shared.brandText = color
  332. } else {
  333. NCBrandColor.shared.brandText = NCBrandColor.shared.customerText
  334. }
  335. } else {
  336. NCBrandColor.shared.brandText = NCBrandColor.shared.customerText
  337. }
  338. // COLOR ELEMENT
  339. if themingColorElement?.first == "#" {
  340. if let color = UIColor(hex: themingColorElement!) {
  341. NCBrandColor.shared.brandElement = color
  342. } else {
  343. NCBrandColor.shared.brandElement = NCBrandColor.shared.brand
  344. }
  345. } else {
  346. NCBrandColor.shared.brandElement = NCBrandColor.shared.brand
  347. }
  348. }
  349. }