Skip to content
Snippets Groups Projects
SearchLeftViewModel.swift 10.9 KiB
Newer Older
Bruno Muniz's avatar
Bruno Muniz committed
import Retry
import UIKit
Bruno Muniz's avatar
Bruno Muniz committed
import Shared
import Combine
import XXModels
import XXClient
import CustomDump
import ReportingFeature
import CombineSchedulers
Bruno Muniz's avatar
Bruno Muniz committed
import XXMessengerClient
import CountryListFeature
import Dependencies
import AppCore

typealias SearchSnapshot = NSDiffableDataSourceSnapshot<SearchSection, SearchItem>

struct SearchLeftViewState {
Bruno Muniz's avatar
Bruno Muniz committed
  var input = ""
  var snapshot: SearchSnapshot?
  var country: Country = .fromMyPhone()
  var item: SearchSegmentedControl.Item = .username
final class SearchLeftViewModel {
  @Dependency(\.app.dbManager) var dbManager
  @Dependency(\.app.messenger) var messenger
  @Dependency(\.hudManager) var hudManager
  @Dependency(\.app.toastManager) var toastManager
  @Dependency(\.reportingStatus) var reportingStatus
  @Dependency(\.app.networkMonitor) var networkMonitor
Bruno Muniz's avatar
Bruno Muniz committed

  @KeyObject(.username, defaultValue: nil) var username: String?
  @KeyObject(.sharingEmail, defaultValue: false) var sharingEmail: Bool
  @KeyObject(.sharingPhone, defaultValue: false) var sharingPhone: Bool

  var myId: Data {
    try! messenger.e2e.get()!.getContact().getId()
  }

  var successPublisher: AnyPublisher<XXModels.Contact, Never> {
    successSubject.eraseToAnyPublisher()
  }

  var statePublisher: AnyPublisher<SearchLeftViewState, Never> {
    stateSubject.eraseToAnyPublisher()
  }

  var backgroundScheduler: AnySchedulerOf<DispatchQueue> = DispatchQueue.global().eraseToAnyScheduler()

  var invitation: String?
  private var searchCancellables = Set<AnyCancellable>()
  private let successSubject = PassthroughSubject<XXModels.Contact, Never>()
  private let stateSubject = CurrentValueSubject<SearchLeftViewState, Never>(.init())
  private var networkCancellable = Set<AnyCancellable>()

  init(_ invitation: String? = nil) {
    self.invitation = invitation
  }

