123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- import ALCameraViewController
- import Contacts
- import UIKit
- class NewChatViewController: UITableViewController {
- weak var coordinator: NewChatCoordinator?
- private lazy var searchController: UISearchController = {
- let searchController = UISearchController(searchResultsController: nil)
- searchController.searchResultsUpdater = self
- searchController.obscuresBackgroundDuringPresentation = false
- searchController.searchBar.placeholder = "Search Contact"
- return searchController
- }()
- var contactIds: [Int] = Utils.getContactIds() {
- didSet {
- tableView.reloadData()
- }
- }
- // contactWithSearchResults.indexesToHightLight empty by default
- var contacts: [ContactWithSearchResults] {
- return contactIds.map { ContactWithSearchResults(contact: MRContact(id: $0), indexesToHighlight: []) }
- }
- // used when seachbar is active
- var filteredContacts: [ContactWithSearchResults] = []
- // searchBar active?
- func isFiltering() -> Bool {
- return searchController.isActive && !searchBarIsEmpty()
- }
- // weak var chatDisplayer: ChatDisplayer?
- var syncObserver: Any?
- var hud: ProgressHud?
- lazy var deviceContactHandler: DeviceContactsHandler = {
- let handler = DeviceContactsHandler()
- handler.contactListDelegate = self
- return handler
- }()
- var deviceContactAccessGranted: Bool = false {
- didSet {
- tableView.reloadData()
- }
- }
- init() {
- super.init(style: .grouped)
- hidesBottomBarWhenPushed = true
- }
- required init?(coder _: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
- override func viewDidLoad() {
- super.viewDidLoad()
- title = "New Chat"
- deviceContactHandler.importDeviceContacts()
- navigationItem.searchController = searchController
- definesPresentationContext = true // to make sure searchbar will only be shown in this viewController
- }
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
- deviceContactAccessGranted = CNContactStore.authorizationStatus(for: .contacts) == .authorized
- contactIds = Utils.getContactIds()
- // this will show the searchbar on launch -> will be set back to true on viewDidAppear
- if #available(iOS 11.0, *) {
- navigationItem.hidesSearchBarWhenScrolling = false
- }
- }
- override func viewDidAppear(_ animated: Bool) {
- super.viewDidAppear(animated)
- if #available(iOS 11.0, *) {
- navigationItem.hidesSearchBarWhenScrolling = true
- }
- let nc = NotificationCenter.default
- syncObserver = nc.addObserver(
- forName: dcNotificationSecureJoinerProgress,
- object: nil,
- queue: nil
- ) {
- notification in
- if let ui = notification.userInfo {
- if ui["error"] as! Bool {
- self.hud?.error(ui["errorMessage"] as? String)
- } else if ui["done"] as! Bool {
- self.hud?.done()
- } else {
- self.hud?.progress(ui["progress"] as! Int)
- }
- }
- }
- }
- override func viewWillDisappear(_: Bool) {
- title = "Chats" /* hack: when navigating to chatView (removing this viewController), there was a delayed backButton update (showing 'New Chat' for a moment) */
- }
- override func viewDidDisappear(_ animated: Bool) {
- super.viewDidDisappear(animated)
- let nc = NotificationCenter.default
- if let syncObserver = self.syncObserver {
- nc.removeObserver(syncObserver)
- }
- }
- @objc func cancelButtonPressed() {
- dismiss(animated: true, completion: nil)
- }
- override func didReceiveMemoryWarning() {
- super.didReceiveMemoryWarning()
- // Dispose of any resources that can be recreated.
- }
- // MARK: - Table view data source
- override func numberOfSections(in _: UITableView) -> Int {
- return deviceContactAccessGranted ? 2 : 3
- }
- override func tableView(_: UITableView, numberOfRowsInSection section: Int) -> Int {
- if section == 0 {
- return 3
- } else if section == 1 {
- if deviceContactAccessGranted {
- return isFiltering() ? filteredContacts.count : contacts.count
- } else {
- return 1
- }
- } else {
- return isFiltering() ? filteredContacts.count : contacts.count
- }
- }
- override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
- let section = indexPath.section
- let row = indexPath.row
- if section == 0 {
- if row == 0 {
- // new group row
- let cell: UITableViewCell
- if let c = tableView.dequeueReusableCell(withIdentifier: "newContactCell") {
- cell = c
- } else {
- cell = UITableViewCell(style: .default, reuseIdentifier: "newContactCell")
- }
- cell.textLabel?.text = "New Group"
- cell.textLabel?.textColor = view.tintColor
- return cell
- }
- if row == 1 {
- // new contact row
- let cell: UITableViewCell
- if let c = tableView.dequeueReusableCell(withIdentifier: "scanGroupCell") {
- cell = c
- } else {
- cell = UITableViewCell(style: .default, reuseIdentifier: "scanGroupCell")
- }
- cell.textLabel?.text = "Scan Group QR Code"
- cell.textLabel?.textColor = view.tintColor
- return cell
- }
- if row == 2 {
- // new contact row
- let cell: UITableViewCell
- if let c = tableView.dequeueReusableCell(withIdentifier: "newContactCell") {
- cell = c
- } else {
- cell = UITableViewCell(style: .default, reuseIdentifier: "newContactCell")
- }
- cell.textLabel?.text = "New Contact"
- cell.textLabel?.textColor = view.tintColor
- return cell
- }
- } else if section == 1 {
- if deviceContactAccessGranted {
- let cell: ContactCell
- if let c = tableView.dequeueReusableCell(withIdentifier: "contactCell") as? ContactCell {
- cell = c
- } else {
- cell = ContactCell(style: .default, reuseIdentifier: "contactCell")
- }
- let contact: ContactWithSearchResults = isFiltering() ? filteredContacts[row] : contacts[row]
- updateContactCell(cell: cell, contactWithHighlight: contact)
- return cell
- } else {
- let cell: ActionCell
- if let c = tableView.dequeueReusableCell(withIdentifier: "actionCell") as? ActionCell {
- cell = c
- } else {
- cell = ActionCell(style: .default, reuseIdentifier: "actionCell")
- }
- cell.actionTitle = "Import Device Contacts"
- return cell
- }
- } else {
- // section 2
- let cell: ContactCell
- if let c = tableView.dequeueReusableCell(withIdentifier: "contactCell") as? ContactCell {
- cell = c
- } else {
- cell = ContactCell(style: .default, reuseIdentifier: "contactCell")
- }
- let contact: ContactWithSearchResults = isFiltering() ? filteredContacts[row] : contacts[row]
- updateContactCell(cell: cell, contactWithHighlight: contact)
- return cell
- }
- // will actually never get here but compiler not happy
- return UITableViewCell(style: .default, reuseIdentifier: "cell")
- }
- override func tableView(_: UITableView, didSelectRowAt indexPath: IndexPath) {
- let row = indexPath.row
- let section = indexPath.section
- if section == 0 {
- if row == 0 {
- coordinator?.showNewGroupController()
- }
- if row == 1 {
- if UIImagePickerController.isSourceTypeAvailable(.camera) {
- coordinator?.showQRCodeController()
- } else {
- let alert = UIAlertController(title: "Camera is not available", message: nil, preferredStyle: .alert)
- alert.addAction(UIAlertAction(title: "OK", style: .cancel, handler: { _ in
- self.dismiss(animated: true, completion: nil)
- }))
- present(alert, animated: true, completion: nil)
- }
- }
- if row == 2 {
- coordinator?.showNewContactController()
- }
- } else if section == 1 {
- if deviceContactAccessGranted {
- if searchController.isActive {
- // edge case: when searchController is active but searchBar is empty -> filteredContacts is empty, so we fallback to contactIds
- let contactId = isFiltering() ? filteredContacts[row].contact.id : contactIds[row]
- searchController.dismiss(animated: false, completion: {
- self.coordinator?.showNewChat(contactId: contactId)
- })
- } else {
- let contactId = contactIds[row]
- coordinator?.showNewChat(contactId: contactId)
- }
- } else {
- showSettingsAlert()
- }
- } else {
- let contactIndex = row
- let contactId = contactIds[contactIndex]
- coordinator?.showNewChat(contactId: contactId)
- }
- }
- private func updateContactCell(cell: ContactCell, contactWithHighlight: ContactWithSearchResults) {
- let contact = contactWithHighlight.contact
- if let nameHighlightedIndexes = contactWithHighlight.indexesToHighlight.filter({ $0.contactDetail == .NAME }).first,
- let emailHighlightedIndexes = contactWithHighlight.indexesToHighlight.filter({ $0.contactDetail == .EMAIL }).first {
- // gets here when contact is a result of current search -> highlights relevant indexes
- let nameLabelFontSize = cell.nameLabel.font.pointSize
- let emailLabelFontSize = cell.emailLabel.font.pointSize
- cell.nameLabel.attributedText = contact.name.boldAt(indexes: nameHighlightedIndexes.indexes, fontSize: nameLabelFontSize)
- cell.emailLabel.attributedText = contact.email.boldAt(indexes: emailHighlightedIndexes.indexes, fontSize: emailLabelFontSize)
- } else {
- cell.nameLabel.text = contact.name
- cell.emailLabel.text = contact.email
- }
- cell.initialsLabel.text = Utils.getInitials(inputName: contact.name)
- cell.setColor(contact.color)
- }
- private func searchBarIsEmpty() -> Bool {
- return searchController.searchBar.text?.isEmpty ?? true
- }
- private func filterContentForSearchText(_ searchText: String, scope _: String = "All") {
- let contactsWithHighlights: [ContactWithSearchResults] = contacts.map { contact in
- let indexes = contact.contact.contains(searchText: searchText)
- return ContactWithSearchResults(contact: contact.contact, indexesToHighlight: indexes)
- }
- filteredContacts = contactsWithHighlights.filter { !$0.indexesToHighlight.isEmpty }
- tableView.reloadData()
- }
- }
- extension NewChatViewController: QrCodeReaderDelegate {
- func handleQrCode(_ code: String) {
- logger.info("decoded: \(code)")
- let check = dc_check_qr(mailboxPointer, code)!
- logger.info("got ver: \(check)")
- if dc_lot_get_state(check) == DC_QR_ASK_VERIFYGROUP {
- hud = ProgressHud("Synchronizing Account", in: view)
- DispatchQueue.global(qos: .userInitiated).async {
- let id = dc_join_securejoin(mailboxPointer, code)
- DispatchQueue.main.async {
- self.dismiss(animated: true) {
- self.coordinator?.showChat(chatId: Int(id))
- // self.chatDisplayer?.displayChatForId(chatId: Int(id))
- }
- }
- }
- } else {
- let alert = UIAlertController(title: "Not a valid group QR Code", message: code, preferredStyle: .alert)
- alert.addAction(UIAlertAction(title: "OK", style: .cancel, handler: { _ in
- self.dismiss(animated: true, completion: nil)
- }))
- present(alert, animated: true, completion: nil)
- }
- dc_lot_unref(check)
- }
- }
- extension NewChatViewController: ContactListDelegate {
- func deviceContactsImported() {
- contactIds = Utils.getContactIds()
- // tableView.reloadData()
- }
- func accessGranted() {
- deviceContactAccessGranted = true
- }
- func accessDenied() {
- deviceContactAccessGranted = false
- }
- private func showSettingsAlert() {
- let alert = UIAlertController(
- title: "Import Contacts from to your device",
- message: "To chat with contacts from your device open the settings menu and enable the Contacts option",
- preferredStyle: .alert
- )
- alert.addAction(UIAlertAction(title: "Open Settings", style: .default) { _ in
- UIApplication.shared.open(URL(string: UIApplication.openSettingsURLString)!)
- })
- alert.addAction(UIAlertAction(title: "Cancel", style: .cancel) { _ in
- })
- present(alert, animated: true)
- }
- }
- extension NewChatViewController: UISearchResultsUpdating {
- func updateSearchResults(for searchController: UISearchController) {
- if let searchText = searchController.searchBar.text {
- filterContentForSearchText(searchText)
- }
- }
- }
- struct ContactHighlights {
- let contactDetail: ContactDetail
- let indexes: [Int]
- }
- enum ContactDetail {
- case NAME
- case EMAIL
- }
- struct ContactWithSearchResults {
- let contact: MRContact
- let indexesToHighlight: [ContactHighlights]
- }
|