// // 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 public class EditorPersonal: UIViewController, ImageVideoPickerDelegate, UIGestureRecognizerDelegate { @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: UITextView! @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 = "" 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 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 timerLongPressLink: 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 public override func viewDidDisappear(_ animated: Bool) { if self.isMovingFromParent { for timer in self.timerCredential.values { timer.invalidate() } self.timeoutCC.invalidate() UserDefaults.standard.removeObject(forKey: "inEditorPersonal") NotificationCenter.default.removeObserver(self) super.viewDidDisappear(true) self.removeFromParent() self.dismiss(animated: true, completion: nil) if !isContactCenter { let l_pin = self.dataPerson["f_pin"]!! UserDefaults.standard.set("\(textFieldSend.textColor != UIColor.lightGray ? textFieldSend.text! : ""),\(reffId ?? "")", forKey: "saved_\(l_pin)") } } } public override func viewDidAppear(_ animated: Bool) { let navBarAppearance = UINavigationBarAppearance() navBarAppearance.configureWithOpaqueBackground() navBarAppearance.backgroundColor = UIColor.mainColor navigationController?.navigationBar.standardAppearance = navBarAppearance navigationController?.navigationBar.scrollEdgeAppearance = navBarAppearance navigationController?.navigationBar.isTranslucent = false navigationController?.navigationBar.backgroundColor = .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 { 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 = "" viewButton.layer.shadowColor = UIColor.gray.cgColor viewButton.layer.shadowOpacity = 1 viewButton.layer.shadowOffset = .zero viewButton.layer.shadowRadius = 3 // buttonVoice.setImage(resizeImage(image: UIImage(named: "Voice-Record", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)), for: .normal) buttonSendImage.setImage(resizeImage(image: UIImage(named: "Send-Image", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(.mainColor), for: .normal) buttonSendPhoto.setImage(resizeImage(image: UIImage(named: "Camera", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(.mainColor), for: .normal) buttonSendSticker.setImage(resizeImage(image: UIImage(named: "Sticker---Emoji", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(.mainColor), for: .normal) buttonSendFile.setImage(resizeImage(image: UIImage(named: "File---Documents", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withTintColor(.mainColor), for: .normal) buttonSendChat.setImage(resizeImage(image: UIImage(named: "Send-(White)", in: Bundle.resourceBundle(for: DigiX.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 = .mainColor if isContactCenter { buttonAckConfidential.isHidden = true constraintLeftTextField.constant = 20 } else { buttonAckConfidential.circle() buttonAckConfidential.addTarget(self, action: #selector(showChooserACKConfidential), for: .touchUpInside) buttonAckConfidential.backgroundColor = .mainColor } textFieldSend.layer.cornerRadius = textFieldSend.maxCornerRadius() textFieldSend.layer.borderWidth = 1.0 textFieldSend.text = "Send message".localized() textFieldSend.textColor = UIColor.lightGray 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) textFieldSend.delegate = 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 let path = Bundle.resourceBundle(for: DigiX.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: DigiX.listenerReceiveChat), object: nil) center.addObserver(self, selector: #selector(onStatusChat(notification:)), name: NSNotification.Name(rawValue: DigiX.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: DigiX.listenerTypingChat), object: nil) if dataMessageForward != nil { for i in 0.. 0 && dataMessages.count >= counter { markerCounter = dataMessages[dataMessages.count - counter]["message_id"] as? String } tableChatView.alpha = 0 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 }) 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 = UserDefaults.standard.string(forKey: "me") 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) UserDefaults.standard.removeObject(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 _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(data.key)'") }) } } 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 = .black labelChatbot.font = UIFont.systemFont(ofSize: 12).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 dataImage = try? Data(contentsOf: URL(string: Utils.getUrlDock()!)!) //make sure your image in this url does exist, otherwise unwrap in a if let check / try-catch if dataImage != nil { imageProfile.image = UIImage(data: dataImage!) } } else { imageProfile.image = UIImage(named: "pb_button", in: Bundle.resourceBundle(for: DigiX.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: DigiX.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: DigiX.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: DigiX.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).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.barTintColor = .secondaryColor searchBar.searchTextField.backgroundColor = .secondaryColor searchBar.showsCancelButton = false searchBar.setMagnifyingGlassColorTo(color: .mainColor) 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 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() } }) } 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 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 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) 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){ row["progress"] = 100.0 } else { row["progress"] = 0.0 } } else { if FileManager.default.fileExists(atPath: fileURL.path){ 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"] as! String == "1" { let idMe = UserDefaults.standard.string(forKey: "me")! 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 _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(row["message_id"] as! String)'") }) } } else { let second = 60 - second listTimerCredential[row["message_id"] as! String] = second } } else { let hasMessageId = UserDefaults.standard.string(forKey: row["message_id"] as! String) 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 _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(row["message_id"] as! String)'") }) } } else { let second = 60 - second listTimerCredential[row["message_id"] as! String] = second } } else { UserDefaults.standard.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 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 { 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", "2", "3", "1", "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 _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(row["message_id"] as! String)'") }) } } else { let second = 60 - second listTimerCredential[row["message_id"] as! String] = second } } else { let hasMessageId = UserDefaults.standard.string(forKey: row["message_id"] as! String) 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 _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(row["message_id"] as! String)'") }) } } else { let second = 60 - second listTimerCredential[row["message_id"] as! String] = second } } else { UserDefaults.standard.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 = UserDefaults.standard.string(forKey: "i18n_language") 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 = UserDefaults.standard.string(forKey: "i18n_language") 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 UILabel) && !(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 UILabel) && !(view is UIImageView) { for viewSubviews in view.subviews { if !(viewSubviews is UILabel) { for viewInContainer in viewSubviews.subviews { if !(viewInContainer is UILabel) && !(viewInContainer is UIImageView) { if viewInContainer.layer.sublayers!.count < 2 { return } let loading = viewInContainer.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) } } } } } } } } } } } } @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 = UserDefaults.standard.string(forKey: "me")! 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 { DigiX.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() UserDefaults.standard.set(members, forKey: "inEditorPersonal") } } } else if (dataMessage.getCode() == CoreMessage_TMessageCode.ACCEPT_CALL_CENTER) { if !self.isRequestContactCenter || !isContactCenter { return } UserDefaults.standard.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() UserDefaults.standard.removeObject(forKey: "waitingRequestCC") if dataMessage.getBody(key: CoreMessage_TMessageKey.CHANNEL) != "0" { UserDefaults.standard.set("\(Date().currentTimeMillis())", forKey: "startTimeCC") UserDefaults.standard.set(dataMessage.getBody(key: CoreMessage_TMessageKey.CHANNEL), forKey: "channelCC") DispatchQueue.main.asyncAfter(deadline: .now() + 1, execute: { self.dismiss(animated: true, completion: nil) }) } } 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 = UserDefaults.standard.string(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(error) } }) } self.dismissKeyboard() self.disableEditor() UserDefaults.standard.removeObject(forKey: "onGoingCC") UserDefaults.standard.removeObject(forKey: "membersCC") UserDefaults.standard.removeObject(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: nil) } DispatchQueue.main.asyncAfter(deadline: .now() + 2) { self.dismiss(animated: true, completion: nil) } }) } 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)" } } UserDefaults.standard.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 } 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.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["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"] 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"] as! String == "1" { var timer = Timer() var minute = 60 self.timerCredential[row["message_id"] as! String] = timer UserDefaults.standard.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) UserDefaults.standard.removeObject(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 _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(row["message_id"] as! String)'") }) } } self.tableChatView.reloadRows(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 self.isContactCenter { let idMe = UserDefaults.standard.string(forKey: "me")! let onGoingCC = UserDefaults.standard.string(forKey: "onGoingCC") ?? "" let officer = onGoingCC.isEmpty ? "" : onGoingCC.components(separatedBy: ",")[1] if officer == idMe { self.timeoutCC.invalidate() } else { if !self.showToast30s { self.showToast(message: "Please reply within 30 seconds so the call center session doesn't end.".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self) 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 = .black labelDisable.font = UIFont.systemFont(ofSize: 12).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 = UserDefaults.standard.string(forKey: "onGoingCC") ?? "" let requester = onGoingCC.components(separatedBy: ",")[0] let idMe = UserDefaults.standard.string(forKey: "me")! 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.dataMessages[idx!]["lock"] = "1" self.dataMessages[idx!]["reff_id"] = "" 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) } if self.listTimerCredential[self.dataMessages[idx!]["message_id"] as! String] != nil { self.listTimerCredential.removeValue(forKey: self.dataMessages[idx!]["message_id"] as! String) self.timerCredential[self.dataMessages[idx!]["message_id"] as! String]?.invalidate() self.timerCredential.removeValue(forKey: self.dataMessages[idx!]["message_id"] as! String) UserDefaults.standard.removeObject(forKey: self.dataMessages[idx!]["message_id"] as! String) } if self.reffId != nil && self.reffId == chatData[CoreMessage_TMessageKey.MESSAGE_ID]! { self.deleteReplyView() } } else { 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) } } } } else if (chatData.keys.contains("message_id")) { var idx = self.dataMessages.firstIndex(where: { "'\(String(describing: $0["message_id"] as? String))'" == chatData["message_id"]! }) if let idxMessageIdParent = self.groupImages.firstIndex(where: { $0.value.contains(where: { $0.messageId == chatData["message_id"]! }) }) { if let idxInImages = self.groupImages[idxMessageIdParent].value.firstIndex(where: { $0.messageId == chatData["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.dataMessages[idx!]["lock"] = "1" self.dataMessages[idx!]["reff_id"] = "" 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) } if self.listTimerCredential[self.dataMessages[idx!]["message_id"] as! String] != nil { self.listTimerCredential.removeValue(forKey: self.dataMessages[idx!]["message_id"] as! String) self.timerCredential[self.dataMessages[idx!]["message_id"] as! String]?.invalidate() self.timerCredential.removeValue(forKey: self.dataMessages[idx!]["message_id"] as! String) UserDefaults.standard.removeObject(forKey: self.dataMessages[idx!]["message_id"] as! String) } if self.reffId != nil && self.reffId == chatData["message_id"]! { self.deleteReplyView() } } else { 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) } } } } else { let messageId = chatData[CoreMessage_TMessageKey.MESSAGE_ID]!.split(separator: ",")[1] 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 = 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) { 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) } } } } } } } @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 = UserDefaults.standard.string(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 = .black labelUnfriend.font = UIFont.systemFont(ofSize: 12).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 = .black labelBlocked.font = UIFont.systemFont(ofSize: 12).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 = UserDefaults.standard.string(forKey: "me") 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 = UserDefaults.standard.string(forKey: "me") 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": imageVideoPicker.present(source: .imageAlbum) case "video": imageVideoPicker.present(source: .videoAlbum) case "imageCamera": imageVideoPicker.present(source: .imageCamera) case "videoCamera": imageVideoPicker.present(source: .videoCamera) default: imageVideoPicker.present(source: .imageAlbum) } } } @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: "confidential_icon", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal) let imageAck = resizeImage(image: UIImage(named: "ack_icon", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal) let confidentialAction = UIAlertAction(title: "Confidential Message".localized(), style: .default, handler: { (UIAlertAction) in if !self.isConfidential { self.isConfidential = true self.buttonAckConfidential.setImage(imageConfidential, for: .normal) } if self.isAck { self.isAck = false } }) let ackAction = UIAlertAction(title: "Confirmation Message".localized(), style: .default, handler: { (UIAlertAction) in if !self.isAck { self.isAck = true self.buttonAckConfidential.setImage(imageAck, for: .normal) } if self.isConfidential { self.isConfidential = false } }) confidentialAction.setValue(imageConfidential, forKey: "image") ackAction.setValue(imageAck, forKey: "image") alertController.addAction(confidentialAction) alertController.addAction(ackAction) alertController.addAction(UIAlertAction(title: "Cancel".localized(), style: .cancel, handler: { (UIAlertAction) in self.isConfidential = false self.isAck = 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: DigiX.self), with: nil)!, targetSize: CGSize(width: 30, height: 30)).withRenderingMode(.alwaysOriginal) let imageAck = resizeImage(image: UIImage(named: "ack_icon", in: Bundle.resourceBundle(for: DigiX.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 { _ = DigiX.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 { let goAudioCall = DigiX.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 { let goAudioCall = DigiX.checkMicPermission() let goVideoCall = DigiX.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 { for timer in self.timerCredential.values { timer.invalidate() } self.timeoutCC.invalidate() UserDefaults.standard.removeObject(forKey: "inEditorPersonal") NotificationCenter.default.removeObserver(self) NotificationCenter.default.post(name: NSNotification.Name(rawValue: "refreshView"), object: nil, userInfo: nil) self.dismiss(animated: true, completion: nil) } 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) } } public func endCallCenter() { timeoutCC.invalidate() let complaintId = self.complaintId let idMe = UserDefaults.standard.string(forKey: "me")! let onGoingCC = UserDefaults.standard.string(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(error) } }) if officer == idMe { _ = DigiX.write(message: CoreMessage_TMessageBank.endCallCenter(complaint_id: complaintId, l_pin: requester)) } else { if requester == idMe { _ = DigiX.write(message: CoreMessage_TMessageBank.endCallCenter(complaint_id: complaintId, l_pin: officer)) } else { _ = DigiX.write(message: CoreMessage_TMessageBank.leaveCCRoomInvite(ticket_id: complaintId)) } } UserDefaults.standard.removeObject(forKey: "onGoingCC") UserDefaults.standard.removeObject(forKey: "membersCC") UserDefaults.standard.removeObject(forKey: "waitingRequestCC") } self.dismiss(animated: true, completion: nil) } @objc func keyboardWillHide(notification: NSNotification) { if self.viewIfLoaded?.window != nil { 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 { 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() } } } } } private func sendChat(message_scope_id:String = "3", status:String = "2", 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) { 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.showToast(message: "Write Messages".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self) 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() viewController.showToast(message: "Unable to send message. Waiting for the officer to accept your request".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self) 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() }) } } let message_text = message_text.trimmingCharacters(in: .whitespacesAndNewlines) let idMe = UserDefaults.standard.string(forKey: "me") 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" } 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) DigiX.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["attachment_flag"] = attachment_flag row["reff_id"] = reff_id row["progress"] = 0.0 row["lock"] = "0" row["is_stared"] = "0" row["isSelected"] = false 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 self.timerCredential[messageId] = timer 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 _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "lock" : "2" ], _where: "message_id = '\(messageId)'") }) } } self.tableChatView.reloadRows(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 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) DispatchQueue.main.asyncAfter(deadline: .now() + 0.25) { 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.showToast(message: "You can't request Call Center more than one".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self) } 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.showToast(message: "You can press your choice again to change category".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self) 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..= 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 = UserDefaults.standard.string(forKey: "me") 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 { public func didSelect(imagevideo: Any?) { if (imagevideo != nil) { let imageVideoData = imagevideo as! [UIImagePickerController.InfoKey: Any] let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: DigiX.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) } } func sendChatFromPreviewImage(message_text: String, attachment_flag: String, image_id: String, video_id: String, thumb_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) } } //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 = UINavigationController(rootViewController: previewController) 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 = "Qmera_doc_" + "\(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 { 1 } public func previewController(_ controller: QLPreviewController, previewItemAt index: Int) -> QLPreviewItem { return self.previewItem! } } //ETV extension EditorPersonal: UITextViewDelegate { public func textViewDidChangeSelection(_ textView: UITextView) { let cursorPosition = textView.caretRect(for: self.textFieldSend.selectedTextRange!.start).origin let currentLine = Int(cursorPosition.y / self.textFieldSend.font!.lineHeight) 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 { self.heightTextFieldSend.constant = 40 } else if self.heightTextFieldSend.constant < 95.0 && currentLine >= 4 { self.heightTextFieldSend.constant = 95.0 } else if currentLine < 4 && numberOfLines < 5 { if (self.textFieldSend.text.count > 0 && self.heightTextFieldSend.constant != self.textFieldSend.contentSize.height) { self.heightTextFieldSend.constant = self.textFieldSend.contentSize.height } } } } 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) }) if textView.text.contains("*") || textView.text.contains("_") || textView.text.contains("^") || textView.text.contains("~") { 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 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() } }) 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() self.buildPreviewLink(imageUrl: imageUrl, title: title, description: description, stringURl: link) } } } else { let slp = SwiftLinkPreview(session: URLSession.shared, 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(error) } }) if self.showingLink != text { self.showingLink = text self.deleteLinkPreview() 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, weight: .bold) titlePreview.textColor = .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) 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) 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 = UIColor.black } } public func textViewDidEndEditing(_ textView: UITextView) { if textView.text.isEmpty { textView.text = "Send message".localized() textView.textColor = UIColor.lightGray } } public override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool { if action == #selector(UIResponderStandardEditActions.paste(_:)) && (UIPasteboard.general.image != nil) { return true } return super.canPerformAction(action, withSender: sender) } public override func paste(_ sender: Any?) { if UIPasteboard.general.image != nil { let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: DigiX.self)) previewImageVC.image = UIPasteboard.general.image previewImageVC.fromCopy = true 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 textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { if (self.textFieldSend.text.count == 0) { return text != "\n" } 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.fill"), handler: {(_) in if self.removed { return } DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "is_stared" : 1 ], _where: "message_id = '\(dataMessages[indexPath!.row]["message_id"] as! String)'") }) } 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) }) } else { star = UIAction(title: "Unstar".localized(), image: UIImage(systemName: "star.slash.fill"), handler: {(_) in if self.removed { return } DispatchQueue.global().async { Database.shared.database?.inTransaction({ (fmdb, rollback) in _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "is_stared" : 0 ], _where: "message_id = '\(dataMessages[indexPath!.row]["message_id"] as! String)'") }) } 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) }) } let reply = UIAction(title: "Reply".localized(), image: UIImage(systemName: "arrowshape.turn.up.left.fill"), 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.fill"), 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.fill"), 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 info = UIAction(title: "Info".localized(), image: UIImage(systemName: "info.circle.fill"), 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.fill"), 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() } }) var children: [UIMenuElement] = [star, reply, forward, copy, delete] // let copyOption = self.copyOption(indexPath: indexPath!) let idMe = UserDefaults.standard.string(forKey: "me") as String? if isContactCenter { if (groupImages[dataMessages[indexPath!.row]["message_id"] as! String] != nil) { 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 || dataMessages[indexPath!.row]["attachment_flag"] as! String == "11" { 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]["f_pin"] as! String) == idMe { children.insert(info, at: children.count - 1) } } return UIContextMenuConfiguration(identifier: nil, previewProvider: nil) { _ in UIMenu(title: "", children: children) } } @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.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}) if dataFilterFpin.count == 0 && dataFilterLock.count == 0 && statusDataRead.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) DigiX.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.showToast(message: "Image coppied to clipboard".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self) } } } return } if (index == 0) { DispatchQueue.main.async { UIPasteboard.general.string = dataMessages[indexPath.row]["message_text"] as? String self.showToast(message: "Text coppied to clipboard".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self) } } 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.showToast(message: "Image coppied to clipboard".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self) } } } } 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) ]) imageSticker.image = UIImage(named: stickers[indexPath.row], in: Bundle.resourceBundle(for: DigiX.self), with: nil) //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 { // 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 self.tableChatView.alpha != 1.0 { 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 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) { 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 != UserDefaults.standard.string(forKey: "me") as String? { switch(attachmentFlag){ case "27": (streamingController as! QmeraCreateStreamingViewController).isJoin = true default: (streamingController as! CreateSeminarViewController).isJoin = true } } } let streamingNav = UINavigationController(rootViewController: streamingController) streamingNav.modalPresentationStyle = .custom streamingNav.navigationBar.tintColor = .white streamingNav.navigationBar.barTintColor = .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 = .mainColor streamingNav.navigationBar.isTranslucent = false navigationController?.present(streamingNav, 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: 10.0) NSLayoutConstraint.activate([ topAnchor, dateView.bottomAnchor.constraint(equalTo: containerView.bottomAnchor), 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, 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 40 } public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let idMe = UserDefaults.standard.string(forKey: "me") 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.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.bottomAnchor.constraint(equalTo: containerMessage.bottomAnchor, constant: -5).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, weight: .medium) messageText.textColor = .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: containerMessage.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.. 0 { for i in 0...listText.count - 1 { if listText[i].lowercased().checkStartWithLink() { let rangeTapLink = (finalAtribute.string as NSString).range(of: String(listText[i])) finalAtribute.addAttributes([.foregroundColor: UIColor.blue, .underlineStyle: NSUnderlineStyle.single.rawValue], range: rangeTapLink) if !containsLink { containsLink = true } } } } } messageText.attributedText = finalAtribute if containsLink && !copySession && !forwardSession && !deleteSession && !self.removed { messageText.isUserInteractionEnabled = true let longPress = UILongPressGestureRecognizer(target: self, action: #selector(handleLongPressLink(_:))) longPress.minimumPressDuration = 0.1 containerMessage.addGestureRecognizer(longPress) } } if !copySession && !forwardSession && !deleteSession && !self.removed && messageText.isUserInteractionEnabled == false { let interaction = UIContextMenuInteraction(delegate: self) containerMessage.addInteraction(interaction) containerMessage.isUserInteractionEnabled = true } if isSearching && textSearch.count > 1 { messageText.attributedText = textChat.richText(isSearching: true, textSearch: textSearch) if textChat.lowercased().contains(textSearch) { countMatchesSearch += 1 } } 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" { 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, weight: .medium) } let imageThumb = UIImageView() let containerViewFile = UIView() if (!thumbChat.isEmpty && (dataMessages[indexPath.row]["lock"] == nil || 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 = DigiX.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)) { DigiX.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) { 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, 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 == "1" || listImages[i].status == "2" { statusInImage.image = UIImage(named: "checklist", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withTintColor(UIColor.white) } else if listImages[i].status == "3" { statusInImage.image = UIImage(named: "double-checklist", in: Bundle.resourceBundle(for: DigiX.self), with: nil)!.withTintColor(UIColor.white) } else { statusInImage.image = UIImage(named: "double-checklist", in: Bundle.resourceBundle(for: DigiX.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 = ListGroupImages.getImageSize(image: thumbChat, screenWidth: self.view.frame.size.width * 0.6, screenHeight: 305)!.height let getWidthImage = ListGroupImages.getImageSize(image: thumbChat, screenWidth: self.view.frame.size.width * 0.6, screenHeight: 305)!.width topMarginText.constant = topMarginText.constant + (getHeightImage < 40 ? 40 : getHeightImage) containerMessage.addSubview(imageThumb) imageThumb.translatesAutoresizingMaskIntoConstraints = false imageThumb.frame = CGRect(x: 0, y: 0, width: getWidthImage, height: getHeightImage) let data = queryMessageReply(message_id: reffChat) if reffChat.isEmpty || data.count == 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 = DigiX.imageCache.object(forKey: thumbChat as NSString) { return img } else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) { DigiX.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 videoURL = URL(fileURLWithPath: dirPath).appendingPathComponent(videoChat) let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(imageChat) if !FileManager.default.fileExists(atPath: imageURL.path) || !FileManager.default.fileExists(atPath: videoURL.path) { 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 != "") { 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 } 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.imageView = imageThumb objectTap.indexPath = indexPath } } } if (fileChat != "" && (dataMessages[indexPath.row]["lock"] == nil || dataMessages[indexPath.row]["lock"] as! String != "1") && dataMessages[indexPath.row]["message_scope_id"] as! String != "18" && (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 = (textChat.components(separatedBy: "|")[0]).split(separator: ".") let finalExtFile = arrExtFile[arrExtFile.count - 1] if let dirPath = paths.first { let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(fileChat) if let dataFile = try? Data(contentsOf: fileURL) { 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 { messageText.text = "" } } containerMessage.addSubview(containerViewFile) containerViewFile.translatesAutoresizingMaskIntoConstraints = false let data = queryMessageReply(message_id: reffChat) if reffChat.isEmpty || data.count == 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, weight: .medium) nameFile.textColor = .white nameFile.text = textChat.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() 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 { 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 if dataMessages[indexPath.row]["attachment_flag"] as? String == "11" { containerLinkMessage.bottomAnchor.constraint(equalTo: imageSticker.topAnchor, constant: -5).isActive = true } else { 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, weight: .bold) titlePreview.textColor = .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) 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) linkPreview.textColor = .gray linkPreview.numberOfLines = 1 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 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() } }) if dataURL.isEmpty { let slp = SwiftLinkPreview(session: URLSession.shared, 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(error) } }) }, 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).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) 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 = DigiX.imageCache.object(forKey: thumbChat as NSString) { return img } else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) { DigiX.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: DigiX.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 } } } // let panGestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(panGestureCellAction)) // panGestureRecognizer.delegate = self // cellMessage.addGestureRecognizer(panGestureRecognizer) return cell } @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()) return } if blocking == "-1" { self.view.makeToast("You have been blocked by this user".localized()) 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 = DigiX.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: "", latitude: "", description: "")) if result != nil { Database.shared.database?.inTransaction({ (fmdb, rollback) in _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [ "status" : "8" ], _where: "message_id = '\(dataMessages[indexPath.row]["message_id"] as! String)'") }) 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.showToast(message: "Confirmation Success.".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self) } } } } } // 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 = UserDefaults.standard.string(forKey: "me") 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: DigiX.self)) previewImageVC.image = image previewImageVC.isHiddenTextField = true previewImageVC.modalPresentationStyle = .custom previewImageVC.modalTransitionStyle = .crossDissolve self.present(previewImageVC, animated: true, completion: nil) } 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 } let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.image_id) let image = UIImage(contentsOfFile: imageURL.path) let save = UserDefaults.standard.bool(forKey: "saveToGallery") if save { UIImageWriteToSavedPhotosAlbum(image!, nil, nil, nil) } DispatchQueue.main.async { activityIndicator.stopAnimating() self.tableChatView.reloadRows(at: [sender.indexPath], with: .none) } } } } } 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 { 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) { (name, progress) in DispatchQueue.main.async { guard progress == 100 else { shapeLoading.strokeEnd = CGFloat(progress / 100) return } let save = UserDefaults.standard.bool(forKey: "saveToGallery") if save { let videoURL = URL(fileURLWithPath: dirPath).appendingPathComponent(sender.video_id) PHPhotoLibrary.shared().performChanges({ PHAssetChangeRequest.creationRequestForAssetFromVideo(atFileURL: videoURL) }) { saved, error in } } 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 { 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) { (name, progress) in DispatchQueue.main.async { guard progress == 100 else { shapeLoading.strokeEnd = CGFloat(progress / 100) return } 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 = UserDefaults.standard.string(forKey: "me") 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 = .grayColor.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 = .grayColor } } } } } } } } @objc func handleLongPressLink(_ gestureRecognizer: UILongPressGestureRecognizer) { func showMenuContext() { if gestureRecognizer.state == .cancelled || gestureRecognizer.state == .ended{ timerCheckLink?.invalidate() } else if gestureRecognizer.state == .began { timerCheckLink = Timer.scheduledTimer(withTimeInterval: 0.2, repeats: false, block: {_ in let interaction = UIContextMenuInteraction(delegate: self) gestureRecognizer.view!.addInteraction(interaction) guard let interaction = gestureRecognizer.view!.interactions.first, let data = Data(base64Encoded: "X3ByZXNlbnRNZW51QXRMb2NhdGlvbjo="), let str = String(data: data, encoding: .utf8) else { return } let selector = NSSelectorFromString(str) guard interaction.responds(to: selector) else { return } let impactHeavy = UIImpactFeedbackGenerator(style: .heavy) impactHeavy.impactOccurred() interaction.perform(selector, with: self.view) self.showMenuContext = true }) } } if gestureRecognizer.state == .began { let touchPoint = gestureRecognizer.location(in: self.view) touchedSubview = self.view.hitTest(touchPoint, with: nil) ?? UIView() if !(touchedSubview is UILabel) { showMenuContext() } } guard let label = touchedSubview as? UILabel else { return } let touchPointLabel = gestureRecognizer.location(in: label) if let text = label.text, let range = getWordRange(at: touchPointLabel, in: label) { let word = String(text[range]) if word.starts(with: "www.") || word.starts(with: "https://") || word.starts(with: "http://") { if gestureRecognizer.state == .cancelled || gestureRecognizer.state == .ended { timerCheckLink?.invalidate() if label.isHighlighted { var stringURl = word if stringURl.starts(with: "www.") { stringURl = "https://" + stringURl.replacingOccurrences(of: "www.", with: "") } guard let url = URL(string: stringURl) else { return } UIApplication.shared.open(url) label.attributedText = removeHighlightedText(for: text, in: range, label: label) } } else if gestureRecognizer.state == .began { label.attributedText = highlightedText(for: text, in: range, label: label) timerCheckLink = Timer.scheduledTimer(withTimeInterval: 0.5, repeats: false, block: {_ in UIPasteboard.general.string = word self.showToast(message: "Link Copied".localized(), font: UIFont.systemFont(ofSize: 12, weight: .medium), controller: self) label.attributedText = self.removeHighlightedText(for: text, in: range, label: label) }) } } else { showMenuContext() } } else { showMenuContext() } } func getWordRange(at point: CGPoint, in label: UILabel) -> Range? { guard let text = label.text else { return nil } let layoutManager = NSLayoutManager() let textContainer = NSTextContainer(size: .zero) let textStorage = NSTextStorage(attributedString: label.attributedText ?? NSAttributedString()) layoutManager.addTextContainer(textContainer) textStorage.addLayoutManager(layoutManager) textContainer.lineFragmentPadding = 0.0 textContainer.lineBreakMode = label.lineBreakMode textContainer.maximumNumberOfLines = label.numberOfLines textContainer.size = label.bounds.size let characterIndex = layoutManager.characterIndex(for: point, in: textContainer, fractionOfDistanceBetweenInsertionPoints: nil) if characterIndex == text.count - 1 { return nil } var wordStartIndex = characterIndex while wordStartIndex > 0 && text[text.index(text.startIndex, offsetBy: wordStartIndex - 1)] != " " && text[text.index(text.startIndex, offsetBy: wordStartIndex - 1)] != "\n" { wordStartIndex -= 1 } var wordEndIndex = characterIndex while wordEndIndex < text.count && text[text.index(text.startIndex, offsetBy: wordEndIndex)] != " " && text[text.index(text.startIndex, offsetBy: wordEndIndex)] != "\n" { wordEndIndex += 1 } return text.index(text.startIndex, offsetBy: wordStartIndex).., label: UILabel) -> NSAttributedString { let mutableAttributedString = label.attributedText!.mutableCopy() as! NSMutableAttributedString mutableAttributedString.addAttribute(.backgroundColor, value: UIColor.lightGray.withAlphaComponent(0.5), range: NSRange(range, in: text)) label.isHighlighted = true return mutableAttributedString } func removeHighlightedText(for text: String, in range: Range, label: UILabel) -> NSAttributedString { let mutableAttributedString = label.attributedText!.mutableCopy() as! NSMutableAttributedString mutableAttributedString.removeAttribute(.backgroundColor, range: NSRange(range, in: text)) label.isHighlighted = false 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: "") } 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 = UserDefaults.standard.string(forKey: "me") 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 } 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 = .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).bold let idMe = UserDefaults.standard.string(forKey: "me") 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) 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 = .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 = DigiX.imageCache.object(forKey: thumb_chat as NSString) { return img } else if let img = UIImage(contentsOfFile: thumbURL.path)?.resize(target: CGSize(width: 500, height: 500)) { DigiX.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: DigiX.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.async { if self.numberOfSections == 0 { return } let indexPath = IndexPath( row: self.numberOfRows(inSection: self.numberOfSections-1) - 1, section: self.numberOfSections - 1) if indexPath.row != -1 { 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 { 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) { textSearch = searchText.trimmingCharacters(in: .whitespacesAndNewlines) countMatchesSearch = 0 titleSearchMatches.isHidden = 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 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 } }