2024-09-03 15:13:58 +00:00
|
|
|
import Combine
|
|
|
|
import Foundation
|
|
|
|
import GRDB
|
|
|
|
import Martin
|
|
|
|
import MartinOMEMO
|
2024-09-16 15:58:28 +00:00
|
|
|
import UIKit
|
2024-09-03 15:13:58 +00:00
|
|
|
|
|
|
|
enum ClientState: Equatable {
|
|
|
|
enum ClientConnectionState {
|
|
|
|
case connected
|
|
|
|
case disconnected
|
|
|
|
}
|
|
|
|
|
|
|
|
case disabled
|
|
|
|
case enabled(ClientConnectionState)
|
|
|
|
}
|
|
|
|
|
|
|
|
final class Client: ObservableObject {
|
|
|
|
@Published private(set) var state: ClientState = .enabled(.disconnected)
|
|
|
|
@Published private(set) var credentials: Credentials
|
|
|
|
@Published private(set) var rosters: [Roster] = []
|
|
|
|
|
|
|
|
private var connection: XMPPClient
|
|
|
|
private var connectionCancellable: AnyCancellable?
|
|
|
|
private var rostersCancellable: AnyCancellable?
|
|
|
|
|
|
|
|
private var rosterManager = ClientMartinRosterManager()
|
|
|
|
private var chatsManager = ClientMartinChatsManager()
|
|
|
|
private var discoManager: ClientMartinDiscoManager
|
|
|
|
private var messageManager: ClientMartinMessagesManager
|
|
|
|
private var carbonsManager: ClientMartinCarbonsManager
|
|
|
|
private var mamManager: ClientMartinMAM
|
|
|
|
|
|
|
|
init(credentials: Credentials) {
|
|
|
|
self.credentials = credentials
|
|
|
|
state = credentials.isActive ? .enabled(.disconnected) : .disabled
|
|
|
|
connection = Self.prepareConnection(credentials, rosterManager, chatsManager)
|
|
|
|
discoManager = ClientMartinDiscoManager(connection)
|
|
|
|
messageManager = ClientMartinMessagesManager(connection)
|
|
|
|
carbonsManager = ClientMartinCarbonsManager(connection)
|
|
|
|
mamManager = ClientMartinMAM(connection)
|
|
|
|
connectionCancellable = connection.$state
|
|
|
|
.sink { [weak self] state in
|
|
|
|
guard let self = self else { return }
|
|
|
|
guard self.credentials.isActive else {
|
|
|
|
self.state = .disabled
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rostersCancellable = ValueObservation
|
|
|
|
.tracking { db in
|
|
|
|
try Roster
|
|
|
|
.filter(Column("bareJid") == self.credentials.bareJid)
|
|
|
|
.filter(Column("locallyDeleted") == false)
|
|
|
|
.fetchAll(db)
|
|
|
|
}
|
|
|
|
.publisher(in: Database.shared.dbQueue)
|
|
|
|
.catch { _ in Just([]) }
|
|
|
|
.sink { rosters in
|
|
|
|
self.rosters = rosters
|
|
|
|
}
|
|
|
|
switch state {
|
|
|
|
case .connected:
|
|
|
|
self.state = .enabled(.connected)
|
|
|
|
|
|
|
|
default:
|
|
|
|
self.state = .enabled(.disconnected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-07 15:09:55 +00:00
|
|
|
extension Client: Identifiable {
|
|
|
|
var id: String {
|
|
|
|
credentials.bareJid
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-03 15:13:58 +00:00
|
|
|
extension Client {
|
2024-10-16 14:42:08 +00:00
|
|
|
func updActivity(_ isActive: Bool) async {
|
|
|
|
credentials.isActive = isActive
|
|
|
|
}
|
|
|
|
|
2024-09-03 15:13:58 +00:00
|
|
|
func addRoster(_ jid: String, name: String?, groups: [String]) async throws {
|
|
|
|
_ = try await connection.module(.roster).addItem(
|
|
|
|
jid: JID(jid),
|
|
|
|
name: name,
|
|
|
|
groups: groups
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-09-16 12:10:35 +00:00
|
|
|
func addRosterLocally(_ jid: String, name: String?, groups: [String]) async throws {
|
|
|
|
try await Roster.addRosterLocally(.init(
|
|
|
|
bareJid: credentials.bareJid,
|
|
|
|
contactBareJid: jid,
|
|
|
|
name: name,
|
|
|
|
subscription: "to",
|
|
|
|
ask: true,
|
|
|
|
data: .init(groups: groups, annotations: []),
|
|
|
|
locallyDeleted: false
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2024-09-03 15:13:58 +00:00
|
|
|
func deleteRoster(_ roster: Roster) async throws {
|
|
|
|
_ = try await connection.module(.roster).removeItem(jid: JID(roster.contactBareJid))
|
|
|
|
}
|
|
|
|
|
|
|
|
func connect() async {
|
|
|
|
guard credentials.isActive, state == .enabled(.disconnected) else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
try? await connection.loginAndWait()
|
|
|
|
}
|
|
|
|
|
|
|
|
func disconnect() {
|
|
|
|
_ = connection.disconnect()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Client {
|
|
|
|
func sendMessage(_ message: Message) async throws {
|
|
|
|
guard let to = message.to else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
guard let chat = connection.module(MessageModule.self).chatManager.createChat(for: connection.context, with: BareJID(to)) else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var msg = chat.createMessage(text: message.body ?? "??", id: message.id)
|
|
|
|
msg.oob = message.oobUrl
|
2024-09-19 15:14:05 +00:00
|
|
|
if message.secure {
|
|
|
|
msg = try await encryptMessage(msg)
|
|
|
|
}
|
2024-09-03 15:13:58 +00:00
|
|
|
try await chat.send(message: msg)
|
|
|
|
}
|
|
|
|
|
2024-09-19 15:14:05 +00:00
|
|
|
func uploadFile(_ localURL: URL, needEncrypt: Bool) async throws -> String {
|
2024-09-08 14:57:50 +00:00
|
|
|
// get data from file
|
2024-09-08 15:06:52 +00:00
|
|
|
guard var data = try? Data(contentsOf: localURL) else {
|
2024-09-03 15:13:58 +00:00
|
|
|
throw AppError.noData
|
|
|
|
}
|
|
|
|
|
2024-09-08 15:06:52 +00:00
|
|
|
// encrypt data if needed
|
2024-09-19 15:14:05 +00:00
|
|
|
var key = Data()
|
|
|
|
var iv = Data()
|
|
|
|
if needEncrypt {
|
|
|
|
key = try AESGSMEngine.generateKey()
|
|
|
|
iv = try AESGSMEngine.generateIV()
|
|
|
|
var encrypted = Data()
|
|
|
|
var tag = Data()
|
|
|
|
guard AESGSMEngine.shared.encrypt(iv: iv, key: key, message: data, output: &encrypted, tag: &tag) else {
|
|
|
|
throw AppError.securityError
|
|
|
|
}
|
2024-09-08 17:28:17 +00:00
|
|
|
|
2024-09-19 15:14:05 +00:00
|
|
|
// attach tag to end of encrypted data
|
|
|
|
encrypted.append(tag)
|
|
|
|
data = encrypted
|
|
|
|
}
|
2024-09-08 14:57:50 +00:00
|
|
|
|
|
|
|
// upload
|
|
|
|
let httpModule = connection.module(HttpFileUploadModule.self)
|
2024-09-03 15:13:58 +00:00
|
|
|
let components = try await httpModule.findHttpUploadComponents()
|
2024-09-08 15:06:52 +00:00
|
|
|
guard let component = components.first(where: { $0.maxSize > data.count }) else {
|
2024-09-03 15:13:58 +00:00
|
|
|
throw AppError.fileTooBig
|
|
|
|
}
|
|
|
|
|
|
|
|
let slot = try await httpModule.requestUploadSlot(
|
|
|
|
componentJid: component.jid,
|
|
|
|
filename: localURL.lastPathComponent,
|
2024-09-08 15:06:52 +00:00
|
|
|
size: data.count,
|
2024-09-03 15:13:58 +00:00
|
|
|
contentType: localURL.mimeType
|
|
|
|
)
|
|
|
|
var request = URLRequest(url: slot.putUri)
|
|
|
|
for (key, value) in slot.putHeaders {
|
|
|
|
request.addValue(value, forHTTPHeaderField: key)
|
|
|
|
}
|
|
|
|
request.httpMethod = "PUT"
|
2024-09-08 15:06:52 +00:00
|
|
|
request.httpBody = data
|
|
|
|
request.addValue(String(data.count), forHTTPHeaderField: "Content-Length")
|
2024-09-03 15:13:58 +00:00
|
|
|
request.addValue(localURL.mimeType, forHTTPHeaderField: "Content-Type")
|
|
|
|
let (_, response) = try await URLSession.shared.data(for: request)
|
|
|
|
switch response {
|
|
|
|
case let httpResponse as HTTPURLResponse where httpResponse.statusCode == 201:
|
2024-09-19 15:14:05 +00:00
|
|
|
if needEncrypt {
|
|
|
|
guard var parts = URLComponents(url: slot.getUri, resolvingAgainstBaseURL: true) else {
|
|
|
|
throw URLError(.badServerResponse)
|
|
|
|
}
|
|
|
|
parts.scheme = "aesgcm"
|
|
|
|
parts.fragment = (iv + key).map { String(format: "%02x", $0) }.joined()
|
|
|
|
guard let shareUrl = parts.url else {
|
|
|
|
throw URLError(.badServerResponse)
|
|
|
|
}
|
|
|
|
return shareUrl.absoluteString
|
|
|
|
} else {
|
|
|
|
return slot.getUri.absoluteString
|
2024-09-08 14:57:50 +00:00
|
|
|
}
|
2024-09-03 15:13:58 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
throw URLError(.badServerResponse)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func fetchArchiveMessages(for roster: Roster, query: RSM.Query) async throws -> Martin.MessageArchiveManagementModule.QueryResult {
|
|
|
|
if !discoManager.features.map({ $0.xep }).contains("XEP-0313") {
|
|
|
|
throw AppError.featureNotSupported
|
|
|
|
}
|
|
|
|
let module = connection.module(MessageArchiveManagementModule.self)
|
|
|
|
return try await module.queryItems(componentJid: JID(roster.bareJid), with: JID(roster.contactBareJid), queryId: UUID().uuidString, rsm: query)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension Client {
|
|
|
|
func encryptMessage(_ message: Martin.Message) async throws -> Martin.Message {
|
|
|
|
try await withCheckedThrowingContinuation { continuation in
|
|
|
|
connection.module(.omemo).encode(message: message, completionHandler: { result in
|
|
|
|
switch result {
|
|
|
|
case .successMessage(let encodedMessage, _):
|
|
|
|
// guard connection.isConnected else {
|
|
|
|
// continuation.resume(returning: message)
|
|
|
|
// return
|
|
|
|
// }
|
|
|
|
continuation.resume(returning: encodedMessage)
|
|
|
|
|
|
|
|
case .failure(let error):
|
|
|
|
var errorMessage = NSLocalizedString("It was not possible to send encrypted message due to encryption error", comment: "message encryption failure")
|
|
|
|
switch error {
|
|
|
|
case .noSession:
|
|
|
|
errorMessage = NSLocalizedString("There is no trusted device to send message to", comment: "message encryption failure")
|
2024-09-08 14:57:50 +00:00
|
|
|
|
2024-09-03 15:13:58 +00:00
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continuation.resume(throwing: XMPPError.unexpected_request(errorMessage))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Client {
|
|
|
|
static func tryLogin(with credentials: Credentials) async throws -> Client {
|
|
|
|
let client = Client(credentials: credentials)
|
|
|
|
try await client.connection.loginAndWait()
|
|
|
|
return client
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension Client {
|
|
|
|
static func prepareConnection(_ credentials: Credentials, _ roster: RosterManager, _ chat: ChatManager) -> XMPPClient {
|
|
|
|
let client = XMPPClient()
|
2024-09-16 15:58:28 +00:00
|
|
|
client.connectionConfiguration.resource = UIDevice.current.name
|
2024-09-03 15:13:58 +00:00
|
|
|
|
|
|
|
// register modules
|
|
|
|
client.modulesManager.register(StreamFeaturesModule())
|
|
|
|
client.modulesManager.register(SaslModule())
|
|
|
|
client.modulesManager.register(AuthModule())
|
|
|
|
client.modulesManager.register(SessionEstablishmentModule())
|
|
|
|
client.modulesManager.register(ResourceBinderModule())
|
|
|
|
client.modulesManager.register(DiscoveryModule(identity: .init(category: "client", type: "iOS", name: Const.appName)))
|
|
|
|
|
|
|
|
client.modulesManager.register(RosterModule(rosterManager: roster))
|
|
|
|
|
|
|
|
client.modulesManager.register(PubSubModule())
|
2024-09-18 12:26:08 +00:00
|
|
|
// client.modulesManager.register(PEPUserAvatarModule())
|
|
|
|
// client.modulesManager.register(PEPBookmarksModule())
|
2024-09-16 15:58:28 +00:00
|
|
|
|
2024-09-03 15:13:58 +00:00
|
|
|
client.modulesManager.register(MessageModule(chatManager: chat))
|
|
|
|
client.modulesManager.register(MessageArchiveManagementModule())
|
|
|
|
client.modulesManager.register(MessageCarbonsModule())
|
|
|
|
|
|
|
|
client.modulesManager.register(HttpFileUploadModule())
|
|
|
|
|
2024-09-16 15:58:28 +00:00
|
|
|
client.modulesManager.register(PresenceModule())
|
2024-09-03 15:13:58 +00:00
|
|
|
client.modulesManager.register(SoftwareVersionModule())
|
|
|
|
client.modulesManager.register(PingModule())
|
|
|
|
client.connectionConfiguration.userJid = .init(credentials.bareJid)
|
|
|
|
client.connectionConfiguration.credentials = .password(password: credentials.pass)
|
|
|
|
|
|
|
|
// OMEMO
|
|
|
|
let omemoManager = ClientMartinOMEMO(credentials)
|
|
|
|
let (signalStorage, signalContext) = omemoManager.signal
|
|
|
|
client.modulesManager.register(OMEMOModule(aesGCMEngine: AESGSMEngine.shared, signalContext: signalContext, signalStorage: signalStorage))
|
|
|
|
|
|
|
|
// group chats
|
|
|
|
// client.modulesManager.register(MucModule(roomManager: manager))
|
|
|
|
|
|
|
|
// channels
|
|
|
|
// client.modulesManager.register(MixModule(channelManager: manager))
|
|
|
|
|
|
|
|
return client
|
|
|
|
}
|
|
|
|
}
|