NCCapabilitiesView.swift 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. //
  2. // NCCapabilitiesView.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 19/05/23.
  6. // Copyright © 2023 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 SwiftUI
  24. import NextcloudKit
  25. import PreviewSnapshots
  26. @objc class NCHostingCapabilitiesView: NSObject {
  27. @objc func makeShipDetailsUI() -> UIViewController {
  28. let capabilitiesStatus = NCCapabilitiesViewOO()
  29. let view = NCCapabilitiesView(capabilitiesStatus: capabilitiesStatus)
  30. let vc = UIHostingController(rootView: view)
  31. vc.title = NSLocalizedString("_capabilities_", comment: "")
  32. return vc
  33. }
  34. }
  35. class NCCapabilitiesViewOO: ObservableObject {
  36. struct Capability: Identifiable, Hashable {
  37. let id = UUID()
  38. let text: String
  39. let image: UIImage
  40. let resize: Bool
  41. let available: Bool
  42. }
  43. @Published var capabililies: [Capability] = []
  44. @Published var homeServer = ""
  45. let utilityFileSystem = NCUtilityFileSystem()
  46. init() {
  47. loadCapabilities()
  48. NotificationCenter.default.addObserver(forName: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterChangeUser), object: nil, queue: nil) { _ in
  49. self.loadCapabilities()
  50. }
  51. }
  52. func loadCapabilities() {
  53. guard let activeAccount = NCManageDatabase.shared.getActiveAccount() else { return }
  54. var textEditor = false
  55. var onlyofficeEditors = false
  56. capabililies.removeAll()
  57. if let image = UIImage(named: "share") {
  58. capabililies.append(Capability(text: "File sharing", image: image, resize: true, available: NCGlobal.shared.capabilityFileSharingApiEnabled))
  59. }
  60. if let image = UIImage(systemName: "network") {
  61. capabililies.append(Capability(text: "External site", image: image, resize: false, available: NCGlobal.shared.capabilityExternalSites))
  62. }
  63. if let image = UIImage(systemName: "lock") {
  64. capabililies.append(Capability(text: "End-to-End Encryption", image: image, resize: false, available: NCGlobal.shared.capabilityE2EEEnabled))
  65. }
  66. if let image = UIImage(systemName: "bolt") {
  67. capabililies.append(Capability(text: "Activity", image: image, resize: false, available: !NCGlobal.shared.capabilityActivity.isEmpty))
  68. }
  69. if let image = UIImage(systemName: "bell") {
  70. capabililies.append(Capability(text: "Notification", image: image, resize: false, available: !NCGlobal.shared.capabilityNotification.isEmpty))
  71. }
  72. if let image = UIImage(systemName: "trash") {
  73. capabililies.append(Capability(text: "Deleted files", image: image, resize: false, available: NCGlobal.shared.capabilityFilesUndelete))
  74. }
  75. if let editors = NCManageDatabase.shared.getDirectEditingEditors(account: activeAccount.account) {
  76. for editor in editors {
  77. if editor.editor == NCGlobal.shared.editorText {
  78. textEditor = true
  79. } else if editor.editor == NCGlobal.shared.editorOnlyoffice {
  80. onlyofficeEditors = true
  81. }
  82. }
  83. }
  84. if let image = UIImage(systemName: "doc.text") {
  85. capabililies.append(Capability(text: "Text", image: image, resize: false, available: textEditor))
  86. }
  87. if let image = UIImage(named: "onlyoffice") {
  88. capabililies.append(Capability(text: "ONLYOFFICE", image: image, resize: true, available: onlyofficeEditors))
  89. }
  90. if let image = UIImage(named: "collabora") {
  91. capabililies.append(Capability(text: "Collabora", image: image, resize: true, available: NCGlobal.shared.capabilityRichdocumentsEnabled))
  92. }
  93. if let image = UIImage(systemName: "moon") {
  94. capabililies.append(Capability(text: "User Status", image: image, resize: false, available: NCGlobal.shared.capabilityUserStatusEnabled))
  95. }
  96. if let image = UIImage(systemName: "ellipsis.bubble") {
  97. capabililies.append(Capability(text: "Comments", image: image, resize: false, available: NCGlobal.shared.capabilityFilesComments))
  98. }
  99. if let image = UIImage(systemName: "lock") {
  100. capabililies.append(Capability(text: "Lock file", image: image, resize: false, available: !NCGlobal.shared.capabilityFilesLockVersion.isEmpty))
  101. }
  102. if let image = UIImage(systemName: "person.2") {
  103. capabililies.append(Capability(text: "Group folders", image: image, resize: false, available: NCGlobal.shared.capabilityGroupfoldersEnabled))
  104. }
  105. if let image = UIImage(systemName: "shield") {
  106. capabililies.append(Capability(text: "Security Guard Diagnostics", image: image, resize: false, available: NCGlobal.shared.capabilitySecurityGuardDiagnostics))
  107. }
  108. homeServer = utilityFileSystem.getHomeServer(urlBase: activeAccount.urlBase, userId: activeAccount.userId) + "/"
  109. }
  110. }
  111. struct NCCapabilitiesView: View {
  112. @ObservedObject var capabilitiesViewOO: NCCapabilitiesViewOO
  113. init(capabilitiesStatus: NCCapabilitiesViewOO) {
  114. self.capabilitiesViewOO = capabilitiesStatus
  115. }
  116. var body: some View {
  117. VStack {
  118. List {
  119. Section {
  120. ForEach(capabilitiesViewOO.capabililies, id: \.id) { capability in
  121. HStack {
  122. CapabilityName(text: Binding.constant(capability.text), image: Image(uiImage: capability.image), resize: capability.resize)
  123. CapabilityStatus(available: capability.available)
  124. }
  125. }
  126. }
  127. Section {
  128. CapabilityName(text: $capabilitiesViewOO.homeServer, image: Image(systemName: "house"), resize: false)
  129. }
  130. }
  131. }
  132. .frame(maxWidth: .infinity, alignment: .top)
  133. }
  134. struct CapabilityName: View {
  135. @Binding var text: String
  136. @State var image: Image
  137. @State var resize: Bool
  138. var body: some View {
  139. Label {
  140. Text(text)
  141. .font(.system(size: 15))
  142. } icon: {
  143. if resize {
  144. image
  145. .renderingMode(.template)
  146. .resizable()
  147. .scaledToFill()
  148. .frame(width: 23.0, height: 23.0)
  149. .foregroundColor(.primary)
  150. } else {
  151. image
  152. .renderingMode(.template)
  153. .foregroundColor(.primary)
  154. }
  155. }
  156. .frame(maxWidth: .infinity, alignment: .leading)
  157. }
  158. }
  159. struct CapabilityStatus: View {
  160. @State var available: Bool
  161. var body: some View {
  162. if available {
  163. Image(systemName: "checkmark.circle.fill")
  164. .foregroundColor(.green)
  165. } else {
  166. Image(systemName: "multiply.circle.fill")
  167. .foregroundColor(.gray)
  168. }
  169. }
  170. }
  171. }
  172. struct NCCapabilitiesView_Previews: PreviewProvider {
  173. static var previews: some View {
  174. snapshots.previews.previewLayout(.device)
  175. }
  176. static var snapshots: PreviewSnapshots<String> {
  177. PreviewSnapshots(
  178. configurations: [
  179. .init(name: NCGlobal.shared.defaultSnapshotConfiguration, state: "")
  180. ],
  181. configure: { _ in
  182. NCCapabilitiesView(capabilitiesStatus: getCapabilitiesViewOOForPreview()).padding(.top, 20).frameForPreview()
  183. })
  184. }
  185. }
  186. func getCapabilitiesViewOOForPreview() -> NCCapabilitiesViewOO {
  187. let capabilitiesViewOO = NCCapabilitiesViewOO()
  188. capabilitiesViewOO.capabililies = [
  189. NCCapabilitiesViewOO.Capability(text: "Collabora", image: UIImage(named: "collabora")!, resize: true, available: true),
  190. NCCapabilitiesViewOO.Capability(text: "XXX site", image: UIImage(systemName: "lock.shield")!, resize: false, available: false)
  191. ]
  192. capabilitiesViewOO.homeServer = "https://cloud.nextcloud.com/remote.php.dav/files/marino/"
  193. return capabilitiesViewOO
  194. }