NCCapabilitiesViewController.swift 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. //
  2. // NCCapabilitiesViewController.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 28/07/2020.
  6. // Copyright © 2020 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. class NCCapabilitiesViewController: UIViewController {
  25. @IBOutlet weak var textView: UITextView!
  26. @IBOutlet weak var imageFileSharing: UIImageView!
  27. @IBOutlet weak var imageStatusFileSharing: UIImageView!
  28. @IBOutlet weak var imageDirectEditing: UIImageView!
  29. @IBOutlet weak var imageStatusDirectEditing: UIImageView!
  30. @IBOutlet weak var imageExternalSite: UIImageView!
  31. @IBOutlet weak var imageStatusExternalSite: UIImageView!
  32. private var account: String = ""
  33. private var imageEnable: UIImage?
  34. private var imageDisable: UIImage?
  35. override func viewDidLoad() {
  36. super.viewDidLoad()
  37. self.title = NSLocalizedString("_capabilities_", comment: "")
  38. let closeButton : UIBarButtonItem = UIBarButtonItem(title: NSLocalizedString("_done_", comment: ""), style: UIBarButtonItem.Style.plain, target: self, action: #selector(close))
  39. self.navigationItem.leftBarButtonItem = closeButton
  40. imageEnable = CCGraphics.changeThemingColorImage(UIImage.init(named: "circle"), width: 50, height: 50, color: .green)
  41. imageDisable = CCGraphics.changeThemingColorImage(UIImage.init(named: "circle"), width: 50, height: 50, color: .red)
  42. imageFileSharing.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "share"), width: 100, height: 100, color: .gray)
  43. imageDirectEditing.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "document"), width: 100, height: 100, color: .gray)
  44. imageExternalSite.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "country"), width: 100, height: 100, color: .gray)
  45. guard let account = NCManageDatabase.sharedInstance.getAccountActive() else { return }
  46. self.account = account.account
  47. if let jsonText = NCManageDatabase.sharedInstance.getCapabilities(account: account.account) {
  48. textView.text = jsonText
  49. readCapabilities()
  50. } else {
  51. NCContentPresenter.shared.messageNotification("_error_", description: "_no_capabilities_found_", delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.info, errorCode: Int(k_CCErrorInternalError), forced: true)
  52. DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {
  53. self.dismiss(animated: true, completion: nil)
  54. }
  55. }
  56. }
  57. @objc func close() {
  58. self.dismiss(animated: true, completion: nil)
  59. }
  60. func readCapabilities() {
  61. if NCManageDatabase.sharedInstance.getCapabilitiesServerBool(account: account, elements: NCElementsJSON.shared.capabilitiesFileSharingApiEnabled, exists: false) {
  62. imageStatusFileSharing.image = imageEnable
  63. } else {
  64. imageStatusFileSharing.image = imageDisable
  65. }
  66. if NCManageDatabase.sharedInstance.getDirectEditingCreators(account: account) != nil {
  67. imageStatusDirectEditing.image = imageEnable
  68. } else {
  69. imageStatusDirectEditing.image = imageDisable
  70. }
  71. if NCManageDatabase.sharedInstance.getCapabilitiesServerBool(account: account, elements: NCElementsJSON.shared.capabilitiesExternalSitesExists, exists: false) {
  72. imageStatusExternalSite.image = imageEnable
  73. } else {
  74. imageStatusExternalSite.image = imageDisable
  75. }
  76. }
  77. }