NCManageDatabase+SecurityGuard.swift 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. //
  2. // NCManageDatabase+SecurityGuard.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 17/01/24.
  6. // Copyright © 2024 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 Foundation
  24. import RealmSwift
  25. import NextcloudKit
  26. class TableSecurityGuardDiagnostics: Object {
  27. @Persisted var account = ""
  28. @Persisted(primaryKey: true) var primaryKey = ""
  29. @Persisted var issue: String = ""
  30. @Persisted var error: String?
  31. @Persisted var counter: Int = 0
  32. @Persisted var oldest: TimeInterval
  33. @Persisted var id: ObjectId
  34. convenience init(account: String, issue: String, error: String?, date: Date) {
  35. self.init()
  36. self.account = account
  37. self.primaryKey = account + issue + (error ?? "")
  38. self.issue = issue
  39. self.error = error
  40. self.counter = 1
  41. self.oldest = date.timeIntervalSince1970
  42. }
  43. }
  44. extension NCManageDatabase {
  45. func addDiagnostic(account: String, issue: String, error: String? = nil) {
  46. do {
  47. let realm = try Realm()
  48. try realm.write {
  49. let primaryKey = account + issue + (error ?? "")
  50. if let result = realm.object(ofType: TableSecurityGuardDiagnostics.self, forPrimaryKey: primaryKey) {
  51. result.counter += 1
  52. result.oldest = Date().timeIntervalSince1970
  53. } else {
  54. let table = TableSecurityGuardDiagnostics(account: account, issue: issue, error: error, date: Date())
  55. realm.add(table)
  56. }
  57. }
  58. } catch let error {
  59. NextcloudKit.shared.nkCommonInstance.writeLog("Could not write to database: \(error)")
  60. }
  61. }
  62. func existsDiagnostics(account: String) -> Bool {
  63. do {
  64. let realm = try Realm()
  65. let results = realm.objects(TableSecurityGuardDiagnostics.self).where({
  66. $0.account == account
  67. })
  68. if !results.isEmpty { return true }
  69. } catch let error as NSError {
  70. NextcloudKit.shared.nkCommonInstance.writeLog("Could not access database: \(error)")
  71. }
  72. return false
  73. }
  74. func getDiagnostics(account: String, issue: String) -> Results<TableSecurityGuardDiagnostics>? {
  75. do {
  76. let realm = try Realm()
  77. let results = realm.objects(TableSecurityGuardDiagnostics.self).where({
  78. $0.account == account && $0.issue == issue
  79. })
  80. return results
  81. } catch let error as NSError {
  82. NextcloudKit.shared.nkCommonInstance.writeLog("Could not access database: \(error)")
  83. }
  84. return nil
  85. }
  86. func deleteDiagnostics(account: String, ids: [ObjectId]) {
  87. do {
  88. let realm = try Realm()
  89. try realm.write {
  90. let results = realm.objects(TableSecurityGuardDiagnostics.self).where({
  91. $0.account == account
  92. })
  93. for result in results where ids.contains(result.id) {
  94. realm.delete(result)
  95. }
  96. }
  97. } catch let error {
  98. NextcloudKit.shared.nkCommonInstance.writeLog("Could not write to database: \(error)")
  99. }
  100. }
  101. }