  func viewDidAppear() {
    if let pendingInvitation = invitation {
      invitation = nil
      stateSubject.value.input = pendingInvitation
      networkCancellable.removeAll()
      didStartSearching()
Bruno Muniz's avatar
Bruno Muniz committed
  }
Bruno Muniz's avatar
Bruno Muniz committed
  func didEnterInput(_ string: String) {
    stateSubject.value.input = string
  }
Bruno Muniz's avatar
Bruno Muniz committed
  func didPick(country: Country) {
    stateSubject.value.country = country
  }
Bruno Muniz's avatar
Bruno Muniz committed
  func didSelectItem(_ item: SearchSegmentedControl.Item) {
    stateSubject.value.item = item
  }
Bruno Muniz's avatar
Bruno Muniz committed
  func didTapCancelSearch() {
    searchCancellables.forEach { $0.cancel() }
    searchCancellables.removeAll()
Bruno Muniz's avatar
Bruno Muniz committed
  }
Bruno Muniz's avatar
Bruno Muniz committed
  func didStartSearching() {
    guard stateSubject.value.input.isEmpty == false else { return }
    backgroundScheduler.schedule { [weak self] in
      guard let self else { return }
      self.hudManager.show(.init(
        actionTitle: Localized.Ud.Search.cancel,
        hasDotAnimation: true,
        isAutoDismissable: false,
        onTapClosure: { [weak self] in
          guard let self else { return }
          self.didTapCancelSearch()
        }
      ))
      var content = self.stateSubject.value.input
Bruno Muniz's avatar
Bruno Muniz committed

      if self.stateSubject.value.item == .phone {
        content += self.stateSubject.value.country.code
Bruno Muniz's avatar
Bruno Muniz committed
      }

      enum NodeRegistrationError: Error {
        case unhealthyNet
        case belowMinimum
Bruno Muniz's avatar
Bruno Muniz committed
      }

      retry(max: 5, retryStrategy: .delay(seconds: 2)) { [weak self] in
        guard let self else { return }
        do {
          let nrr = try self.messenger.cMix.get()!.getNodeRegistrationStatus()
          if nrr.ratio < 0.8 { throw NodeRegistrationError.belowMinimum }
        } catch {
          throw NodeRegistrationError.unhealthyNet
        }
      }.finalCatch { [weak self] in
        guard let self else { return }
        if case .unhealthyNet = $0 as? NodeRegistrationError {
          self.hudManager.show(.init(content: "Network is not healthy yet, try again within the next minute or so."))
        } else if case .belowMinimum = $0 as? NodeRegistrationError {
          self.hudManager.show(.init(content:"Node registration ratio is still below 80%, try again within the next minute or so."))
        } else {
          self.hudManager.show(.init(error: $0))
        }
        return
      }

      var factType: FactType = .username

      if self.stateSubject.value.item == .phone {
        factType = .phone
      } else if self.stateSubject.value.item == .email {
        factType = .email
      }
Bruno Muniz's avatar
Bruno Muniz committed

      do {
        let report = try SearchUD.live(
          params: .init(
            e2eId: self.messenger.e2e.get()!.getId(),
            udContact: self.messenger.ud.get()!.getContact(),
            facts: [.init(type: factType, value: content)]
          ),
          callback: .init(handle: {
            switch $0 {
            case .success(let results):
              self.hudManager.hide()
Bruno Muniz's avatar
Bruno Muniz committed
              self.appendToLocalSearch(
                XXModels.Contact(
                  id: try! results.first!.getId(),
                  marshaled: results.first!.data,
                  username: try! results.first?.getFacts().first(where: { $0.type == .username })?.value,
                  email: try? results.first?.getFacts().first(where: { $0.type == .email })?.value,
                  phone: try? results.first?.getFacts().first(where: { $0.type == .phone })?.value,
                  nickname: nil,
                  photo: nil,
                  authStatus: .stranger,
                  isRecent: true,
                  isBlocked: false,
                  isBanned: false,
                  createdAt: Date()
Bruno Muniz's avatar
Bruno Muniz committed
              )
            case .failure(let error):
              print(">>> SearchUD error: \(error.localizedDescription)")
Bruno Muniz's avatar
Bruno Muniz committed
              self.appendToLocalSearch(nil)
              self.hudManager.show(.init(error: error))
Bruno Muniz's avatar
Bruno Muniz committed
          })
        )
Bruno Muniz's avatar
Bruno Muniz committed
        print(">>> UDSearch.Report: \(report))")
      } catch {
        print(">>> UDSearch.Exception: \(error.localizedDescription)")
      }
    }
  }
Bruno Muniz's avatar
Bruno Muniz committed
  func didTapResend(contact: XXModels.Contact) {
Bruno Muniz's avatar
Bruno Muniz committed
    var contact = contact
    contact.authStatus = .requesting
Bruno Muniz's avatar
Bruno Muniz committed
    backgroundScheduler.schedule { [weak self] in
Bruno Muniz's avatar
Bruno Muniz committed
      guard let self else { return }
Bruno Muniz's avatar
Bruno Muniz committed
      do {
        try self.dbManager.getDB().saveContact(contact)
Bruno Muniz's avatar
Bruno Muniz committed
        var includedFacts: [Fact] = []
        let myFacts = try self.messenger.ud.get()!.getFacts()
Bruno Muniz's avatar
Bruno Muniz committed
        if let fact = myFacts.get(.username) {
          includedFacts.append(fact)
Bruno Muniz's avatar
Bruno Muniz committed
        }

Bruno Muniz's avatar
Bruno Muniz committed
        if self.sharingEmail, let fact = myFacts.get(.email) {
          includedFacts.append(fact)
        }
Bruno Muniz's avatar
Bruno Muniz committed
        if self.sharingPhone, let fact = myFacts.get(.phone) {
          includedFacts.append(fact)
        }
Bruno Muniz's avatar
Bruno Muniz committed
        let _ = try self.messenger.e2e.get()!.requestAuthenticatedChannel(
          partner: .live(contact.marshaled!),
          myFacts: includedFacts
        )
Bruno Muniz's avatar
Bruno Muniz committed
        contact.authStatus = .requested
        contact = try self.dbManager.getDB().saveContact(contact)
        self.hudManager.hide()
Bruno Muniz's avatar
Bruno Muniz committed
        self.presentSuccessToast(for: contact, resent: true)
      } catch {
        contact.authStatus = .requestFailed
        _ = try? self.dbManager.getDB().saveContact(contact)
        self.hudManager.show(.init(error: error))
Bruno Muniz's avatar
Bruno Muniz committed
      }
    }
  }
Bruno Muniz's avatar
Bruno Muniz committed
  func didTapRequest(contact: XXModels.Contact) {
Bruno Muniz's avatar
Bruno Muniz committed
    var contact = contact
    contact.nickname = contact.username
    contact.authStatus = .requesting
Bruno Muniz's avatar
Bruno Muniz committed
    backgroundScheduler.schedule { [weak self] in
Bruno Muniz's avatar
Bruno Muniz committed
      guard let self else { return }
Bruno Muniz's avatar
Bruno Muniz committed
      do {
        try self.dbManager.getDB().saveContact(contact)
Bruno Muniz's avatar
Bruno Muniz committed
        var includedFacts: [Fact] = []
        let myFacts = try self.messenger.ud.get()!.getFacts()
Bruno Muniz's avatar
Bruno Muniz committed
        if let fact = myFacts.get(.username) {
          includedFacts.append(fact)
Bruno Muniz's avatar
Bruno Muniz committed
        if self.sharingEmail, let fact = myFacts.get(.email) {
          includedFacts.append(fact)
Bruno Muniz's avatar
Bruno Muniz committed
        if self.sharingPhone, let fact = myFacts.get(.phone) {
          includedFacts.append(fact)
Bruno Muniz's avatar
Bruno Muniz committed
        let _ = try self.messenger.e2e.get()!.requestAuthenticatedChannel(
          partner: .live(contact.marshaled!),
          myFacts: includedFacts
Bruno Muniz's avatar
Bruno Muniz committed
        )
Bruno Muniz's avatar
Bruno Muniz committed
        contact.authStatus = .requested
        contact = try self.dbManager.getDB().saveContact(contact)
Bruno Muniz's avatar
Bruno Muniz committed

        self.hudManager.hide()
Bruno Muniz's avatar
Bruno Muniz committed
        self.successSubject.send(contact)
        self.presentSuccessToast(for: contact, resent: false)
      } catch {
        contact.authStatus = .requestFailed
        _ = try? self.dbManager.getDB().saveContact(contact)
        self.hudManager.show(.init(error: error))
Bruno Muniz's avatar
Bruno Muniz committed
      }
Bruno Muniz's avatar
Bruno Muniz committed
  }
Bruno Muniz's avatar
Bruno Muniz committed
  func didSet(nickname: String, for contact: XXModels.Contact) {
    if var contact = try? dbManager.getDB().fetchContacts(.init(id: [contact.id])).first {
Bruno Muniz's avatar
Bruno Muniz committed
      contact.nickname = nickname
      _ = try? dbManager.getDB().saveContact(contact)
Bruno Muniz's avatar
Bruno Muniz committed
  }

  private func appendToLocalSearch(_ user: XXModels.Contact?) {
    var snapshot = SearchSnapshot()

    if var user = user {
      if let contact = try? dbManager.getDB().fetchContacts(.init(id: [user.id])).first {
Bruno Muniz's avatar
Bruno Muniz committed
        user.isBanned = contact.isBanned
        user.isBlocked = contact.isBlocked
        user.authStatus = contact.authStatus
      }

      if user.authStatus != .friend, !reportingStatus.isEnabled() {
        snapshot.appendSections([.stranger])
        snapshot.appendItems([.stranger(user)], toSection: .stranger)
      } else if user.authStatus != .friend, reportingStatus.isEnabled(), !user.isBanned, !user.isBlocked {
        snapshot.appendSections([.stranger])
        snapshot.appendItems([.stranger(user)], toSection: .stranger)
      }
Bruno Muniz's avatar
Bruno Muniz committed
    }
Bruno Muniz's avatar
Bruno Muniz committed
    let localsQuery = Contact.Query(
      text: stateSubject.value.input,
      authStatus: [.friend],
      isBlocked: reportingStatus.isEnabled() ? false : nil,
      isBanned: reportingStatus.isEnabled() ? false : nil
    )

    if let locals = try? dbManager.getDB().fetchContacts(localsQuery),
Bruno Muniz's avatar
Bruno Muniz committed
       let localsWithoutMe = removeMyself(from: locals),
       localsWithoutMe.isEmpty == false {
      snapshot.appendSections([.connections])
      snapshot.appendItems(
        localsWithoutMe.map(SearchItem.connection),
        toSection: .connections
      )
Bruno Muniz's avatar
Bruno Muniz committed

    stateSubject.value.snapshot = snapshot
  }

  private func removeMyself(from collection: [XXModels.Contact]) -> [XXModels.Contact]? {
    collection.filter { $0.id != myId }
  }

  private func presentSuccessToast(for contact: XXModels.Contact, resent: Bool) {
    let name = contact.nickname ?? contact.username
    let sentTitle = Localized.Requests.Sent.Toast.sent(name ?? "")
    let resentTitle = Localized.Requests.Sent.Toast.resent(name ?? "")

    toastManager.enqueue(.init(
Bruno Muniz's avatar
Bruno Muniz committed
      title: resent ? resentTitle : sentTitle,
      leftImage: Asset.sharedSuccess.image
    ))
  }

  private func waitForNodes(timeout: Int) -> AnyPublisher<Void, Error> {
    Deferred {
      Future { promise in
        retry(max: timeout, retryStrategy: .delay(seconds: 1)) { [weak self] in
Bruno Muniz's avatar
Bruno Muniz committed
          guard let self else { return }
Bruno Muniz's avatar
Bruno Muniz committed
          _ = try self.messenger.cMix.get()!.getNodeRegistrationStatus()
          promise(.success(()))
        }.finalCatch {
          promise(.failure($0))
        }
      }
    }.eraseToAnyPublisher()
  }