NCBrand.swift 17 KB

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