// // EditorPersonal.swift // Qmera // // Created by Akhmad Al Qindi Irsyam on 31/08/21. // import UIKit import AVKit import AVFoundation import QuickLook import NotificationBannerSwift import Photos import nuSDKService import SwiftLinkPreview import SDWebImage import PhotosUI public class EditorPersonal: UIViewController, ImageVideoPickerDelegate, UIGestureRecognizerDelegate, CLLocationManagerDelegate { @IBOutlet var wallpaperView: UIImageView! @IBOutlet var viewButton: UIView! @IBOutlet var constraintViewTextField: NSLayoutConstraint! @IBOutlet var buttonVoice: UIButton! @IBOutlet var buttonSendImage: UIButton! @IBOutlet var buttonSendPhoto: UIButton! @IBOutlet var buttonSendSticker: UIButton! @IBOutlet var buttonSendFile: UIButton! @IBOutlet var textFieldSend: CustomTextView! @IBOutlet var heightTextFieldSend: NSLayoutConstraint! @IBOutlet var buttonSendChat: UIButton! @IBOutlet var tableChatView: UITableView! @IBOutlet var constraintTopTextField: NSLayoutConstraint! @IBOutlet var constraintBottomAttachment: NSLayoutConstraint! @IBOutlet var viewTextfield: UIView! @IBOutlet weak var buttonAckConfidential: UIButton! @IBOutlet weak var constraintLeftTextField: NSLayoutConstraint! @IBOutlet weak var constraintBottomTableViewWithTextfield: NSLayoutConstraint! @IBOutlet weak var viewAttachment: UIStackView! public var dataPerson: [String: String?] = [:] var dataMessages: [[String: Any?]] = [] var dataDates: [String] = [] var users: [User] = [] public var dataMessageForward: [[String: Any?]]? var imageVideoPicker: ImageVideoPicker! var documentPicker: DocumentPicker! var currentIndexpath: IndexPath? var previewItem: NSURL? var reffId: String? var stickers = [String]() public var unique_l_pin = "" public var isContactCenter = false public var isRequestContactCenter = true public var fromNotification = false public var onGoingCC = false public var fPinContacCenter = "" public var complaintId = "" public var referenceMessageId = "" public var referenceChatDate = "" var channelContactCenter = "" var counter = 0 var dateStartCC = "" var markerCounter: String? var buttonScrollToBottom = UIButton() let indicatorCounterBSTB = UIView() let labelCounter = UILabel() var copySession = false var forwardSession = false var deleteSession = false var isSearching = false let containerMultpileSelectSession = UIView() let containerAction = UIView() var removed = false var isConfidential = false var isAck = false var isSecret = false let viewSticker = UIView() let containerLink = UIView() let containerPreviewReply = UIView() var bottomAnchorPreviewReply = NSLayoutConstraint() var blocking = "" var timeoutCC = Timer() var nowSelectedCategoryCC = "" var showToastTwiceClick = false var showToast30s = false var allowTyping = true var hapticSwipeLeft = false var listTimerCredential: [String: Int] = [:] var timerCredential: [String: Timer] = [:] let contactChatNav = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "contactChatNav") as! UINavigationController var searchBar: UISearchBar! var constraintBottomContainerMultpileSelectSession = NSLayoutConstraint() var titleSearchMatches: UILabel! var textSearch = "" var countMatchesSearch = 0 var lastScrollIdxSearch = 0 var buttonUp: UIButton! var buttonDown: UIButton! var multipleOffsetUp = 1 var lastOffsetDown = 1 var gettingDataMessage = true var showingLink = "" var isAlwaysHideLinkPreview = false var timerCheckLink: Timer? var timerFakeProgress: Timer? var showMenuContext = false var touchedSubview = UIView() var listViewOnSection: [UIView] = [] var fromVCAC = false var serviceIdCC = "" var isDirectCC = false var fakeProgMultip = 0 let maxFakeProgMultip = 2 var groupImages: [String:[ImageGrouping]] = [:] var titleText: String! var lastY: CGFloat = 0 var editVC = UIViewController() var editTextView = CustomTextView() var isEditingMessage = false var constraintBottomeditTextView: NSLayoutConstraint! var constraintHeighteditTextView: NSLayoutConstraint! var constraintBottomSendEditTV: NSLayoutConstraint! let locationManager = CLLocationManager() var longitude = "" var latitude = "" var isBlackCancelButton = false let buttonSendEdit = UIButton(frame: CGRect(x: 0, y: 0, width: 40, height: 40)) var audioPlayers: [IndexPath: AVAudioPlayer] = [:] var timers: [IndexPath: Timer] = [:] var playingIndexPath: IndexPath? var timerSearch: Timer? func offset() -> CGFloat{ guard let fontSize = Int(SecureUserDefaults.shared.value(forKey: "font_size") ?? "0") else { return 0 } return CGFloat(fontSize) } public override func viewDidDisappear(_ animated: Bool) { if self.isMovingFromParent { removeAllObjectBeforeDismissVC() } } public override func viewDidAppear(_ animated: Bool) { let navBarAppearance = UINavigationBarAppearance() navBarAppearance.configureWithOpaqueBackground() navBarAppearance.backgroundColor = self.traitCollection.userInterfaceStyle == .dark ? .blackDarkMode : .mainColor navigationController?.navigationBar.standardAppearance = navBarAppearance navigationController?.navigationBar.scrollEdgeAppearance = navBarAppearance navigationController?.navigationBar.isTranslucent = false navigationController?.navigationBar.backgroundColor = self.traitCollection.userInterfaceStyle == .dark ? .blackDarkMode : .mainColor navigationController?.navigationBar.tintColor = .white navigationController?.navigationBar.overrideUserInterfaceStyle = .dark navigationController?.navigationBar.barStyle = .black if self.navigationController?.isNavigationBarHidden ?? false { self.navigationController?.setNavigationBarHidden(false, animated: false) } updateProfile() gettingDataMessage = false let indexPath = tableChatView.indexPathsForVisibleRows?.first if indexPath != nil && currentIndexpath != nil { let headerRect = tableChatView.rectForHeader(inSection: indexPath!.section) let isPinned = headerRect.origin.y <= tableChatView.contentOffset.y if listViewOnSection.count != 0 && listViewOnSection.count - 1 == indexPath!.section && isPinned { let sect = listViewOnSection.count - 1 < currentIndexpath!.section ? listViewOnSection.count - 1 : currentIndexpath!.section let headerView = listViewOnSection[sect] headerView.isHidden = true } } } public override func viewDidLoad() { super.viewDidLoad() // navigationController?.navigationBar.topItem?.title = "" Utils.addBackground(view: contactChatNav.view) if let dataWall = UserDefaults.standard.data(forKey: "chatWallpaper") { wallpaperView.image = UIImage(data: UserDefaults.standard.data(forKey: "chatWallpaper")!) } else { wallpaperView.isHidden = true } if Nexilis.fromMAB { Nexilis.floatingButton.isHidden = true } viewButton.layer.shadowColor = self.traitCollection.userInterfaceStyle == .dark ? UIColor.white.cgColor : UIColor.gray.cgColor viewButton.layer.shadowOpacity = 1 viewButton.layer.shadowOffset = .zero viewButton.layer.shadowRadius = 3 viewButton.addTopBorder(with: UIColor.lightGray, andWidth: 1.0) // buttonVoice.setImage(resizeImage(image: UIImage(named: "Voice-Record", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)), for: .normal) viewAttachment.backgroundColor = .white buttonSendImage.setImage(resizeImage(image: UIImage(named: "Send-Image", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(self.traitCollection.userInterfaceStyle == .dark ? .white : .mainColor), for: .normal) buttonSendPhoto.setImage(resizeImage(image: UIImage(named: "Camera", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(self.traitCollection.userInterfaceStyle == .dark ? .white : .mainColor), for: .normal) buttonSendSticker.setImage(resizeImage(image: UIImage(named: "Sticker---Emoji", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(self.traitCollection.userInterfaceStyle == .dark ? .white : .mainColor), for: .normal) buttonSendFile.setImage(resizeImage(image: UIImage(named: "File---Documents", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(self.traitCollection.userInterfaceStyle == .dark ? .white : .mainColor), for: .normal) buttonSendChat.setImage(resizeImage(image: self.traitCollection.userInterfaceStyle == .dark ? UIImage(named: "Send-(White)", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!.withTintColor(.blackDarkMode) : UIImage(named: "Send-(White)", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal), for: .normal) buttonSendChat.circle() buttonSendChat.addTarget(self, action: #selector(sendTapped), for: .touchUpInside) buttonSendChat.backgroundColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .mainColor if isContactCenter { buttonAckConfidential.isHidden = true constraintLeftTextField.constant = 20 } else { buttonAckConfidential.circle() buttonAckConfidential.addTarget(self, action: #selector(showChooserACKConfidential), for: .touchUpInside) buttonAckConfidential.tintColor = self.traitCollection.userInterfaceStyle == .dark ? .blackDarkMode : .white buttonAckConfidential.backgroundColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .mainColor } textFieldSend.backgroundColor = .white textFieldSend.layer.cornerRadius = textFieldSend.maxCornerRadius() textFieldSend.layer.borderWidth = 1.0 textFieldSend.text = "Send message".localized() textFieldSend.textColor = UIColor.lightGray textFieldSend.tintColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .black textFieldSend.textContainerInset = UIEdgeInsets(top: 12, left: 20, bottom: 11, right: 40) textFieldSend.layer.borderColor = UIColor.lightGray.withAlphaComponent(0.5).cgColor textFieldSend.font = UIFont.systemFont(ofSize: 12 + offset()) textFieldSend.delegate = self textFieldSend.customDelegate = self textFieldSend.allowsEditingTextAttributes = true navigationItem.rightBarButtonItem?.tintColor = UIColor.secondaryColor imageVideoPicker = ImageVideoPicker(presentationController: self, delegate: self) documentPicker = DocumentPicker(presentationController: self, delegate: self) let fm = FileManager.default if Bundle.resourceBundle(for: Nexilis.self).url(forResource: "pb_gpt_bot", withExtension: "gif") != nil { let path = Bundle.resourceBundle(for: Nexilis.self).resourcePath! //resourcesMediaBundle let items = try! fm.contentsOfDirectory(atPath: path) for item in items { if item.hasPrefix("sticker") { stickers.append(item) } } } else { let path = Bundle.resourcesMediaBundle(for: Nexilis.self).resourcePath! //resourcesMediaBundle let items = try! fm.contentsOfDirectory(atPath: path) for item in items { if item.hasPrefix("sticker") { stickers.append(item) } } } tableChatView.register(UITableViewCell.self, forCellReuseIdentifier: "cellEditorPersonal") loadData() setRightButtonItem() let center: NotificationCenter = NotificationCenter.default center.addObserver(self, selector: #selector(keyboardWillShow(notification:)), name: UIResponder.keyboardWillShowNotification, object: nil) center.addObserver(self, selector: #selector(keyboardWillHide(notification:)), name: UIResponder.keyboardWillHideNotification, object: nil) center.addObserver(self, selector: #selector(onReceiveMessage(notification:)), name: NSNotification.Name(rawValue: Nexilis.listenerReceiveChat), object: nil) center.addObserver(self, selector: #selector(onStatusChat(notification:)), name: NSNotification.Name(rawValue: Nexilis.listenerStatusChat), object: nil) center.addObserver(self, selector: #selector(onUploadChat(notification:)), name: NSNotification.Name(rawValue: "onUploadChat"), object: nil) center.addObserver(self, selector: #selector(onUnfriend(notification:)), name: NSNotification.Name(rawValue: "onUpdatePersonInfo"), object: nil) center.addObserver(self, selector: #selector(onTyping(notification:)), name: NSNotification.Name(rawValue: Nexilis.listenerTypingChat), object: nil) center.addObserver(self, selector: #selector(onFailedSendMessage(notification:)), name: NSNotification.Name(rawValue: Nexilis.failedSendMessage), object: nil) locationManager.delegate = self locationManager.requestWhenInUseAuthorization() DispatchQueue.global().async { [self] in // Check if location services are enabled if CLLocationManager.locationServicesEnabled() { locationManager.desiredAccuracy = kCLLocationAccuracyBest locationManager.startUpdatingLocation() } else { print("Location services are not enabled.") } } if dataMessageForward != nil { for i in 0.. 0 && dataMessages.count >= counter { markerCounter = dataMessages[dataMessages.count - counter]["message_id"] as? String } if !referenceMessageId.isEmpty { if dataMessages.firstIndex(where: {$0["message_id"] as? String == referenceMessageId} ) != 0 { DispatchQueue.main.async { let section = self.dataDates.firstIndex(of: self.referenceChatDate) let row = self.dataMessages.filter({$0["chat_date"] as? String ?? "" == self.referenceChatDate}).firstIndex(where: { $0["message_id"] as? String == self.referenceMessageId}) if row != nil && section != nil { let indexPath = IndexPath(row: row!, section: section!) self.tableChatView.scrollToRow(at: indexPath, at: .middle, animated: false) self.tableChatView.cellForRow(at: indexPath)?.contentView.backgroundColor = .yellow DispatchQueue.main.asyncAfter(deadline: .now() + 1, execute: { self.tableChatView.cellForRow(at: indexPath)?.contentView.backgroundColor = .clear }) } } } } else if counter != 0 && dataMessages.count >= counter { if dataMessages.firstIndex(where: {$0["message_id"] as? String == markerCounter} ) != 0 { DispatchQueue.main.async { let data = self.dataMessages.filter({ $0["message_id"] as? String == self.markerCounter }) if data.count > 0 { let section = self.dataDates.firstIndex(of: data[0]["chat_date"] as? String ?? "") let row = self.dataMessages.filter({$0["chat_date"] as? String ?? "" == data[0]["chat_date"] as? String ?? ""}).firstIndex(where: { $0["message_id"] as? String == self.markerCounter}) self.tableChatView.scrollToRow(at: IndexPath(row: row!, section: section!), at: .bottom, animated: false) } } } else { tableChatView.scrollToTop() } DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { [self] in if currentIndexpath == nil && counter != 0 { let idMe = User.getMyPin() as String? if let idx = dataMessages.firstIndex(where: { $0["message_id"] as? String == markerCounter}) { for i in idx.. 0 { var second = data.value var timer = Timer() timerCredential[data.key] = timer timer = Timer.scheduledTimer(withTimeInterval: 1, repeats: true, block: {_ in second -= 1 self.listTimerCredential[data.key] = second let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == data.key }) if (idx != nil) { let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as? String ?? "") let row = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataMessages[idx!]["chat_date"] as? String ?? ""}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[idx!]["message_id"] as? String }) if second == 0 { timer.invalidate() self.listTimerCredential.removeValue(forKey: data.key) self.timerCredential.removeValue(forKey: data.key) SecureUserDefaults.shared.removeValue(forKey: data.key) let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == data.key}) if idx != nil { self.dataMessages[idx!]["lock"] = "2" self.dataMessages[idx!]["reff_id"] = "" } DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(data.key)'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } } if row != nil && section != nil { self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none) } } }) } } } private func chatbot() { let containerChatbot = UIView() self.view.addSubview(containerChatbot) containerChatbot.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ containerChatbot.leadingAnchor.constraint(equalTo: self.view.leadingAnchor), containerChatbot.trailingAnchor.constraint(equalTo: self.view.trailingAnchor), containerChatbot.bottomAnchor.constraint(equalTo: self.view.bottomAnchor), containerChatbot.heightAnchor.constraint(equalToConstant: 120) ]) containerChatbot.backgroundColor = .secondaryColor.withAlphaComponent(0.8) let labelChatbot = UILabel() containerChatbot.addSubview(labelChatbot) labelChatbot.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ labelChatbot.centerYAnchor.constraint(equalTo: containerChatbot.centerYAnchor), labelChatbot.centerXAnchor.constraint(equalTo: containerChatbot.centerXAnchor), ]) labelChatbot.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .black labelChatbot.font = UIFont.systemFont(ofSize: 12 + offset()).bold labelChatbot.text = "Interactive chatbot. Coming soon".localized() } private func changeAppBar() { let viewAppBar = UIView() viewAppBar.frame.size = CGSize(width: self.view.frame.size.width, height: 44) if !isSearching { let imageProfile = UIImageView(frame: CGRect(x: 0, y: 7, width: 30, height: 30)) imageProfile.circle() imageProfile.clipsToBounds = true let pictureImage = dataPerson["picture"]! var count = 0 if isContactCenter { if fPinContacCenter.isEmpty && isRequestContactCenter { getImage(name: dataPerson["picture"]!!, placeholderImage: UIImage(systemName: "person.circle.fill")!) { result, isDownloaded, image in imageProfile.image = image } viewAppBar.addSubview(imageProfile) } else { if users.count == 1 { viewAppBar.addSubview(imageProfile) getImage(name: users[0].thumb, placeholderImage: UIImage(systemName: "person.circle.fill")!) { result, isDownloaded, image in imageProfile.image = image imageProfile.contentMode = .scaleAspectFit } } else { for user in users { if count == 3 { count += 1 continue } if count == 0 { let pictures = UIImageView(frame: CGRect(x: 0, y: 7, width: 30, height: 30)) pictures.circle() pictures.clipsToBounds = true viewAppBar.addSubview(pictures) getImage(name: user.thumb, placeholderImage: UIImage(systemName: "person.circle.fill")!) { result, isDownloaded, image in pictures.image = image pictures.contentMode = .scaleAspectFit } } else { let pictures = UIImageView(frame: CGRect(x: count * 20 , y: 7, width: 30, height: 30)) pictures.circle() pictures.clipsToBounds = true viewAppBar.addSubview(pictures) getImage(name: user.thumb, placeholderImage: UIImage(systemName: "person.circle.fill")!) { result, isDownloaded, image in pictures.image = image pictures.contentMode = .scaleAspectFit } } count += 1 } } } } else if dataPerson["f_pin"]!! == "-999" { viewAppBar.addSubview(imageProfile) if !Utils.getIconDock().isEmpty { let urlString = Utils.getUrlDock()! if let cachedImage = ImageCache.shared.image(forKey: urlString) { let imageData = cachedImage imageProfile.image = imageData } else { DispatchQueue.global().async{ Utils.fetchDataWithCookiesAndUserAgent(from: URL(string: urlString)!) { data, response, error in guard let data = data, error == nil else { return } DispatchQueue.main.async() { if UIImage(data: data) != nil { let imageData = UIImage(data: data)! imageProfile.image = imageData ImageCache.shared.save(image: imageData, forKey: urlString) } } } } } } else { imageProfile.image = UIImage(named: "pb_button", in: Bundle.resourceBundle(for: Nexilis.self), with: nil) } imageProfile.contentMode = .scaleAspectFit } else if (pictureImage != "" && pictureImage != nil) { viewAppBar.addSubview(imageProfile) imageProfile.setImage(name: pictureImage!) imageProfile.contentMode = .scaleAspectFill } else { viewAppBar.addSubview(imageProfile) imageProfile.image = UIImage(systemName: "person") imageProfile.contentMode = .scaleAspectFit imageProfile.backgroundColor = .lightGray } var titleNavigation = UILabel(frame: CGRect(x: 35, y: 0, width: viewAppBar.frame.size.width - 250, height: 44)) if blocking == "-1" || blocking == "1" { titleNavigation = UILabel(frame: CGRect(x: 35, y: 0, width: viewAppBar.frame.size.width - 150, height: 44)) } else if isContactCenter { titleNavigation = UILabel(frame: CGRect(x: 35, y: 0, width: viewAppBar.frame.size.width - 150, height: 44)) if users.count > 0 { titleNavigation = UILabel(frame: CGRect(x: 35 * (CGFloat(users.count)) - (CGFloat((users.count - 1) * 15)), y: 0, width: viewAppBar.frame.size.width - 150 - (35 * (CGFloat(users.count - 1)) - (CGFloat((users.count - 1) * 15))), height: 44)) } } viewAppBar.addSubview(titleNavigation) if ((User.isOfficial(official_account: (dataPerson["isOfficial"] ?? "")!) || User.isOfficialRegular(official_account: (dataPerson["isOfficial"] ?? "")!)) && !isContactCenter) || ((User.isOfficial(official_account: (dataPerson["isOfficial"] ?? "")!) || User.isOfficialRegular(official_account: (dataPerson["isOfficial"] ?? "")!)) && fPinContacCenter.isEmpty) { var name = dataPerson["name"]!! if (isContactCenter) { name = name + " " + "Contact Center".localized() titleNavigation.text = name } else { titleNavigation.set(image: UIImage(named: "ic_official_flag", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, with: " \(name)", size: 15, y: -4) } } else if User.isVerified(official_account: (dataPerson["isOfficial"] ?? "")!) && !isContactCenter { let name = dataPerson["name"]!! titleNavigation.set(image: UIImage(named: "ic_verified", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, with: " \(name)", size: 15, y: -4) } else if User.isInternal(userType: (dataPerson["user_type"] ?? "")!) && !isContactCenter { let name = dataPerson["name"]!! titleNavigation.set(image: UIImage(named: "ic_internal", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, with: " \(name)", size: 15, y: -4) } else { if !isContactCenter { titleNavigation.text = dataPerson["name"] as? String } else { if users.count == 1 { titleNavigation.text = users[0].fullName } else { var stringName = "" for user in users { if stringName.isEmpty { stringName = user.fullName } else { stringName += ", \(user.fullName)" } } titleNavigation.text = stringName } } } titleNavigation.textColor = .white titleNavigation.font = UIFont.systemFont(ofSize: 12 + offset()).bold navigationItem.titleView = viewAppBar titleText = titleNavigation.text } else { searchBar = UISearchBar() searchBar.autocapitalizationType = .none searchBar.delegate = self searchBar.searchTextField.tintColor = .mainColor searchBar.searchTextField.textColor = .mainColor searchBar.showsCancelButton = false // searchBar.setMagnifyingGlassColorTo(color: .white) // searchBar.updateHeight(height: 36, radius: 18) searchBar.setImage(UIImage(), for: .search, state: .normal) searchBar.setPositionAdjustment(UIOffset(horizontal: 10, vertical: 0), for: .search) searchBar.setCustomBackgroundImage(image: UIImage(named: self.traitCollection.userInterfaceStyle == .dark ? "nx_search_bar_dark" : "nx_search_bar", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!) navigationItem.titleView = searchBar self.definesPresentationContext = true } if copySession || forwardSession || deleteSession || isSearching { navigationItem.hidesBackButton = true navigationController?.interactivePopGestureRecognizer?.isEnabled = false } else { navigationItem.hidesBackButton = false navigationController?.interactivePopGestureRecognizer?.isEnabled = true } viewAppBar.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(seeProfileTapped))) } private func getDataProfile(fPin: String) { var query = "SELECT f_pin, first_name || ' ' || last_name, official_account, image_id, device_id, offline_mode, user_type FROM BUDDY where f_pin = '\(fPin)'" if (isContactCenter && isRequestContactCenter) { query = "SELECT group_id, f_name, official, image_id FROM GROUPZ where group_type = 1 AND official = 1" } Database.shared.database?.inTransaction({ (fmdb, rollback) in do { if let cursorData = Database.shared.getRecords(fmdb: fmdb, query: query) { if cursorData.next() { dataPerson["f_pin"] = cursorData.string(forColumnIndex: 0) dataPerson["name"] = cursorData.string(forColumnIndex: 1)?.trimmingCharacters(in: .whitespaces) dataPerson["picture"] = cursorData.string(forColumnIndex: 3) dataPerson["isOfficial"] = cursorData.string(forColumnIndex: 2) if isContactCenter && isRequestContactCenter { dataPerson["user_type"] = "0" } else { dataPerson["user_type"] = cursorData.string(forColumnIndex: 6) } } else { dataPerson["f_pin"] = "-999" dataPerson["name"] = "Bot" dataPerson["picture"] = "" dataPerson["isOfficial"] = "" dataPerson["deviceId"] = "" dataPerson["isOffline"] = "0" dataPerson["user_type"] = "0" } cursorData.close() } } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } private func addDataMessage() { multipleOffsetUp += 1 let queryCount = "SELECT COUNT(*) FROM MESSAGE where (f_pin='\(dataPerson["f_pin"]!!)' or l_pin='\(dataPerson["f_pin"]!!)') AND (message_scope_id = '3' OR message_scope_id = '18') AND is_call_center = 0" let query = "SELECT message_id, f_pin, l_pin, message_scope_id, server_date, status, message_text, audio_id, video_id, image_id, thumb_id, read_receipts, chat_id, file_id, attachment_flag, reff_id, lock, is_stared, blog_id, credential, is_call_center, call_center_id, opposite_pin, last_edited, gif_id, is_forwarded_message FROM MESSAGE where (f_pin='\(dataPerson["f_pin"]!!)' or l_pin='\(dataPerson["f_pin"]!!)') AND (message_scope_id = '3' OR message_scope_id = '18') AND is_call_center = 0 order by server_date asc LIMIT CASE WHEN (\(queryCount))-\(dataMessages.count)>=20 THEN 20*\(multipleOffsetUp-1) ELSE (\(queryCount))-\(dataMessages.count) END OFFSET CASE WHEN (\(queryCount))>=\(20*multipleOffsetUp) THEN (\(queryCount))-\(20*multipleOffsetUp) ELSE 0 END" Database.shared.database?.inTransaction({ (fmdb, rollback) in do { if let cursorData = Database.shared.getRecords(fmdb: fmdb, query: query) { var tempData: [[String: Any?]] = [] while cursorData.next() { var row: [String: Any?] = [:] row["message_id"] = cursorData.string(forColumnIndex: 0) row["f_pin"] = cursorData.string(forColumnIndex: 1) row["l_pin"] = cursorData.string(forColumnIndex: 2) row["message_scope_id"] = cursorData.string(forColumnIndex: 3) row["server_date"] = cursorData.string(forColumnIndex: 4) row["status"] = cursorData.string(forColumnIndex: 5) row["message_text"] = cursorData.string(forColumnIndex: 6) row["audio_id"] = cursorData.string(forColumnIndex: 7) row["video_id"] = cursorData.string(forColumnIndex: 8) row["image_id"] = cursorData.string(forColumnIndex: 9) row["thumb_id"] = cursorData.string(forColumnIndex: 10) row["read_receipts"] = cursorData.string(forColumnIndex: 11) row["chat_id"] = cursorData.string(forColumnIndex: 12) row["file_id"] = cursorData.string(forColumnIndex: 13) row["attachment_flag"] = cursorData.string(forColumnIndex: 14) row["reff_id"] = cursorData.string(forColumnIndex: 15) row["lock"] = cursorData.string(forColumnIndex: 16) row["is_stared"] = cursorData.string(forColumnIndex: 17) row["blog_id"] = cursorData.string(forColumnIndex: 18) row["credential"] = cursorData.string(forColumnIndex: 19) row[TypeDataMessage.is_call_center] = cursorData.string(forColumnIndex: 20) row[TypeDataMessage.call_center_id] = cursorData.string(forColumnIndex: 21) row[TypeDataMessage.opposite_pin] = cursorData.string(forColumnIndex: 22) row[TypeDataMessage.last_edit] = cursorData.longLongInt(forColumnIndex: 23) row[TypeDataMessage.gif_id] = cursorData.string(forColumnIndex: 24) row[TypeDataMessage.is_forwarded] = Int(cursorData.int(forColumnIndex: 25)) if let cursorStatus = Database.shared.getRecords(fmdb: fmdb, query: "SELECT status FROM MESSAGE_STATUS WHERE message_id='\(row["message_id"] as? String ?? "")'") { while cursorStatus.next() { row["status"] = cursorStatus.string(forColumnIndex: 0) } cursorStatus.close() } let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let videoURL = URL(fileURLWithPath: dirPath).appendingPathComponent(row["video_id"] as? String ?? "") let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(row["file_id"] as? String ?? "") if ((row["video_id"] as? String ?? "") != "") { if FileManager.default.fileExists(atPath: videoURL.path) || FileEncryption.shared.isSecureExists(filename: videoURL.lastPathComponent){ row["progress"] = 100.0 } else { row["progress"] = 0.0 } } else { if FileManager.default.fileExists(atPath: fileURL.path) || FileEncryption.shared.isSecureExists(filename: fileURL.lastPathComponent){ row["progress"] = 100.0 } else { row["progress"] = 0.0 } } } row["chat_date"] = chatDate(stringDate: row["server_date"] as? String ?? "") row["isSelected"] = false if row["credential"] != nil && row["credential"] as? String ?? "" == "1" { let idMe = User.getMyPin()! if row["f_pin"] as? String ?? "" == idMe { let second = getSecondsDifferenceFromTwoDates(start: Date.init(milliseconds: Int64(row["server_date"] as? String ?? "")!), end: Date()) if second > 60 { listTimerCredential[row["message_id"] as? String ?? ""] = 0 row["lock"] = "2" row["reff_id"] = "" DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(row["message_id"] as? String ?? "")'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } } else { let second = 60 - second listTimerCredential[row["message_id"] as? String ?? ""] = second } } else { let hasMessageId: String? = SecureUserDefaults.shared.value(forKey: row["message_id"] as? String ?? "") ?? nil if hasMessageId != nil { let second = getSecondsDifferenceFromTwoDates(start: Date.init(milliseconds: Int64(hasMessageId!)!), end: Date()) if second > 60 { listTimerCredential[row["message_id"] as? String ?? ""] = 0 row["lock"] = "2" row["reff_id"] = "" DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(row["message_id"] as? String ?? "")'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } } else { let second = 60 - second listTimerCredential[row["message_id"] as? String ?? ""] = second } } else { SecureUserDefaults.shared.set("\(Date().currentTimeMillis())", forKey: row["message_id"] as? String ?? "") listTimerCredential[row["message_id"] as? String ?? ""] = 60 } } } tempData.append(row) } if tempData.count != 0 && (dataMessages.firstIndex(where: { $0["message_id"] as? String == tempData[0]["message_id"] as? String }) == nil) { let lastIndex = tempData.count - 1 for i in 0..=20 THEN 20 ELSE (\(queryCount))-\(dataMessages.count) END OFFSET CASE WHEN (\(queryCount))>=\(20*multipleOffsetUp) THEN (\(queryCount))-\(20*multipleOffsetUp) ELSE 0 END" var query = "SELECT message_id, f_pin, l_pin, message_scope_id, server_date, status, message_text, audio_id, video_id, image_id, thumb_id, read_receipts, chat_id, file_id, attachment_flag, reff_id, lock, is_stared, blog_id, credential, is_call_center, call_center_id, opposite_pin, last_edited, gif_id, is_forwarded_message FROM MESSAGE where (f_pin='\(dataPerson["f_pin"]!!)' or l_pin='\(dataPerson["f_pin"]!!)') AND (message_scope_id = '3' OR message_scope_id = '18') AND is_call_center = 0 order by server_date asc" if isContactCenter { if complaintId.isEmpty { query = "SELECT message_id, f_pin, l_pin, message_scope_id, server_date, status, message_text, audio_id, video_id, image_id, thumb_id, read_receipts, chat_id, file_id, attachment_flag, reff_id, lock, is_stared FROM MESSAGE where (f_pin='\(dataPerson["f_pin"]!!)' or l_pin='\(dataPerson["f_pin"]!!)') AND message_scope_id = '5' AND broadcast_flag = 0 AND is_call_center = 1 order by server_date asc" } else { query = "SELECT message_id, f_pin, l_pin, message_scope_id, server_date, status, message_text, audio_id, video_id, image_id, thumb_id, read_receipts, chat_id, file_id, attachment_flag, reff_id, lock, is_stared FROM MESSAGE where message_scope_id = '5' AND broadcast_flag = 0 AND is_call_center = 1 AND call_center_id = '\(complaintId)' order by server_date asc" } if isRequestContactCenter && !isDirectCC { viewButton.isHidden = true viewTextfield.isHidden = true var row: [String: Any?] = [:] row["f_pin"] = nil row["message_id"] = "" row["chat_date"] = "Today".localized() let listStringName: [String] = ["Messaging".localized(), "Secure SMS".localized(), "VoIP Call".localized(), "Email".localized(), "Video Call".localized(), "GSM Call".localized(), "GPT Chatbot".localized(), "WhatsApp"] var data : [CategoryCC] = [] let channels : [String] = ["0", "4", "1", "3", "2", "5", "7", "6"] if Utils.getDefaultCC() == "No" { let category = CategoryCC.getDatafromParent(parent: CategoryCC.default_parent) for i in 0.. 60 { listTimerCredential[row["message_id"] as? String ?? ""] = 0 row["lock"] = "2" row["reff_id"] = "" DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(row["message_id"] as? String ?? "")'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } } else { let second = 60 - second listTimerCredential[row["message_id"] as? String ?? ""] = second } } else { let hasMessageId: String? = SecureUserDefaults.shared.value(forKey: row["message_id"] as? String ?? "") ?? nil if hasMessageId != nil { let second = getSecondsDifferenceFromTwoDates(start: Date.init(milliseconds: Int64(hasMessageId!)!), end: Date()) if second > 60 { listTimerCredential[row["message_id"] as? String ?? ""] = 0 row["lock"] = "2" row["reff_id"] = "" DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(row["message_id"] as? String ?? "")'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } } else { let second = 60 - second listTimerCredential[row["message_id"] as? String ?? ""] = second } } else { SecureUserDefaults.shared.set("\(Date().currentTimeMillis())", forKey: row["message_id"] as? String ?? "") listTimerCredential[row["message_id"] as? String ?? ""] = 60 } } } if (dataMessages.count == 0 || dataMessages.last!["f_pin"] as? String ?? "" == row["f_pin"] as? String ?? "") && tempImages.count <= 30 && row["image_id"] != nil && !(row["image_id"] as? String ?? "").isEmpty && (row["message_text"] as? String ?? "").isEmpty && (row["reff_id"] as? String ?? "").isEmpty && (row["credential"] as? String ?? "") != "1" && (row["read_receipts"] as? String ?? "") != "8" { if tempImages.count != 0 && getSecondsDifferenceFromTwoDates(start: Date.init(milliseconds: Int64(tempImages.last!.time)!), end: Date.init(milliseconds: Int64(row["server_date"] as? String ?? "")!))/60 >= 11 { if tempImages.count >= 4 { groupImages[tempImages[0].messageId] = tempImages if let idxTemp = dataMessages.firstIndex(where: { $0["message_id"] as? String ?? "" == tempImages[0].messageId }) { for _ in 1..= 4 { groupImages[tempImages[0].messageId] = tempImages if let idxTemp = dataMessages.firstIndex(where: { $0["message_id"] as? String ?? "" == tempImages[0].messageId }) { for _ in 1..= 4 { if tempImages.count > 30 { tempImages.removeSubrange(30.. Int { let diff = Int(end.timeIntervalSince1970 - start.timeIntervalSince1970) let hours = diff / 3600 let seconds = (diff - hours * 3600) return seconds } func chatDate(stringDate: String) -> String { let date = Date(milliseconds: Int64(stringDate)!) let calendar = Calendar.current if (calendar.isDateInToday(date)) { if !dataDates.contains("Today".localized()){ dataDates.append("Today".localized()) } return "Today".localized() } else { let startOfNow = calendar.startOfDay(for: Date()) let startOfTimeStamp = calendar.startOfDay(for: date) let components = calendar.dateComponents([.day], from: startOfNow, to: startOfTimeStamp) let day = -(components.day!) if day == 1{ if !dataDates.contains("Yesterday".localized()){ dataDates.append("Yesterday".localized()) } return "Yesterday".localized() } else if day < 7 { let formatter = DateFormatter() formatter.dateFormat = "EEEE" let lang: String = SecureUserDefaults.shared.value(forKey: "i18n_language") ?? "en" if lang == "id" { formatter.locale = NSLocale(localeIdentifier: "id") as Locale? } if !dataDates.contains(formatter.string(from: date)){ dataDates.append(formatter.string(from: date)) } return formatter.string(from: date) } else { let formatter = DateFormatter() formatter.dateFormat = "EE, dd MMM" let lang: String = SecureUserDefaults.shared.value(forKey: "i18n_language") ?? "en" if lang == "id" { formatter.locale = NSLocale(localeIdentifier: "id") as Locale? } let stringFormat = formatter.string(from: date as Date) if !dataDates.contains(stringFormat){ dataDates.append(stringFormat) } return stringFormat } } } func updateProgress(_ data: [AnyHashable : Any]){ var isImage = false var idx = dataMessages.lastIndex(where: { $0["video_id"] as? String == data["name"] as? String || $0["video_id"] as? String == data["video_id"] as? String }) if (idx == nil) { idx = dataMessages.lastIndex(where: { $0["image_id"] as? String == data["name"] as? String || $0["image_id"] as? String == data["image_id"] as? String }) isImage = true } if (idx != nil) { let section = dataDates.firstIndex(of: dataMessages[idx!]["chat_date"] as? String ?? "") if section == nil { return } let row = dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[section!]}).firstIndex(where: { $0["message_id"] as? String == dataMessages[idx!]["message_id"] as? String}) if row == nil { return } DispatchQueue.main.async { let indexPath = IndexPath(row: row!, section: section!) if(self.fakeProgMultip < self.maxFakeProgMultip){ self.fakeProgMultip = self.fakeProgMultip + 1 } let fakeProgress = Double(self.fakeProgMultip) * (100.0 / Double(self.maxFakeProgMultip)) let progress = max(data["progress"] as! Double, fakeProgress) if(data["progress"] as! Double == 100.0){ self.fakeProgMultip = 0 } if let cell = self.tableChatView.cellForRow(at: indexPath) { for view in cell.contentView.subviews { if !(view is UITextView) && !(view is UIImageView) { for viewInContainer in view.subviews { if viewInContainer is UIImageView { if viewInContainer.subviews.count == 0 { return } var containerView : UIView? if (isImage) { containerView = viewInContainer.subviews[0] } else if viewInContainer.subviews.count > 1 { containerView = viewInContainer.subviews[1] } if let loading = containerView?.layer.sublayers?[1] as? CAShapeLayer { loading.strokeEnd = CGFloat(progress / 100) if (progress == 100.0) { self.dataMessages[idx!]["progress"] = progress self.tableChatView.reloadRows(at: [indexPath], with: .none) } } } } } } } } } else { idx = dataMessages.lastIndex(where: { $0["file_id"] as? String == data["name"] as? String || $0["file_id"] as? String == data["file_id"] as? String }) if (idx != nil) { let section = dataDates.firstIndex(of: dataMessages[idx!]["chat_date"] as? String ?? "") if section == nil { return } let row = dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[section!]}).firstIndex(where: { $0["message_id"] as? String == dataMessages[idx!]["message_id"] as? String}) if row == nil { return } DispatchQueue.main.async { let indexPath = IndexPath(row: row!, section: section!) if(self.fakeProgMultip < self.maxFakeProgMultip){ self.fakeProgMultip = self.fakeProgMultip + 1 } let fakeProgress = Double(self.fakeProgMultip) * (100.0 / Double(self.maxFakeProgMultip)) let progress = max(data["progress"] as! Double, fakeProgress) if(data["progress"] as! Double == 100.0){ self.fakeProgMultip = 0 } if let cell = self.tableChatView.cellForRow(at: indexPath) { for view in cell.contentView.subviews { if !(view is UITextView) && !(view is UIImageView) { for viewSubviews in view.subviews { if !(viewSubviews is UITextView) { for viewInContainer in viewSubviews.subviews { if !(viewInContainer is UITextView) && !(viewInContainer is UIImageView) { if let cont = viewInContainer.layer.sublayers { if cont.count < 2 { return } } if let layers = viewInContainer.layer.sublayers { if let loading = layers [1] as? CAShapeLayer { loading.strokeEnd = CGFloat(progress / 100) if (progress == 100.0) { self.dataMessages[idx!]["progress"] = progress self.tableChatView.reloadRows(at: [indexPath], with: .none) } } } } } } } } } } } } } } @objc func onUploadChat(notification: NSNotification) { let data:[AnyHashable : Any] = notification.userInfo! updateProgress(data) } @objc func onReceiveMessage(notification: NSNotification) { DispatchQueue.main.async { [self] in let data:[AnyHashable : Any] = notification.userInfo! if let dataMessage = data["message"] as? TMessage { let chatData = dataMessage.mBodies if (dataMessage.getCode() == CoreMessage_TMessageCode.PUSH_MEMBER_ROOM_CONTACT_CENTER && isContactCenter) { let data = dataMessage.getBody(key: CoreMessage_TMessageKey.DATA) if !data.isEmpty { if let jsonArray = try! JSONSerialization.jsonObject(with: data.data(using: String.Encoding.utf8)!, options: JSONSerialization.ReadingOptions()) as? [AnyObject] { var members = "" let idMe = User.getMyPin()! var user : [User] = [] for json in jsonArray { if "\(json)" != idMe { if members.isEmpty { members = "\(json)" } else { members += ",\(json)" } if let userData = User.getData(pin: "\(json)") { user.append(userData) } else { Nexilis.addFriend (fpin: "\(json)") { result in DispatchQueue.main.async { if result { let userData = User.getData(pin: "\(json)")! user.append(userData) } else { let imageView = UIImageView(image: UIImage(systemName: "xmark.circle.fill")) imageView.tintColor = .white let banner = FloatingNotificationBanner(title: "Server busy, please try again later".localized(), subtitle: nil, titleFont: UIFont.systemFont(ofSize: 16), titleColor: nil, titleTextAlign: .left, subtitleFont: nil, subtitleColor: nil, subtitleTextAlign: nil, leftView: imageView, rightView: nil, style: .danger, colors: nil, iconPosition: .center) banner.show() } } } } } } self.users = user self.fPinContacCenter = members self.changeAppBar() SecureUserDefaults.shared.set(members, forKey: "inEditorPersonal") } } } else if (dataMessage.getCode() == CoreMessage_TMessageCode.ACCEPT_CALL_CENTER) { if !self.isRequestContactCenter || !isContactCenter { return } SecureUserDefaults.shared.set(dataMessage.getBody(key: CoreMessage_TMessageKey.F_PIN), forKey: "inEditorPersonal") let date = Date() let formatter = DateFormatter() formatter.dateFormat = "HH:mm" formatter.locale = NSLocale(localeIdentifier: "id") as Locale? self.fPinContacCenter = dataMessage.getBody(key: CoreMessage_TMessageKey.F_PIN) self.complaintId = dataMessage.getBody(key: CoreMessage_TMessageKey.DATA) self.channelContactCenter = dataMessage.getBody(key: CoreMessage_TMessageKey.CHANNEL) var row: [String: Any?] = [:] row["category_cc"] = "You are connecting with ".localized() + dataMessage.getBody(key: CoreMessage_TMessageKey.F_DISPLAY_NAME).trimmingCharacters(in: .whitespaces) + " at ".localized() + formatter.string(from: date as Date) + ".\n" + "In order to improve our service, all conversations will be recorded\naccording to state regulations".localized() row["message_id"] = "" row["message_text"] = "You are connecting with ".localized() + dataMessage.getBody(key: CoreMessage_TMessageKey.F_DISPLAY_NAME).trimmingCharacters(in: .whitespaces) + " at ".localized() + formatter.string(from: date as Date) + ".\n" + "In order to improve our service, all conversations will be recorded\naccording to state regulations".localized() row["chat_date"] = "Today".localized() self.dataMessages.append(row) self.users.append(User.getData(pin: dataMessage.getBody(key: CoreMessage_TMessageKey.F_PIN))!) self.changeAppBar() self.setRightButtonItem() self.dateStartCC = "\(Date().currentTimeMillis())" self.tableChatView.insertRows(at: [IndexPath(row: self.dataMessages.count - 1, section: 0)], with: .none) self.tableChatView.scrollToBottom() SecureUserDefaults.shared.removeValue(forKey: "waitingRequestCC") if dataMessage.getBody(key: CoreMessage_TMessageKey.CHANNEL) != "0" { SecureUserDefaults.shared.set("\(Date().currentTimeMillis())", forKey: "startTimeCC") SecureUserDefaults.shared.set(dataMessage.getBody(key: CoreMessage_TMessageKey.CHANNEL), forKey: "channelCC") DispatchQueue.main.asyncAfter(deadline: .now() + 1, execute: { self.dismiss(animated: true, completion: { self.removeAllObjectBeforeDismissVC() }) }) } else { viewButton.isHidden = false viewTextfield.isHidden = false } } else if (dataMessage.getCode() == CoreMessage_TMessageCode.INVITE_END_CONTACT_CENTER || dataMessage.getCode() == CoreMessage_TMessageCode.END_CALL_CENTER || dataMessage.getCode() == CoreMessage_TMessageCode.INVITE_EXIT_CONTACT_CENTER) && !fromVCAC { let onGoingCC: String = SecureUserDefaults.shared.value(forKey: "onGoingCC") ?? "" if onGoingCC.isEmpty || !isContactCenter { return } let requester = onGoingCC.components(separatedBy: ",")[0] let officer = onGoingCC.isEmpty ? "" : onGoingCC.components(separatedBy: ",")[1] let fPin = dataMessage.getCode() == CoreMessage_TMessageCode.END_CALL_CENTER ? chatData[CoreMessage_TMessageKey.F_PIN] : dataMessage.getPIN() if fPin == officer || fPin == requester { DispatchQueue.global().async { let date = "\(Date().currentTimeMillis())" Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = try Database.shared.insertRecord(fmdb: fmdb, table: "CALL_CENTER_HISTORY", cvalues: [ "type" : self.channelContactCenter, "title" : "Contact Center".localized(), "time" : self.dateStartCC, "f_pin" : officer, "data" : self.complaintId, "time_end" : date, "complaint_id" : self.complaintId, "members" : "", "requester": requester ], replace: true) } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } self.dismissKeyboard() self.disableEditor() SecureUserDefaults.shared.removeValue(forKey: "onGoingCC") SecureUserDefaults.shared.removeValue(forKey: "membersCC") SecureUserDefaults.shared.removeValue(forKey: "waitingRequestCC") DispatchQueue.main.async { let imageView = UIImageView(image: UIImage(systemName: "info.circle")) imageView.tintColor = .white let banner = FloatingNotificationBanner(title: "Call Center Session has ended".localized(), subtitle: nil, titleFont: UIFont.systemFont(ofSize: 16), titleColor: nil, titleTextAlign: .left, subtitleFont: nil, subtitleColor: nil, subtitleTextAlign: nil, leftView: imageView, rightView: nil, style: .info, colors: nil, iconPosition: .center) banner.show() } timeoutCC.invalidate() DispatchQueue.main.asyncAfter(deadline: .now() + 1.5, execute: { if !(self.presentedViewController is EditorPersonal) { self.dismiss(animated: true, completion: { self.removeAllObjectBeforeDismissVC() }) } DispatchQueue.main.asyncAfter(deadline: .now() + 2) { self.dismiss(animated: true, completion: { self.removeAllObjectBeforeDismissVC() }) } }) } else { var members = "" self.users.removeAll(where: {$0.pin == fPin}) for user in self.users { if members.isEmpty { members = "\(user.pin)" } else { members = ",\(user.pin)" } } SecureUserDefaults.shared.set("\(members)", forKey: "membersCC") self.fPinContacCenter = members self.changeAppBar() } } else if (chatData[CoreMessage_TMessageKey.F_PIN] == self.dataPerson["f_pin"]!! && !self.isContactCenter && (chatData[CoreMessage_TMessageKey.MESSAGE_SCOPE_ID] == "3")) || (self.isContactCenter && chatData[CoreMessage_TMessageKey.MESSAGE_SCOPE_ID] == "5" && self.complaintId == chatData[CoreMessage_TMessageKey.CALL_CENTER_ID]) { if chatData[CoreMessage_TMessageKey.F_PIN] == nil { return } let idx = self.dataMessages.firstIndex(where: { $0[TypeDataMessage.message_id] as? String == chatData[CoreMessage_TMessageKey.MESSAGE_ID]}) if idx != nil { self.dataMessages[idx!][TypeDataMessage.message_text] = chatData[CoreMessage_TMessageKey.MESSAGE_TEXT] self.dataMessages[idx!][TypeDataMessage.last_edit] = Int64(chatData[CoreMessage_TMessageKey.LAST_EDIT]!) self.dataMessages[idx!][TypeDataMessage.status] = chatData[CoreMessage_TMessageKey.STATUS] let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as? String ?? "") let row = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataMessages[idx!]["chat_date"] as? String ?? ""}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[idx!]["message_id"] as? String }) if row != nil && section != nil { self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none) } return } var row: [String: Any?] = [:] row["message_id"] = chatData[CoreMessage_TMessageKey.MESSAGE_ID] row["f_pin"] = chatData[CoreMessage_TMessageKey.F_PIN] row["l_pin"] = chatData[CoreMessage_TMessageKey.L_PIN] row["message_scope_id"] = chatData[CoreMessage_TMessageKey.MESSAGE_SCOPE_ID] row["server_date"] = chatData[CoreMessage_TMessageKey.SERVER_DATE] row["status"] = chatData[CoreMessage_TMessageKey.STATUS] row["message_text"] = chatData[CoreMessage_TMessageKey.MESSAGE_TEXT] if (chatData.keys.contains(CoreMessage_TMessageKey.AUDIO_ID)) { row["audio_id"] = chatData[CoreMessage_TMessageKey.AUDIO_ID] } else { row["audio_id"] = "" } if (chatData.keys.contains(CoreMessage_TMessageKey.GIF_ID)) { row["gif_id"] = chatData[CoreMessage_TMessageKey.GIF_ID] } else { row["gif_id"] = "" } if (chatData.keys.contains(CoreMessage_TMessageKey.VIDEO_ID)) { row["video_id"] = chatData[CoreMessage_TMessageKey.VIDEO_ID] } else { row["video_id"] = "" } if (chatData.keys.contains(CoreMessage_TMessageKey.IMAGE_ID)) { row["image_id"] = chatData[CoreMessage_TMessageKey.IMAGE_ID] } else { row["image_id"] = "" } if (chatData.keys.contains(CoreMessage_TMessageKey.THUMB_ID)) { row["thumb_id"] = chatData[CoreMessage_TMessageKey.THUMB_ID] } else { row["thumb_id"] = "" } if (chatData.keys.contains(CoreMessage_TMessageKey.READ_RECEIPTS)) { row["read_receipts"] = chatData[CoreMessage_TMessageKey.READ_RECEIPTS] } else { row["read_receipts"] = "" } if (chatData.keys.contains(CoreMessage_TMessageKey.CREDENTIAL)) { row["credential"] = chatData[CoreMessage_TMessageKey.CREDENTIAL] } else { row["credential"] = "" } row["chat_id"] = "" if (chatData.keys.contains(CoreMessage_TMessageKey.FILE_ID)) { row["file_id"] = chatData[CoreMessage_TMessageKey.FILE_ID] } else { row["file_id"] = "" } row["progress"] = 0.0 row["attachment_flag"] = chatData[CoreMessage_TMessageKey.ATTACHMENT_FLAG] row["reff_id"] = chatData[CoreMessage_TMessageKey.REF_ID] ?? "" row["lock"] = "" row["is_stared"] = "0" row[TypeDataMessage.is_forwarded] = Int(chatData[CoreMessage_TMessageKey.IS_FORWARDED_MESSAGE] ?? "0") row["isSelected"] = false if !self.dataDates.contains("Today".localized()) { self.dataDates.append("Today".localized()) self.tableChatView.insertSections(IndexSet(integer: self.dataDates.count - 1), with: .none) } row["chat_date"] = "Today".localized() row["blog_id"] = chatData[CoreMessage_TMessageKey.BLOG_ID] self.counter += 1 if row["credential"] != nil && row["credential"] as? String ?? "" == "1" { self.listTimerCredential[row["message_id"] as? String ?? ""] = 60 } self.dataMessages.append(row) self.tableChatView.insertRows(at: [IndexPath(row: self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataDates[self.dataDates.count - 1]}).count - 1, section: self.dataDates.count - 1)], with: .none) if row["credential"] != nil && row["credential"] as? String ?? "" == "1" { var timer = Timer() var minute = 60 self.timerCredential[row["message_id"] as? String ?? ""] = timer SecureUserDefaults.shared.set("\(Date().currentTimeMillis())", forKey: row["message_id"] as? String ?? "") timer = Timer.scheduledTimer(withTimeInterval: 1, repeats: true, block: {_ in minute -= 1 self.listTimerCredential[row["message_id"] as? String ?? ""] = minute if minute == 0 { timer.invalidate() self.listTimerCredential.removeValue(forKey: row["message_id"] as? String ?? "") self.timerCredential.removeValue(forKey: row["message_id"] as? String ?? "") SecureUserDefaults.shared.removeValue(forKey: row["message_id"] as? String ?? "") let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == row["message_id"] as? String}) if idx != nil { self.dataMessages[idx!]["lock"] = "2" self.dataMessages[idx!]["reff_id"] = "" } DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(row["message_id"] as? String ?? "")'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } } let section = self.dataDates.firstIndex(of: self.dataDates[self.dataDates.count - 1]) let row = self.dataMessages.filter({$0["chat_date"] as? String ?? "" == self.dataDates[self.dataDates.count - 1]}).firstIndex(where: { $0["message_id"] as? String == row["message_id"] as? String}) if row != nil && section != nil{ self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none) } }) } if self.isContactCenter { let idMe = User.getMyPin()! let onGoingCC: String = SecureUserDefaults.shared.value(forKey: "onGoingCC") ?? "" let officer = onGoingCC.isEmpty ? "" : onGoingCC.components(separatedBy: ",")[1] if officer == idMe { self.timeoutCC.invalidate() } else if !fromVCAC { if !self.showToast30s { self.view.makeToast("Please reply within 30 seconds so the call center session doesn't end.".localized(), duration: 3) sendTyping(l_pin: fPinContacCenter, isTyping: true) self.showToast30s = true } } } if chatData[CoreMessage_TMessageKey.FORMAT] == "1" { self.sendReadMessageStatus(chat_id: "", f_pin: chatData[CoreMessage_TMessageKey.F_PIN]!, message_scope_id: chatData[CoreMessage_TMessageKey.MESSAGE_SCOPE_ID]!, message_id: chatData[CoreMessage_TMessageKey.MESSAGE_ID]!) self.tableChatView.scrollToBottom() } else if self.currentIndexpath?.row == (self.dataMessages.count - 2) { if (self.viewIfLoaded?.window != nil) { self.sendReadMessageStatus(chat_id: "", f_pin: chatData[CoreMessage_TMessageKey.F_PIN]!, message_scope_id: chatData[CoreMessage_TMessageKey.MESSAGE_SCOPE_ID]!, message_id: chatData[CoreMessage_TMessageKey.MESSAGE_ID]!) } self.tableChatView.scrollToBottom() if ( self.currentIndexpath!.section <= self.dataDates.count - 1 && self.currentIndexpath!.row <= self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataDates[self.dataDates.count - 1]}).count - 1) { self.counter = 0 self.updateCounter(counter: self.counter) } let lastMarkerCounter = markerCounter if self.markerCounter != nil { self.markerCounter = nil } self.tableChatView.beginUpdates() let indexMessage = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == lastMarkerCounter }) if indexMessage != nil { let section = self.dataDates.firstIndex(of: self.dataMessages[indexMessage!]["chat_date"] as? String ?? "") let row = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataMessages[indexMessage!]["chat_date"] as? String ?? ""}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[indexMessage!]["message_id"] as? String }) if row != nil && section != nil { self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none) } } self.tableChatView.endUpdates() } else if self.currentIndexpath == nil { self.counter = 0 self.updateCounter(counter: self.counter) if (self.viewIfLoaded?.window != nil) { self.sendReadMessageStatus(chat_id: "", f_pin: chatData[CoreMessage_TMessageKey.F_PIN]!, message_scope_id: chatData[CoreMessage_TMessageKey.MESSAGE_SCOPE_ID]!, message_id: chatData[CoreMessage_TMessageKey.MESSAGE_ID]!) } } else if self.counter != 0 { if !self.indicatorCounterBSTB.isDescendant(of: self.view) && self.buttonScrollToBottom.isDescendant(of: self.view) { self.markerCounter = row["message_id"] as? String self.addCounterAtButttonScrollToBottom() self.tableChatView.beginUpdates() let indexMessage = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == self.markerCounter }) if indexMessage != nil { let section = self.dataDates.firstIndex(of: self.dataMessages[indexMessage!]["chat_date"] as? String ?? "") let row = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataMessages[indexMessage!]["chat_date"] as? String ?? ""}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[indexMessage!]["message_id"] as? String }) if row != nil && section != nil { self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none) } } self.tableChatView.endUpdates() } else if self.indicatorCounterBSTB.isDescendant(of: self.view) { self.labelCounter.text = "\(self.counter)" } } } } else if !self.isContactCenter { NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil) } } } private func disableEditor() { view.addSubview(containerAction) containerAction.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ containerAction.leadingAnchor.constraint(equalTo: self.view.leadingAnchor), containerAction.trailingAnchor.constraint(equalTo: self.view.trailingAnchor), containerAction.bottomAnchor.constraint(equalTo: self.view.bottomAnchor), containerAction.heightAnchor.constraint(equalToConstant: 120) ]) containerAction.backgroundColor = .secondaryColor.withAlphaComponent(0.8) let labelDisable = UILabel() containerAction.addSubview(labelDisable) labelDisable.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ labelDisable.centerYAnchor.constraint(equalTo: containerAction.centerYAnchor), labelDisable.centerXAnchor.constraint(equalTo: containerAction.centerXAnchor), ]) labelDisable.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .black labelDisable.font = UIFont.systemFont(ofSize: 12 + offset()).bold labelDisable.text = "Call center session is over".localized() } @objc func onStatusChat(notification: NSNotification) { DispatchQueue.main.async { let data:[AnyHashable : Any] = notification.userInfo! if let dataMessage = data["message"] as? TMessage { let chatData = dataMessage.mBodies let onGoingCC: String = SecureUserDefaults.shared.value(forKey: "onGoingCC") ?? "" let requester = onGoingCC.components(separatedBy: ",")[0] let idMe = User.getMyPin()! if chatData[CoreMessage_TMessageKey.F_PIN] == self.dataPerson["f_pin"]!! || chatData[CoreMessage_TMessageKey.L_PIN] == self.dataPerson["f_pin"]!! || chatData[CoreMessage_TMessageKey.L_PIN] == self.fPinContacCenter || requester == idMe { if (chatData.keys.contains(CoreMessage_TMessageKey.MESSAGE_ID) && !(chatData[CoreMessage_TMessageKey.MESSAGE_ID]!).contains("-2,")) { var idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == chatData[CoreMessage_TMessageKey.MESSAGE_ID]! }) if let idxMessageIdParent = self.groupImages.firstIndex(where: { $0.value.contains(where: { $0.messageId == chatData[CoreMessage_TMessageKey.MESSAGE_ID]! }) }) { if let idxInImages = self.groupImages[idxMessageIdParent].value.firstIndex(where: { $0.messageId == chatData[CoreMessage_TMessageKey.MESSAGE_ID]! }) { self.groupImages[idxMessageIdParent].value[idxInImages].status = chatData[CoreMessage_TMessageKey.STATUS]! self.groupImages[idxMessageIdParent].value[idxInImages].dataMessage["status"] = chatData[CoreMessage_TMessageKey.STATUS]! } idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == self.groupImages[idxMessageIdParent].key }) } if (idx != nil) { if (chatData[CoreMessage_TMessageKey.DELETE_MESSAGE_FLAG] == "1") { self.updateStatusDelete(idx: idx, chatData: chatData) } else { self.updateStatusMessage(idx: idx, chatData: chatData) } } } else if (chatData.keys.contains("message_id")) { var idMessage = dataMessage.getBody(key: "message_id") if idMessage.contains("'") { idMessage = idMessage.replacingOccurrences(of: "'", with: "") } var idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == idMessage }) if let idxMessageIdParent = self.groupImages.firstIndex(where: { $0.value.contains(where: { $0.messageId == idMessage }) }) { if let idxInImages = self.groupImages[idxMessageIdParent].value.firstIndex(where: { $0.messageId == idMessage }) { self.groupImages[idxMessageIdParent].value[idxInImages].status = chatData[CoreMessage_TMessageKey.STATUS]! self.groupImages[idxMessageIdParent].value[idxInImages].dataMessage["status"] = chatData[CoreMessage_TMessageKey.STATUS]! } idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == self.groupImages[idxMessageIdParent].key }) } if (idx != nil) { if (chatData[CoreMessage_TMessageKey.DELETE_MESSAGE_FLAG] == "1") { self.updateStatusDelete(idx: idx, chatData: chatData) } else { self.updateStatusMessage(idx: idx, chatData: chatData) } } } else { let listMessageId = chatData[CoreMessage_TMessageKey.MESSAGE_ID]!.split(separator: ",") for i in 1.. Int(chatData[CoreMessage_TMessageKey.STATUS]!)! { return } self.dataMessages[idx!]["status"] = chatData[CoreMessage_TMessageKey.STATUS]! let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as? String ?? "") let row = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataMessages[idx!]["chat_date"] as? String ?? ""}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[idx!]["message_id"] as? String }) if row != nil && section != nil { self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none) } } catch { } } @objc func onTyping(notification: NSNotification) { DispatchQueue.main.async { [self] in let data:[AnyHashable : Any] = notification.userInfo! let message: TMessage = data["message"] as! TMessage let onGoingCC: String = SecureUserDefaults.shared.value(forKey: "onGoingCC") ?? "" if !onGoingCC.isEmpty { let officer = onGoingCC.isEmpty ? "" : onGoingCC.components(separatedBy: ",")[1] if message.getBody(key: CoreMessage_TMessageKey.F_PIN) != officer { //print("RESET TIMER") // timeoutCC.invalidate() // timeoutCC = Timer.scheduledTimer(withTimeInterval: 30.0, repeats: false, block: {_ in // let imageView = UIImageView(image: UIImage(systemName: "info.circle")) // imageView.tintColor = .white // let banner = FloatingNotificationBanner(title: "Customer doesn't respond in 30 second, so call center session will be ended automatically.".localized(), subtitle: nil, titleFont: UIFont.systemFont(ofSize: 16), titleColor: nil, titleTextAlign: .left, subtitleFont: nil, subtitleColor: nil, subtitleTextAlign: nil, leftView: imageView, rightView: nil, style: .info, colors: nil, iconPosition: .center) // banner.show() // self.endCallCenter() // }) } } else { } } } @objc func onUnfriend(notification: NSNotification) { let data:[AnyHashable : Any] = notification.userInfo! DispatchQueue.main.async { [self] in if data["state"] as! Int == 99 && (data["message"] as? String ?? "").components(separatedBy: ",")[0] == "delete_buddy" { removed = true if forwardSession || copySession || deleteSession || isSearching { cancelAction() } DispatchQueue.main.asyncAfter(deadline: .now() + 0.35, execute: {[self] in navigationItem.rightBarButtonItem = nil navigationItem.rightBarButtonItems = nil changeAppBar() view.addSubview(containerAction) containerAction.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ containerAction.leadingAnchor.constraint(equalTo: self.view.leadingAnchor), containerAction.trailingAnchor.constraint(equalTo: self.view.trailingAnchor), containerAction.bottomAnchor.constraint(equalTo: self.view.bottomAnchor), containerAction.heightAnchor.constraint(equalToConstant: 120) ]) containerAction.backgroundColor = .secondaryColor.withAlphaComponent(0.8) let labelUnfriend = UILabel() containerAction.addSubview(labelUnfriend) labelUnfriend.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ labelUnfriend.centerYAnchor.constraint(equalTo: containerAction.centerYAnchor), labelUnfriend.centerXAnchor.constraint(equalTo: containerAction.centerXAnchor), ]) labelUnfriend.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .black labelUnfriend.font = UIFont.systemFont(ofSize: 12 + offset()).bold labelUnfriend.text = "You have unfriended this user".localized() NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil) if contactChatNav.viewIfLoaded?.window != nil { contactChatNav.dismiss(animated: true) } DispatchQueue.main.asyncAfter(deadline: .now() + 0.35, execute: { if self.fromNotification { self.didTapExit() } else { self.navigationController?.popViewController(animated: true) } }) }) } else if data["state"] as! Int == 01 { if let dataMessage = try! JSONSerialization.jsonObject(with: (data["message"] as? String ?? "").data(using: .utf8)!, options: []) as? [String: String] { if(dataMessage["l_pin"] == dataPerson["f_pin"]!){ if let block = dataMessage["block"] { if(block == "-1"){ dismissKeyboard() } blockedView(blocked: block) if contactChatNav.viewIfLoaded?.window != nil { contactChatNav.dismiss(animated: true) } cancelAction() } } setRightButtonItem() } } } } func blockedView(blocked: String) { dismissKeyboard() view.addSubview(containerAction) containerAction.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ containerAction.leadingAnchor.constraint(equalTo: self.view.leadingAnchor), containerAction.trailingAnchor.constraint(equalTo: self.view.trailingAnchor), containerAction.bottomAnchor.constraint(equalTo: self.view.bottomAnchor), containerAction.heightAnchor.constraint(equalToConstant: 120) ]) containerAction.backgroundColor = .secondaryColor.withAlphaComponent(0.8) let labelBlocked = UILabel() containerAction.addSubview(labelBlocked) labelBlocked.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ labelBlocked.centerYAnchor.constraint(equalTo: containerAction.centerYAnchor), labelBlocked.centerXAnchor.constraint(equalTo: containerAction.centerXAnchor), ]) labelBlocked.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .black labelBlocked.font = UIFont.systemFont(ofSize: 12 + offset()).bold if blocked == "1" { labelBlocked.text = "You blocked this user".localized() } else { labelBlocked.text = "You have been blocked by this user".localized() } } @objc func seeProfileTapped() { if dataPerson["f_pin"] == "-999" || dataPerson["isOfficial"] == "1" || removed || copySession || forwardSession || deleteSession || isContactCenter { return } dismissKeyboard() let controller = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "profileView") as! ProfileViewController controller.data = dataPerson["f_pin"]!! controller.checkReadMessage = { self.dataPerson.removeAll() self.getDataProfile(fPin: self.unique_l_pin) self.changeAppBar() if self.currentIndexpath == nil { var listData = self.dataMessages listData = listData.filter({$0["status"] as? String ?? "" != "4" && $0["status"] as? String ?? "" != "8"}) if listData.count != 0 && !self.isContactCenter { let idMe = User.getMyPin() as String? for i in 0...listData.count - 1 { if listData[i]["f_pin"] as? String != idMe { self.sendReadMessageStatus(chat_id: "", f_pin: self.dataPerson["f_pin"]!!, message_scope_id: "3", message_id: listData[i]["message_id"] as? String ?? "") } } } } else { let dataMessages = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataDates[self.currentIndexpath!.section] }) var listData = dataMessages listData = listData.filter({$0["status"] as? String ?? "" != "4" && $0["status"] as? String ?? "" != "8"}) if listData.count != 0 && !self.isContactCenter { let idMe = User.getMyPin() as String? for i in 0...listData.count - 1 { if listData[i]["f_pin"] as? String != idMe { self.sendReadMessageStatus(chat_id: "", f_pin: self.dataPerson["f_pin"]!!, message_scope_id: "3", message_id: listData[i]["message_id"] as? String ?? "") } } } } } navigationController?.show(controller, sender: nil) } @IBAction func voiceTapped(_ sender: UIButton) { if (self.constraintBottomAttachment.constant != 0.0) { constraintBottomAttachment.constant = 0.0 self.viewSticker.removeConstraints(self.viewSticker.constraints) self.viewSticker.removeFromSuperview() } } @IBAction func imageTapped(_ sender: UIButton) { if (self.constraintBottomAttachment.constant != 0.0) { constraintBottomAttachment.constant = 0.0 self.viewSticker.removeConstraints(self.viewSticker.constraints) self.viewSticker.removeFromSuperview() } if isContactCenter && fPinContacCenter.isEmpty && isRequestContactCenter { return } let alertController = LibAlertController(title: nil, message: nil, preferredStyle: .actionSheet) if let action = self.actionImageVideo(for: "image", title: "Choose Photo".localized()) { alertController.addAction(action) } if let action = self.actionImageVideo(for: "video", title: "Choose Video".localized()) { alertController.addAction(action) } alertController.addAction(UIAlertAction(title: "Cancel".localized(), style: .cancel, handler: nil)) self.present(alertController, animated: true) } private func actionImageVideo(for type: String, title: String) -> UIAlertAction? { return UIAlertAction(title: title, style: .default) { [unowned self] _ in switch type { case "image": var config = PHPickerConfiguration() config.filter = .images let picker = PHPickerViewController(configuration: config) picker.delegate = self if UIBarButtonItem.appearance().titleTextAttributes(for: .normal) != nil { isBlackCancelButton = UIBarButtonItem.appearance().titleTextAttributes(for: .normal)?.values.first as! NSObject == UIColor.black } if !isBlackCancelButton { let cancelButtonAttributes = [NSAttributedString.Key.foregroundColor: UIColor.black, NSAttributedString.Key.font : UIFont.systemFont(ofSize: 16)] UIBarButtonItem.appearance().setTitleTextAttributes(cancelButtonAttributes , for: .normal) } present(picker, animated: true, completion: nil) case "video": var config = PHPickerConfiguration() config.filter = .videos let picker = PHPickerViewController(configuration: config) picker.delegate = self if UIBarButtonItem.appearance().titleTextAttributes(for: .normal) != nil { isBlackCancelButton = UIBarButtonItem.appearance().titleTextAttributes(for: .normal)?.values.first as! NSObject == UIColor.black } if !isBlackCancelButton { let cancelButtonAttributes = [NSAttributedString.Key.foregroundColor: UIColor.black, NSAttributedString.Key.font : UIFont.systemFont(ofSize: 16)] UIBarButtonItem.appearance().setTitleTextAttributes(cancelButtonAttributes , for: .normal) } present(picker, animated: true, completion: nil) case "imageCamera": if isContactCenter && channelContactCenter == "2" { self.view.makeToast("You can't take photo when Video Call".localized(), duration: 3) return } imageVideoPicker.present(source: .imageCamera) case "videoCamera": if isContactCenter && channelContactCenter == "2" { self.view.makeToast("You can't take video when Video Call".localized(), duration: 3) return } imageVideoPicker.present(source: .videoCamera) default: break } } } @IBAction func photoTapped(_ sender: UIButton) { if (self.constraintBottomAttachment.constant != 0.0) { constraintBottomAttachment.constant = 0.0 self.viewSticker.removeConstraints(self.viewSticker.constraints) self.viewSticker.removeFromSuperview() } if isContactCenter && fPinContacCenter.isEmpty && isRequestContactCenter { return } let alertController = LibAlertController(title: nil, message: nil, preferredStyle: .actionSheet) if let action = self.actionImageVideo(for: "imageCamera", title: "Take Photo".localized()) { alertController.addAction(action) } if let action = self.actionImageVideo(for: "videoCamera", title: "Take Video".localized()) { alertController.addAction(action) } alertController.addAction(UIAlertAction(title: "Cancel".localized(), style: .cancel, handler: nil)) self.present(alertController, animated: true) } @IBAction func stickerTapped(_ sender: UIButton) { if isContactCenter && fPinContacCenter.isEmpty && isRequestContactCenter { return } DispatchQueue.main.async { if (self.constraintBottomAttachment.constant == 0.0) { self.constraintBottomAttachment.constant = 200.0 self.view.addSubview(self.viewSticker) self.viewSticker.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ self.viewSticker.bottomAnchor.constraint(equalTo: self.view.bottomAnchor), self.viewSticker.leadingAnchor.constraint(equalTo: self.view.leadingAnchor), self.viewSticker.trailingAnchor.constraint(equalTo: self.view.trailingAnchor), self.viewSticker.heightAnchor.constraint(equalToConstant: 200) ]) let layout = UICollectionViewFlowLayout() layout.scrollDirection = .vertical let collectionSticker = UICollectionView(frame: .zero, collectionViewLayout: layout) collectionSticker.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "cellSticker") collectionSticker.delegate = self collectionSticker.dataSource = self collectionSticker.backgroundColor = .clear self.viewSticker.addSubview(collectionSticker) collectionSticker.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ collectionSticker.topAnchor.constraint(equalTo: self.viewSticker.topAnchor, constant: 20), collectionSticker.bottomAnchor.constraint(equalTo: self.viewSticker.bottomAnchor, constant: -20), collectionSticker.leadingAnchor.constraint(equalTo: self.viewSticker.leadingAnchor, constant: 20), collectionSticker.trailingAnchor.constraint(equalTo: self.viewSticker.trailingAnchor, constant: -20) ]) if (self.currentIndexpath != nil) { DispatchQueue.main.async { self.tableChatView.scrollToRow(at: IndexPath(row: self.currentIndexpath!.row, section: self.currentIndexpath!.section), at: .none, animated: false) } } else { self.tableChatView.scrollToBottom() } } else { self.constraintBottomAttachment.constant = 0.0 self.viewSticker.removeConstraints(self.viewSticker.constraints) self.viewSticker.removeFromSuperview() } } } @IBAction func fileTapped(_ sender: UIButton) { if isContactCenter && fPinContacCenter.isEmpty && isRequestContactCenter { return } if (self.constraintBottomAttachment.constant != 0.0) { constraintBottomAttachment.constant = 0.0 self.viewSticker.removeConstraints(self.viewSticker.constraints) self.viewSticker.removeFromSuperview() } documentPicker.present() } @objc func sendTapped() { sendChat(message_text: textFieldSend.text!, viewController: self) } @objc func showChooserACKConfidential() { let alertController = LibAlertController(title: "Message Mode".localized(), message: "Select".localized() + " " + "Message Mode".localized(), preferredStyle: .actionSheet) let imageConfidential = resizeImage(image: UIImage(named: "pb_icon_conf_msg_on", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal) let imageAck = resizeImage(image: UIImage(named: "pb_icon_ack_msg_on", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal) let imageSecret = resizeImage(image: UIImage(named: "pb_icon_secret_msg_on", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal) let confidentialAction = UIAlertAction(title: "Confidential Message".localized(), style: .default, handler: { (UIAlertAction) in self.isConfidential = !self.isConfidential if self.isConfidential { self.buttonAckConfidential.setImage(imageConfidential, for: .normal) } else { self.buttonAckConfidential.setImage(UIImage(systemName: "gearshape.fill", withConfiguration: UIImage.SymbolConfiguration(scale: .large))?.withTintColor(.white).withRenderingMode(.alwaysTemplate), for: .normal) } if self.isAck { self.isAck = false } if self.isSecret { self.isSecret = false } }) let ackAction = UIAlertAction(title: "Confirmation Message".localized(), style: .default, handler: { (UIAlertAction) in self.isAck = !self.isAck if self.isAck { self.buttonAckConfidential.setImage(imageAck, for: .normal) } else { self.buttonAckConfidential.setImage(UIImage(systemName: "gearshape.fill", withConfiguration: UIImage.SymbolConfiguration(scale: .large))?.withTintColor(.white).withRenderingMode(.alwaysTemplate), for: .normal) } if self.isConfidential { self.isConfidential = false } if self.isSecret { self.isSecret = false } }) let secretAction = UIAlertAction(title: "Secret Message".localized(), style: .default, handler: { (UIAlertAction) in self.isSecret = !self.isSecret if self.isSecret { self.buttonAckConfidential.setImage(imageSecret, for: .normal) } else { self.buttonAckConfidential.setImage(UIImage(systemName: "gearshape.fill", withConfiguration: UIImage.SymbolConfiguration(scale: .large))?.withTintColor(.white).withRenderingMode(.alwaysTemplate), for: .normal) } if self.isConfidential { self.isConfidential = false } if self.isAck { self.isAck = false } }) confidentialAction.setValue(imageConfidential, forKey: "image") ackAction.setValue(imageAck, forKey: "image") secretAction.setValue(imageSecret, forKey: "image") alertController.addAction(confidentialAction) alertController.addAction(ackAction) alertController.addAction(secretAction) alertController.addAction(UIAlertAction(title: "Cancel".localized(), style: .cancel, handler: { (UIAlertAction) in self.isConfidential = false self.isAck = false self.isSecret = false self.buttonAckConfidential.setImage(UIImage(systemName: "gearshape.fill", withConfiguration: UIImage.SymbolConfiguration(scale: .large))?.withTintColor(.white).withRenderingMode(.alwaysTemplate), for: .normal) })) self.present(alertController, animated: true, completion: nil) } public func setAckConfidential(isAck: Bool, isConfidential: Bool) { self.isConfidential = isConfidential self.isAck = isAck let imageConfidential = resizeImage(image: UIImage(named: "confidential_icon", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal) let imageAck = resizeImage(image: UIImage(named: "ack_icon", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal) if isAck { buttonAckConfidential.setImage(imageAck, for: .normal) } else if isConfidential { buttonAckConfidential.setImage(imageConfidential, for: .normal) } else { self.buttonAckConfidential.setImage(UIImage(systemName: "gearshape.fill", withConfiguration: UIImage.SymbolConfiguration(scale: .large))?.withTintColor(.white).withRenderingMode(.alwaysTemplate), for: .normal) } } @objc func addRoom(sender: UIBarButtonItem) { let controller = QmeraCallContactViewController() controller.isDismiss = { user in DispatchQueue.global().async { _ = Nexilis.write(message: CoreMessage_TMessageBank.getCCRoomInvite(l_pin: user.pin, ticket_id: self.complaintId, channel: self.channelContactCenter)) } } controller.selectedUser.append(contentsOf: users) controller.isInviteCC = true self.navigationController?.show(controller, sender: nil) } @objc func audioVideoCall(sender: UIBarButtonItem) { if sender.tag == 0 { if !Nexilis.checkingAccess(key: "audio_call") { self.view.makeToast("Feature disabled..".localized(), duration: 3) return } let goAudioCall = Nexilis.checkMicPermission() if !goAudioCall{ let alert = LibAlertController(title: "Attention!".localized(), message: "Please allow microphone permission in your settings".localized(), preferredStyle: .alert) alert.addAction(UIAlertAction(title: "OK".localized(), style: UIAlertAction.Style.default, handler: {_ in if let url = URL(string: UIApplication.openSettingsURLString), UIApplication.shared.canOpenURL(url) { UIApplication.shared.open(url, options: [:], completionHandler: nil) } })) self.navigationController?.present(alert, animated: true, completion: nil) return } if let pin = dataPerson["f_pin"] { if !CheckConnection.isConnectedToNetwork() { let imageView = UIImageView(image: UIImage(systemName: "xmark.circle.fill")) imageView.tintColor = .white let banner = FloatingNotificationBanner(title: "Check your connection".localized(), subtitle: nil, titleFont: UIFont.systemFont(ofSize: 16), titleColor: nil, titleTextAlign: .left, subtitleFont: nil, subtitleColor: nil, subtitleTextAlign: nil, leftView: imageView, rightView: nil, style: .danger, colors: nil, iconPosition: .center) banner.show() return } let controller = QmeraAudioViewController() controller.user = User.getData(pin: pin) controller.isOutgoing = true controller.modalPresentationStyle = .overCurrentContext present(controller, animated: true, completion: nil) } } else { if !Nexilis.checkingAccess(key: "video_call") { self.view.makeToast("Feature disabled..".localized(), duration: 3) return } let goAudioCall = Nexilis.checkMicPermission() let goVideoCall = Nexilis.checkCameraPermission() if goVideoCall == 0 { let alert = LibAlertController(title: "Attention!".localized(), message: !goAudioCall && goVideoCall == 0 ? "Please allow microphone & camera permission in your settings".localized() : !goAudioCall ? "Please allow microphone permission in your settings".localized() : "Please allow camera permission in your settings", preferredStyle: .alert) alert.addAction(UIAlertAction(title: "OK".localized(), style: UIAlertAction.Style.default, handler: {_ in if let url = URL(string: UIApplication.openSettingsURLString), UIApplication.shared.canOpenURL(url) { UIApplication.shared.open(url, options: [:], completionHandler: nil) } })) self.navigationController?.present(alert, animated: true, completion: nil) return } else if goVideoCall == -1 { return } if !CheckConnection.isConnectedToNetwork() { let imageView = UIImageView(image: UIImage(systemName: "xmark.circle.fill")) imageView.tintColor = .white let banner = FloatingNotificationBanner(title: "Check your connection".localized(), subtitle: nil, titleFont: UIFont.systemFont(ofSize: 16), titleColor: nil, titleTextAlign: .left, subtitleFont: nil, subtitleColor: nil, subtitleTextAlign: nil, leftView: imageView, rightView: nil, style: .danger, colors: nil, iconPosition: .center) banner.show() return } let videoVC = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "videoVCQmera") as! QmeraVideoViewController videoVC.dataPerson.append(dataPerson) self.show(videoVC, sender: nil) } } @objc func dismissKeyboard() { if isSearching { searchBar.resignFirstResponder() } else { textFieldSend.resignFirstResponder() // dismiss keyoard if (self.constraintBottomAttachment.constant != 0.0) { constraintBottomAttachment.constant = 0.0 self.viewSticker.removeConstraints(self.viewSticker.constraints) self.viewSticker.removeFromSuperview() } } } @objc func didTapExit() { if complaintId.isEmpty || fromVCAC { self.dismiss(animated: true, completion: { self.removeAllObjectBeforeDismissVC() }) } else if !complaintId.isEmpty { let alert = LibAlertController(title: "Interaction with Call Center is in progress".localized(), message: "Are you sure you want to end the Call Center?".localized(), preferredStyle: .alert) alert.addAction(UIAlertAction(title: "No".localized(), style: UIAlertAction.Style.default, handler: nil)) alert.addAction(UIAlertAction(title: "Yes".localized(), style: UIAlertAction.Style.default, handler: {(_) in self.endCallCenter() })) self.present(alert, animated: true, completion: nil) } } private func removeAllObjectBeforeDismissVC() { for timer in self.timerCredential.values { timer.invalidate() } self.timeoutCC.invalidate() SecureUserDefaults.shared.removeValue(forKey: "inEditorPersonal") NotificationCenter.default.removeObserver(self) self.removeFromParent() if !self.isContactCenter { let l_pin = self.dataPerson["f_pin"]!! let data: [String: String] = ["text": self.textFieldSend.textColor != UIColor.lightGray ? self.textFieldSend.text! : "", "reffId": self.reffId ?? ""] if let jsonData = try? JSONSerialization.data(withJSONObject: data, options: []), let jsonString = String(data: jsonData, encoding: .utf8) { SecureUserDefaults.shared.set(jsonString, forKey: "new_saved_\(l_pin)") } } } public func endCallCenter() { timeoutCC.invalidate() let complaintId = self.complaintId let idMe = User.getMyPin()! let onGoingCC: String = SecureUserDefaults.shared.value(forKey: "onGoingCC") ?? "" let requester = onGoingCC.components(separatedBy: ",")[0] let officer = onGoingCC.isEmpty ? "" : onGoingCC.components(separatedBy: ",")[1] DispatchQueue.global().async { let date = "\(Date().currentTimeMillis())" Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = try Database.shared.insertRecord(fmdb: fmdb, table: "CALL_CENTER_HISTORY", cvalues: [ "type" : self.channelContactCenter, "title" : "Contact Center".localized(), "time" : self.dateStartCC, "f_pin" : officer, "data" : self.complaintId, "time_end" : date, "complaint_id" : self.complaintId, "members" : "", "requester": requester ], replace: true) } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) if officer == idMe { _ = Nexilis.write(message: CoreMessage_TMessageBank.endCallCenter(complaint_id: complaintId, l_pin: requester)) } else { if requester == idMe { _ = Nexilis.write(message: CoreMessage_TMessageBank.endCallCenter(complaint_id: complaintId, l_pin: officer)) } else { _ = Nexilis.write(message: CoreMessage_TMessageBank.leaveCCRoomInvite(ticket_id: complaintId)) } } SecureUserDefaults.shared.removeValue(forKey: "onGoingCC") SecureUserDefaults.shared.removeValue(forKey: "membersCC") SecureUserDefaults.shared.removeValue(forKey: "waitingRequestCC") } self.dismiss(animated: true, completion: { self.removeAllObjectBeforeDismissVC() }) } @objc func keyboardWillHide(notification: NSNotification) { if self.viewIfLoaded?.window != nil && !isEditingMessage { let info:NSDictionary = notification.userInfo! as NSDictionary let duration: CGFloat = info[UIResponder.keyboardAnimationDurationUserInfoKey] as! NSNumber as! CGFloat self.constraintViewTextField.constant = 0 self.constraintBottomContainerMultpileSelectSession.constant = 0 UIView.animate(withDuration: TimeInterval(duration), animations: { self.view.layoutIfNeeded() }) } } @objc func keyboardWillShow(notification: NSNotification) { if self.viewIfLoaded?.window != nil && !isEditingMessage { if (self.constraintBottomAttachment.constant != 0.0) { self.constraintBottomAttachment.constant = 0.0 self.viewSticker.removeConstraints(self.viewSticker.constraints) self.viewSticker.removeFromSuperview() } let info:NSDictionary = notification.userInfo! as NSDictionary let keyboardSize = (info[UIResponder.keyboardFrameEndUserInfoKey] as! NSValue).cgRectValue let keyboardHeight: CGFloat = keyboardSize.height let duration: CGFloat = info[UIResponder.keyboardAnimationDurationUserInfoKey] as! NSNumber as! CGFloat if self.constraintViewTextField.constant != keyboardHeight - 60 { self.constraintViewTextField.constant = keyboardHeight - 60 if isSearching { self.constraintViewTextField.constant = self.constraintViewTextField.constant + 60 self.constraintBottomContainerMultpileSelectSession.constant = -keyboardHeight } UIView.animate(withDuration: TimeInterval(duration), animations: { self.view.layoutIfNeeded() }) if isSearching { self.tableChatView.scrollToBottom() } else { if (self.currentIndexpath != nil) { self.tableChatView.scrollToRow(at: IndexPath(row: self.currentIndexpath!.row, section: self.currentIndexpath!.section), at: .none, animated: false) } else { self.tableChatView.scrollToBottom() } } } } else if isEditingMessage { let info:NSDictionary = notification.userInfo! as NSDictionary let keyboardSize = (info[UIResponder.keyboardFrameEndUserInfoKey] as! NSValue).cgRectValue let keyboardHeight: CGFloat = keyboardSize.height let duration: CGFloat = info[UIResponder.keyboardAnimationDurationUserInfoKey] as! NSNumber as! CGFloat let constant: CGFloat = 0 - keyboardHeight - 15 constraintBottomeditTextView.constant = constant constraintBottomSendEditTV.constant = constant UIView.animate(withDuration: TimeInterval(duration), animations: { self.view.layoutIfNeeded() }) } } private func sendChat(message_scope_id:String = "3", status:String = "1", message_text:String = "", credential:String = "0", attachment_flag: String = "0", ex_blog_id: String = "", message_large_text: String = "", ex_format: String = "", image_id: String = "", audio_id: String = "", video_id: String = "", file_id: String = "", thumb_id: String = "", reff_id: String = "", read_receipts: String = "4", chat_id: String = "", is_call_center: String = "0", call_center_id: String = "", viewController: UIViewController, isAutoSendCC : Bool = false, gif_id: String = "", is_forwarded: Int = 0, is_secret: Int = 0) { if viewController is EditorPersonal && file_id == "" && dataMessageForward == nil && !isAutoSendCC{ if ((textFieldSend.text!.trimmingCharacters(in: .whitespacesAndNewlines) == "Send message".localized() && textFieldSend.textColor == UIColor.lightGray && attachment_flag != "11") || textFieldSend.text!.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty ) { dismissKeyboard() viewController.view.makeToast("Write Messages".localized(), duration: 3) if (textFieldSend.text!.trimmingCharacters(in: .whitespacesAndNewlines) != "Send message".localized()) { textFieldSend.text = "" } if (self.heightTextFieldSend.constant != 40) { self.heightTextFieldSend.constant = 40 } return } } var reff_id = reff_id if (reffId != nil) { reff_id = reffId! } var is_call_center = is_call_center var call_center_id = call_center_id var l_pin = dataPerson["f_pin"]!! var message_scope_id = message_scope_id var chat_id = chat_id if (isContactCenter) { if fPinContacCenter.isEmpty && isRequestContactCenter { if textFieldSend.text!.trimmingCharacters(in: .whitespacesAndNewlines) != "Send message".localized() && textFieldSend.textColor != UIColor.lightGray && constraintViewTextField.constant == 0 { textFieldSend.text = "Send message".localized() textFieldSend.textColor = UIColor.lightGray } else if constraintViewTextField.constant != 0 { textFieldSend.text = "" } dismissKeyboard() self.view.makeToast("Unable to send message. Waiting for the officer to accept your request".localized(), duration: 3) return } is_call_center = "1" call_center_id = complaintId l_pin = fPinContacCenter message_scope_id = "5" chat_id = complaintId if isAutoSendCC { timeoutCC = Timer.scheduledTimer(withTimeInterval: 30.0, repeats: false, block: {_ in let imageView = UIImageView(image: UIImage(systemName: "info.circle")) imageView.tintColor = .white let banner = FloatingNotificationBanner(title: "Customer doesn't respond in 30 second, so call center session will be ended automatically.".localized(), subtitle: nil, titleFont: UIFont.systemFont(ofSize: 16), titleColor: nil, titleTextAlign: .left, subtitleFont: nil, subtitleColor: nil, subtitleTextAlign: nil, leftView: imageView, rightView: nil, style: .info, colors: nil, iconPosition: .center) banner.show() self.endCallCenter() }) } } var message_text = message_text let bulletPoint = " • " let numberPattern = #" \d+\.\ "# let firstLine = message_text.components(separatedBy: .newlines).first ?? "" // Check if text contains bullet points or numbered list using regex if !message_text.isEmpty && !firstLine.contains(bulletPoint) && firstLine.range(of: numberPattern, options: .regularExpression) == nil { message_text = message_text.trimmingCharacters(in: .whitespacesAndNewlines) } let idMe = User.getMyPin() as String? var opposite_pin = "" if isContactCenter { opposite_pin = "" } else { opposite_pin = idMe ?? "" } var credential = credential if isConfidential { credential = "1" } var read_receipts = read_receipts if isAck { read_receipts = "8" } var is_secret = is_secret if isSecret { is_secret = 1 } sendTyping(l_pin: l_pin, isTyping: true) let message = CoreMessage_TMessageBank.sendMessage(l_pin: l_pin, message_scope_id: message_scope_id, status: status, message_text: message_text, credential: credential, attachment_flag: attachment_flag, ex_blog_id: ex_blog_id, message_large_text: message_large_text, ex_format: ex_format, image_id: image_id, audio_id: audio_id, video_id: video_id, file_id: file_id, thumb_id: thumb_id, reff_id: reff_id, read_receipts: read_receipts, chat_id: chat_id, is_call_center: is_call_center, call_center_id: call_center_id, opposite_pin: opposite_pin, gif_id: gif_id, isForwarded: "\(is_forwarded)", isSecret: "\(is_secret)") Nexilis.addQueueMessage(message: message) let messageId = String(message.mBodies[CoreMessage_TMessageKey.MESSAGE_ID]!) if credential == "1" { self.listTimerCredential[messageId] = 60 } var row: [String: Any?] = [:] row["message_id"] = messageId row["f_pin"] = idMe row["l_pin"] = dataPerson["f_pin"]!! row["message_scope_id"] = message_scope_id row["server_date"] = "\(Date().currentTimeMillis())" row["status"] = status row["message_text"] = message_text row["audio_id"] = audio_id row["video_id"] = video_id row["image_id"] = image_id row["thumb_id"] = thumb_id row["read_receipts"] = read_receipts row["credential"] = credential row["chat_id"] = chat_id row["file_id"] = file_id row["blog_id"] = ex_blog_id row["attachment_flag"] = attachment_flag row["reff_id"] = reff_id row["progress"] = 0.0 row["lock"] = "0" row["is_stared"] = "0" row["gif_id"] = gif_id row[TypeDataMessage.is_forwarded] = is_forwarded row["isSelected"] = false row[TypeDataMessage.is_call_center] = is_call_center row[TypeDataMessage.call_center_id] = call_center_id row[TypeDataMessage.opposite_pin] = opposite_pin if !dataDates.contains("Today".localized()) { dataDates.append("Today".localized()) tableChatView.insertSections(IndexSet(integer: dataDates.count - 1), with: .none) } row["chat_date"] = "Today".localized() dataMessages.append(row) tableChatView.insertRows(at: [IndexPath(row: dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[dataDates.count - 1]}).count - 1, section: dataDates.count - 1)], with: .none) if credential == "1" { var timer = Timer() var minute = 60 timer = Timer.scheduledTimer(withTimeInterval: 1, repeats: true, block: {_ in minute -= 1 self.listTimerCredential[messageId] = minute if minute == 0 { timer.invalidate() self.listTimerCredential.removeValue(forKey: messageId) self.timerCredential.removeValue(forKey: messageId) let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == messageId}) if idx != nil { self.dataMessages[idx!]["lock"] = "2" self.dataMessages[idx!]["reff_id"] = "" } DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(messageId)'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } } let section = self.dataDates.firstIndex(of: self.dataDates[self.dataDates.count - 1]) let row = self.dataMessages.filter({$0["chat_date"] as? String ?? "" == self.dataDates[self.dataDates.count - 1]}).firstIndex(where: { $0["message_id"] as? String == messageId}) if row != nil && section != nil{ self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none) } }) self.timerCredential[messageId] = timer } if textFieldSend.text!.trimmingCharacters(in: .whitespacesAndNewlines) != "Send message".localized() && textFieldSend.textColor != UIColor.lightGray && constraintViewTextField.constant == 0 { textFieldSend.text = "Send message".localized() textFieldSend.textColor = UIColor.lightGray } else if constraintViewTextField.constant != 0 { textFieldSend.text = "" heightTextFieldSend.constant = 40 } deleteReplyView() deleteLinkPreview() NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil) self.tableChatView.scrollToBottom() if self.markerCounter != nil { let lastMarkerCounter = self.markerCounter self.markerCounter = nil self.tableChatView.beginUpdates() let indexMessage = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == lastMarkerCounter }) if indexMessage != nil { let section = self.dataDates.firstIndex(of: self.dataMessages[indexMessage!]["chat_date"] as? String ?? "") let row = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataMessages[indexMessage!]["chat_date"] as? String ?? ""}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[indexMessage!]["message_id"] as? String }) if row != nil && section != nil { self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none) } } self.tableChatView.endUpdates() } // DispatchQueue.main.asyncAfter(deadline: .now() + 1) { // self.timerFakeProgress = Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { _ in // self.updateProgress(row as [AnyHashable : Any]) // if self.fakeProgMultip == self.maxFakeProgMultip { // self.timerFakeProgress?.invalidate() // self.fakeProgMultip = 0 // } // } // } } @objc func ccAction(sender: UIButton) { if self.nowSelectedCategoryCC == "CantReturn" { if sender.tag == 503 { self.view.makeToast("You can't request Call Center more than one".localized(), duration: 3) } else if sender.tag == 504 { busyCCAction(sender: sender) } return } if self.nowSelectedCategoryCC == "endCC" { return } let id = sender.restorationIdentifier?.components(separatedBy: ",")[0] let service_id = sender.restorationIdentifier?.components(separatedBy: ",")[1] let level = id!.substring(from: 5, to: 5) let levelNow = self.nowSelectedCategoryCC.substring(from: 5, to: 5) var isRequest = false var channel = 0 var row: [String: Any?] = [:] if nowSelectedCategoryCC.isEmpty || level > levelNow { if Utils.getDefaultCC() == "No" && !showToastTwiceClick { self.view.makeToast("You can press your choice again to change category".localized(), duration: 3) showToastTwiceClick = true } row["message_id"] = "" row["chat_date"] = "Today".localized() let dataChat: [CategoryCC] = CategoryCC.getDatafromParent(parent: service_id!) if dataChat.count != 0 { var data : [CategoryCC] = [] for i in 0.. 100 { if !buttonScrollToBottom.isDescendant(of: self.view) { addButtonScrollToBottom() addCounterAtButttonScrollToBottom() } } else if (indexFirst!.section == dataDates.count - 1 && indexFirst!.row == dataMessages.count - 1) || fullContentOffset - contentOffsetY < 50 { if buttonScrollToBottom.isDescendant(of: self.view) { buttonScrollToBottom.removeConstraints(buttonScrollToBottom.constraints) buttonScrollToBottom.removeFromSuperview() if indicatorCounterBSTB.isDescendant(of: self.view) { indicatorCounterBSTB.removeConstraints(indicatorCounterBSTB.constraints) indicatorCounterBSTB.removeFromSuperview() } } } let indexPathFirst = tableChatView.indexPathsForVisibleRows?.first if indexPathFirst != nil && listViewOnSection.count != 0 && listViewOnSection.count - 1 >= indexPathFirst!.section { let headerView = listViewOnSection[indexPathFirst!.section] if headerView.isHidden { headerView.isHidden = false } } var listData = dataMessages[0...currentIndexpath!.row] listData = listData.filter({$0["status"] as? String != "4" && $0["status"] as? String != "8"}) if listData.count != 0 && !isContactCenter { let idMe = User.getMyPin() as String? for i in 0...listData.count - 1 { if listData[i]["f_pin"] as? String != idMe { sendReadMessageStatus(chat_id: "", f_pin: dataPerson["f_pin"]!!, message_scope_id: "3", message_id: listData[i]["message_id"] as? String ?? "") } } } } if counter == 0 && indicatorCounterBSTB.isDescendant(of: self.view) { indicatorCounterBSTB.removeConstraints(indicatorCounterBSTB.constraints) indicatorCounterBSTB.removeFromSuperview() } else if counter != 0 && currentIndexpath != nil { let dataFilter = dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[currentIndexpath!.section] }) if dataFilter.count == 0 { return } let idx = dataMessages.firstIndex(where: { $0["message_id"] as? String == dataFilter[currentIndexpath!.row]["message_id"] as? String}) if idx == nil { return } if (dataMessages.count - counter) <= idx! { let countUpdate = idx! - (dataMessages.count - counter) counter = counter - (countUpdate + 1) if indicatorCounterBSTB.isDescendant(of: self.view) { labelCounter.text = "\(counter)" } updateCounter(counter: counter) } } } } //EPV extension EditorPersonal: PreviewAttachmentImageVideoDelegate, PHPickerViewControllerDelegate { public func didSelect(imagevideo: Any?) { if (imagevideo != nil) { let imageVideoData = imagevideo as! [UIImagePickerController.InfoKey: Any] let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: Nexilis.self)) previewImageVC.imageVideoData = imageVideoData if (textFieldSend.textColor != .lightGray) { previewImageVC.currentTextTextField = textFieldSend.text } previewImageVC.modalPresentationStyle = .custom previewImageVC.delegate = self previewImageVC.isAck = self.isAck previewImageVC.isConfidential = self.isConfidential previewImageVC.isCC = self.isContactCenter self.present(previewImageVC, animated: true, completion: nil) } } public func picker(_ picker: PHPickerViewController, didFinishPicking results: [PHPickerResult]) { if !isBlackCancelButton { let cancelButtonAttributes = [NSAttributedString.Key.foregroundColor: UIColor.white, NSAttributedString.Key.font : UIFont.systemFont(ofSize: 16)] UIBarButtonItem.appearance().setTitleTextAttributes(cancelButtonAttributes , for: .normal) } guard let result = results.first else { return } if result.itemProvider.hasItemConformingToTypeIdentifier("com.compuserve.gif") { picker.dismiss(animated: true, completion: nil) result.itemProvider.loadDataRepresentation(forTypeIdentifier: "com.compuserve.gif") { data, error in if let error = error { print("Error loading GIF: \(error.localizedDescription)") } else if let data = data { DispatchQueue.main.async { let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: Nexilis.self)) if (self.textFieldSend.textColor != .lightGray) { previewImageVC.currentTextTextField = self.textFieldSend.text } previewImageVC.fromCopy = true previewImageVC.isGIF = true previewImageVC.dataGIF = data previewImageVC.modalPresentationStyle = .custom previewImageVC.delegate = self previewImageVC.isAck = self.isAck previewImageVC.isConfidential = self.isConfidential previewImageVC.isCC = self.isContactCenter self.present(previewImageVC, animated: true, completion: nil) } } } } else if result.itemProvider.hasItemConformingToTypeIdentifier("public.image") { picker.dismiss(animated: true, completion: nil) result.itemProvider.loadObject(ofClass: UIImage.self) { object, error in if let image = object as? UIImage { DispatchQueue.main.async { let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: Nexilis.self)) if (self.textFieldSend.textColor != .lightGray) { previewImageVC.currentTextTextField = self.textFieldSend.text } previewImageVC.fromCopy = true previewImageVC.image = image previewImageVC.modalPresentationStyle = .custom previewImageVC.delegate = self previewImageVC.isAck = self.isAck previewImageVC.isConfidential = self.isConfidential previewImageVC.isCC = self.isContactCenter self.present(previewImageVC, animated: true, completion: nil) } } } } else if result.itemProvider.hasItemConformingToTypeIdentifier("public.movie") { picker.dismiss(animated: true, completion: { Nexilis.showLoader() result.itemProvider.loadFileRepresentation(forTypeIdentifier: "public.movie") { tempURL, error in if let tempURL = tempURL { let fileManager = FileManager.default let documentsDirectory = fileManager.urls(for: .documentDirectory, in: .userDomainMask).first! let destinationURL = documentsDirectory.appendingPathComponent(tempURL.lastPathComponent) do { if fileManager.fileExists(atPath: destinationURL.path) { try fileManager.removeItem(at: destinationURL) } try fileManager.copyItem(at: tempURL, to: destinationURL) DispatchQueue.main.async { Nexilis.hideLoader { let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: Nexilis.self)) if (self.textFieldSend.textColor != .lightGray) { previewImageVC.currentTextTextField = self.textFieldSend.text } previewImageVC.modalPresentationStyle = .custom previewImageVC.urlVideoPhpPicker = destinationURL previewImageVC.delegate = self previewImageVC.isAck = self.isAck previewImageVC.isConfidential = self.isConfidential previewImageVC.isCC = self.isContactCenter self.present(previewImageVC, animated: true, completion: nil) } } } catch { print("Error copying video file: \(error.localizedDescription)") } } } }) } } func sendChatFromPreviewImage(message_text: String, attachment_flag: String, image_id: String, video_id: String, thumb_id: String, gif_id: String, viewController: UIViewController) { sendChat(message_text: message_text, attachment_flag: attachment_flag, image_id: image_id, video_id: video_id, thumb_id: thumb_id, viewController: viewController, gif_id : gif_id) } } //EQL extension EditorPersonal: UIDocumentPickerDelegate, DocumentPickerDelegate, QLPreviewControllerDataSource { public func didSelectDocument(document: Any?) { if (document != nil) { self.previewItem = (document as! [URL])[0] as NSURL let previewController = QLPreviewController() let navController = CustomNavigationController(rootViewController: previewController) navController.navigationBar.tintColor = .white navController.navigationBar.barTintColor = self.traitCollection.userInterfaceStyle == .dark ? .blackDarkMode : .mainColor navController.navigationBar.isTranslucent = false navController.navigationBar.overrideUserInterfaceStyle = .dark navController.navigationBar.barStyle = .black let cancelButtonAttributes: [NSAttributedString.Key: Any] = [NSAttributedString.Key.foregroundColor: UIColor.white, NSAttributedString.Key.font : UIFont.systemFont(ofSize: 16)] UIBarButtonItem.appearance().setTitleTextAttributes(cancelButtonAttributes, for: .normal) let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white] navController.navigationBar.titleTextAttributes = textAttributes let leftBarButton = navigationQLPreviewDocument(title: "Cancel".localized(), style: .plain, target: self, action: #selector(cancelDocumentPreview)) let rightBarButton = navigationQLPreviewDocument(title: "Send".localized(), style: .done, target: self, action: #selector(sendDocument)) // leftBarButton.tintColor = .white // rightBarButton.tintColor = .white leftBarButton.navigation = navController rightBarButton.navigation = navController // navController.navigationBar.barTintColor = .mainColor navController.navigationBar.isTranslucent = false previewController.navigationItem.leftBarButtonItem = leftBarButton previewController.navigationItem.rightBarButtonItem = rightBarButton previewController.dataSource = self previewController.modalPresentationStyle = .pageSheet self.present(navController, animated: true, completion: nil) } } @objc private func cancelDocumentPreview(sender: navigationQLPreviewDocument) { sender.navigation.dismiss(animated: true, completion: nil) } @objc private func sendDocument(sender: navigationQLPreviewDocument) { sender.navigation.dismiss(animated: true, completion: nil) do { let dataFile = try Data(contentsOf: self.previewItem! as URL) let urlFile = self.previewItem?.absoluteString var originaFileName = (urlFile! as NSString).lastPathComponent originaFileName = NSString(string: originaFileName).removingPercentEncoding! let renamedNameFile = "Nexilis_\(Date().currentTimeMillis())_" + originaFileName let documentsDirectory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first! let fileURL = documentsDirectory.appendingPathComponent(renamedNameFile) if !FileManager.default.fileExists(atPath: fileURL.path) { do { try dataFile.write(to: fileURL) //print("file saved") } catch { //print("error saving file:", error) } } sendChat(message_text: "\(originaFileName)|", attachment_flag: "6", file_id: renamedNameFile, viewController: self) } catch { } } public func numberOfPreviewItems(in controller: QLPreviewController) -> Int { return self.previewItem != nil ? 1 : 0 } public func previewController(_ controller: QLPreviewController, previewItemAt index: Int) -> QLPreviewItem { return self.previewItem! } } //ETV extension EditorPersonal: UITextViewDelegate, CustomTextViewPasteDelegate { func customTextViewDidPasteText(image: UIImage?, dataGIF: Data?) { let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: Nexilis.self)) previewImageVC.image = image previewImageVC.isGIF = image == nil previewImageVC.fromCopy = true previewImageVC.dataGIF = dataGIF previewImageVC.currentTextTextField = textFieldSend.text previewImageVC.modalPresentationStyle = .custom previewImageVC.delegate = self previewImageVC.isAck = self.isAck previewImageVC.isConfidential = self.isConfidential self.present(previewImageVC, animated: true, completion: nil) } public func textViewDidChangeSelection(_ textView: UITextView) { var nowTextFieldSend = self.textFieldSend if isEditingMessage { nowTextFieldSend = editTextView } let cursorPosition = textView.caretRect(for: nowTextFieldSend!.selectedTextRange!.start).origin let doubleCurrentLine = cursorPosition.y / nowTextFieldSend!.font!.lineHeight if doubleCurrentLine.isFinite { let currentLine = Int(doubleCurrentLine) UIView.animate(withDuration: 0.3) { let numberOfLines = textView.textContainer.lineBreakMode == .byWordWrapping ? Int(textView.contentSize.height / textView.font!.lineHeight) - 1 : 1 if currentLine == 0 && numberOfLines == 1 { if self.isEditingMessage { self.constraintHeighteditTextView.constant = 40 } else { self.heightTextFieldSend.constant = 40 } } else if (self.heightTextFieldSend.constant < 95.0 || (self.constraintHeighteditTextView != nil && self.constraintHeighteditTextView.constant < 95.0)) && currentLine >= 4 { if self.isEditingMessage { self.constraintHeighteditTextView.constant = 95.0 } else { self.heightTextFieldSend.constant = 95.0 } } else if currentLine < 4 && numberOfLines < 5 { if (nowTextFieldSend!.text.count > 0 && self.heightTextFieldSend.constant != nowTextFieldSend!.contentSize.height) { if self.isEditingMessage { self.constraintHeighteditTextView.constant = nowTextFieldSend!.contentSize.height } else { self.heightTextFieldSend.constant = nowTextFieldSend!.contentSize.height } } } } } if self.isEditingMessage && textView == editTextView { if textView.text.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty { buttonSendEdit.isEnabled = false } else if !buttonSendEdit.isEnabled { buttonSendEdit.isEnabled = true } } //indention code: let text = textView.text ?? "" let cursorPositionIndent = textView.selectedRange.location // Prevent moving cursor before the 2-space indent let lines = text.components(separatedBy: "\n") var adjustedCursorPosition = cursorPositionIndent for line in lines { if let range = text.range(of: line), NSRange(range, in: text).contains(cursorPositionIndent) { if line.hasPrefix(" •") || line.range(of: #"^\s{2}\d+\."#, options: .regularExpression) != nil { let startOfLine = text.distance(from: text.startIndex, to: range.lowerBound) let minCursorPosition = startOfLine + 2 // Prevent cursor before indentation if cursorPositionIndent < minCursorPosition { adjustedCursorPosition = minCursorPosition } } break } } if adjustedCursorPosition != cursorPositionIndent { textView.selectedRange = NSRange(location: adjustedCursorPosition, length: 0) } } public func textViewDidChange(_ textView: UITextView) { if textView.text.count == 0 { isAlwaysHideLinkPreview = false } if allowTyping { allowTyping = false if isContactCenter && !fPinContacCenter.isEmpty { sendTyping(l_pin: fPinContacCenter, isTyping: true) } else { sendTyping(l_pin: dataPerson["f_pin"]!!, isTyping: true) } DispatchQueue.main.asyncAfter(deadline: .now() + 4, execute: { self.allowTyping = true }) } timerCheckLink?.invalidate() timerCheckLink = Timer.scheduledTimer(withTimeInterval: 0.5, repeats: false, block: {_ in self.checkLink(fullText: textView.text) }) //indention code: let text = textView.text ?? "" let cursorPosition = textView.selectedRange.location // Handle Bullets (- [space] + letter → • ) let bulletPattern = #"(?<=\n|^)- (\S)"# if let match = text.range(of: bulletPattern, options: .regularExpression) { let matchedText = text[match] if let spaceIndex = matchedText.firstIndex(of: " ") { let firstLetter = matchedText[matchedText.index(after: spaceIndex)...] let replacedText = text.replacingOccurrences(of: matchedText, with: " • \(firstLetter)", range: match) let newCursorPosition = cursorPosition + 2 // Adjust cursor position textView.text = replacedText textView.selectedRange = NSRange(location: newCursorPosition, length: 0) return } } // Handle Numbered Lists (e.g., "1. " [space] + letter → " 1.") let numberPattern = #"(?<=\n|^)(\d+)\. (\S)"# // Matches "1. X" if let match = text.range(of: numberPattern, options: .regularExpression) { let matchedText = text[match] if let spaceIndex = matchedText.firstIndex(of: " ") { let firstLetter = matchedText[matchedText.index(after: spaceIndex)...] let replacedText = text.replacingOccurrences(of: matchedText, with: " \(matchedText)", range: match) let newCursorPosition = cursorPosition + 2 // Adjust cursor textView.text = replacedText textView.selectedRange = NSRange(location: newCursorPosition, length: 0) return } } // Handle Undo: If user removes the first letter, revert back to original "- " or "1. " let bulletUndoPattern = #"(^|\n) • $"# // Matches " • " when the letter is removed if let match = text.range(of: bulletUndoPattern, options: .regularExpression) { let replacedText = text.replacingOccurrences(of: " • ", with: "- ", range: match) let newCursorPosition = cursorPosition - 2 textView.text = replacedText textView.selectedRange = NSRange(location: newCursorPosition, length: 0) return } let numberUndoPattern = #"(^|\n) (\d+)\. $"# // Matches " 1. " when the letter is removed if let match = text.range(of: numberUndoPattern, options: .regularExpression) { let replacedText = text.replacingOccurrences(of: " ", with: "", range: match) let newCursorPosition = cursorPosition - 2 textView.text = replacedText textView.selectedRange = NSRange(location: newCursorPosition, length: 0) } textView.preserveCursorPosition(withChanges: { _ in textView.attributedText = textView.text.richText(isEditing: true) return .preserveCursor }) } private func checkLink(fullText: String) { if !isAlwaysHideLinkPreview { var text = "" let listTextSplitBreak = fullText.components(separatedBy: "\n") let indexFirstLinkSplitBreak = listTextSplitBreak.firstIndex(where: { $0.contains("www.") || $0.contains("http://") || $0.contains("https://") }) if indexFirstLinkSplitBreak != nil { let listTextSplitSpace = listTextSplitBreak[indexFirstLinkSplitBreak!].components(separatedBy: " ") let indexFirstLinkSplitSpace = listTextSplitSpace.firstIndex(where: { ($0.starts(with: "www.") && $0.components(separatedBy: ".").count > 2) || ($0.starts(with: "http://") && $0.components(separatedBy: ".").count > 1) || ($0.starts(with: "https://") && $0.components(separatedBy: ".").count > 1) }) if indexFirstLinkSplitSpace != nil { text = listTextSplitSpace[indexFirstLinkSplitSpace!] } } if !text.isEmpty { var stringURl = text if stringURl.starts(with: "www.") { stringURl = "https://" + stringURl.replacingOccurrences(of: "www.", with: "") } var dataURL = "" Database.shared.database?.inTransaction({ (fmdb, rollback) in do { if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "select data_link from LINK_PREVIEW where link='\(text)'") { while cursor.next() { if let data = cursor.string(forColumnIndex: 0) { dataURL = data } } cursor.close() } } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) if !dataURL.isEmpty { if let data = try! JSONSerialization.jsonObject(with: dataURL.data(using: String.Encoding.utf8)!, options: []) as? [String: Any] { let title = data["title"] as? String ?? "" let description = data["description"] as? String ?? "" let imageUrl = data["imageUrl"] as? String let link = data["link"] as? String ?? "" if self.showingLink != text { self.showingLink = text self.deleteLinkPreview() if !textFieldSend.text.isEmpty || textFieldSend.text.contains(text){ self.buildPreviewLink(imageUrl: imageUrl, title: title, description: description, stringURl: text) } } } } else { let urlConfig = URLSessionConfiguration.default let sessionDelegate = SelfSignedURLSessionDelegate() let session = URLSession(configuration: urlConfig, delegate: sessionDelegate, delegateQueue: nil) let slp = SwiftLinkPreview(session: session, workQueue: SwiftLinkPreview.defaultWorkQueue, responseQueue: DispatchQueue.main, cache: DisabledCache.instance) let preview = slp.preview(stringURl, onSuccess: { result in let title = result.title ?? "No Title" let description = stringURl.contains("google.com") ? "" : result.description let imageUrl = result.icon Database.shared.database?.inTransaction({ (fmdb, rollback) in do { var dataJson: [String: Any] = [:] dataJson["title"] = title dataJson["description"] = description dataJson["imageUrl"] = imageUrl dataJson["link"] = text guard let json = String(data: try! JSONSerialization.data(withJSONObject: dataJson, options: []), encoding: String.Encoding.utf8) else { return } _ = try Database.shared.insertRecord(fmdb: fmdb, table: "LINK_PREVIEW", cvalues: [ "id" : "\(Date().currentTimeMillis().toHex())", "link" : text, "data_link" : json, "retry": 0 ], replace: true) } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) if self.showingLink != text { self.showingLink = text self.deleteLinkPreview() if !self.textFieldSend.text.isEmpty || self.textFieldSend.text.contains(text){ self.buildPreviewLink(imageUrl: imageUrl, title: title, description: description, stringURl: text) } } }, onError: { error in self.deleteLinkPreview() }) } } else { deleteLinkPreview() } } } private func buildPreviewLink(imageUrl: String?, title: String, description: String?, stringURl: String) { if !self.viewTextfield.subviews.contains(self.containerLink){ UIView.animate(withDuration: 0.25, delay: 0.0, options: .curveEaseInOut, animations: { self.constraintTopTextField.constant = self.constraintTopTextField.constant + 80 }, completion: nil) } self.viewTextfield.addSubview(self.containerLink) self.containerLink.translatesAutoresizingMaskIntoConstraints = false self.containerLink.leadingAnchor.constraint(equalTo: self.viewTextfield.leadingAnchor).isActive = true self.containerLink.bottomAnchor.constraint(equalTo: self.textFieldSend.topAnchor).isActive = true self.containerLink.trailingAnchor.constraint(equalTo: self.viewTextfield.trailingAnchor).isActive = true self.containerLink.heightAnchor.constraint(equalToConstant: 80.0).isActive = true self.containerLink.backgroundColor = .secondaryColor if self.reffId != nil { self.bottomAnchorPreviewReply.isActive = false self.bottomAnchorPreviewReply = self.containerPreviewReply.bottomAnchor.constraint(equalTo: self.containerLink.topAnchor) self.bottomAnchorPreviewReply.isActive = true } let imagePreview = UIImageView() if imageUrl != nil { self.containerLink.addSubview(imagePreview) imagePreview.translatesAutoresizingMaskIntoConstraints = false imagePreview.leadingAnchor.constraint(equalTo: self.containerLink.leadingAnchor).isActive = true imagePreview.bottomAnchor.constraint(equalTo: self.containerLink.bottomAnchor).isActive = true imagePreview.topAnchor.constraint(equalTo: self.containerLink.topAnchor).isActive = true imagePreview.widthAnchor.constraint(equalToConstant: 80.0).isActive = true imagePreview.loadImageAsync(with: imageUrl) imagePreview.contentMode = .scaleAspectFit } let titlePreview = UILabel() self.containerLink.addSubview(titlePreview) titlePreview.translatesAutoresizingMaskIntoConstraints = false if imageUrl != nil { titlePreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true } else { titlePreview.leadingAnchor.constraint(equalTo: self.containerLink.leadingAnchor, constant: 5.0).isActive = true } titlePreview.topAnchor.constraint(equalTo: self.containerLink.topAnchor, constant: 25.0).isActive = true titlePreview.trailingAnchor.constraint(equalTo: self.containerLink.trailingAnchor, constant: -80.0).isActive = true titlePreview.text = title titlePreview.font = UIFont.systemFont(ofSize: 14.0 + offset(), weight: .bold) titlePreview.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .black let descPreview = UILabel() self.containerLink.addSubview(descPreview) descPreview.translatesAutoresizingMaskIntoConstraints = false if imageUrl != nil { descPreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true } else { descPreview.leadingAnchor.constraint(equalTo: self.containerLink.leadingAnchor, constant: 5.0).isActive = true } descPreview.topAnchor.constraint(equalTo: titlePreview.bottomAnchor).isActive = true descPreview.trailingAnchor.constraint(equalTo: self.containerLink.trailingAnchor, constant: -80.0).isActive = true descPreview.text = description descPreview.font = UIFont.systemFont(ofSize: 12.0 + offset()) descPreview.textColor = .gray descPreview.numberOfLines = 1 let linkPreview = UILabel() self.containerLink.addSubview(linkPreview) linkPreview.translatesAutoresizingMaskIntoConstraints = false if imageUrl != nil { linkPreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true } else { linkPreview.leadingAnchor.constraint(equalTo: self.containerLink.leadingAnchor, constant: 5.0).isActive = true } linkPreview.topAnchor.constraint(equalTo: descPreview.bottomAnchor, constant: 8.0).isActive = true linkPreview.trailingAnchor.constraint(equalTo: self.containerLink.trailingAnchor, constant: -80.0).isActive = true linkPreview.text = stringURl linkPreview.font = UIFont.systemFont(ofSize: 10.0 + offset()) linkPreview.textColor = .gray linkPreview.numberOfLines = 1 let cancelPreview = UIButton(type: .custom) self.containerLink.addSubview(cancelPreview) cancelPreview.translatesAutoresizingMaskIntoConstraints = false cancelPreview.trailingAnchor.constraint(equalTo: self.containerLink.trailingAnchor, constant: -10).isActive = true cancelPreview.centerYAnchor.constraint(equalTo: self.containerLink.centerYAnchor).isActive = true cancelPreview.setImage(UIImage(systemName: "xmark.circle" , withConfiguration: UIImage.SymbolConfiguration(pointSize: 20, weight: .regular, scale: .default)), for: .normal) cancelPreview.addTarget(nil, action: #selector(self.removeLinkPreviewUntilEmptyTextView), for: .touchUpInside) cancelPreview.backgroundColor = .clear cancelPreview.tintColor = .mainColor } public func textViewDidBeginEditing(_ textView: UITextView) { if textView.textColor == UIColor.lightGray { textView.text = nil textView.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : UIColor.black } } public func textViewDidEndEditing(_ textView: UITextView) { if textView.text.isEmpty && textView != editTextView { textView.text = "Send message".localized() textView.textColor = UIColor.lightGray } } public func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { let nsText = textView.text as NSString? ?? "" let newText = nsText.replacingCharacters(in: range, with: text) var lines = textView.text.components(separatedBy: "\n") let affectedLineIndex = textView.text[..= 0, affectedLineIndex < lines.count else { return true } let affectedLine = lines[affectedLineIndex] // Prevent deleting two-space indentation before bullet/number if affectedLine.hasPrefix(" •") || affectedLine.range(of: #"^\s{2}\d+\."#, options: .regularExpression) != nil { let startIndex = textView.text.distance(from: textView.text.startIndex, to: textView.text.range(of: affectedLine)?.lowerBound ?? textView.text.startIndex) if range.location == startIndex || range.location == startIndex + 1 { return false } } // Auto-indent new lines based on previous line if text == "\n" { let previousLine = lines[affectedLineIndex] if previousLine.hasPrefix(" •") { let newBullet = "\n • " textView.text = nsText.replacingCharacters(in: range, with: newBullet) textView.selectedRange = NSRange(location: range.location + newBullet.count, length: 0) return false } if let match = previousLine.range(of: #"^\s{2}(\d+)\."#, options: .regularExpression), let numberMatch = previousLine[match].components(separatedBy: ".").first, let number = Int(numberMatch.trimmingCharacters(in: .whitespaces)) { let newNumber = "\n \(number + 1). " textView.text = nsText.replacingCharacters(in: range, with: newNumber) textView.selectedRange = NSRange(location: range.location + newNumber.count, length: 0) return false } } // **Handle Backspace on Empty Bullet (Convert " • " → "- ")** if text.isEmpty && affectedLine.trimmingCharacters(in: .whitespaces) == "•" { lines[affectedLineIndex] = "- " // Replace " • " with "- " textView.text = lines.joined(separator: "\n") textView.selectedRange = NSRange(location: range.location - 1, length: 0) return false } if text.isEmpty, let numberMatch = affectedLine.range(of: #"^\s{2}(\d+)\.$"#, options: .regularExpression) { lines[affectedLineIndex] = "\(affectedLine.trimmingCharacters(in: .whitespaces))" // Remove indent textView.text = lines.joined(separator: "\n") textView.selectedRange = NSRange(location: range.location - 1, length: 0) return false } if (self.textFieldSend.text.count == 0) { return text != "\n" } return true } func isGIFData(_ data: Data) -> Bool { let gifSignature: [UInt8] = [0x47, 0x49, 0x46, 0x38, 0x37, 0x61] let rawData = [UInt8](data.prefix(6)) return rawData == gifSignature } public func textView(_ textView: UITextView, shouldInteractWith URL: URL, in characterRange: NSRange, interaction: UITextItemInteraction) -> Bool { switch interaction { case .invokeDefaultAction: let gesture = ObjectGesture() gesture.message_id = URL.absoluteString tapMessageText(gesture) return false case .presentActions: UIPasteboard.general.string = URL.absoluteString self.view.makeToast("Link Copied".localized(), duration: 3) return false case .preview: return true @unknown default: return true } } } //EUC extension EditorPersonal: UIContextMenuInteractionDelegate { public func contextMenuInteraction(_ interaction: UIContextMenuInteraction, willEndFor configuration: UIContextMenuConfiguration, animator: UIContextMenuInteractionAnimating?) { if showMenuContext { showMenuContext = false interaction.view!.removeInteraction(interaction) } } public func contextMenuInteraction(_ interaction: UIContextMenuInteraction, configurationForMenuAtLocation location: CGPoint) -> UIContextMenuConfiguration? { if textFieldSend.isFirstResponder { textFieldSend.resignFirstResponder() } let indexPath = self.tableChatView.indexPathForRow(at: interaction.view!.convert(location, to: self.tableChatView)) let dataMessages = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[indexPath!.section]}) var star: UIAction if (dataMessages[indexPath!.row]["is_stared"] as? String ?? "" == "0") { star = UIAction(title: "Star".localized(), image: UIImage(systemName: "star"), handler: {(_) in if self.removed { return } DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "is_stared" : 1 ], _where: "message_id = '\(dataMessages[indexPath!.row]["message_id"] as? String ?? "")'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[indexPath!.row]["message_id"] as? String}) if idx != nil{ self.dataMessages[idx!]["is_stared"] = "1" } self.tableChatView.reloadRows(at: [indexPath!], with: .none) NotificationCenter.default.post(name: NSNotification.Name(rawValue: "listenerStarMessage"), object: nil, userInfo: nil) }) } else { star = UIAction(title: "Unstar".localized(), image: UIImage(systemName: "star.slash"), handler: {(_) in if self.removed { return } DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "is_stared" : 0 ], _where: "message_id = '\(dataMessages[indexPath!.row]["message_id"] as? String ?? "")'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[indexPath!.row]["message_id"] as? String}) if idx != nil{ self.dataMessages[idx!]["is_stared"] = "0" } self.tableChatView.reloadRows(at: [indexPath!], with: .none) NotificationCenter.default.post(name: NSNotification.Name(rawValue: "listenerStarMessage"), object: nil, userInfo: nil) }) } let reply = UIAction(title: "Reply".localized(), image: UIImage(systemName: "arrowshape.turn.up.left"), handler: {(_) in if self.removed { return } if self.isSearching { self.cancelAction() } DispatchQueue.main.asyncAfter(deadline: .now() + 0.35, execute: { self.handleReply(indexPath: indexPath!) }) }) let forward = UIAction(title: "Forward".localized(), image: UIImage(systemName: "arrowshape.turn.up.right"), handler: {(_) in if self.removed { return } if self.isSearching { self.cancelAction() } if self.reffId != nil { self.deleteReplyView() } DispatchQueue.main.asyncAfter(deadline: .now() + 0.35) { self.forwardSession = true let cancelButton = UIBarButtonItem(title: "Cancel".localized(), style: .plain, target: self, action: #selector(self.cancelAction)) cancelButton.setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.white, NSAttributedString.Key.font: UIFont.systemFont(ofSize: 16)], for: .normal) if self.dataPerson["f_pin"] != "-999" && !self.isContactCenter { self.navigationItem.rightBarButtonItems = nil } self.navigationItem.rightBarButtonItem = cancelButton if self.isContactCenter || self.fromNotification { self.navigationItem.leftBarButtonItem = nil } self.changeAppBar() let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[indexPath!.row]["message_id"] as? String}) if idx != nil{ self.dataMessages[idx!]["isSelected"] = true } self.addMultipleSelectSession() self.tableChatView.reloadData() } }) let copy = UIAction(title: "Copy".localized(), image: UIImage(systemName: "doc.on.doc"), handler: {(_) in if self.removed { return } if self.isSearching { self.cancelAction() } if self.reffId != nil { self.deleteReplyView() } DispatchQueue.main.asyncAfter(deadline: .now() + 0.35) { self.copySession = true let cancelButton = UIBarButtonItem(title: "Cancel".localized(), style: .plain, target: self, action: #selector(self.cancelAction)) cancelButton.setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.white, NSAttributedString.Key.font: UIFont.systemFont(ofSize: 16)], for: .normal) if self.dataPerson["f_pin"] != "-999" && !self.isContactCenter { self.navigationItem.rightBarButtonItems = nil } self.navigationItem.rightBarButtonItem = cancelButton if self.isContactCenter || self.fromNotification { self.navigationItem.leftBarButtonItem = nil } self.changeAppBar() let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[indexPath!.row]["message_id"] as? String}) if idx != nil{ self.dataMessages[idx!]["isSelected"] = true } self.addMultipleSelectSession() self.tableChatView.reloadData() } }) let edit = UIAction(title: "Edit".localized(), image: UIImage(systemName: "pencil.tip.crop.circle"), handler: {(_) in self.isEditingMessage = true self.showEditMessageView(at: indexPath!) }) let translate = UIAction(title: "Translate".localized(), image: UIImage(systemName: "t.bubble"), handler: {(_) in self.view.makeToast("Translating...".localized(), duration: 3) var translation: String = "English" let lang: String = SecureUserDefaults.shared.value(forKey: "i18n_language") ?? "en" if lang == "id" { translation = "Indonesia" } let payload: [String : Any] = [ "role": "user", "content": dataMessages[indexPath!.row][TypeDataMessage.message_text]!! ] let parameter: [String : Any] = [ "use_video": "0", "translate": translation, "payload": [payload] ] DispatchQueue.global().async { Utils.postDataWithCookiesAndUserAgent(from: URL(string: Utils.getGPTBotUrl())!, parameter: parameter, completion: { data, response, error in let response = response as? HTTPURLResponse if response?.statusCode != 200 || error != nil { DispatchQueue.main.async { self.view.makeToast("There is an error occurred while translating your message. Please try again or check your network connection.".localized(), duration: 3) } return } if let data = data, let responseString = String(data: data, encoding: .utf8) { if let json = try? JSONSerialization.jsonObject(with: responseString.data(using: String.Encoding.utf8)!, options: JSONSerialization.ReadingOptions()) as? [String: String] { let dataContent = json["content"]! let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[indexPath!.row]["message_id"] as? String}) if idx != nil{ self.dataMessages[idx!][TypeDataMessage.message_text] = (dataMessages[indexPath!.row][TypeDataMessage.message_text] as? String ?? "") + "\n\n" + "$\(dataContent)$" } DispatchQueue.main.async{ self.tableChatView.reloadRows(at: [indexPath!], with: .none) } } } }) } }) let gcs = UIAction(title: "Get Chat Suggestion".localized(), image: UIImage(systemName: "exclamationmark.bubble"), handler: {(_) in self.view.makeToast("Getting chat suggestion...".localized(), duration: 3) let payload: [String : Any] = [ "role": "user", "content": dataMessages[indexPath!.row][TypeDataMessage.message_text]!! ] let parameter: [String : Any] = [ "use_video": "0", "suggest": "1", "payload": [payload] ] DispatchQueue.global().async { Utils.postDataWithCookiesAndUserAgent(from: URL(string: Utils.getGPTBotUrl())!, parameter: parameter, completion: { data, response, error in let response = response as? HTTPURLResponse if response?.statusCode != 200 || error != nil { DispatchQueue.main.async { self.view.makeToast("There is an error occurred while getting chat suggestion for you. Please try again or check your network connection.".localized(), duration: 3) } return } if let data = data, let responseString = String(data: data, encoding: .utf8) { if let json = try? JSONSerialization.jsonObject(with: responseString.data(using: String.Encoding.utf8)!, options: JSONSerialization.ReadingOptions()) as? [String: Any] { if let dataMessage = json["message"] as? [[String: Any]] { if let dataContent = dataMessage[0]["content"] as? String { DispatchQueue.main.async{ self.textFieldSend.text = dataContent self.textFieldSend.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : UIColor.black } } } } } }) } }) let more = UIMenu(title: "More...".localized(), children: [translate, gcs]) let info = UIAction(title: "Info".localized(), image: UIImage(systemName: "info.circle"), handler: {(_) in if self.removed { return } let messageInfoVC = MessageInfo() messageInfoVC.data = dataMessages[indexPath!.row] messageInfoVC.dataPerson = self.dataPerson self.navigationController?.pushViewController(messageInfoVC, animated: true) }) let delete = UIAction(title: "Delete".localized(), image: UIImage(systemName: "trash"), attributes: .destructive, handler: {(_) in if self.removed { return } if self.isSearching { self.cancelAction() } if self.reffId != nil { self.deleteReplyView() } DispatchQueue.main.asyncAfter(deadline: .now() + 0.35) { self.deleteSession = true let cancelButton = UIBarButtonItem(title: "Cancel".localized(), style: .plain, target: self, action: #selector(self.cancelAction)) cancelButton.setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.white, NSAttributedString.Key.font: UIFont.systemFont(ofSize: 16)], for: .normal) if self.dataPerson["f_pin"] != "-999" && !self.isContactCenter { self.navigationItem.rightBarButtonItems = nil } self.navigationItem.rightBarButtonItem = cancelButton if self.isContactCenter || self.fromNotification { self.navigationItem.leftBarButtonItem = nil } self.changeAppBar() let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[indexPath!.row]["message_id"] as? String}) if idx != nil{ self.dataMessages[idx!]["isSelected"] = true } self.addMultipleSelectSession() self.tableChatView.reloadData() } }) let resend = UIAction(title: "Resend".localized(), image: UIImage(systemName: "arrow.clockwise"), handler: {(_) in let messageId = dataMessages[indexPath!.row][TypeDataMessage.message_id] as? String ?? "" let status = dataMessages[indexPath!.row][TypeDataMessage.status] as? String ?? "" var idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String ?? "" == messageId }) if let idxMessageIdParent = self.groupImages.firstIndex(where: { $0.value.contains(where: { $0.messageId == messageId }) }) { if let idxInImages = self.groupImages[idxMessageIdParent].value.firstIndex(where: { $0.messageId == messageId }) { self.groupImages[idxMessageIdParent].value[idxInImages].status = "1" self.groupImages[idxMessageIdParent].value[idxInImages].dataMessage[TypeDataMessage.status] = "1" } idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == self.groupImages[idxMessageIdParent].key }) } if (idx != nil) { do { self.dataMessages[idx!][TypeDataMessage.status] = "1" self.dataMessages[idx!][TypeDataMessage.progress] = 0.0 let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as? String ?? "") let row = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataMessages[idx!]["chat_date"] as? String ?? ""}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[idx!]["message_id"] as? String }) if row != nil && section != nil { self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none) } } catch { } } Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "status" : "1" ], _where: "message_id = '\(messageId)'") _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [ "status" : "1" ], _where: "message_id = '\(messageId)'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) let message = CoreMessage_TMessageBank.sendMessage(message_id: messageId, l_pin: dataMessages[indexPath!.row][TypeDataMessage.l_pin] as? String ?? "", message_scope_id: dataMessages[indexPath!.row][TypeDataMessage.message_scope_id] as? String ?? "", status: "1", message_text: dataMessages[indexPath!.row][TypeDataMessage.message_text] as? String ?? "", credential: dataMessages[indexPath!.row][TypeDataMessage.credential] as? String ?? "", attachment_flag: dataMessages[indexPath!.row][TypeDataMessage.attachment_flag] as? String ?? "", ex_blog_id: dataMessages[indexPath!.row][TypeDataMessage.blog_id] as? String ?? "", message_large_text: "", ex_format: "", image_id: dataMessages[indexPath!.row][TypeDataMessage.image_id] as? String ?? "", audio_id: dataMessages[indexPath!.row][TypeDataMessage.audio_id] as? String ?? "", video_id: dataMessages[indexPath!.row][TypeDataMessage.video_id] as? String ?? "", file_id: dataMessages[indexPath!.row][TypeDataMessage.file_id] as? String ?? "", thumb_id: dataMessages[indexPath!.row][TypeDataMessage.thumb_id] as? String ?? "", reff_id: dataMessages[indexPath!.row][TypeDataMessage.reff_id] as? String ?? "", read_receipts: dataMessages[indexPath!.row][TypeDataMessage.read_receipts] as? String ?? "", chat_id: dataMessages[indexPath!.row][TypeDataMessage.chat_id] as? String ?? "", is_call_center: dataMessages[indexPath!.row][TypeDataMessage.is_call_center] as? String ?? "", call_center_id: dataMessages[indexPath!.row][TypeDataMessage.call_center_id] as? String ?? "", opposite_pin: dataMessages[indexPath!.row][TypeDataMessage.opposite_pin] as? String ?? "") Nexilis.addQueueMessage(message: message) }) var children: [UIMenuElement] = [star, reply, forward, copy, delete] var isMore = false // let copyOption = self.copyOption(indexPath: indexPath!) let idMe = User.getMyPin() as String? if dataMessages[indexPath!.row]["status"] as? String ?? "" == "0" { children = [resend, delete] } else if isContactCenter { if dataMessages[indexPath!.row]["attachment_flag"] as? String ?? "" == "11" { children = [reply] } else { children = [reply, copy] } } else if (dataMessages[indexPath!.row]["lock"] != nil && dataMessages[indexPath!.row]["lock"] as? String ?? "" == "1") || dataMessages[indexPath!.row]["message_scope_id"] as? String ?? "" == "18" || dataPerson["f_pin"] == "-999" || dataMessages[indexPath!.row]["credential"] as? String ?? "" == "1" { children = [delete] } else if (groupImages[dataMessages[indexPath!.row]["message_id"] as? String ?? ""] != nil) { forward.title = "Forward All".localized() delete.title = "Delete All".localized() children = [forward, delete] } else if blocking == "1" || blocking == "-1" { children = [star, forward, copy ,delete] if !(dataMessages[indexPath!.row]["image_id"] as? String ?? "").isEmpty || !(dataMessages[indexPath!.row]["video_id"] as? String ?? "").isEmpty { children = [star, forward ,delete] } if (dataMessages[indexPath!.row]["f_pin"] as? String ?? "") == idMe { children.insert(info, at: children.count - 1) } } else if !(dataMessages[indexPath!.row]["image_id"] as? String ?? "").isEmpty || !(dataMessages[indexPath!.row]["video_id"] as? String ?? "").isEmpty || !(dataMessages[indexPath!.row]["file_id"] as? String ?? "").isEmpty { children = [star, reply, forward ,delete] if (dataMessages[indexPath!.row]["f_pin"] as? String ?? "") == idMe { children.insert(info, at: children.count - 1) } } else if dataMessages[indexPath!.row]["attachment_flag"] as? String ?? "" == "11" { children = [reply, delete] if (dataMessages[indexPath!.row]["f_pin"] as? String ?? "") == idMe { children.insert(info, at: children.count - 1) } } else { if (dataMessages[indexPath!.row]["f_pin"] as? String ?? "") == idMe { children.insert(info, at: children.count - 1) } if !(dataMessages[indexPath!.row][TypeDataMessage.message_text] as? String ?? "").isEmpty { if (dataMessages[indexPath!.row]["f_pin"] as? String ?? "") == idMe && ((dataMessages[indexPath!.row][TypeDataMessage.is_forwarded] as? Int) ?? 0) == 0 { let date = Date(milliseconds: Int64(dataMessages[indexPath!.row][TypeDataMessage.server_date] as? String ?? "") ?? 0) let pastDate = date.addingTimeInterval(-10 * 60) let differenceInSeconds = date.timeIntervalSince(pastDate) if abs(differenceInSeconds) <= 15 * 60 { children.insert(edit, at: children.count - 1) } } isMore = true } } let mainMenu = UIMenu(title: "", options: [.displayInline], children: children) var menuForShow = UIMenu(title: "", children: [mainMenu]) if isMore { menuForShow = UIMenu(title: "", children: [mainMenu, more]) } return UIContextMenuConfiguration(identifier: nil, previewProvider: nil) { _ in return menuForShow } } func showEditMessageView(at indexPath: IndexPath) { let dataMessages = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[indexPath.section]}) let oldText = dataMessages[indexPath.row][TypeDataMessage.message_text] as? String ?? "" editVC = UIViewController() if let view = editVC.view { view.backgroundColor = .clear let blurView = UIView() let blurEffect = UIBlurEffect(style: .systemUltraThinMaterialLight) let blurEffectView = UIVisualEffectView(effect: blurEffect) blurEffectView.frame = blurView.bounds blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight] blurView.addSubview(blurEffectView) blurView.sendSubviewToBack(blurEffectView) view.addSubview(blurView) blurView.anchor(top: view.topAnchor, left: view.leftAnchor, bottom: view.bottomAnchor, right: view.rightAnchor) let tapGesture = UITapGestureRecognizer(target: self, action: #selector(dismissEditVC)) tapGesture.cancelsTouchesInView = false view.addGestureRecognizer(tapGesture) editTextView = CustomTextView() editTextView.layer.cornerRadius = textFieldSend.maxCornerRadius() editTextView.layer.borderWidth = 1.0 editTextView.textColor = UIColor.black editTextView.tintColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .black editTextView.textContainerInset = UIEdgeInsets(top: 12, left: 20, bottom: 11, right: 40) editTextView.layer.borderColor = UIColor.lightGray.withAlphaComponent(0.5).cgColor editTextView.font = UIFont.systemFont(ofSize: 12 + offset()) editTextView.delegate = self editTextView.allowsEditingTextAttributes = true editTextView.backgroundColor = .clear view.addSubview(editTextView) editTextView.anchor(left: view.leftAnchor, right: view.rightAnchor, paddingLeft: 15, paddingRight: 15) constraintBottomeditTextView = editTextView.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: -15) constraintHeighteditTextView = editTextView.heightAnchor.constraint(equalToConstant: 40) constraintBottomeditTextView.isActive = true constraintHeighteditTextView.isActive = true editTextView.text = oldText editTextView.becomeFirstResponder() buttonSendEdit.setImage(resizeImage(image: self.traitCollection.userInterfaceStyle == .dark ? UIImage(named: "Send-(White)", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!.withTintColor(.blackDarkMode) : UIImage(named: "Send-(White)", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal), for: .normal) buttonSendEdit.circle() buttonSendEdit.isEnabled = true buttonSendEdit.actionHandle(controlEvents: .touchUpInside, ForAction:{() -> Void in let newText = self.editTextView.text ?? "" if !newText.isEmpty && newText.trimmingCharacters(in: .whitespacesAndNewlines) != oldText { let lastEdited = Int64(Date().currentTimeMillis()) let message = CoreMessage_TMessageBank.editMessage(message_id: dataMessages[indexPath.row][TypeDataMessage.message_id] as? String ?? "", l_pin: dataMessages[indexPath.row][TypeDataMessage.l_pin] as? String ?? "", message_scope_id: dataMessages[indexPath.row][TypeDataMessage.message_scope_id] as? String ?? "", status: "1", message_text: newText, credential: dataMessages[indexPath.row][TypeDataMessage.credential] as? String ?? "", attachment_flag: dataMessages[indexPath.row][TypeDataMessage.attachment_flag] as? String ?? "", ex_blog_id: dataMessages[indexPath.row][TypeDataMessage.blog_id] as? String ?? "", message_large_text: "", ex_format: "", image_id: dataMessages[indexPath.row][TypeDataMessage.image_id] as? String ?? "", audio_id: dataMessages[indexPath.row][TypeDataMessage.audio_id] as? String ?? "", video_id: dataMessages[indexPath.row][TypeDataMessage.video_id] as? String ?? "", file_id: dataMessages[indexPath.row][TypeDataMessage.file_id] as? String ?? "", thumb_id: dataMessages[indexPath.row][TypeDataMessage.thumb_id] as? String ?? "", reff_id: dataMessages[indexPath.row][TypeDataMessage.reff_id] as? String ?? "", read_receipts: dataMessages[indexPath.row][TypeDataMessage.read_receipts] as? String ?? "", chat_id: dataMessages[indexPath.row][TypeDataMessage.chat_id] as? String ?? "", is_call_center: dataMessages[indexPath.row][TypeDataMessage.is_call_center] as? String ?? "", call_center_id: dataMessages[indexPath.row][TypeDataMessage.call_center_id] as? String ?? "", opposite_pin: dataMessages[indexPath.row][TypeDataMessage.opposite_pin] as? String ?? "", server_date: dataMessages[indexPath.row][TypeDataMessage.server_date] as? String ?? "", local_time_stamp: dataMessages[indexPath.row][TypeDataMessage.server_date] as? String ?? "", last_edit: lastEdited) Nexilis.addQueueMessage(message: message, isEditMessage: true) DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "message_text" : newText, "last_edited" : lastEdited ], _where: "message_id = '\(dataMessages[indexPath.row]["message_id"] as? String ?? "")'") NotificationCenter.default.post(name: NSNotification.Name(rawValue: "reloadTabChats"), object: nil, userInfo: nil) } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) } let idx = self.dataMessages.firstIndex(where: { $0[TypeDataMessage.message_id] as? String == dataMessages[indexPath.row][TypeDataMessage.message_id] as? String}) if idx != nil{ self.dataMessages[idx!][TypeDataMessage.message_text] = newText self.dataMessages[idx!][TypeDataMessage.last_edit] = lastEdited self.tableChatView.reloadRows(at: [indexPath], with: .none) } } }) buttonSendEdit.backgroundColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .mainColor view.addSubview(buttonSendEdit) buttonSendEdit.anchor(right: view.rightAnchor, paddingRight: 15, width: 40, height: 40) constraintBottomSendEditTV = buttonSendEdit.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: -15) constraintBottomSendEditTV.isActive = true let viewMessage = UIView() view.addSubview(viewMessage) viewMessage.translatesAutoresizingMaskIntoConstraints = false if (dataMessages[indexPath.row][TypeDataMessage.f_pin] as? String == User.getMyPin()) { viewMessage.leftAnchor.constraint(greaterThanOrEqualTo: view.leftAnchor, constant: 60).isActive = true viewMessage.rightAnchor.constraint(equalTo: view.rightAnchor, constant: -15).isActive = true viewMessage.backgroundColor = .blueBubbleColor viewMessage.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner, .layerMinXMinYCorner] } else { viewMessage.rightAnchor.constraint(lessThanOrEqualTo: view.rightAnchor, constant: 60).isActive = true viewMessage.leftAnchor.constraint(equalTo: view.leftAnchor, constant: 15).isActive = true viewMessage.backgroundColor = .whiteBubbleColor viewMessage.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMinYCorner, .layerMaxXMaxYCorner] } viewMessage.bottomAnchor.constraint(equalTo: editTextView.topAnchor, constant: -15).isActive = true viewMessage.heightAnchor.constraint(greaterThanOrEqualToConstant: 44).isActive = true viewMessage.widthAnchor.constraint(greaterThanOrEqualToConstant: 46).isActive = true viewMessage.layer.cornerRadius = 10.0 viewMessage.clipsToBounds = true let messageText = UILabel() messageText.numberOfLines = 0 messageText.lineBreakMode = .byWordWrapping viewMessage.addSubview(messageText) messageText.translatesAutoresizingMaskIntoConstraints = false messageText.topAnchor.constraint(equalTo: viewMessage.topAnchor, constant: 15).isActive = true messageText.leadingAnchor.constraint(equalTo: viewMessage.leadingAnchor, constant: 15).isActive = true messageText.bottomAnchor.constraint(equalTo: viewMessage.bottomAnchor, constant: -15).isActive = true messageText.trailingAnchor.constraint(equalTo: viewMessage.trailingAnchor, constant: -15).isActive = true messageText.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .black messageText.font = .systemFont(ofSize: 12 + offset()) messageText.text = oldText } editVC.modalTransitionStyle = .crossDissolve editVC.modalPresentationStyle = .overFullScreen self.present(editVC, animated: true, completion: { self.constraintHeighteditTextView.constant = self.editTextView.contentSize.height if self.constraintHeighteditTextView.constant > 95 { self.constraintHeighteditTextView.constant = 95.0 } }) } @objc func dismissEditVC() { self.isEditingMessage = false editVC.dismiss(animated: true) } @objc func cancelAction() { DispatchQueue.main.async { if self.copySession { self.copySession = false } else if self.forwardSession { self.forwardSession = false } else if self.deleteSession { self.deleteSession = false } else if self.isSearching { self.countMatchesSearch = 0 self.isSearching = false } if self.viewTextfield.isHidden { self.viewTextfield.isHidden = false } if self.viewAttachment.isHidden { self.viewAttachment.isHidden = false } if self.containerAction.isHidden { self.containerAction.isHidden = false } if self.viewButton.isHidden { self.viewButton.isHidden = false } if self.constraintBottomTableViewWithTextfield.constant == -60.0 { self.constraintBottomTableViewWithTextfield.constant = self.constraintBottomTableViewWithTextfield.constant + 70 DispatchQueue.main.asyncAfter(deadline: .now() + 0.3, execute: { if (self.currentIndexpath != nil) { self.tableChatView.scrollToRow(at: IndexPath(row: self.currentIndexpath!.row, section: self.currentIndexpath!.section), at: .none, animated: true) } else { self.tableChatView.scrollToBottom() } }) } let data = self.dataMessages.filter({ $0["isSelected"] as? Bool == true }) for i in 0.. 0 { for i in 0..= 4}) let statusFailed = dataMessages.filter({ Int($0["status"] as? String ?? "")! == 0}) if dataFilterFpin.count == 0 && dataFilterLock.count == 0 && statusFailed.count == 0 { if let action = self.actionDelete(for: "everyone", title: "Delete".localized() + " \(countSelected) " + "For Everyone".localized(), dataMessages: dataMessages) { alertController.addAction(action) } } alertController.addAction(UIAlertAction(title: "Cancel".localized(), style: .cancel, handler: nil)) self.present(alertController, animated: true) } } private func getDataProfile(message_id: String) -> [String: String]{ var data: [String: String] = [:] Database().database?.inTransaction({ fmdb, rollback in if let c = Database().getRecords(fmdb: fmdb, query: "select f_display_name from MESSAGE where message_id = '\(message_id)'"), c.next() { data["name"] = c.string(forColumnIndex: 0)! c.close() } else { data["name"] = "Unknown".localized() data["image_id"] = "" } }) return data } private func deleteMessage(l_pin: String, message_id: String, scope: String, type: String, chat: String) { let tmessage = CoreMessage_TMessageBank.deleteMessage(l_pin: l_pin, messageId: message_id, scope: scope, type: type, chat: chat) Nexilis.deleteQueueMessage(message: tmessage) } private func queryMessageReply(message_id: String) -> [String: Any?] { var dataQuery: [String: Any] = [:] Database().database?.inTransaction({ fmdb, rollback in if let c = Database().getRecords(fmdb: fmdb, query: "SELECT message_id, f_pin, message_text, attachment_flag, thumb_id, image_id, video_id, file_id FROM MESSAGE where message_id='\(message_id)'"), c.next() { dataQuery["message_id"] = c.string(forColumnIndex: 0) ?? "" dataQuery["f_pin"] = c.string(forColumnIndex: 1) ?? "" dataQuery["message_text"] = c.string(forColumnIndex: 2) ?? "" dataQuery["attachment_flag"] = c.string(forColumnIndex: 3) ?? "" dataQuery["thumb_id"] = c.string(forColumnIndex: 4) ?? "" dataQuery["image_id"] = c.string(forColumnIndex: 5) ?? "" dataQuery["video_id"] = c.string(forColumnIndex: 6) ?? "" dataQuery["file_id"] = c.string(forColumnIndex: 7) ?? "" c.close() } }) return dataQuery } @objc func segmentedControlValueChanged(_ sender: segmentedControllerObject) { switch sender.selectedSegmentIndex { case 0: sender.navigation.viewControllers[0].children[1].view.isHidden = true break; case 1: sender.navigation.viewControllers[0].children[1].view.isHidden = false break; default: break; } } private func copyOption(indexPath: IndexPath) -> UIMenu { var ratingButtonTitles = ["Text".localized(), "Image".localized()] if (dataMessages[indexPath.row]["message_text"] as? String ?? "").isEmpty { ratingButtonTitles = ["Image".localized()] } let dataMessages = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[indexPath.section]}) let copyActions = ratingButtonTitles .enumerated() .map { index, title in return UIAction( title: title, identifier: nil, handler: {(_) in if (dataMessages[indexPath.row]["message_text"] as? String ?? "").isEmpty { DispatchQueue.main.async { let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(dataMessages[indexPath.row]["image_id"] as? String ?? "") if FileManager.default.fileExists(atPath: imageURL.path) { let image = UIImage(contentsOfFile: imageURL.path) UIPasteboard.general.image = image self.view.makeToast("Image coppied to clipboard".localized(), duration: 3) } else if FileEncryption.shared.isSecureExists(filename: imageURL.lastPathComponent) { do { if let imageData = try FileEncryption.shared.readSecure(filename: imageURL.lastPathComponent) { let image = UIImage(data: imageData) UIPasteboard.general.image = image self.view.makeToast("Image coppied to clipboard".localized(), duration: 3) } } catch { } } } } return } if (index == 0) { DispatchQueue.main.async { UIPasteboard.general.string = dataMessages[indexPath.row]["message_text"] as? String self.view.makeToast("Text coppied to clipboard".localized(), duration: 3) } } else { DispatchQueue.main.async { let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(dataMessages[indexPath.row]["image_id"] as? String ?? "") if FileManager.default.fileExists(atPath: imageURL.path) { let image = UIImage(contentsOfFile: imageURL.path) UIPasteboard.general.image = image self.view.makeToast("Image coppied to clipboard".localized(), duration: 3) } else if FileEncryption.shared.isSecureExists(filename: imageURL.lastPathComponent) { do { if let imageData = try FileEncryption.shared.readSecure(filename: imageURL.lastPathComponent) { let image = UIImage(data: imageData) UIPasteboard.general.image = image self.view.makeToast("Image coppied to clipboard".localized(), duration: 3) } } catch { } } } } } self.dismissKeyboard() }) } return UIMenu( title: "Copy".localized(), image: UIImage(systemName: "doc.on.doc.fill"), children: copyActions) } private func actionDelete(for type: String, title: String, dataMessages: [[String: Any?]]) -> UIAlertAction? { return UIAlertAction(title: title, style: .destructive) { [unowned self] _ in for i in 0.. UIImage? { let data = string.data(using: String.Encoding.ascii) if let filter = CIFilter(name: "CIQRCodeGenerator") { filter.setValue(data, forKey: "inputMessage") let transform = CGAffineTransform(scaleX: 3, y: 3) if let output = filter.outputImage?.transformed(by: transform) { return UIImage(ciImage: output) } } return nil } @objc func deleteReplyView() { if self.containerPreviewReply.isDescendant(of: self.viewTextfield) { self.containerPreviewReply.subviews.forEach { $0.removeFromSuperview() } self.containerPreviewReply.removeConstraints(self.containerPreviewReply.constraints) self.containerPreviewReply.removeFromSuperview() self.reffId = nil UIView.animate(withDuration: 0.25, delay: 0.0, options: .curveEaseInOut, animations: { self.constraintTopTextField.constant = self.constraintTopTextField.constant - 50 }, completion: nil) } } @objc func removeLinkPreviewUntilEmptyTextView() { isAlwaysHideLinkPreview = true deleteLinkPreview() } @objc func deleteLinkPreview() { if self.containerLink.isDescendant(of: self.viewTextfield) { self.containerLink.subviews.forEach { $0.removeFromSuperview() } self.containerLink.removeConstraints(self.containerLink.constraints) self.containerLink.removeFromSuperview() UIView.animate(withDuration: 0.25, delay: 0.0, options: .curveEaseInOut, animations: { self.constraintTopTextField.constant = self.constraintTopTextField.constant - 80 }, completion: nil) self.showingLink = "" } if self.reffId != nil { self.bottomAnchorPreviewReply.isActive = false self.bottomAnchorPreviewReply = self.containerPreviewReply.bottomAnchor.constraint(equalTo: self.textFieldSend.topAnchor) self.bottomAnchorPreviewReply.isActive = true } } } //ECL extension EditorPersonal: UICollectionViewDelegate, UICollectionViewDataSource { public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return 76 } public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cellSticker", for: indexPath) if (cell.contentView.subviews.count > 0) { cell.contentView.subviews.forEach({ $0.removeFromSuperview() }) } let imageSticker = UIImageView() cell.contentView.addSubview(imageSticker) imageSticker.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ imageSticker.topAnchor.constraint(equalTo: cell.contentView.topAnchor), imageSticker.bottomAnchor.constraint(equalTo: cell.contentView.bottomAnchor), imageSticker.leadingAnchor.constraint(equalTo: cell.contentView.leadingAnchor), imageSticker.trailingAnchor.constraint(equalTo: cell.contentView.trailingAnchor) ]) var imageStickerBundle = UIImage(named: stickers[indexPath.row], in: Bundle.resourceBundle(for: Nexilis.self), with: nil) if imageStickerBundle == nil { imageStickerBundle = UIImage(named: stickers[indexPath.row], in: Bundle.resourcesMediaBundle(for: Nexilis.self), with: nil) } imageSticker.image = imageStickerBundle //resourcesMediaBundle return cell } public func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { sendChat(message_text: "sticker/\(stickers[indexPath.row])", attachment_flag: "11", viewController: self) constraintBottomAttachment.constant = 0.0 self.viewSticker.removeConstraints(self.viewSticker.constraints) self.viewSticker.removeFromSuperview() } } //ETB extension EditorPersonal: UITableViewDelegate, UITableViewDataSource, AVAudioPlayerDelegate { // public func tableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) { // checkNewMessage(tableView: tableView) // } public func tableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) { if tableChatView.alpha != 1 { DispatchQueue.main.asyncAfter(deadline: .now() + 0.6, execute: { UIView.animate(withDuration: 0.5, animations: { self.tableChatView.alpha = 1.0 }) }) } } public func scrollViewDidScroll(_ scrollView: UIScrollView) { lastY = scrollView.contentOffset.y DispatchQueue.main.async { [self] in if tableChatView.alpha != 1 { return } checkNewMessage(tableView: self.tableChatView) } } public func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { if isContactCenter && indexPath.row == 0 && isRequestContactCenter { return } let dataMessages = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[indexPath.section] }) if copySession || forwardSession || deleteSession { if (dataMessages[indexPath.row]["attachment_flag"] as? String ?? "" != "0" || dataMessages[indexPath.row]["lock"] as? String == "1") && !forwardSession && !deleteSession { return } if !(dataMessages[indexPath.row]["image_id"] as? String ?? "").isEmpty || !(dataMessages[indexPath.row]["video_id"] as? String ?? "").isEmpty || !(dataMessages[indexPath.row]["file_id"] as? String ?? "").isEmpty { var file = dataMessages[indexPath.row]["image_id"] as? String ?? "" if file.isEmpty { file = dataMessages[indexPath.row]["video_id"] as? String ?? "" if file.isEmpty { file = dataMessages[indexPath.row]["file_id"] as? String ?? "" } } let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(file) if !FileManager.default.fileExists(atPath: fileURL.path) && !FileEncryption.shared.isSecureExists(filename: fileURL.lastPathComponent) { return } } } let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == dataMessages[indexPath.row]["message_id"] as? String}) if idx != nil { self.dataMessages[idx!]["isSelected"] = !(self.dataMessages[idx!]["isSelected"] as! Bool) self.tableChatView.reloadRows(at: [indexPath], with: .none) } containerMultpileSelectSession.subviews.forEach({ $0.removeFromSuperview() }) addSubviewMultipleSession() return } let message = dataMessages[indexPath.row] if let attachmentFlag = message["attachment_flag"], let attachmentFlag = attachmentFlag as? String { if attachmentFlag == "27" || attachmentFlag == "26" { let streamingController = (attachmentFlag == "27") ? QmeraCreateStreamingViewController() : CreateSeminarViewController() if let messageText = message["message_text"], let messageText = messageText as? String, var json = try! JSONSerialization.jsonObject(with: messageText.data(using: String.Encoding.utf8)!, options: []) as? [String: Any] { if json["blog"] == nil { json["blog"] = message["blog_id"] ?? nil } switch(attachmentFlag){ case "27": (streamingController as! QmeraCreateStreamingViewController).data = json default: (streamingController as! CreateSeminarViewController).data = json } if json["by"] as? String != User.getMyPin() as String? { switch(attachmentFlag){ case "27": (streamingController as! QmeraCreateStreamingViewController).isJoin = true default: (streamingController as! CreateSeminarViewController).isJoin = true } } } let streamingNav = CustomNavigationController(rootViewController: streamingController) streamingNav.modalPresentationStyle = .custom streamingNav.navigationBar.tintColor = .white streamingNav.navigationBar.barTintColor = self.traitCollection.userInterfaceStyle == .dark ? .blackDarkMode : .mainColor streamingNav.navigationBar.isTranslucent = false streamingNav.navigationBar.overrideUserInterfaceStyle = .dark streamingNav.navigationBar.barStyle = .black let cancelButtonAttributes: [NSAttributedString.Key: Any] = [NSAttributedString.Key.foregroundColor: UIColor.white, NSAttributedString.Key.font : UIFont.systemFont(ofSize: 16)] UIBarButtonItem.appearance().setTitleTextAttributes(cancelButtonAttributes, for: .normal) let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white] streamingNav.navigationBar.titleTextAttributes = textAttributes streamingNav.view.backgroundColor = self.traitCollection.userInterfaceStyle == .dark ? .blackDarkMode : .mainColor streamingNav.navigationBar.isTranslucent = false navigationController?.present(streamingNav, animated: true, completion: nil) } else if attachmentFlag == "25" { let conferenceController = CreateSeminarViewController() if let messageText = message["message_text"], let messageText = messageText as? String, var json = try! JSONSerialization.jsonObject(with: messageText.data(using: String.Encoding.utf8)!, options: []) as? [String: Any] { if json["blog"] == nil { json["blog"] = message["blog"] ?? nil } json["participant"] = message["members"] let start = json["time"] as? Int64 ?? 0 json["start"] = String(Date(milliseconds: start).format(dateFormat: "dd/MM/yyyy HH:mm")) conferenceController.data = json conferenceController.isJoin = true } let conferenceNav = CustomNavigationController(rootViewController: conferenceController) conferenceNav.modalPresentationStyle = .custom conferenceNav.navigationBar.tintColor = .white conferenceNav.navigationBar.barTintColor = self.traitCollection.userInterfaceStyle == .dark ? .blackDarkMode : .mainColor conferenceNav.navigationBar.isTranslucent = false conferenceNav.navigationBar.overrideUserInterfaceStyle = .dark conferenceNav.navigationBar.barStyle = .black let cancelButtonAttributes: [NSAttributedString.Key: Any] = [NSAttributedString.Key.foregroundColor: UIColor.white, NSAttributedString.Key.font : UIFont.systemFont(ofSize: 16)] UIBarButtonItem.appearance().setTitleTextAttributes(cancelButtonAttributes, for: .normal) let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white] conferenceNav.navigationBar.titleTextAttributes = textAttributes conferenceNav.view.backgroundColor = self.traitCollection.userInterfaceStyle == .dark ? .blackDarkMode : .mainColor conferenceNav.navigationBar.isTranslucent = false navigationController?.present(conferenceNav, animated: true, completion: nil) } else if message["message_scope_id"] as? String == "18" { let formView = FormEditor() let messageText = message["message_text"] as? String ?? "" formView.jsonData = messageText formView.dataMessage = message formView.dataPerson = self.dataPerson formView.modalPresentationStyle = .custom formView.modalTransitionStyle = .crossDissolve formView.view.backgroundColor = .black.withAlphaComponent(0.2) self.present(formView, animated: true, completion: nil) } } } public func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { let containerView = UIView() containerView.backgroundColor = .clear let dateView = UIView() containerView.addSubview(dateView) dateView.translatesAutoresizingMaskIntoConstraints = false var topAnchor = dateView.topAnchor.constraint(equalTo: containerView.topAnchor) topAnchor = dateView.topAnchor.constraint(equalTo: containerView.topAnchor, constant: 20.0) NSLayoutConstraint.activate([ topAnchor, dateView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor, constant: -20.0), dateView.centerXAnchor.constraint(equalTo: containerView.centerXAnchor), dateView.heightAnchor.constraint(equalToConstant: 30), dateView.widthAnchor.constraint(greaterThanOrEqualToConstant: 60) ]) dateView.backgroundColor = .orangeColor dateView.layer.cornerRadius = 15.0 dateView.clipsToBounds = true let labelDate = UILabel() dateView.addSubview(labelDate) labelDate.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ labelDate.centerYAnchor.constraint(equalTo: dateView.centerYAnchor), labelDate.centerXAnchor.constraint(equalTo: dateView.centerXAnchor), labelDate.leadingAnchor.constraint(equalTo: dateView.leadingAnchor, constant: 10), labelDate.trailingAnchor.constraint(equalTo: dateView.trailingAnchor, constant: -10), ]) labelDate.textAlignment = .center labelDate.textColor = .secondaryColor labelDate.font = UIFont.systemFont(ofSize: 12 + offset(), weight: .medium) labelDate.text = dataDates[section] if listViewOnSection.count == 0 || listViewOnSection.count - 1 < section { listViewOnSection.append(containerView) } else { listViewOnSection.remove(at: section) listViewOnSection.insert(containerView, at: section) } return containerView } public func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat { return 80 } public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let idMe = User.getMyPin() as String? let dataMessages = dataMessages.filter({$0["chat_date"] as? String ?? "" == dataDates[indexPath.section]}) let profileMessage = UIImageView() let cell = tableView.dequeueReusableCell(withIdentifier: "cellEditorPersonal", for: indexPath as IndexPath) cell.contentView.subviews.forEach({ $0.removeConstraints($0.constraints) }) cell.contentView.subviews.forEach({ $0.removeFromSuperview() }) if isContactCenter && isRequestContactCenter && dataMessages[indexPath.row]["category_cc"] != nil { cell.backgroundColor = .clear cell.selectionStyle = .none if dataMessages[indexPath.row]["category_cc"] is [CategoryCC] { let category_cc = dataMessages[indexPath.row]["category_cc"] as! [CategoryCC] profileMessage.frame.size = CGSize(width: 35, height: 35) cell.contentView.addSubview(profileMessage) profileMessage.translatesAutoresizingMaskIntoConstraints = false profileMessage.topAnchor.constraint(equalTo: cell.contentView.topAnchor, constant: 5).isActive = true profileMessage.leadingAnchor.constraint(equalTo: cell.contentView.leadingAnchor, constant: 15).isActive = true profileMessage.heightAnchor.constraint(equalToConstant: 37).isActive = true profileMessage.widthAnchor.constraint(equalToConstant: 35).isActive = true profileMessage.circle() profileMessage.clipsToBounds = true profileMessage.backgroundColor = .lightGray profileMessage.image = UIImage(systemName: "person") profileMessage.tintColor = .white profileMessage.contentMode = .scaleAspectFit getImage(name: dataPerson["picture"]!!, placeholderImage: UIImage(systemName: "person.circle.fill")!) { result, isDownloaded, image in profileMessage.image = image } profileMessage.contentMode = .scaleAspectFill let containerMessage = UIView() cell.contentView.addSubview(containerMessage) containerMessage.translatesAutoresizingMaskIntoConstraints = false containerMessage.topAnchor.constraint(equalTo: profileMessage.bottomAnchor).isActive = true containerMessage.leadingAnchor.constraint(equalTo: cell.contentView.leadingAnchor, constant: 5).isActive = true containerMessage.trailingAnchor.constraint(lessThanOrEqualTo: cell.contentView.trailingAnchor, constant: -60).isActive = true containerMessage.widthAnchor.constraint(greaterThanOrEqualToConstant: 46).isActive = true // containerMessage.backgroundColor = .grayColor // containerMessage.layer.cornerRadius = 10.0 // containerMessage.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMinYCorner, .layerMaxXMaxYCorner] // containerMessage.clipsToBounds = true // let timeMessage = UILabel() // cell.contentView.addSubview(timeMessage) // timeMessage.translatesAutoresizingMaskIntoConstraints = false // timeMessage.leadingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: 8).isActive = true let messageText = UILabel() containerMessage.addSubview(messageText) messageText.translatesAutoresizingMaskIntoConstraints = false messageText.numberOfLines = 0 messageText.lineBreakMode = .byWordWrapping containerMessage.addSubview(messageText) messageText.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 5).isActive = true messageText.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true messageText.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true if category_cc[0].id.contains("level0_") || dataMessages[indexPath.row]["attachment_flag"] != nil && dataMessages[indexPath.row]["attachment_flag"] as? String ?? "" == "503" { messageText.text = "Welcome to".localized() + " " + dataPerson["name"]!! + " " + "Contact Center".localized() + "\n" + "Please choose your desired communication method...".localized() } else if category_cc[0].id.contains("level1_") { messageText.text = "Please select your Consultation Topic:".localized() } else if !category_cc[0].id.contains("level1_") && dataMessages[indexPath.row]["attachment_flag"] == nil { messageText.text = "Please select the type of topic that you chosen".localized() } else if dataMessages[indexPath.row]["attachment_flag"] != nil && dataMessages[indexPath.row]["attachment_flag"] as? String ?? "" == "502" { messageText.text = "Please select the information option:".localized() } else { messageText.text = "Sorry, currently all our representatives are busy helping other customers. Do you want us to get back to you as soon as one of them is available?".localized() } messageText.font = UIFont.systemFont(ofSize: 14 + offset(), weight: .medium) messageText.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .black // let date = Date() // let formatter = DateFormatter() // formatter.dateFormat = "HH:mm" // formatter.locale = NSLocale(localeIdentifier: "id") as Locale? // timeMessage.text = formatter.string(from: date as Date) // timeMessage.font = UIFont.systemFont(ofSize: 10, weight: .medium) // timeMessage.textColor = .lightGray let containerButton = UIView() cell.contentView.addSubview(containerButton) containerButton.translatesAutoresizingMaskIntoConstraints = false containerButton.topAnchor.constraint(equalTo: messageText.bottomAnchor, constant: 5).isActive = true containerButton.bottomAnchor.constraint(equalTo: cell.contentView.bottomAnchor, constant: -5).isActive = true containerButton.leadingAnchor.constraint(equalTo: cell.contentView.leadingAnchor, constant: 15).isActive = true containerButton.widthAnchor.constraint(equalToConstant: self.view!.frame.size.width * 0.9).isActive = true containerButton.heightAnchor.constraint(greaterThanOrEqualToConstant: 55).isActive = true containerButton.backgroundColor = .clear // timeMessage.bottomAnchor.constraint(equalTo:containerButton.topAnchor, constant: -5).isActive = true for i in 0.. 1 { messageText.attributedText = stringLS.isEmpty ? textChat.richText(isSearching: true, textSearch: textSearch) : stringLS.richText(isSearching: true, textSearch: textSearch) } let stringDate = (dataMessages[indexPath.row]["server_date"] as? String) ?? "" if !stringDate.isEmpty { if (dataMessages[indexPath.row]["credential"] as? String) == "1" && dataMessages[indexPath.row]["lock"] as? String != "2" && dataMessages[indexPath.row]["lock"] as? String != "1" { if dataTimer != nil { if dataTimer! >= 10 { timeMessage.text = "00:\(dataTimer!)" } else { timeMessage.text = "00:0\(dataTimer!)" } timeMessage.textColor = .systemRed } } else { let date = Date(milliseconds: Int64(stringDate) ?? 100) let formatter = DateFormatter() formatter.dateFormat = "HH:mm" formatter.locale = NSLocale(localeIdentifier: "id") as Locale? timeMessage.text = formatter.string(from: date as Date) timeMessage.textColor = .lightGray } timeMessage.font = UIFont.systemFont(ofSize: 10 + offset(), weight: .medium) } let imageThumb = UIImageView() let containerViewFile = UIView() let imageGif = SDAnimatedImageView() if !audioChat.isEmpty { messageText.isHidden = true let imageAudio = UIImageView() imageAudio.image = UIImage(systemName: "music.note", withConfiguration: UIImage.SymbolConfiguration(pointSize: 35)) containerMessage.addSubview(imageAudio) imageAudio.anchor(top: containerMessage.topAnchor, left: containerMessage.leftAnchor, bottom: containerMessage.bottomAnchor, paddingTop: 15, paddingLeft: 15, paddingBottom: 15, centerY: containerMessage.centerYAnchor) imageAudio.tintColor = .mainColor let playButtonAudio = UIButton(type: .system) playButtonAudio.setImage(UIImage(systemName: "play.fill"), for: .normal) playButtonAudio.tintColor = .gray containerMessage.addSubview(playButtonAudio) playButtonAudio.anchor(left: containerMessage.leftAnchor, paddingLeft: 60, centerY: containerMessage.centerYAnchor, width: 20, height: 20) let progressSliderAudio = UISlider() progressSliderAudio.minimumValue = 0 progressSliderAudio.maximumValue = 1 let thumbImage = UIImage(systemName: "circle.fill")?.withTintColor(UIColor.mainColor) .resize(target: CGSize(width: 15, height: 15)) progressSliderAudio.setThumbImage(thumbImage, for: .normal) containerMessage.addSubview(progressSliderAudio) progressSliderAudio.anchor(left: playButtonAudio.rightAnchor, right: containerMessage.rightAnchor, paddingLeft: 10, paddingRight: 15, centerY: containerMessage.centerYAnchor, height: 15) let timeLabelAudio = UILabel() timeLabelAudio.text = "0:00" timeLabelAudio.font = .systemFont(ofSize: 10 + offset()) timeLabelAudio.textColor = .gray containerMessage.addSubview(timeLabelAudio) timeLabelAudio.anchor(top: playButtonAudio.bottomAnchor, left: playButtonAudio.rightAnchor, paddingLeft: 10, width: 100, height: 12) let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let audioURL = URL(fileURLWithPath: dirPath).appendingPathComponent(audioChat) var url = audioURL if !FileManager.default.fileExists(atPath: audioURL.path) && !FileEncryption.shared.isSecureExists(filename: audioChat) { let activityIndicator = UIActivityIndicatorView(style: .medium) activityIndicator.translatesAutoresizingMaskIntoConstraints = false activityIndicator.startAnimating() playButtonAudio.setImage(nil, for: .normal) playButtonAudio.addSubview(activityIndicator) NSLayoutConstraint.activate([ activityIndicator.centerXAnchor.constraint(equalTo: playButtonAudio.centerXAnchor), activityIndicator.centerYAnchor.constraint(equalTo: playButtonAudio.centerYAnchor) ]) Download().startHTTP(forKey: audioChat, isImage: false) { (name, progress) in guard progress == 100 else { return } tableView.reloadRows(at: [indexPath], with: .none) } } else { if !FileManager.default.fileExists(atPath: audioURL.path) { do { if let audioData = try FileEncryption.shared.readSecure(filename: audioChat) { let cachesDirectory = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask).first! let tempPath = cachesDirectory.appendingPathComponent(audioChat) try audioData.write(to: tempPath) url = tempPath } } catch { } } if audioPlayers[indexPath] == nil { do { let audioPlayer = try AVAudioPlayer(contentsOf: url) audioPlayers[indexPath] = audioPlayer audioPlayer.delegate = self progressSliderAudio.maximumValue = Float(audioPlayer.duration) timeLabelAudio.text = formatTime(audioPlayer.duration) } catch { print("Error loading audio: \(error)") } } let audioPlayer = audioPlayers[indexPath] if playingIndexPath == indexPath, let player = audioPlayer, player.isPlaying { playButtonAudio.setImage(UIImage(systemName: "pause.fill"), for: .normal) } else { playButtonAudio.setImage(UIImage(systemName: "play.fill"), for: .normal) } // Play/Pause Button Action playButtonAudio.addAction(UIAction { _ in self.playPauseAudio(indexPath: indexPath, playButton: playButtonAudio, progressSlider: progressSliderAudio, timeLabel: timeLabelAudio) }, for: .touchUpInside) progressSliderAudio.addAction(UIAction { _ in self.sliderChanged(indexPath: indexPath, progressSlider: progressSliderAudio, timeLabel: timeLabelAudio) }, for: .valueChanged) } } } if (!thumbChat.isEmpty && dataMessages[indexPath.row]["lock"] as? String ?? "" != "1" && dataMessages[indexPath.row]["lock"] as? String != "2") { if let listImages = groupImages[messageIdChat] { timeMessage.isHidden = true statusMessage.isHidden = true imageStared.isHidden = true topMarginText.constant = topMarginText.constant + 225 let listImageThumb: [UIImageView] = [UIImageView(), UIImageView(), UIImageView(), UIImageView()] for i in 0..<4 { containerMessage.addSubview(listImageThumb[i]) listImageThumb[i].layer.cornerRadius = 5.0 listImageThumb[i].clipsToBounds = true listImageThumb[i].contentMode = .scaleAspectFill let widthHeightImage: CGFloat = 120 switch i { case 0: listImageThumb[i].anchor(top: containerMessage.topAnchor, left: containerMessage.leftAnchor, paddingTop: 5, paddingLeft: 5, width: widthHeightImage, height: widthHeightImage) case 1: listImageThumb[i].anchor(top: containerMessage.topAnchor, left: listImageThumb[0].rightAnchor, right: containerMessage.rightAnchor, paddingTop: 5, paddingLeft: 5, paddingRight: 5, width: widthHeightImage, height: widthHeightImage) case 2: listImageThumb[i].anchor(left: containerMessage.leftAnchor, bottom: containerMessage.bottomAnchor, paddingLeft: 5, paddingBottom: 5, width: widthHeightImage, height: widthHeightImage) default: listImageThumb[i].anchor(left: listImageThumb[2].rightAnchor, bottom: containerMessage.bottomAnchor, right: containerMessage.rightAnchor, paddingLeft: 5, paddingBottom: 5, paddingRight: 5, width: widthHeightImage, height: widthHeightImage) } let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let thumbURL = URL(fileURLWithPath: dirPath).appendingPathComponent(listImages[i].thumbId) let image : UIImage? = { if let img = Nexilis.imageCache.object(forKey: listImages[i].thumbId as NSString) { return img } else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) { Nexilis.imageCache.setObject(img, forKey: listImages[i].thumbId as NSString) return img } return nil }() // let image = UIGraphicsRenderer.renderImageAt(url: thumbURL as NSURL, size: CGSize(width: 250, height: 250)) listImageThumb[i].image = image let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(listImages[i].imageId) if !FileManager.default.fileExists(atPath: imageURL.path) && !FileEncryption.shared.isSecureExists(filename: imageURL.lastPathComponent) { let blurEffect = UIBlurEffect(style: UIBlurEffect.Style.light) let blurEffectView = UIVisualEffectView(effect: blurEffect) blurEffectView.frame = CGRect(x: 0, y: 0, width: listImageThumb[i].frame.size.width, height: listImageThumb[i].frame.size.height) blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight] listImageThumb[i].addSubview(blurEffectView) } } let containerTimeStatus = UIView() listImageThumb[i].addSubview(containerTimeStatus) containerTimeStatus.anchor(bottom: listImageThumb[i].bottomAnchor, right: listImageThumb[i].rightAnchor, height: 15) let widthcontainerTimeStatus = containerTimeStatus.widthAnchor.constraint(equalToConstant: 50) widthcontainerTimeStatus.isActive = true containerTimeStatus.layer.cornerRadius = 5.0 containerTimeStatus.layer.masksToBounds = true containerTimeStatus.backgroundColor = .black.withAlphaComponent(0.15) let timeInImage = UILabel() containerTimeStatus.addSubview(timeInImage) let date = Date(milliseconds: Int64(listImages[i].time) ?? 100) let formatter = DateFormatter() formatter.dateFormat = "HH:mm" formatter.locale = NSLocale(localeIdentifier: "id") as Locale? timeInImage.text = formatter.string(from: date as Date) timeInImage.textColor = .white timeInImage.font = UIFont.systemFont(ofSize: 10 + offset(), weight: .medium) if (dataMessages[indexPath.row]["f_pin"] as? String == idMe) { let statusInImage = UIImageView() containerTimeStatus.addSubview(statusInImage) statusInImage.anchor(right: containerTimeStatus.rightAnchor, centerY: containerTimeStatus.centerYAnchor, width: 15, height: 15) if listImages[i].status == "0" { statusMessage.image = UIImage(systemName: "xmark.circle")!.withTintColor(UIColor.red, renderingMode: .alwaysOriginal) } else if listImages[i].status == "1" { statusInImage.image = UIImage(systemName: "clock.arrow.circlepath")!.withTintColor(UIColor.white, renderingMode: .alwaysOriginal) } else if listImages[i].status == "2" { statusInImage.image = UIImage(named: "checklist", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!.withTintColor(UIColor.white) } else if listImages[i].status == "3" { statusInImage.image = UIImage(named: "double-checklist", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!.withTintColor(UIColor.white) } else { statusInImage.image = UIImage(named: "double-checklist", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)!.withTintColor(UIColor.systemBlue) } timeInImage.anchor(right: statusInImage.leftAnchor, centerY: containerTimeStatus.centerYAnchor, height: 15) } else { timeInImage.anchor(right: containerTimeStatus.rightAnchor, paddingRight: 5, centerY: containerTimeStatus.centerYAnchor, height: 15) widthcontainerTimeStatus.constant = widthcontainerTimeStatus.constant - 10 } if listImages[i].dataMessage["is_stared"] as? String == "1" { let iconStar = UIImageView() containerTimeStatus.addSubview(iconStar) iconStar.anchor(right: timeInImage.leftAnchor, paddingRight: 2, centerY: containerTimeStatus.centerYAnchor, width: 15, height: 15) widthcontainerTimeStatus.constant = widthcontainerTimeStatus.constant + 15 iconStar.image = UIImage(systemName: "star.fill") iconStar.tintColor = .white } if !copySession && !forwardSession && !deleteSession { let objectTap = ObjectGesture(target: self, action: #selector(imageGroupingTapped(_:))) listImageThumb[i].isUserInteractionEnabled = true listImageThumb[i].addGestureRecognizer(objectTap) objectTap.indexImageTapped = i objectTap.listImageFromGrouping = listImages objectTap.isInitiator = dataMessages[indexPath.row]["f_pin"] as? String == idMe } } if listImages.count > 4 { let blurEffect = UIBlurEffect(style: UIBlurEffect.Style.dark) let blurEffectView = UIVisualEffectView(effect: blurEffect) blurEffectView.frame = CGRect(x: 0, y: 0, width: listImageThumb[3].frame.size.width, height: listImageThumb[3].frame.size.height) blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight] listImageThumb[3].addSubview(blurEffectView) let countRestImages = UILabel() listImageThumb[3].addSubview(countRestImages) countRestImages.anchor(centerX: listImageThumb[3].centerXAnchor, centerY: listImageThumb[3].centerYAnchor) countRestImages.font = UIFont.systemFont(ofSize: 30, weight: .medium) countRestImages.text = "+\(listImages.count - 3)" countRestImages.textColor = .white } } else { let getHeightImage: CGFloat = ListGroupImages.getImageSize(image: thumbChat, screenWidth: self.view.frame.size.width * 0.6, screenHeight: 305)!.height let getWidthImage: CGFloat = ListGroupImages.getImageSize(image: thumbChat, screenWidth: self.view.frame.size.width * 0.6, screenHeight: 305)!.width topMarginText.constant = topMarginText.constant + (getHeightImage < 40 ? 45 : getHeightImage + 5) containerMessage.addSubview(imageThumb) imageThumb.frame = CGRect(x: 0, y: 0, width: getWidthImage, height: getHeightImage) imageThumb.translatesAutoresizingMaskIntoConstraints = false let data = queryMessageReply(message_id: reffChat) if (reffChat.isEmpty || data.count == 0) && (dataMessages[indexPath.row][TypeDataMessage.is_forwarded] == nil || dataMessages[indexPath.row][TypeDataMessage.is_forwarded] as! Int == 0) { imageThumb.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 15).isActive = true } imageThumb.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true imageThumb.bottomAnchor.constraint(equalTo: messageText.topAnchor, constant: -5).isActive = true imageThumb.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true imageThumb.widthAnchor.constraint(equalToConstant: getWidthImage).isActive = true imageThumb.layer.cornerRadius = 5.0 imageThumb.clipsToBounds = true imageThumb.contentMode = .scaleAspectFill let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let thumbURL = URL(fileURLWithPath: dirPath).appendingPathComponent(thumbChat) DispatchQueue.main.async { let image : UIImage? = { if let img = Nexilis.imageCache.object(forKey: thumbChat as NSString) { return img } else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) { Nexilis.imageCache.setObject(img, forKey: thumbChat as NSString) return img } return nil }() imageThumb.image = image } // let image = UIGraphicsRenderer.renderImageAt(url: thumbURL as NSURL, size: CGSize(width: 250, height: 250)) let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(imageChat) if !FileManager.default.fileExists(atPath: imageURL.path) && !FileEncryption.shared.isSecureExists(filename: imageURL.lastPathComponent) { let blurEffect = UIBlurEffect(style: UIBlurEffect.Style.light) let blurEffectView = UIVisualEffectView(effect: blurEffect) blurEffectView.frame = CGRect(x: 0, y: 0, width: imageThumb.frame.size.width, height: imageThumb.frame.size.height) blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight] imageThumb.addSubview(blurEffectView) if !imageChat.isEmpty { let imageDownload = UIImageView(image: UIImage(systemName: "arrow.down.circle.fill", withConfiguration: UIImage.SymbolConfiguration(pointSize: 50, weight: .bold, scale: .default))) imageThumb.addSubview(imageDownload) imageDownload.tintColor = .black.withAlphaComponent(0.3) imageDownload.translatesAutoresizingMaskIntoConstraints = false imageDownload.centerXAnchor.constraint(equalTo: imageThumb.centerXAnchor).isActive = true imageDownload.centerYAnchor.constraint(equalTo: imageThumb.centerYAnchor).isActive = true } } } if (videoChat != "" && gifChat.isEmpty) { let imagePlay = UIImageView(image: UIImage(systemName: "play.fill", withConfiguration: UIImage.SymbolConfiguration(pointSize: 20, weight: .bold, scale: .default))?.imageWithInsets(insets: UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10))?.withTintColor(.white)) imagePlay.circle() imageThumb.addSubview(imagePlay) imagePlay.backgroundColor = .black.withAlphaComponent(0.3) imagePlay.translatesAutoresizingMaskIntoConstraints = false imagePlay.centerXAnchor.constraint(equalTo: imageThumb.centerXAnchor).isActive = true imagePlay.centerYAnchor.constraint(equalTo: imageThumb.centerYAnchor).isActive = true } else if !gifChat.isEmpty { let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let gifURL = URL(fileURLWithPath: dirPath).appendingPathComponent(gifChat) if !FileManager.default.fileExists(atPath: gifURL.path) && !FileEncryption.shared.isSecureExists(filename: gifChat) { Download().startHTTP(forKey: gifChat, isImage: false) { (name, progress) in guard progress == 100 else { return } tableView.reloadRows(at: [indexPath], with: .none) } } else { imageThumb.addSubview(imageGif) imageGif.translatesAutoresizingMaskIntoConstraints = false imageGif.anchor(top: imageThumb.topAnchor, left: imageThumb.leftAnchor, bottom: imageThumb.bottomAnchor, right: imageThumb.rightAnchor) if FileManager.default.fileExists(atPath: gifURL.path) { imageGif.image = SDAnimatedImage(contentsOfFile: gifURL.path) // imageGif.shouldCustomLoopCount = true // imageGif.animationRepeatCount = 4 } else if FileEncryption.shared.isSecureExists(filename: gifChat){ do { let data = try FileEncryption.shared.readSecure(filename: gifChat) if let imageData = SDAnimatedImage(data: data!) { imageGif.image = imageData // imageGif.shouldCustomLoopCount = true // imageGif.animationRepeatCount = 4 } } catch { print("Error reading secure file") } } } } } if (dataMessages[indexPath.row]["progress"] as! Double != 100.0 && dataMessages[indexPath.row]["f_pin"] as? String == idMe) { let container = UIView() imageThumb.addSubview(container) container.translatesAutoresizingMaskIntoConstraints = false container.bottomAnchor.constraint(equalTo: imageThumb.bottomAnchor, constant: -10).isActive = true container.leadingAnchor.constraint(equalTo: imageThumb.leadingAnchor, constant: 10).isActive = true container.widthAnchor.constraint(equalToConstant: 30).isActive = true container.heightAnchor.constraint(equalToConstant: 30).isActive = true container.backgroundColor = .white.withAlphaComponent(0.1) let circlePath = UIBezierPath(arcCenter: CGPoint(x: 10, y: 20), radius: 15, startAngle: -(.pi / 2), endAngle: .pi * 2, clockwise: true) let trackShape = CAShapeLayer() trackShape.path = circlePath.cgPath trackShape.fillColor = UIColor.black.withAlphaComponent(0.3).cgColor trackShape.lineWidth = 3 trackShape.strokeColor = UIColor.blueBubbleColor.withAlphaComponent(0.3).cgColor container.backgroundColor = .clear container.layer.addSublayer(trackShape) let shapeLoading = CAShapeLayer() shapeLoading.path = circlePath.cgPath shapeLoading.fillColor = UIColor.clear.cgColor shapeLoading.lineWidth = 3 shapeLoading.strokeEnd = 0 shapeLoading.strokeColor = UIColor.blueBubbleColor.cgColor container.layer.addSublayer(shapeLoading) let imageupload = UIImageView(image: UIImage(systemName: "arrow.up", withConfiguration: UIImage.SymbolConfiguration(pointSize: 10, weight: .bold, scale: .default))) imageupload.tintColor = .white container.addSubview(imageupload) imageupload.translatesAutoresizingMaskIntoConstraints = false imageupload.bottomAnchor.constraint(equalTo: imageThumb.bottomAnchor, constant: -10).isActive = true imageupload.leadingAnchor.constraint(equalTo: imageThumb.leadingAnchor, constant: 10).isActive = true imageupload.widthAnchor.constraint(equalToConstant: 20).isActive = true imageupload.heightAnchor.constraint(equalToConstant: 20).isActive = true } if !copySession && !forwardSession && !deleteSession { let objectTap = ObjectGesture(target: self, action: #selector(contentMessageTapped(_:))) imageThumb.isUserInteractionEnabled = true imageThumb.addGestureRecognizer(objectTap) objectTap.image_id = imageChat objectTap.video_id = videoChat objectTap.gif_id = gifChat objectTap.imageView = imageThumb objectTap.indexPath = indexPath } } } if (fileChat != "" && dataMessages[indexPath.row]["lock"] as? String ?? "" != "1" && dataMessages[indexPath.row]["lock"] as? String != "2") { topMarginText.constant = topMarginText.constant + 55 let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) let arrExtFile = (originalMessageText.components(separatedBy: "|")[0]).split(separator: ".") let finalExtFile = arrExtFile[arrExtFile.count - 1] if let dirPath = paths.first { let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(fileChat) if FileManager.default.fileExists(atPath: fileURL.path) { if let dataFile = try? Data(contentsOf: fileURL), textChat.isEmpty { var sizeOfFile = Int(dataFile.count / 1000000) if (sizeOfFile < 1) { sizeOfFile = Int(dataFile.count / 1000) if (finalExtFile.count > 4) { messageText.text = "\(sizeOfFile) kB \u{2022} TXT" }else { messageText.text = "\(sizeOfFile) kB \u{2022} \(finalExtFile.uppercased())" } } else { if (finalExtFile.count > 4) { messageText.text = "\(sizeOfFile) MB \u{2022} TXT" }else { messageText.text = "\(sizeOfFile) MB \u{2022} \(finalExtFile.uppercased())" } } } } else if FileEncryption.shared.isSecureExists(filename: fileChat) { if let dataFile = try? FileEncryption.shared.readSecure(filename: fileChat), textChat.isEmpty { var sizeOfFile = Int(dataFile.count / 1000000) if (sizeOfFile < 1) { sizeOfFile = Int(dataFile.count / 1000) if (finalExtFile.count > 4) { messageText.text = "\(sizeOfFile) kB \u{2022} TXT" }else { messageText.text = "\(sizeOfFile) kB \u{2022} \(finalExtFile.uppercased())" } } else { if (finalExtFile.count > 4) { messageText.text = "\(sizeOfFile) MB \u{2022} TXT" }else { messageText.text = "\(sizeOfFile) MB \u{2022} \(finalExtFile.uppercased())" } } } } } containerMessage.addSubview(containerViewFile) containerViewFile.translatesAutoresizingMaskIntoConstraints = false let data = queryMessageReply(message_id: reffChat) if (reffChat.isEmpty || data.count == 0) && (dataMessages[indexPath.row][TypeDataMessage.is_forwarded] == nil || dataMessages[indexPath.row][TypeDataMessage.is_forwarded] as! Int == 0) { containerViewFile.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 15).isActive = true } containerViewFile.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true containerViewFile.bottomAnchor.constraint(equalTo:messageText.topAnchor, constant: -5).isActive = true containerViewFile.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true // containerViewFile.heightAnchor.constraint(equalToConstant: 50).isActive = true containerViewFile.backgroundColor = .black.withAlphaComponent(0.2) containerViewFile.layer.cornerRadius = 5.0 containerViewFile.clipsToBounds = true let imageFile = UIImageView(image: UIImage(systemName: "doc.fill", withConfiguration: UIImage.SymbolConfiguration(pointSize: 30, weight: .bold, scale: .default))) containerViewFile.addSubview(imageFile) let nameFile = UILabel() containerViewFile.addSubview(nameFile) imageFile.translatesAutoresizingMaskIntoConstraints = false imageFile.leadingAnchor.constraint(equalTo: containerViewFile.leadingAnchor, constant: 5).isActive = true imageFile.trailingAnchor.constraint(equalTo: nameFile.leadingAnchor, constant: -5).isActive = true imageFile.centerYAnchor.constraint(equalTo: containerViewFile.centerYAnchor).isActive = true imageFile.widthAnchor.constraint(equalToConstant: 30).isActive = true imageFile.heightAnchor.constraint(equalToConstant: 30).isActive = true imageFile.tintColor = .docColor nameFile.translatesAutoresizingMaskIntoConstraints = false nameFile.centerYAnchor.constraint(equalTo: containerViewFile.centerYAnchor).isActive = true nameFile.widthAnchor.constraint(lessThanOrEqualToConstant: 200).isActive = true nameFile.font = UIFont.systemFont(ofSize: 12 + offset(), weight: .medium) nameFile.textColor = .white nameFile.text = originalMessageText.components(separatedBy: "|")[0] if (dataMessages[indexPath.row]["progress"] as! Double != 100.0) { let containerLoading = UIView() containerViewFile.addSubview(containerLoading) containerLoading.translatesAutoresizingMaskIntoConstraints = false containerLoading.centerYAnchor.constraint(equalTo: containerViewFile.centerYAnchor).isActive = true containerLoading.leadingAnchor.constraint(equalTo: nameFile.trailingAnchor, constant: 5).isActive = true containerLoading.trailingAnchor.constraint(equalTo: containerViewFile.trailingAnchor, constant: -5).isActive = true containerLoading.widthAnchor.constraint(equalToConstant: 30).isActive = true containerLoading.heightAnchor.constraint(equalToConstant: 30).isActive = true let circlePath = UIBezierPath(arcCenter: CGPoint(x: 15, y: 15), radius: 10, startAngle: -(.pi / 2), endAngle: .pi * 2, clockwise: true) let trackShape = CAShapeLayer() trackShape.path = circlePath.cgPath trackShape.fillColor = UIColor.clear.cgColor trackShape.lineWidth = 5 trackShape.strokeColor = UIColor.blueBubbleColor.withAlphaComponent(0.3).cgColor containerLoading.layer.addSublayer(trackShape) let shapeLoading = CAShapeLayer() shapeLoading.path = circlePath.cgPath shapeLoading.fillColor = UIColor.clear.cgColor shapeLoading.lineWidth = 3 shapeLoading.strokeEnd = 0 shapeLoading.strokeColor = UIColor.secondaryColor.cgColor containerLoading.layer.addSublayer(shapeLoading) var imageupload = UIImageView(image: UIImage(systemName: "arrow.up", withConfiguration: UIImage.SymbolConfiguration(pointSize: 10, weight: .bold, scale: .default))) if dataMessages[indexPath.row]["f_pin"] as? String != idMe { imageupload = UIImageView(image: UIImage(systemName: "arrow.down", withConfiguration: UIImage.SymbolConfiguration(pointSize: 10, weight: .bold, scale: .default))) shapeLoading.strokeColor = UIColor.blueBubbleColor.cgColor } imageupload.tintColor = .white containerLoading.addSubview(imageupload) imageupload.translatesAutoresizingMaskIntoConstraints = false imageupload.centerYAnchor.constraint(equalTo: containerLoading.centerYAnchor).isActive = true imageupload.centerXAnchor.constraint(equalTo: containerLoading.centerXAnchor).isActive = true } else { nameFile.trailingAnchor.constraint(equalTo: containerViewFile.trailingAnchor, constant: -5).isActive = true } if !copySession && !forwardSession && !deleteSession { let objectTap = ObjectGesture(target: self, action: #selector(contentMessageTapped(_:))) containerViewFile.addGestureRecognizer(objectTap) objectTap.containerFile = containerViewFile objectTap.labelFile = nameFile objectTap.file_id = fileChat objectTap.indexPath = indexPath } } let containerLinkMessage = UIView() var isLoadingShowLink = false if thumbChat.isEmpty && fileChat.isEmpty && !textChat.isEmpty { var text = "" let listTextSplitBreak = textChat.components(separatedBy: "\n") let indexFirstLinkSplitBreak = listTextSplitBreak.firstIndex(where: { $0.contains("www.") || $0.contains("http://") || $0.contains("https://") }) if indexFirstLinkSplitBreak != nil { let listTextSplitSpace = listTextSplitBreak[indexFirstLinkSplitBreak!].components(separatedBy: " ") let indexFirstLinkSplitSpace = listTextSplitSpace.firstIndex(where: { ($0.starts(with: "www.") && $0.components(separatedBy: ".").count > 2) || ($0.starts(with: "http://") && $0.components(separatedBy: ".").count > 1) || ($0.starts(with: "https://") && $0.components(separatedBy: ".").count > 1) }) if indexFirstLinkSplitSpace != nil { text = listTextSplitSpace[indexFirstLinkSplitSpace!] } } if !text.isEmpty { isLoadingShowLink = true func showLink() { if let data = try! JSONSerialization.jsonObject(with: dataURL.data(using: String.Encoding.utf8)!, options: []) as? [String: Any] { let title = data["title"] as? String ?? "" let description = data["description"] as? String ?? "" let imageUrl = data["imageUrl"] as? String let link = data["link"] as? String ?? "" topMarginText.constant = topMarginText.constant + 85 containerMessage.addSubview(containerLinkMessage) containerLinkMessage.translatesAutoresizingMaskIntoConstraints = false containerLinkMessage.leadingAnchor.constraint(equalTo:containerMessage.leadingAnchor, constant: 15).isActive = true containerLinkMessage.bottomAnchor.constraint(equalTo: messageText.topAnchor, constant: -5).isActive = true containerLinkMessage.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true containerLinkMessage.heightAnchor.constraint(equalToConstant: 80.0).isActive = true containerLinkMessage.backgroundColor = .gray.withAlphaComponent(0.2) let imagePreview = UIImageView() if imageUrl != nil { containerLinkMessage.addSubview(imagePreview) imagePreview.translatesAutoresizingMaskIntoConstraints = false imagePreview.leadingAnchor.constraint(equalTo: containerLinkMessage.leadingAnchor).isActive = true imagePreview.bottomAnchor.constraint(equalTo: containerLinkMessage.bottomAnchor).isActive = true imagePreview.topAnchor.constraint(equalTo: containerLinkMessage.topAnchor).isActive = true imagePreview.widthAnchor.constraint(equalToConstant: 80.0).isActive = true imagePreview.loadImageAsync(with: imageUrl) imagePreview.contentMode = .scaleToFill } let titlePreview = UILabel() containerLinkMessage.addSubview(titlePreview) titlePreview.translatesAutoresizingMaskIntoConstraints = false if imageUrl != nil { titlePreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true } else { titlePreview.leadingAnchor.constraint(equalTo: containerLinkMessage.leadingAnchor, constant: 5.0).isActive = true } titlePreview.topAnchor.constraint(equalTo: containerLinkMessage.topAnchor, constant: 10.0).isActive = true titlePreview.trailingAnchor.constraint(equalTo: containerLinkMessage.trailingAnchor, constant: -5.0).isActive = true titlePreview.text = title titlePreview.font = UIFont.systemFont(ofSize: 14.0 + offset(), weight: .bold) titlePreview.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .black let descPreview = UILabel() containerLinkMessage.addSubview(descPreview) descPreview.translatesAutoresizingMaskIntoConstraints = false if imageUrl != nil { descPreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true } else { descPreview.leadingAnchor.constraint(equalTo: containerLinkMessage.leadingAnchor, constant: 5.0).isActive = true } descPreview.topAnchor.constraint(equalTo: titlePreview.bottomAnchor).isActive = true descPreview.trailingAnchor.constraint(equalTo: containerLinkMessage.trailingAnchor, constant: -5.0).isActive = true descPreview.text = description descPreview.font = UIFont.systemFont(ofSize: 12.0 + offset()) descPreview.textColor = .gray descPreview.numberOfLines = 1 let linkPreview = UILabel() containerLinkMessage.addSubview(linkPreview) linkPreview.translatesAutoresizingMaskIntoConstraints = false if imageUrl != nil { linkPreview.leadingAnchor.constraint(equalTo: imagePreview.trailingAnchor, constant: 5.0).isActive = true } else { linkPreview.leadingAnchor.constraint(equalTo: containerLinkMessage.leadingAnchor, constant: 5.0).isActive = true } linkPreview.topAnchor.constraint(equalTo: descPreview.bottomAnchor, constant: 8.0).isActive = true linkPreview.trailingAnchor.constraint(equalTo: containerLinkMessage.trailingAnchor, constant: -5.0).isActive = true linkPreview.text = link linkPreview.font = UIFont.systemFont(ofSize: 10.0 + offset()) linkPreview.textColor = .gray linkPreview.numberOfLines = 1 if dataMessages[indexPath.row][TypeDataMessage.is_forwarded] != nil && dataMessages[indexPath.row][TypeDataMessage.is_forwarded] as! Int != 0 { showForwardedSign() } if !copySession && !forwardSession && !deleteSession { let objectTap = ObjectGesture(target: self, action: #selector(tapMessageText(_:))) objectTap.message_id = text containerLinkMessage.addGestureRecognizer(objectTap) } } } var dataURL = "" Database.shared.database?.inTransaction({ (fmdb, rollback) in do { if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "select data_link from LINK_PREVIEW where link='\(text)'"), cursor.next() { if let data = cursor.string(forColumnIndex: 0) { dataURL = data } cursor.close() } } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) if dataURL.isEmpty { let urlConfig = URLSessionConfiguration.default let sessionDelegate = SelfSignedURLSessionDelegate() let session = URLSession(configuration: urlConfig, delegate: sessionDelegate, delegateQueue: nil) let slp = SwiftLinkPreview(session: session, workQueue: SwiftLinkPreview.defaultWorkQueue, responseQueue: DispatchQueue.main, cache: DisabledCache.instance) let preview = slp.preview(text, onSuccess: { result in let title = result.title ?? "No Title" let description = text.contains("google.com") ? "" : result.description let imageUrl = result.icon Database.shared.database?.inTransaction({ (fmdb, rollback) in do { var dataJson: [String: Any] = [:] dataJson["title"] = title dataJson["description"] = description dataJson["imageUrl"] = imageUrl dataJson["link"] = text guard let json = String(data: try! JSONSerialization.data(withJSONObject: dataJson, options: []), encoding: String.Encoding.utf8) else { return } _ = try Database.shared.insertRecord(fmdb: fmdb, table: "LINK_PREVIEW", cvalues: [ "id" : "\(Date().currentTimeMillis().toHex())", "link" : text, "data_link" : json, "retry": 0 ], replace: true) dataURL = json showLink() DispatchQueue.main.async { tableView.reloadRows(at: [indexPath], with: .none) } } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) }, onError: { error in }) } else { showLink() } } } if (reffChat != "" && dataMessages[indexPath.row]["message_scope_id"] as? String ?? "" != "18") { let data = queryMessageReply(message_id: reffChat) if data.count != 0 { topMarginText.constant = topMarginText.constant + 55 let containerReply = UIView() containerMessage.addSubview(containerReply) containerReply.translatesAutoresizingMaskIntoConstraints = false containerReply.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true containerReply.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 15).isActive = true if thumbChat != "" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as? String ?? "" != "1") { containerReply.bottomAnchor.constraint(equalTo: imageThumb.topAnchor, constant: -5).isActive = true } else if fileChat != "" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as? String ?? "" != "1") { containerReply.bottomAnchor.constraint(equalTo: containerViewFile.topAnchor, constant: -5).isActive = true } else if containerMessage.subviews.contains(containerLinkMessage) { containerReply.bottomAnchor.constraint(equalTo: containerLinkMessage.topAnchor, constant: -5).isActive = true } else if dataMessages[indexPath.row]["attachment_flag"] as? String == "11" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as? String ?? "" != "1") { containerReply.bottomAnchor.constraint(equalTo: imageSticker.topAnchor, constant: -5).isActive = true } else { containerReply.bottomAnchor.constraint(equalTo: messageText.topAnchor, constant: -5).isActive = true } containerReply.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true containerReply.heightAnchor.constraint(equalToConstant: 50).isActive = true containerReply.backgroundColor = .black.withAlphaComponent(0.2) containerReply.layer.cornerRadius = 5 containerReply.clipsToBounds = true let leftReply = UIView() containerReply.addSubview(leftReply) leftReply.translatesAutoresizingMaskIntoConstraints = false leftReply.leadingAnchor.constraint(equalTo: containerReply.leadingAnchor).isActive = true leftReply.topAnchor.constraint(equalTo: containerReply.topAnchor).isActive = true leftReply.bottomAnchor.constraint(equalTo: containerReply.bottomAnchor).isActive = true leftReply.widthAnchor.constraint(equalToConstant: 3).isActive = true leftReply.layer.cornerRadius = 5 leftReply.clipsToBounds = true leftReply.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMinXMinYCorner] let titleReply = UILabel() containerReply.addSubview(titleReply) titleReply.translatesAutoresizingMaskIntoConstraints = false titleReply.leadingAnchor.constraint(equalTo: leftReply.leadingAnchor, constant: 10).isActive = true titleReply.topAnchor.constraint(equalTo: containerReply.topAnchor, constant: 10).isActive = true titleReply.trailingAnchor.constraint(lessThanOrEqualTo: containerReply.trailingAnchor, constant: -20).isActive = true titleReply.font = UIFont.systemFont(ofSize: 12 + offset()).bold if (data["f_pin"] as? String == idMe) { titleReply.text = "You".localized() if dataMessages[indexPath.row]["f_pin"] as? String == idMe { titleReply.textColor = .white leftReply.backgroundColor = .white } else { titleReply.textColor = .mainColor leftReply.backgroundColor = .mainColor } } else { if isContactCenter { let user: [User] = users.filter({$0.pin == data["f_pin"] as? String}) titleReply.text = user.first!.fullName } else { titleReply.text = self.dataPerson["name"]!! } if dataMessages[indexPath.row]["f_pin"] as? String == idMe { titleReply.textColor = .white leftReply.backgroundColor = .white } else { titleReply.textColor = .mainColor leftReply.backgroundColor = .mainColor } } let contentReply = UILabel() containerReply.addSubview(contentReply) contentReply.translatesAutoresizingMaskIntoConstraints = false contentReply.leadingAnchor.constraint(equalTo: leftReply.leadingAnchor, constant: 10).isActive = true contentReply.bottomAnchor.constraint(equalTo: containerReply.bottomAnchor, constant: -10).isActive = true contentReply.font = UIFont.systemFont(ofSize: 10 + offset()) let message_text = data["message_text"] as? String ?? "" let attachment_flag = data["attachment_flag"] as? String ?? "" let thumb_chat = data["thumb_id"] as? String ?? "" let image_chat = data["image_id"] as? String ?? "" let video_chat = data["video_id"] as? String ?? "" let file_chat = data["file_id"] as? String ?? "" if (attachment_flag == "0" && thumb_chat == "") { contentReply.trailingAnchor.constraint(equalTo: containerReply.trailingAnchor, constant: -20).isActive = true contentReply.attributedText = message_text.richText() } else if (attachment_flag == "1" || image_chat != "") { if (message_text == "") { contentReply.text = "📷 Photo".localized() } else { contentReply.attributedText = message_text.richText() } } else if (attachment_flag == "2" || video_chat != "") { if (message_text == "") { contentReply.text = "📹 Video".localized() } else { contentReply.attributedText = message_text.richText() } } else if (attachment_flag == "6" || file_chat != ""){ contentReply.trailingAnchor.constraint(equalTo: containerReply.trailingAnchor, constant: -20).isActive = true contentReply.text = "📄 \(message_text.components(separatedBy: "|")[0])" } else if (attachment_flag == "11") { contentReply.text = "❤️ Sticker" } contentReply.textColor = .white.withAlphaComponent(0.8) if (attachment_flag == "1" || attachment_flag == "2" || image_chat != "" || video_chat != "") { let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let thumbURL = URL(fileURLWithPath: dirPath).appendingPathComponent(thumb_chat) DispatchQueue.main.async { let image : UIImage? = { if let img = Nexilis.imageCache.object(forKey: thumbChat as NSString) { return img } else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) { Nexilis.imageCache.setObject(img, forKey: thumbChat as NSString) return img } return nil }() // let image = UIGraphicsRenderer.renderImageAt(url: thumbURL as NSURL, size: CGSize(width: 250, height: 250)) let imageThumb = UIImageView(image: image) containerReply.addSubview(imageThumb) imageThumb.layer.cornerRadius = 2.0 imageThumb.clipsToBounds = true imageThumb.contentMode = .scaleAspectFill imageThumb.translatesAutoresizingMaskIntoConstraints = false imageThumb.trailingAnchor.constraint(equalTo: containerReply.trailingAnchor, constant: -10).isActive = true imageThumb.centerYAnchor.constraint(equalTo: containerReply.centerYAnchor).isActive = true imageThumb.widthAnchor.constraint(equalToConstant: 30).isActive = true imageThumb.heightAnchor.constraint(equalToConstant: 30).isActive = true if (attachment_flag == "2") { let imagePlay = UIImageView(image: UIImage(systemName: "play.circle.fill")) imageThumb.addSubview(imagePlay) imagePlay.clipsToBounds = true imagePlay.translatesAutoresizingMaskIntoConstraints = false imagePlay.centerYAnchor.constraint(equalTo: imageThumb.centerYAnchor).isActive = true imagePlay.centerXAnchor.constraint(equalTo: imageThumb.centerXAnchor).isActive = true imagePlay.widthAnchor.constraint(equalToConstant: 10).isActive = true imagePlay.heightAnchor.constraint(equalToConstant: 10).isActive = true imagePlay.tintColor = .white } titleReply.trailingAnchor.constraint(equalTo: imageThumb.leadingAnchor, constant: -20).isActive = true contentReply.trailingAnchor.constraint(equalTo: imageThumb.leadingAnchor, constant: -20).isActive = true } } } if (attachment_flag == "11" && message_text.components(separatedBy: "/").count > 1) { let imageSticker = UIImageView(image: UIImage(named: (message_text.components(separatedBy: "/")[1]), in: Bundle.resourceBundle(for: Nexilis.self), with: nil)) containerReply.addSubview(imageSticker) imageSticker.layer.cornerRadius = 2.0 imageSticker.clipsToBounds = true imageSticker.translatesAutoresizingMaskIntoConstraints = false imageSticker.trailingAnchor.constraint(equalTo: containerReply.trailingAnchor, constant: -10).isActive = true imageSticker.centerYAnchor.constraint(equalTo: containerReply.centerYAnchor).isActive = true imageSticker.widthAnchor.constraint(equalToConstant: 30).isActive = true imageSticker.heightAnchor.constraint(equalToConstant: 30).isActive = true titleReply.trailingAnchor.constraint(equalTo: imageSticker.leadingAnchor, constant: -20).isActive = true contentReply.trailingAnchor.constraint(equalTo: imageSticker.leadingAnchor, constant: -20).isActive = true } if !copySession && !forwardSession && !deleteSession { let objectTap = ObjectGesture(target: self, action: #selector(contentMessageTapped(_:))) containerReply.addGestureRecognizer(objectTap) objectTap.indexPath = indexPath objectTap.message_id = data["message_id"] as? String ?? "" } } } if dataMessages[indexPath.row][TypeDataMessage.is_forwarded] != nil && dataMessages[indexPath.row][TypeDataMessage.is_forwarded] as! Int != 0 && !isLoadingShowLink { showForwardedSign() } func showForwardedSign() { topMarginText.constant = topMarginText.constant + 20 let containerForwarded = UIView() containerMessage.addSubview(containerForwarded) containerForwarded.translatesAutoresizingMaskIntoConstraints = false containerForwarded.leadingAnchor.constraint(equalTo: containerMessage.leadingAnchor, constant: 15).isActive = true containerForwarded.topAnchor.constraint(equalTo: containerMessage.topAnchor, constant: 15).isActive = true containerForwarded.trailingAnchor.constraint(equalTo: containerMessage.trailingAnchor, constant: -15).isActive = true containerForwarded.heightAnchor.constraint(equalToConstant: 20).isActive = true if thumbChat != "" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as? String ?? "" != "1") { containerForwarded.bottomAnchor.constraint(equalTo: imageThumb.topAnchor, constant: -5).isActive = true } else if fileChat != "" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as? String ?? "" != "1") { containerForwarded.bottomAnchor.constraint(equalTo: containerViewFile.topAnchor, constant: -5).isActive = true } else if containerMessage.subviews.contains(containerLinkMessage) { containerForwarded.bottomAnchor.constraint(equalTo: containerLinkMessage.topAnchor, constant: -5).isActive = true } else if dataMessages[indexPath.row]["attachment_flag"] as? String == "11" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as? String ?? "" != "1") { containerForwarded.bottomAnchor.constraint(equalTo: imageSticker.topAnchor, constant: -5).isActive = true } let imageForwarded = UIImageView() containerForwarded.addSubview(imageForwarded) imageForwarded.anchor(top: containerForwarded.topAnchor, left: containerForwarded.leftAnchor, width: 15, height: 15) imageForwarded.image = UIImage(systemName: "arrowshape.turn.up.right.fill") imageForwarded.tintColor = .gray let titleForwarded = UILabel() containerForwarded.addSubview(titleForwarded) titleForwarded.anchor(top: containerForwarded.topAnchor, left: imageForwarded.rightAnchor, right: containerForwarded.rightAnchor, height: 15) titleForwarded.font = .systemFont(ofSize: 15) let textForwarded = "Forwarded".localized() titleForwarded.attributedText = " $\(textForwarded)$".richText() } topMarginText.isActive = true // let panGestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(panGestureCellAction)) // panGestureRecognizer.delegate = self // cellMessage.addGestureRecognizer(panGestureRecognizer) return cell } func playPauseAudio(indexPath: IndexPath, playButton: UIButton, progressSlider: UISlider, timeLabel: UILabel) { guard let audioPlayer = audioPlayers[indexPath] else { return } if audioPlayer.isPlaying { // Pause Audio audioPlayer.pause() playButton.setImage(UIImage(systemName: "play.fill"), for: .normal) timers[indexPath]?.invalidate() } else { // Stop other players if one is already playing if let currentPlayingIndexPath = playingIndexPath, let currentAudioPlayer = audioPlayers[currentPlayingIndexPath] { if currentPlayingIndexPath != indexPath { currentAudioPlayer.pause() timers[currentPlayingIndexPath]?.invalidate() timers[currentPlayingIndexPath] = nil audioPlayers[currentPlayingIndexPath] = nil tableChatView.reloadRows(at: [currentPlayingIndexPath], with: .none) } } do { try AVAudioSession.sharedInstance().setCategory(.playback, mode: .default) try AVAudioSession.sharedInstance().setActive(true) } catch { } // Play new audio audioPlayer.play() playButton.setImage(UIImage(systemName: "pause.fill"), for: .normal) playingIndexPath = indexPath // Start timer to update progress timers[indexPath] = Timer.scheduledTimer(withTimeInterval: 0.5, repeats: true) { _ in progressSlider.value = Float(audioPlayer.currentTime) timeLabel.text = self.formatTime(audioPlayer.currentTime) } } } func sliderChanged(indexPath: IndexPath, progressSlider: UISlider, timeLabel: UILabel) { guard let audioPlayer = audioPlayers[indexPath] else { return } audioPlayer.currentTime = TimeInterval(progressSlider.value) timeLabel.text = formatTime(audioPlayer.currentTime) } func formatTime(_ time: TimeInterval) -> String { let roundedTime = time.rounded(.up) let minutes = Int(roundedTime) / 60 let seconds = Int(roundedTime) % 60 return String(format: "%d:%02d", minutes, seconds) } public func audioPlayerDidFinishPlaying(_ player: AVAudioPlayer, successfully flag: Bool) { if let finishedIndexPath = audioPlayers.first(where: { $0.value == player })?.key { DispatchQueue.main.async { self.timers[finishedIndexPath]?.invalidate() self.timers[finishedIndexPath] = nil self.playingIndexPath = nil self.audioPlayers[finishedIndexPath] = nil self.tableChatView.reloadRows(at: [finishedIndexPath], with: .none) } } } @objc func imageGroupingTapped(_ sender: ObjectGesture) { let listGroupingImages = ListGroupImages() listGroupingImages.imageTapped = sender.indexImageTapped listGroupingImages.listGroupingImages = sender.listImageFromGrouping listGroupingImages.titleName = titleText listGroupingImages.isInitiator = sender.isInitiator listGroupingImages.updateEditor = { [self] updatedData, replyData, isUpdateDelete in if replyData.count == 0 { if updatedData.count != 0 && !isUpdateDelete { groupImages[sender.listImageFromGrouping[0].messageId] = updatedData } else if updatedData.count > 0 { let deletedForEveryoneData = updatedData.filter({ $0.dataMessage["lock"] as? String == "1" }) if deletedForEveryoneData.count != 0 { if groupImages[sender.listImageFromGrouping[0].messageId] != nil { var dataWillEmpty = updatedData while dataWillEmpty.count > 0 { if let lastIdx = dataWillEmpty.lastIndex(where: { $0.dataMessage["lock"] as? String == "1" }) { if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String ?? "" == sender.listImageFromGrouping[0].messageId }) { if dataWillEmpty[lastIdx].messageId == sender.listImageFromGrouping[0].messageId { self.dataMessages.remove(at: idx) self.dataMessages.insert(dataWillEmpty[lastIdx].dataMessage, at: idx) } else { self.dataMessages.insert(dataWillEmpty[lastIdx].dataMessage, at: idx + 1) } let subData = Array(updatedData[lastIdx+1..= 4 { groupImages[subData[0].messageId] = subData self.dataMessages.insert(subData[0].dataMessage, at: lastIdx + 1) } else { if subData.count > 0 { self.dataMessages.insert(contentsOf: subData.map({ $0.dataMessage }), at: idx + (dataWillEmpty[lastIdx].messageId == sender.listImageFromGrouping[0].messageId ? 1 : 2)) } } } dataWillEmpty.removeSubrange(lastIdx..= 4 { groupImages[dataWillEmpty[0].messageId] = dataWillEmpty dataWillEmpty.removeAll() } else { if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String ?? "" == sender.listImageFromGrouping[0].messageId }) { self.dataMessages.remove(at: idx) self.dataMessages.insert(contentsOf: dataWillEmpty.map({ $0.dataMessage }), at: idx) groupImages.removeValue(forKey: sender.listImageFromGrouping[0].messageId) } dataWillEmpty.removeAll() } } } else { } } else { if updatedData.count >= 4 { if updatedData[0].messageId == sender.listImageFromGrouping[0].messageId { groupImages[sender.listImageFromGrouping[0].messageId] = updatedData } else { if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String ?? "" == sender.listImageFromGrouping[0].messageId }) { self.dataMessages.remove(at: idx) self.dataMessages.insert(updatedData[0].dataMessage, at: idx) groupImages.removeValue(forKey: sender.listImageFromGrouping[0].messageId) groupImages[updatedData[0].messageId] = updatedData } } } else { if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String ?? "" == sender.listImageFromGrouping[0].messageId }) { groupImages.removeValue(forKey: sender.listImageFromGrouping[0].messageId) self.dataMessages.remove(at: idx) let dataMessageInGrouping = updatedData.map({ $0.dataMessage }) self.dataMessages.insert(contentsOf: dataMessageInGrouping, at: idx) } } } } else { groupImages.removeValue(forKey: sender.listImageFromGrouping[0].messageId) if let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String ?? "" == sender.listImageFromGrouping[0].messageId }) { self.dataMessages.remove(at: idx) } } DispatchQueue.main.async { [self] in tableChatView.reloadData() } } else if replyData.count != 0 { handleReply(indexPath: IndexPath(row: 0, section: 0), dataMessagesImage: replyData) } } self.navigationController?.pushViewController(listGroupingImages, animated: true) } @objc func tapAck(_ sender: ObjectGesture) { if blocking == "1" { self.view.makeToast("You blocked this user".localized(), duration: 3) return } if blocking == "-1" { self.view.makeToast("You have been blocked by this user".localized(), duration: 3) return } let indexPath = sender.indexPath let dataMessages = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[indexPath.section]}) if dataMessages[indexPath.row]["status"] as? String ?? "" == "8" { return } if !CheckConnection.isConnectedToNetwork() || API.nGetCLXConnState() == 0 { let imageView = UIImageView(image: UIImage(systemName: "xmark.circle.fill")) imageView.tintColor = .white let banner = FloatingNotificationBanner(title: "Check your connection".localized(), subtitle: nil, titleFont: UIFont.systemFont(ofSize: 16), titleColor: nil, titleTextAlign: .left, subtitleFont: nil, subtitleColor: nil, subtitleTextAlign: nil, leftView: imageView, rightView: nil, style: .danger, colors: nil, iconPosition: .center) banner.show() return } DispatchQueue.global().async { let result = Nexilis.write(message: CoreMessage_TMessageBank.getAckLocationMessage(f_pin: dataMessages[indexPath.row]["f_pin"] as? String ?? "", message_id: dataMessages[indexPath.row]["message_id"] as? String ?? "", l_pin: dataMessages[indexPath.row]["l_pin"] as? String ?? "", server_date: "\(Date().currentTimeMillis())", message_scope_id: dataMessages[indexPath.row]["message_scope_id"] as? String ?? "", longitude: self.longitude, latitude: self.latitude, description: "")) if result != nil { Database.shared.database?.inTransaction({ (fmdb, rollback) in do { _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "status" : "8" ], _where: "message_id = '\(dataMessages[indexPath.row]["message_id"] as? String ?? "")'") } catch { rollback.pointee = true print("Access database error: \(error.localizedDescription)") } }) DispatchQueue.main.async { if let index = self.dataMessages.firstIndex(where: {$0["message_id"] as? String == dataMessages[indexPath.row]["message_id"] as? String}) { self.dataMessages[index]["status"] = "8" let section = self.dataDates.firstIndex(of: self.dataMessages[index]["chat_date"] as? String ?? "") let row = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataDates[section!]}).firstIndex(where: { $0["message_id"] as? String ?? "" == self.dataMessages[index]["message_id"] as? String ?? ""}) if row != nil && section != nil { self.tableChatView.reloadRows(at: [IndexPath(row: row!, section: section!)], with: .none) } self.view.makeToast("Confirmation Success.".localized(), duration: 3) } } } } } // public func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool { // let velocity : CGPoint = gestureRecognizer.location(in: tableChatView) // if velocity.x < 0 { // return false // } // return abs(Float(velocity.x)) > abs(Float(velocity.y)) // } // // @objc func panGestureCellAction(recognizer: UIPanGestureRecognizer) { // let translation = recognizer.translation(in: tableChatView) // let x = recognizer.view?.frame.origin.x ?? 0 // if x >= -(recognizer.view?.frame.size.width ?? 0) * 0.05 { // recognizer.view?.center = CGPoint( // x: (recognizer.view?.center.x ?? 0) + translation.x, // y: (recognizer.view?.center.y ?? 0)) // recognizer.setTranslation(CGPoint(x: 0, y: 0), in: view) // if (recognizer.view?.frame.origin.x ?? 0) > UIScreen.main.bounds.size.width * 0.9 { // UIView.animate(withDuration: 0.25, delay: 0, options: .curveEaseOut, animations: { // recognizer.view?.frame = CGRect(x: 0, y: recognizer.view?.frame.origin.y ?? 0, width: recognizer.view?.frame.size.width ?? 0, height: recognizer.view?.frame.size.height ?? 0) // }) // } // } // if x <= -(recognizer.view?.frame.size.width ?? 0) * 0.05 { // let idMe = User.getMyPin() as String? // let indexPath = self.tableChatView.indexPath(for: recognizer.view! as! UITableViewCell) // let dataMessages = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[indexPath!.section]}) // if (dataMessages[indexPath!.row]["f_pin"] as? String == idMe) { // let messageInfoVC = MessageInfo() // messageInfoVC.data = dataMessages[indexPath!.row] // self.navigationController?.pushViewController(messageInfoVC, animated: true) // return // } // } // if x >= ((recognizer.view?.frame.size.width ?? 0) * 0.2) { // if !hapticSwipeLeft { // UINotificationFeedbackGenerator().notificationOccurred(.success) // } // hapticSwipeLeft = true // } else if x < ((recognizer.view?.frame.size.width ?? 0) * 0.2) { // hapticSwipeLeft = false // } // if recognizer.state == .ended { // UIView.animate(withDuration: 0.25, delay: 0, options: .curveEaseOut) { // recognizer.view?.frame = CGRect(x: 0, y: recognizer.view?.frame.origin.y ?? 0, width: recognizer.view?.frame.size.width ?? 0, height: recognizer.view?.frame.size.height ?? 0) // } completion: { (finished) in // if x > ((recognizer.view?.frame.size.width ?? 0) * 0.2) { // self.hapticSwipeLeft = false // // } // } // } // } public func numberOfSections(in tableView: UITableView) -> Int { dataDates.count } public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { let count = dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[section] }).count return count } @objc func contentMessageTapped(_ sender: ObjectGesture) { let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if (sender.image_id != "") { if let dirPath = paths.first { let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.image_id) if FileManager.default.fileExists(atPath: imageURL.path) { let image = UIImage(contentsOfFile: imageURL.path) let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: Nexilis.self)) previewImageVC.image = image previewImageVC.isHiddenTextField = true previewImageVC.modalPresentationStyle = .custom previewImageVC.modalTransitionStyle = .crossDissolve self.present(previewImageVC, animated: true, completion: nil) } else if FileEncryption.shared.isSecureExists(filename: sender.image_id) { do { let data = try FileEncryption.shared.readSecure(filename: sender.image_id) let image = UIImage(data: data!) let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: Nexilis.self)) previewImageVC.image = image previewImageVC.isHiddenTextField = true previewImageVC.modalPresentationStyle = .custom previewImageVC.modalTransitionStyle = .crossDissolve self.present(previewImageVC, animated: true, completion: nil) } catch { print("Error reading secure file") } } else { for view in sender.imageView.subviews { if view is UIImageView { view.removeFromSuperview() } } let activityIndicator = UIActivityIndicatorView(style: .large) activityIndicator.color = .mainColor activityIndicator.hidesWhenStopped = true activityIndicator.center = CGPoint(x:sender.imageView.frame.width/2, y: sender.imageView.frame.height/2) activityIndicator.startAnimating() sender.imageView.addSubview(activityIndicator) Download().startHTTP(forKey: sender.image_id) { (name, progress) in guard progress == 100 else { return } do { let secureName = try FileEncryption.shared.writeSecure(filename: name)?[0] as? String ?? "" let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.image_id) if FileManager.default.fileExists(atPath: imageURL.path) { let image = UIImage(contentsOfFile: imageURL.path) let save: Bool = SecureUserDefaults.shared.value(forKey: "saveToGallery") ?? false if save { UIImageWriteToSavedPhotosAlbum(image!, nil, nil, nil) } } else if FileEncryption.shared.isSecureExists(filename: secureName) { if let secureData = try FileEncryption.shared.readSecure(filename: secureName) { let image = UIImage(data: secureData) let save: Bool = SecureUserDefaults.shared.value(forKey: "saveToGallery") ?? false if save { UIImageWriteToSavedPhotosAlbum(image!, nil, nil, nil) } } } } } catch { } DispatchQueue.main.async { activityIndicator.stopAnimating() self.tableChatView.reloadRows(at: [sender.indexPath], with: .none) } } } } } else if (sender.gif_id != "") { if let dirPath = paths.first { let gifURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.gif_id) if FileManager.default.fileExists(atPath: gifURL.path) { do { let data = try Data(contentsOf: gifURL) APIS.openImageNexilis(image: UIImage(), data: data, isGIF: true) } catch { } } else if FileEncryption.shared.isSecureExists(filename: sender.gif_id) { do { if let secureData = try FileEncryption.shared.readSecure(filename: sender.gif_id) { APIS.openImageNexilis(image: UIImage(), data: secureData, isGIF: true) } } catch { } } } } else if (sender.video_id != "") { if let dirPath = paths.first { let videoURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.video_id) if FileManager.default.fileExists(atPath: videoURL.path) { let player = AVPlayer(url: videoURL as URL) let playerVC = AVPlayerViewController() playerVC.modalPresentationStyle = .custom playerVC.player = player self.present(playerVC, animated: true, completion: nil) } else if FileEncryption.shared.isSecureExists(filename: sender.video_id) { do { if let secureData = try FileEncryption.shared.readSecure(filename: sender.video_id) { let cachesDirectory = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask).first! let tempPath = cachesDirectory.appendingPathComponent(sender.video_id) try secureData.write(to: tempPath) let player = AVPlayer(url: tempPath as URL) let playerVC = AVPlayerViewController() playerVC.modalPresentationStyle = .custom playerVC.player = player self.present(playerVC, animated: true, completion: nil) } } catch { } } else { for view in sender.imageView.subviews { if view is UIImageView { view.removeFromSuperview() } } let container = UIView() sender.imageView.addSubview(container) container.translatesAutoresizingMaskIntoConstraints = false container.centerXAnchor.constraint(equalTo: sender.imageView.centerXAnchor).isActive = true container.centerYAnchor.constraint(equalTo: sender.imageView.centerYAnchor).isActive = true container.widthAnchor.constraint(equalToConstant: 50).isActive = true container.heightAnchor.constraint(equalToConstant: 50).isActive = true let circlePath = UIBezierPath(arcCenter: CGPoint(x: 25, y: 25), radius: 20, startAngle: -(.pi / 2), endAngle: .pi * 2, clockwise: true) let trackShape = CAShapeLayer() trackShape.path = circlePath.cgPath trackShape.fillColor = UIColor.clear.cgColor trackShape.lineWidth = 10 trackShape.strokeColor = UIColor.blueBubbleColor.withAlphaComponent(0.3).cgColor container.backgroundColor = .clear container.layer.addSublayer(trackShape) let shapeLoading = CAShapeLayer() shapeLoading.path = circlePath.cgPath shapeLoading.fillColor = UIColor.clear.cgColor shapeLoading.lineWidth = 10 shapeLoading.strokeEnd = 0 shapeLoading.strokeColor = UIColor.blueBubbleColor.cgColor container.layer.addSublayer(shapeLoading) let imageDownload = UIImageView(image: UIImage(systemName: "arrow.down", withConfiguration: UIImage.SymbolConfiguration(pointSize: 10, weight: .bold, scale: .default))) imageDownload.tintColor = .white container.addSubview(imageDownload) imageDownload.translatesAutoresizingMaskIntoConstraints = false imageDownload.centerXAnchor.constraint(equalTo: sender.imageView.centerXAnchor).isActive = true imageDownload.centerYAnchor.constraint(equalTo: sender.imageView.centerYAnchor).isActive = true imageDownload.widthAnchor.constraint(equalToConstant: 30).isActive = true imageDownload.heightAnchor.constraint(equalToConstant: 30).isActive = true Download().startHTTP(forKey: sender.video_id, isImage: false) { (name, progress) in DispatchQueue.main.async { guard progress == 100 else { shapeLoading.strokeEnd = CGFloat(progress / 100) return } do { if let secureName = try FileEncryption.shared.writeSecure(filename: name)?[0] as? String { let secureData = try FileEncryption.shared.readSecure(filename: secureName) let cachesDirectory = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask).first! let tempPath = cachesDirectory.appendingPathComponent(name) try secureData!.write(to: tempPath) let save: Bool = SecureUserDefaults.shared.value(forKey: "saveToGallery") ?? false if save { PHPhotoLibrary.shared().performChanges({ PHAssetChangeRequest.creationRequestForAssetFromVideo(atFileURL: tempPath) }) { saved, error in } } } else { let save: Bool = SecureUserDefaults.shared.value(forKey: "saveToGallery") ?? false if save { let videoURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.video_id) PHPhotoLibrary.shared().performChanges({ PHAssetChangeRequest.creationRequestForAssetFromVideo(atFileURL: videoURL) }) { saved, error in } } } } catch { } let idx = self.dataMessages.firstIndex(where: { $0["video_id"] as? String ?? "" == sender.video_id}) if idx != nil { self.dataMessages[idx!]["progress"] = progress self.tableChatView.reloadRows(at: [sender.indexPath], with: .none) } } } } } } else if (sender.file_id != "") { if let dirPath = paths.first { let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.file_id) if FileManager.default.fileExists(atPath: fileURL.path) { self.previewItem = fileURL as NSURL let previewController = QLPreviewController() let rightBarButton = UIBarButtonItem() previewController.navigationItem.rightBarButtonItem = rightBarButton previewController.dataSource = self previewController.modalPresentationStyle = .custom self.present(previewController, animated: true) } else if FileEncryption.shared.isSecureExists(filename: sender.file_id) { do { if let docData = try FileEncryption.shared.readSecure(filename: sender.file_id) { let cachesDirectory = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask).first! let tempPath = cachesDirectory.appendingPathComponent(sender.file_id) try docData.write(to: tempPath) self.previewItem = tempPath as NSURL let previewController = QLPreviewController() let rightBarButton = UIBarButtonItem() previewController.navigationItem.rightBarButtonItem = rightBarButton previewController.dataSource = self previewController.modalPresentationStyle = .custom self.present(previewController,animated: true) } } catch { } } else { for view in sender.containerFile.subviews { if !(view is UIImageView) && !(view is UILabel) { view.removeFromSuperview() } } let containerLoading = UIView() sender.containerFile.addSubview(containerLoading) containerLoading.translatesAutoresizingMaskIntoConstraints = false containerLoading.centerYAnchor.constraint(equalTo: sender.containerFile.centerYAnchor).isActive = true containerLoading.leadingAnchor.constraint(equalTo: sender.labelFile.trailingAnchor, constant: 5).isActive = true containerLoading.trailingAnchor.constraint(equalTo: sender.containerFile.trailingAnchor, constant: -5).isActive = true containerLoading.widthAnchor.constraint(equalToConstant: 30).isActive = true containerLoading.heightAnchor.constraint(equalToConstant: 30).isActive = true let circlePath = UIBezierPath(arcCenter: CGPoint(x: 15, y: 15), radius: 10, startAngle: -(.pi / 2), endAngle: .pi * 2, clockwise: true) let trackShape = CAShapeLayer() trackShape.path = circlePath.cgPath trackShape.fillColor = UIColor.clear.cgColor trackShape.lineWidth = 5 trackShape.strokeColor = UIColor.blueBubbleColor.withAlphaComponent(0.3).cgColor containerLoading.layer.addSublayer(trackShape) let shapeLoading = CAShapeLayer() shapeLoading.path = circlePath.cgPath shapeLoading.fillColor = UIColor.clear.cgColor shapeLoading.lineWidth = 3 shapeLoading.strokeEnd = 0 shapeLoading.strokeColor = UIColor.blueBubbleColor.cgColor containerLoading.layer.addSublayer(shapeLoading) let imageupload = UIImageView(image: UIImage(systemName: "arrow.down", withConfiguration: UIImage.SymbolConfiguration(pointSize: 10, weight: .bold, scale: .default))) imageupload.tintColor = .white containerLoading.addSubview(imageupload) imageupload.translatesAutoresizingMaskIntoConstraints = false imageupload.centerYAnchor.constraint(equalTo: containerLoading.centerYAnchor).isActive = true imageupload.centerXAnchor.constraint(equalTo: containerLoading.centerXAnchor).isActive = true Download().startHTTP(forKey: sender.file_id, isImage: false) { (name, progress) in DispatchQueue.main.async { guard progress == 100 else { shapeLoading.strokeEnd = CGFloat(progress / 100) return } do { try FileEncryption.shared.writeSecure(filename: name) } catch { } let idx = self.dataMessages.firstIndex(where: { $0["file_id"] as? String ?? "" == sender.file_id}) if idx != nil { self.dataMessages[idx!]["progress"] = progress self.tableChatView.reloadRows(at: [sender.indexPath], with: .none) } } } } } } else { DispatchQueue.main.async { let idx = self.dataMessages.firstIndex(where: { $0["message_id"] as? String == sender.message_id}) if idx == nil { return } let section = self.dataDates.firstIndex(of: self.dataMessages[idx!]["chat_date"] as? String ?? "") if section == nil { return } let row = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == self.dataDates[section!]}).firstIndex(where: { $0["message_id"] as? String == self.dataMessages[idx!]["message_id"] as? String}) if row == nil { return } let indexPath = IndexPath(row: row!, section: section!) self.tableChatView.scrollToRow(at: indexPath, at: .middle, animated: true) DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) { if let cell = self.tableChatView.cellForRow(at: indexPath) { let containerMessage = cell.contentView.subviews[0] let idMe = User.getMyPin() as String? if (self.dataMessages[idx!]["f_pin"] as? String == idMe) { containerMessage.backgroundColor = .blueBubbleColor.withAlphaComponent(0.3) DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { if (self.dataMessages[idx!]["attachment_flag"] as? String == "11") { containerMessage.backgroundColor = .clear } else { containerMessage.backgroundColor = .blueBubbleColor } } } else { containerMessage.backgroundColor = .whiteBubbleColor.withAlphaComponent(0.3) DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { if (self.dataMessages[idx!]["attachment_flag"] as? String == "11") { containerMessage.backgroundColor = .clear } else { containerMessage.backgroundColor = .whiteBubbleColor } } } } } } } } func highlightedText(for text: String, textView: UITextView) -> NSAttributedString { let mutableAttributedString = textView.attributedText!.mutableCopy() as! NSMutableAttributedString if let range = textView.attributedText.string.range(of: text) { let nsRange = NSRange(range, in: textView.attributedText.string) mutableAttributedString.addAttribute(.backgroundColor, value: UIColor.lightGray.withAlphaComponent(0.5), range: NSRange(range, in: text)) } return mutableAttributedString } func removeHighlightedText(for text: String, textView: UITextView) -> NSAttributedString { let mutableAttributedString = textView.attributedText!.mutableCopy() as! NSMutableAttributedString if let range = textView.attributedText.string.range(of: text) { let nsRange = NSRange(range, in: textView.attributedText.string) mutableAttributedString.removeAttribute(.backgroundColor, range: NSRange(range, in: text)) } return mutableAttributedString } @objc func tapMessageText(_ sender: ObjectGesture) { var stringURl = sender.message_id if stringURl.lowercased().starts(with: "www.") { stringURl = "https://" + stringURl.replacingOccurrences(of: "www.", with: "") } if Nexilis.checkingAccess(key: "secure_browser") { APIS.openUrl(url: stringURl) } else { guard let url = URL(string: stringURl) else { return } UIApplication.shared.open(url) } } // public func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? { // if copySession || forwardSession || deleteSession { // return nil // } // let idMe = User.getMyPin() as String? // if (dataMessages[indexPath.row]["f_pin"] as? String != idMe) { // return nil // } // let messageInfoVC = MessageInfo() // messageInfoVC.data = dataMessages[indexPath.row] // self.navigationController?.show(messageInfoVC, sender: nil) // return UISwipeActionsConfiguration() // } // // public func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? { // if copySession || forwardSession || deleteSession { // return nil // } // let action = UIContextualAction(style: .normal, // title: "") { [weak self] (action, view, completionHandler) in // self?.handleReply(indexPath: indexPath) // completionHandler(true) // } // action.backgroundColor = .white // action.image = UIImage(systemName: "arrowshape.turn.up.left.fill")?.withTintColor(.black, renderingMode: .alwaysOriginal) // return UISwipeActionsConfiguration(actions: [action]) // } private func handleReply(indexPath: IndexPath, dataMessagesImage: [String: Any?] = [:], reffId: String = "") { var dataMessages = self.dataMessages.filter({ $0["chat_date"] as? String ?? "" == dataDates[indexPath.section]}) if reffId.isEmpty { self.deleteReplyView() if dataMessagesImage.count != 0 { dataMessages = [dataMessagesImage] } else { self.textFieldSend.becomeFirstResponder() } self.reffId = dataMessages[indexPath.row]["message_id"] as? String } else { dataMessages = self.dataMessages.filter({ $0["message_id"] as? String ?? "" == reffId }) self.reffId = reffId } if dataMessages.count == 0 { self.deleteReplyView() return } UIView.animate(withDuration: 0.25, delay: 0.0, options: .curveEaseInOut, animations: { self.constraintTopTextField.constant = self.constraintTopTextField.constant + 50 }, completion: nil) if (self.currentIndexpath != nil) { DispatchQueue.main.asyncAfter(deadline: .now() + 0.25) { self.tableChatView.scrollToRow(at: IndexPath(row: self.currentIndexpath!.row, section: self.currentIndexpath!.section), at: .none, animated: false) } } else { self.tableChatView.scrollToBottom() } self.viewTextfield.addSubview(self.containerPreviewReply) self.containerPreviewReply.translatesAutoresizingMaskIntoConstraints = false self.containerPreviewReply.leadingAnchor.constraint(equalTo: self.viewTextfield.leadingAnchor).isActive = true self.containerPreviewReply.topAnchor.constraint(equalTo: self.viewTextfield.topAnchor).isActive = true if !self.containerLink.isDescendant(of: self.viewTextfield) { self.bottomAnchorPreviewReply = self.containerPreviewReply.bottomAnchor.constraint(equalTo: self.textFieldSend.topAnchor) } else { self.bottomAnchorPreviewReply = self.containerPreviewReply.bottomAnchor.constraint(equalTo: self.containerLink.topAnchor) } self.bottomAnchorPreviewReply.isActive = true self.containerPreviewReply.trailingAnchor.constraint(equalTo: self.viewTextfield.trailingAnchor).isActive = true self.containerPreviewReply.backgroundColor = self.traitCollection.userInterfaceStyle == .dark ? .blackDarkMode : .secondaryColor let leftReply = UIView() self.containerPreviewReply.addSubview(leftReply) leftReply.translatesAutoresizingMaskIntoConstraints = false leftReply.leadingAnchor.constraint(equalTo: self.viewTextfield.leadingAnchor).isActive = true leftReply.topAnchor.constraint(equalTo: self.containerPreviewReply.topAnchor).isActive = true leftReply.bottomAnchor.constraint(equalTo: self.containerPreviewReply.bottomAnchor).isActive = true leftReply.widthAnchor.constraint(equalToConstant: 3).isActive = true leftReply.backgroundColor = .orangeColor let titleReply = UILabel() self.containerPreviewReply.addSubview(titleReply) titleReply.translatesAutoresizingMaskIntoConstraints = false titleReply.leadingAnchor.constraint(equalTo: leftReply.leadingAnchor, constant: 10).isActive = true titleReply.topAnchor.constraint(equalTo: self.containerPreviewReply.topAnchor, constant: 10).isActive = true titleReply.font = UIFont.systemFont(ofSize: 12 + offset()).bold let idMe = User.getMyPin() as String? if (dataMessages[indexPath.row]["f_pin"] as? String == idMe) { titleReply.text = "You".localized() } else { if self.isContactCenter { let user: [User] = self.users.filter({$0.pin == dataMessages[indexPath.row]["f_pin"] as? String}) titleReply.text = user.first!.fullName } else { titleReply.text = self.dataPerson["name"]!! } } titleReply.textColor = .orangeColor let contentReply = UILabel() self.containerPreviewReply.addSubview(contentReply) contentReply.translatesAutoresizingMaskIntoConstraints = false contentReply.leadingAnchor.constraint(equalTo: leftReply.leadingAnchor, constant: 10).isActive = true contentReply.topAnchor.constraint(equalTo: titleReply.bottomAnchor).isActive = true contentReply.font = UIFont.systemFont(ofSize: 10 + offset()) let message_text = dataMessages[indexPath.row]["message_text"] as? String ?? "" let attachment_flag = dataMessages[indexPath.row]["attachment_flag"] as? String ?? "" let thumb_chat = dataMessages[indexPath.row]["thumb_id"] as? String ?? "" let image_chat = dataMessages[indexPath.row]["image_id"] as? String ?? "" let video_chat = dataMessages[indexPath.row]["video_id"] as? String ?? "" let file_chat = dataMessages[indexPath.row]["file_id"] as? String ?? "" if (attachment_flag == "0" && thumb_chat == "") { contentReply.attributedText = message_text.richText() } else if (attachment_flag == "1" || image_chat != "") { if (message_text == "") { contentReply.text = "📷 Photo".localized() } else { contentReply.attributedText = message_text.richText() } } else if (attachment_flag == "2" || video_chat != "") { if (message_text == "") { contentReply.text = "📹 Video".localized() } else { contentReply.attributedText = message_text.richText() } } else if (attachment_flag == "6" || file_chat != ""){ contentReply.text = "📄 \(message_text.components(separatedBy: "|")[0])" } else if (attachment_flag == "11") { contentReply.text = "❤️ Sticker" } contentReply.textColor = self.traitCollection.userInterfaceStyle == .dark ? .white : .gray let buttonCancelReply = UIButton(type: .custom) self.containerPreviewReply.addSubview(buttonCancelReply) buttonCancelReply.translatesAutoresizingMaskIntoConstraints = false buttonCancelReply.trailingAnchor.constraint(equalTo: self.containerPreviewReply.trailingAnchor, constant: -10).isActive = true buttonCancelReply.centerYAnchor.constraint(equalTo: self.containerPreviewReply.centerYAnchor).isActive = true buttonCancelReply.setImage(UIImage(systemName: "xmark.circle" , withConfiguration: UIImage.SymbolConfiguration(pointSize: 20, weight: .regular, scale: .default)), for: .normal) buttonCancelReply.addTarget(nil, action: #selector(self.deleteReplyView), for: .touchUpInside) buttonCancelReply.backgroundColor = .clear buttonCancelReply.tintColor = .mainColor if (attachment_flag == "1" || attachment_flag == "2" || image_chat != "" || video_chat != "") { let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true) if let dirPath = paths.first { let thumbURL = URL(fileURLWithPath: dirPath).appendingPathComponent(thumb_chat) let image : UIImage? = { if let img = Nexilis.imageCache.object(forKey: thumb_chat as NSString) { return img } else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) { Nexilis.imageCache.setObject(img, forKey: thumb_chat as NSString) return img } return nil }() // let image = UIGraphicsRenderer.renderImageAt(url: thumbURL as NSURL, size: CGSize(width: 250, height: 250)) let imageThumb = UIImageView(image: image) self.containerPreviewReply.addSubview(imageThumb) imageThumb.layer.cornerRadius = 2.0 imageThumb.clipsToBounds = true imageThumb.translatesAutoresizingMaskIntoConstraints = false imageThumb.trailingAnchor.constraint(equalTo: buttonCancelReply.leadingAnchor, constant: -10).isActive = true imageThumb.centerYAnchor.constraint(equalTo: self.containerPreviewReply.centerYAnchor).isActive = true imageThumb.widthAnchor.constraint(equalToConstant: 30).isActive = true imageThumb.heightAnchor.constraint(equalToConstant: 30).isActive = true if (attachment_flag == "2") { let imagePlay = UIImageView(image: UIImage(systemName: "play.circle.fill")) imageThumb.addSubview(imagePlay) imagePlay.clipsToBounds = true imagePlay.translatesAutoresizingMaskIntoConstraints = false imagePlay.centerYAnchor.constraint(equalTo: imageThumb.centerYAnchor).isActive = true imagePlay.centerXAnchor.constraint(equalTo: imageThumb.centerXAnchor).isActive = true imagePlay.widthAnchor.constraint(equalToConstant: 10).isActive = true imagePlay.heightAnchor.constraint(equalToConstant: 10).isActive = true imagePlay.tintColor = .white } } } if (attachment_flag == "11") { let imageSticker = UIImageView(image: UIImage(named: (message_text.components(separatedBy: "/")[1]), in: Bundle.resourceBundle(for: Nexilis.self), with: nil)) self.containerPreviewReply.addSubview(imageSticker) imageSticker.layer.cornerRadius = 2.0 imageSticker.clipsToBounds = true imageSticker.translatesAutoresizingMaskIntoConstraints = false imageSticker.trailingAnchor.constraint(equalTo: buttonCancelReply.leadingAnchor, constant: -10).isActive = true imageSticker.centerYAnchor.constraint(equalTo: self.containerPreviewReply.centerYAnchor).isActive = true imageSticker.widthAnchor.constraint(equalToConstant: 30).isActive = true imageSticker.heightAnchor.constraint(equalToConstant: 30).isActive = true } } func scrollToFirstSearchMessage(indexScroll: Int = 1) { if textSearch.count < 2 { return } var lastIndex = 0 let messageTextForSearch: [[String: Any?]] = self.dataMessages.reversed() for idx in 0.. 1 { titleSearchMatches.text = "\(lastScrollIdxSearch) " + "of".localized() + " \(countMatchesSearch) " + "matches".localized() } else { titleSearchMatches.text = "\(countMatchesSearch) " + "matches".localized() } } else { titleSearchMatches.text = "Not found".localized() } if lastScrollIdxSearch == countMatchesSearch || countMatchesSearch == 0 { buttonUp.isEnabled = false buttonUp.tintColor = .gray } else { buttonUp.isEnabled = true buttonUp.tintColor = .mainColor } if countMatchesSearch == 0 || lastScrollIdxSearch == 1 || countMatchesSearch == 1 { buttonDown.isEnabled = false buttonDown.tintColor = .gray } else { buttonDown.isEnabled = true buttonDown.tintColor = .mainColor } break } } } public func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) { let indexPath = tableChatView.indexPathsForVisibleRows?.first if indexPath != nil { let headerRect = tableChatView.rectForHeader(inSection: indexPath!.section) let isPinned = headerRect.origin.y <= scrollView.contentOffset.y if listViewOnSection.count != 0 && listViewOnSection.count - 1 == indexPath!.section && indexPath!.row > 0 { let sect = listViewOnSection.count - 1 < currentIndexpath!.section ? listViewOnSection.count - 1 : currentIndexpath!.section let headerView = listViewOnSection[sect] headerView.isHidden = true } } } public func scrollViewDidEndDragging(_ scrollView: UIScrollView, willDecelerate decelerate: Bool) { if !decelerate { let indexPath = tableChatView.indexPathsForVisibleRows?.first if indexPath != nil { let headerRect = tableChatView.rectForHeader(inSection: indexPath!.section) let isPinned = headerRect.origin.y <= scrollView.contentOffset.y if listViewOnSection.count != 0 && listViewOnSection.count - 1 == indexPath!.section && isPinned { let sect = listViewOnSection.count - 1 < currentIndexpath!.section ? listViewOnSection.count - 1 : currentIndexpath!.section let headerView = listViewOnSection[sect] headerView.isHidden = true } } } } } extension UITableView { func scrollToBottom(isAnimated:Bool = true){ DispatchQueue.main.asyncAfter(deadline: .now() + (isAnimated ? 0 : 0.6)) { [weak self] in guard let self = self, self.numberOfSections > 0 else { return } let lastSection = self.numberOfSections - 1 let numberOfRows = self.numberOfRows(inSection: lastSection) guard numberOfRows > 0 else { return } let indexPath = IndexPath(row: numberOfRows - 1, section: lastSection) self.scrollToRow(at: indexPath, at: .bottom, animated: isAnimated) } } func scrollToTop(isAnimated:Bool = true) { DispatchQueue.main.async { let indexPath = IndexPath(row: 0, section: 0) if indexPath.row != -1 { self.scrollToRow(at: indexPath, at: .top, animated: isAnimated) } } } } extension UIImage { public func imageWithInsets(insets: UIEdgeInsets) -> UIImage? { UIGraphicsBeginImageContextWithOptions( CGSize(width: self.size.width + insets.left + insets.right, height: self.size.height + insets.top + insets.bottom), false, self.scale) let _ = UIGraphicsGetCurrentContext() let origin = CGPoint(x: insets.left, y: insets.top) self.draw(at: origin) let imageWithInsets = UIGraphicsGetImageFromCurrentImageContext() UIGraphicsEndImageContext() return imageWithInsets } } extension EditorPersonal: UISearchBarDelegate { public func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) { timerSearch?.invalidate() if searchText.count > 1 { timerSearch = Timer.scheduledTimer(withTimeInterval: 0.5, repeats: false, block: {[self] _ in textSearch = searchText.trimmingCharacters(in: .whitespacesAndNewlines) titleSearchMatches.isHidden = true countMatchesSearch = Chat.getCountSearchMessage(key: textSearch, pin: unique_l_pin, isPersonal: true) tableChatView.reloadData() scrollToFirstSearchMessage() }) } } } public class ObjectGesture: UITapGestureRecognizer { public var message_id = "" public var image_id = "" public var video_id = "" public var file_id = "" public var audio_id = "" public var gif_id = "" public var imageView = UIImageView() public var containerFile = UIView() public var labelFile = UILabel() public var videoURL: NSURL? public var indexPath = IndexPath() public var indexImageTapped: Int! public var listImageFromGrouping: [ImageGrouping]! public var isInitiator: Bool! } class navigationQLPreviewDocument: UIBarButtonItem { var navigation = UINavigationController() } class segmentedControllerObject: UISegmentedControl { var navigation = UINavigationController() } public class ImageGrouping { public var messageId = "" public var thumbId = "" public var imageId = "" public var status = "" public var time = "" public var lPin = "" public var dataMessage: [String: Any?] = [:] public var dataPerson: [String: String?] = [:] public var dataGroup: [String: Any?] = [:] public var dataTopic: [String: Any?] = [:] public var isSelected = false public init(messageId: String, thumbId: String, imageId: String, status: String, time: String, lPin: String, dataMessage: [String: Any?], dataPerson: [String: String?], dataGroup: [String: Any?], dataTopic: [String: Any?]) { self.messageId = messageId self.thumbId = thumbId self.imageId = imageId self.status = status self.time = time self.lPin = lPin self.dataMessage = dataMessage self.dataPerson = dataPerson self.dataGroup = dataGroup self.dataTopic = dataTopic } } public class TypeDataMessage { public static let message_id = "message_id" public static let f_pin = "f_pin" public static let l_pin = "l_pin" public static let message_scope_id = "message_scope_id" public static let server_date = "server_date" public static let status = "status" public static let message_text = "message_text" public static let audio_id = "audio_id" public static let video_id = "video_id" public static let image_id = "image_id" public static let thumb_id = "thumb_id" public static let read_receipts = "read_receipts" public static let chat_id = "chat_id" public static let file_id = "file_id" public static let attachment_flag = "attachment_flag" public static let reff_id = "reff_id" public static let lock = "lock" public static let is_stared = "is_stared" public static let blog_id = "blog_id" public static let credential = "credential" public static let progress = "progress" public static let chat_date = "chat_date" public static let is_call_center = "is_call_center" public static let call_center_id = "call_center_id" public static let opposite_pin = "opposite_pin" public static let last_edit = "last_edit" public static let gif_id = "gif_id" public static let is_forwarded = "is_forwarded" public static let is_secret = "is_secret" }