mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-29 10:30:47 +00:00
63 lines
1.5 KiB
Swift
63 lines
1.5 KiB
Swift
import CryptoKit
|
|
import KeychainSwift
|
|
import Models
|
|
import Network
|
|
import SwiftUI
|
|
|
|
public extension AppAccount {
|
|
private static var keychain: KeychainSwift {
|
|
let keychain = KeychainSwift()
|
|
#if !DEBUG && !targetEnvironment(simulator)
|
|
keychain.accessGroup = AppInfo.keychainGroup
|
|
#endif
|
|
return keychain
|
|
}
|
|
|
|
func save() throws {
|
|
let encoder = JSONEncoder()
|
|
let data = try encoder.encode(self)
|
|
Self.keychain.set(data, forKey: key, withAccess: .accessibleAfterFirstUnlock)
|
|
}
|
|
|
|
func delete() {
|
|
Self.keychain.delete(key)
|
|
}
|
|
|
|
static func retrieveAll() -> [AppAccount] {
|
|
migrateLegacyAccounts()
|
|
let keychain = Self.keychain
|
|
let decoder = JSONDecoder()
|
|
let keys = keychain.allKeys
|
|
var accounts: [AppAccount] = []
|
|
for key in keys {
|
|
if let data = keychain.getData(key) {
|
|
if let account = try? decoder.decode(AppAccount.self, from: data) {
|
|
accounts.append(account)
|
|
try? account.save()
|
|
}
|
|
}
|
|
}
|
|
return accounts
|
|
}
|
|
|
|
static func migrateLegacyAccounts() {
|
|
let keychain = KeychainSwift()
|
|
let decoder = JSONDecoder()
|
|
let keys = keychain.allKeys
|
|
for key in keys {
|
|
if let data = keychain.getData(key) {
|
|
if let account = try? decoder.decode(AppAccount.self, from: data) {
|
|
try? account.save()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static func deleteAll() {
|
|
let keychain = Self.keychain
|
|
let keys = keychain.allKeys
|
|
for key in keys {
|
|
keychain.delete(key)
|
|
}
|
|
}
|
|
}
|