element-ios/Riot/Model/WellKnown/VectorWellKnown.swift

73 lines
2.8 KiB
Swift

//
// Copyright 2020-2024 New Vector Ltd.
//
// SPDX-License-Identifier: AGPL-3.0-only
// Please see LICENSE in the repository root for full details.
//
import Foundation
// MARK: - Well Known
/// `VectorWellKnown` represents additional Well Known configuration specific to Element client
struct VectorWellKnown {
let encryption: VectorWellKnownEncryptionConfiguration?
let jitsi: VectorWellKnownJitsiConfiguration?
// Deprecated properties
let deprecatedEncryption: VectorWellKnownEncryptionConfiguration?
let deprecatedJitsi: VectorWellKnownJitsiConfiguration?
}
// MARK: Decodable
extension VectorWellKnown: Decodable {
/// JSON keys associated to VectorWellKnown properties
enum CodingKeys: String, CodingKey {
case encryption = "io.element.e2ee"
case jitsi = "io.element.jitsi"
// Deprecated keys
case deprecatedEncryption = "im.vector.riot.e2ee"
case deprecatedJitsi = "im.vector.riot.jitsi"
}
}
// MARK: - Encryption
struct VectorWellKnownEncryptionConfiguration {
/// Indicate if E2EE is enabled by default
let isE2EEByDefaultEnabled: Bool?
/// Check if secure backup (SSSS) is mandatory.
let isSecureBackupRequired: Bool?
/// Methods to use to setup secure backup (SSSS).
let secureBackupSetupMethods: [VectorWellKnownBackupSetupMethod]?
/// Outbound keys pre sharing strategy.
let outboundKeysPreSharingMode: MXKKeyPreSharingStrategy?
}
extension VectorWellKnownEncryptionConfiguration: Decodable {
/// JSON keys associated to `VectorWellKnownEncryptionConfiguration`
enum CodingKeys: String, CodingKey {
case isE2EEByDefaultEnabled = "default"
case isSecureBackupRequired = "secure_backup_required"
case secureBackupSetupMethods = "secure_backup_setup_methods"
case outboundKeysPreSharingMode = "outbound_keys_pre_sharing_mode"
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
isE2EEByDefaultEnabled = try? container.decode(Bool.self, forKey: .isE2EEByDefaultEnabled)
isSecureBackupRequired = try? container.decode(Bool.self, forKey: .isSecureBackupRequired)
let secureBackupSetupMethodsKeys = try? container.decode([String].self, forKey: .secureBackupSetupMethods)
secureBackupSetupMethods = secureBackupSetupMethodsKeys?.compactMap { VectorWellKnownBackupSetupMethod(key: $0) }
let outboundKeysPreSharingModeKey = try? container.decode(String.self, forKey: .outboundKeysPreSharingMode)
outboundKeysPreSharingMode = MXKKeyPreSharingStrategy(key: outboundKeysPreSharingModeKey)
}
}
// MARK: - Jitsi
struct VectorWellKnownJitsiConfiguration: Decodable {
/// Default Jitsi server
let preferredDomain: String?
/// Override native calling with Jitsi for 1:1 calls.
let useFor1To1Calls: Bool?
}