NCBrand.swift 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  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: - Options
  25. @objc class NCBrandOptions: NSObject {
  26. @objc static let shared: NCBrandOptions = {
  27. let instance = NCBrandOptions()
  28. return instance
  29. }()
  30. @objc public var brand: String = "Nextcloud"
  31. @objc public var textCopyrightNextcloudiOS: String = "Nextcloud Liquid for iOS %@ © 2022"
  32. @objc public var textCopyrightNextcloudServer: String = "Nextcloud Server %@"
  33. @objc public var loginBaseUrl: String = "https://cloud.nextcloud.com"
  34. @objc public var pushNotificationServerProxy: String = "https://push-notifications.nextcloud.com"
  35. @objc public var linkLoginHost: String = "https://nextcloud.com/install"
  36. @objc public var linkloginPreferredProviders: String = "https://nextcloud.com/signup-ios"
  37. @objc public var webLoginAutenticationProtocol: String = "nc://" // example "abc://"
  38. @objc public var privacy: String = "https://nextcloud.com/privacy"
  39. @objc public var sourceCode: String = "https://github.com/nextcloud/ios"
  40. // Personalized
  41. @objc public var webCloseViewProtocolPersonalized: String = "" // example "abc://change/plan" Don't touch me !!
  42. @objc public var folderBrandAutoUpload: String = "" // example "_auto_upload_folder_" Don't touch me !!
  43. // Auto Upload default folder
  44. @objc public var folderDefaultAutoUpload: String = "Photos"
  45. // Capabilities Group
  46. @objc public var capabilitiesGroups: String = "group.it.twsweb.Crypto-Cloud"
  47. // User Agent
  48. @objc public var userAgent: String = "Nextcloud-iOS" // Don't touch me !!
  49. // BRAND ONLY
  50. @objc public var use_login_web_personalized: Bool = false // Don't touch me !!
  51. @objc public var use_AppConfig: Bool = false // Don't touch me !!
  52. // Options
  53. @objc public var use_default_auto_upload: Bool = false
  54. @objc public var use_themingColor: Bool = true
  55. @objc public var use_themingLogo: Bool = false
  56. @objc public var use_storeLocalAutoUploadAll: Bool = false
  57. @objc public var use_loginflowv2: Bool = false // Don't touch me !!
  58. @objc public var disable_intro: Bool = false
  59. @objc public var disable_request_login_url: Bool = false
  60. @objc public var disable_multiaccount: Bool = false
  61. @objc public var disable_manage_account: Bool = false
  62. @objc public var disable_more_external_site: Bool = false
  63. @objc public var disable_openin_file: Bool = false // Don't touch me !!
  64. @objc public var disable_crash_service: Bool = false
  65. @objc public var disable_log: Bool = false
  66. override init() {
  67. if folderBrandAutoUpload != "" {
  68. folderDefaultAutoUpload = folderBrandAutoUpload
  69. }
  70. // wrapper AppConfig
  71. if let configurationManaged = UserDefaults.standard.dictionary(forKey: "com.apple.configuration.managed"), use_AppConfig {
  72. if let str = configurationManaged[NCGlobal.shared.configuration_brand] as? String {
  73. brand = str
  74. }
  75. if let str = configurationManaged[NCGlobal.shared.configuration_disable_intro] as? String {
  76. disable_intro = (str as NSString).boolValue
  77. }
  78. if let str = configurationManaged[NCGlobal.shared.configuration_disable_multiaccount] as? String {
  79. disable_multiaccount = (str as NSString).boolValue
  80. }
  81. if let str = configurationManaged[NCGlobal.shared.configuration_disable_crash_service] as? String {
  82. disable_crash_service = (str as NSString).boolValue
  83. }
  84. if let str = configurationManaged[NCGlobal.shared.configuration_disable_log] as? String {
  85. disable_log = (str as NSString).boolValue
  86. }
  87. if let str = configurationManaged[NCGlobal.shared.configuration_disable_manage_account] as? String {
  88. disable_manage_account = (str as NSString).boolValue
  89. }
  90. if let str = configurationManaged[NCGlobal.shared.configuration_disable_more_external_site] as? String {
  91. disable_more_external_site = (str as NSString).boolValue
  92. }
  93. if let str = configurationManaged[NCGlobal.shared.configuration_disable_openin_file] as? String {
  94. disable_openin_file = (str as NSString).boolValue
  95. }
  96. }
  97. }
  98. }
  99. // MARK: - Color
  100. class NCBrandColor: NSObject {
  101. @objc static let shared: NCBrandColor = {
  102. let instance = NCBrandColor()
  103. return instance
  104. }()
  105. struct cacheImages {
  106. static var file = UIImage()
  107. static var shared = UIImage()
  108. static var canShare = UIImage()
  109. static var shareByLink = UIImage()
  110. static var favorite = UIImage()
  111. static var comment = UIImage()
  112. static var livePhoto = UIImage()
  113. static var offlineFlag = UIImage()
  114. static var local = UIImage()
  115. static var folderEncrypted = UIImage()
  116. static var folderSharedWithMe = UIImage()
  117. static var folderPublic = UIImage()
  118. static var folderGroup = UIImage()
  119. static var folderExternal = UIImage()
  120. static var folderAutomaticUpload = UIImage()
  121. static var folder = UIImage()
  122. static var checkedYes = UIImage()
  123. static var checkedNo = UIImage()
  124. static var buttonMore = UIImage()
  125. static var buttonStop = UIImage()
  126. static var buttonMoreLock = UIImage()
  127. static var buttonRestore = UIImage()
  128. static var buttonTrash = UIImage()
  129. static var iconContacts = UIImage()
  130. static var iconTalk = UIImage()
  131. static var iconCalendar = UIImage()
  132. static var iconDeck = UIImage()
  133. static var iconMail = UIImage()
  134. static var iconConfirm = UIImage()
  135. static var iconPages = UIImage()
  136. }
  137. // Color
  138. @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
  139. @objc public var customerText: UIColor = .white
  140. @objc public var brand: UIColor // don't touch me
  141. @objc public var brandElement: UIColor // don't touch me
  142. @objc public var brandText: UIColor // don't touch me
  143. @objc public let nextcloud: UIColor = UIColor(red: 0.0/255.0, green: 130.0/255.0, blue: 201.0/255.0, alpha: 1.0)
  144. @objc public let gray: UIColor = UIColor(red: 104.0/255.0, green: 104.0/255.0, blue: 104.0/255.0, alpha: 1.0)
  145. @objc public let lightGray: UIColor = UIColor(red: 229.0/255.0, green: 229.0/229.0, blue: 104.0/255.0, alpha: 1.0)
  146. @objc public let yellowFavorite: UIColor = UIColor(red: 248.0/255.0, green: 205.0/255.0, blue: 70.0/255.0, alpha: 1.0)
  147. public var userColors: [CGColor] = []
  148. public var themingColor: String = ""
  149. public var themingColorElement: String = ""
  150. public var themingColorText: String = ""
  151. @objc public var systemMint: UIColor {
  152. get {
  153. return UIColor(red: 0.0 / 255.0, green: 199.0 / 255.0, blue: 190.0 / 255.0, alpha: 1.0)
  154. }
  155. }
  156. @objc public var systemGray1: UIColor {
  157. get {
  158. return UIColor(red: 0.60, green: 0.60, blue: 0.60, alpha: 1.0)
  159. }
  160. }
  161. override init() {
  162. brand = customer
  163. brandElement = customer
  164. brandText = customerText
  165. }
  166. func createUserColors() {
  167. userColors = generateColors()
  168. }
  169. func createImagesThemingColor() {
  170. let gray: UIColor = UIColor(red: 162.0/255.0, green: 162.0/255.0, blue: 162.0/255.0, alpha: 0.5)
  171. cacheImages.file = UIImage(named: "file")!
  172. cacheImages.shared = UIImage(named: "share")!.image(color: gray, size: 50)
  173. cacheImages.canShare = UIImage(named: "share")!.image(color: gray, size: 50)
  174. cacheImages.shareByLink = UIImage(named: "sharebylink")!.image(color: gray, size: 50)
  175. cacheImages.favorite = NCUtility.shared.loadImage(named: "star.fill", color: yellowFavorite)
  176. cacheImages.comment = UIImage(named: "comment")!.image(color: gray, size: 50)
  177. cacheImages.livePhoto = NCUtility.shared.loadImage(named: "livephoto", color: .label)
  178. cacheImages.offlineFlag = UIImage(named: "offlineFlag")!
  179. cacheImages.local = UIImage(named: "local")!
  180. let folderWidth: CGFloat = UIScreen.main.bounds.width / 3
  181. cacheImages.folderEncrypted = UIImage(named: "folderEncrypted")!.image(color: brandElement, size: folderWidth)
  182. cacheImages.folderSharedWithMe = UIImage(named: "folder_shared_with_me")!.image(color: brandElement, size: folderWidth)
  183. cacheImages.folderPublic = UIImage(named: "folder_public")!.image(color: brandElement, size: folderWidth)
  184. cacheImages.folderGroup = UIImage(named: "folder_group")!.image(color: brandElement, size: folderWidth)
  185. cacheImages.folderExternal = UIImage(named: "folder_external")!.image(color: brandElement, size: folderWidth)
  186. cacheImages.folderAutomaticUpload = UIImage(named: "folderAutomaticUpload")!.image(color: brandElement, size: folderWidth)
  187. cacheImages.folder = UIImage(named: "folder")!.image(color: brandElement, size: folderWidth)
  188. cacheImages.checkedYes = NCUtility.shared.loadImage(named: "checkmark.circle.fill", color: .systemBlue)
  189. cacheImages.checkedNo = NCUtility.shared.loadImage(named: "circle", color: gray)
  190. cacheImages.buttonMore = UIImage(named: "more")!.image(color: gray, size: 50)
  191. cacheImages.buttonStop = UIImage(named: "stop")!.image(color: gray, size: 50)
  192. cacheImages.buttonMoreLock = UIImage(named: "moreLock")!.image(color: gray, size: 50)
  193. cacheImages.buttonRestore = UIImage(named: "restore")!.image(color: gray, size: 50)
  194. cacheImages.buttonTrash = UIImage(named: "trash")!.image(color: gray, size: 50)
  195. cacheImages.iconContacts = UIImage(named: "icon-contacts")!.image(color: brandElement, size: folderWidth)
  196. cacheImages.iconTalk = UIImage(named: "icon-talk")!.image(color: brandElement, size: folderWidth)
  197. cacheImages.iconCalendar = UIImage(named: "icon-calendar")!.image(color: brandElement, size: folderWidth)
  198. cacheImages.iconDeck = UIImage(named: "icon-deck")!.image(color: brandElement, size: folderWidth)
  199. cacheImages.iconMail = UIImage(named: "icon-mail")!.image(color: brandElement, size: folderWidth)
  200. cacheImages.iconConfirm = UIImage(named: "icon-confirm")!.image(color: brandElement, size: folderWidth)
  201. cacheImages.iconPages = UIImage(named: "icon-pages")!.image(color: brandElement, size: folderWidth)
  202. }
  203. func settingThemingColor(account: String) {
  204. let darker: CGFloat = 30 // %
  205. let lighter: CGFloat = 30 // %
  206. if NCBrandOptions.shared.use_themingColor {
  207. if let themingColor = NCManageDatabase.shared.getCapabilitiesServerString(account: account, elements: NCElementsJSON.shared.capabilitiesThemingColor),
  208. let themingColorElement = NCManageDatabase.shared.getCapabilitiesServerString(account: account, elements: NCElementsJSON.shared.capabilitiesThemingColorElement),
  209. let themingColorText = NCManageDatabase.shared.getCapabilitiesServerString(account: account, elements: NCElementsJSON.shared.capabilitiesThemingColorText) {
  210. self.themingColor = themingColor
  211. self.themingColorElement = themingColorElement
  212. self.themingColorText = themingColorText
  213. // COLOR
  214. if themingColor.first == "#" {
  215. if let color = UIColor(hex: themingColor) {
  216. brand = color
  217. } else {
  218. brand = customer
  219. }
  220. } else {
  221. brand = customer
  222. }
  223. // COLOR TEXT
  224. if themingColorText.first == "#" {
  225. if let color = UIColor(hex: themingColorText) {
  226. brandText = color
  227. } else {
  228. brandText = customerText
  229. }
  230. } else {
  231. brandText = customerText
  232. }
  233. // COLOR ELEMENT
  234. if themingColorElement.first == "#" {
  235. if let color = UIColor(hex: themingColorElement) {
  236. brandElement = color
  237. } else {
  238. brandElement = brand
  239. }
  240. } else {
  241. brandElement = brand
  242. }
  243. }
  244. if brandElement.isTooLight() {
  245. if let color = brandElement.darker(by: darker) {
  246. brandElement = color
  247. }
  248. } else if brandElement.isTooDark() {
  249. if let color = brandElement.lighter(by: lighter) {
  250. brandElement = color
  251. }
  252. }
  253. } else {
  254. if self.customer.isTooLight() {
  255. if let color = customer.darker(by: darker) {
  256. brandElement = color
  257. }
  258. } else if customer.isTooDark() {
  259. if let color = customer.lighter(by: lighter) {
  260. brandElement = color
  261. }
  262. } else {
  263. brandElement = customer
  264. }
  265. brand = customer
  266. brandText = customerText
  267. }
  268. createImagesThemingColor()
  269. #if !EXTENSION
  270. NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterChangeTheming)
  271. #endif
  272. }
  273. private func stepCalc(steps: Int, color1: CGColor, color2: CGColor) -> [CGFloat] {
  274. var step = [CGFloat](repeating: 0, count: 3)
  275. step[0] = (color2.components![0] - color1.components![0]) / CGFloat(steps)
  276. step[1] = (color2.components![1] - color1.components![1]) / CGFloat(steps)
  277. step[2] = (color2.components![2] - color1.components![2]) / CGFloat(steps)
  278. return step
  279. }
  280. private func mixPalette(steps: Int, color1: CGColor, color2: CGColor) -> [CGColor] {
  281. var palette = [color1]
  282. let step = stepCalc(steps: steps, color1: color1, color2: color2)
  283. let c1Components = color1.components!
  284. for i in 1 ..< steps {
  285. let r = c1Components[0] + step[0] * CGFloat(i)
  286. let g = c1Components[1] + step[1] * CGFloat(i)
  287. let b = c1Components[2] + step[2] * CGFloat(i)
  288. palette.append(UIColor(red: r, green: g, blue: b, alpha: 1).cgColor)
  289. }
  290. return palette
  291. }
  292. /**
  293. Generate colors from the official nextcloud color.
  294. You can provide how many colors you want (multiplied by 3).
  295. if `step` = 6,
  296. 3 colors \* 6 will result in 18 generated colors
  297. */
  298. func generateColors(steps: Int = 6) -> [CGColor] {
  299. let red = UIColor(red: 182/255, green: 70/255, blue: 157/255, alpha: 1).cgColor
  300. let yellow = UIColor(red: 221/255, green: 203/255, blue: 85/255, alpha: 1).cgColor
  301. let blue = UIColor(red: 0/255, green: 130/255, blue: 201/255, alpha: 1).cgColor
  302. let palette1 = mixPalette(steps: steps, color1: red, color2: yellow)
  303. let palette2 = mixPalette(steps: steps, color1: yellow, color2: blue)
  304. let palette3 = mixPalette(steps: steps, color1: blue, color2: red)
  305. return palette1 + palette2 + palette3
  306. }
  307. }