XMPPController.swift 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. //
  2. // XMPPController.swift
  3. // Chat (iOS)
  4. //
  5. // Created by Sergey Tarasov on 12.10.2022.
  6. //
  7. import XMPPFramework
  8. import XMPPFrameworkSwift
  9. final class XMPPController {
  10. static let shared: XMPPController = XMPPController()
  11. let xmppStream: XMPPStream
  12. let xmppReconnect: XMPPReconnect
  13. let xmppRoster: XMPPRoster
  14. let xmppRosterStorage: XMPPRosterMemoryStorage
  15. var xmppAuth: XMPPPlainAuthentication
  16. private init() {
  17. self.xmppStream = XMPPStream()
  18. self.xmppRosterStorage = XMPPRosterMemoryStorage()
  19. self.xmppRoster = XMPPRoster(rosterStorage: xmppRosterStorage)
  20. self.xmppReconnect = XMPPReconnect()
  21. self.xmppReconnect.activate(xmppStream)
  22. self.xmppRoster.activate(xmppStream)
  23. self.xmppAuth = XMPPPlainAuthentication()
  24. self.xmppReconnect.addDelegate(self, delegateQueue: .main)
  25. }
  26. func setupStream() {
  27. self.xmppStream.hostName = "msg.sharix-app.org"
  28. self.xmppStream.hostPort = 5222
  29. self.xmppStream.startTLSPolicy = XMPPStreamStartTLSPolicy.allowed
  30. }
  31. func login(with login: String, and password: String) {
  32. self.xmppStream.myJID = XMPPJID(string: login)
  33. self.xmppAuth = XMPPPlainAuthentication(stream: xmppStream, password: password)
  34. connect()
  35. }
  36. func connect() {
  37. if self.xmppStream.isDisconnected {
  38. do {
  39. try self.xmppStream.authenticate(xmppAuth)
  40. } catch {
  41. }
  42. }
  43. }
  44. }
  45. extension XMPPController: XMPPReconnectDelegate {
  46. func xmppReconnect(_ sender: XMPPReconnect, shouldAttemptAutoReconnect connectionFlags: SCNetworkConnectionFlags) -> Bool {
  47. print("---------- xmppReconnect:shouldAttemptAutoReconnect: ----------")
  48. return true
  49. }
  50. }