123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781 |
- //
- // Qmera.swift
- // Runner
- //
- // Created by Yayan Dwi on 15/04/20.
- // Copyright © 2020 The Chromium Authors. All rights reserved.
- //
- import Foundation
- import nuSDKService
- import AVFoundation
- import AVKit
- import UIKit
- import FMDB
- import QuickLook
- import NotificationBannerSwift
- public class Nexilis: NSObject {
- public static var sAPIKey = ""
-
- static let ADDRESS = ADDRESS_RELEASE
-
- static let ADDRESS_33 = "192.168.0.33"
-
- // static let ADDRESS_RELEASE = "202.158.33.26" //CBN
- static let ADDRESS_RELEASE = "108.137.84.148" //AWS
-
- // static let PORT = 45328
- // static let PORT = 65328 // 33
- static let PORT = PORT_RELEASE
-
- static let PORT_33 = 62328
-
- static let PORT_RELEASE = 42328
-
- static var nSessionMode: Int! = 1
-
- static var dispatch: DispatchGroup?
-
- let callManager = CallManager()
-
- var providerDelegate: CallProviderDelegate?
-
- public static let shared = Nexilis()
-
- public static var broadcastTimer = Timer()
-
- public static var broadcastList = [[String: String]]()
-
- public static var onGoingPushCC: [String: String] = [:]
-
- public static var openBroadcast = false
-
- private func createDelegate() {
- print("createDelegate...")
- callDelegate = self
- messageDelegate = self
- groupDelegate = self
- personInfoDelegate = self
- providerDelegate = CallProviderDelegate(callManager: callManager)
- }
-
- public static func connect(apiKey: String, delegate: ConnectDelegate, showButton: Bool = true) {
- do {
- Nexilis.shared.createDelegate()
-
- Nexilis.sAPIKey = apiKey
-
- Database.shared.openDatabase()
-
- IncomingThread.default.run()
-
- OutgoingThread.default.run()
-
- if let _ = UserDefaults.standard.stringArray(forKey: "address") {
-
- }
- else {
- // let address = App.getAddress()
- // if !address.isEmpty {
- // print(address)
- // print(address[0])
- // UserDefaults.standard.set(address, forKey: "address")
- // UserDefaults.standard.set(address[0], forKey: "server")
- // }
- }
-
- Nexilis.dispatch = DispatchGroup()
- Nexilis.dispatch?.enter()
- // var server = UserDefaults.standard.string(forKey: "server")
- // if let s = server, let a = UserDefaults.standard.stringArray(forKey: "address"), s != a[0] {
- // server = a[0]
- // UserDefaults.standard.set(server, forKey: "server")
- // }
- // var ip = ""
- // var port = 0
- // if let s = server {
- // let data = s.split(separator: ":")
- // ip = String(data[0])
- // if let p = Int(data[1]) {
- // port = p
- // }
- // }
- // print(API.sGetVersion())
- var id = ""
- if let me = UserDefaults.standard.string(forKey: "me") {
- try API.initConnection(bSwitchIP: false, sAPIK: apiKey, aAppMain: nil, cbiI: Callback(), sTCPAddr: Nexilis.ADDRESS, nTCPPort: Nexilis.PORT, sUserID: me, sStartWH: "09:00")
- } else {
- let uuid = UIDevice.current.identifierForVendor?.uuidString ?? "UNK-DEVICE"
- try API.initConnection(bSwitchIP: false, sAPIK: apiKey, aAppMain: nil, cbiI: Callback(), sTCPAddr: Nexilis.ADDRESS, nTCPPort: Nexilis.PORT, sUserID: uuid, sStartWH: "09:00")
- id = uuid
- }
-
- // wait until connection true
- Nexilis.dispatch?.wait()
- Nexilis.dispatch = nil
-
- if(!id.isEmpty && (UserDefaults.standard.string(forKey: "me") == nil)){
- if let response = Nexilis.writeSync(message: CoreMessage_TMessageBank.getSignUpApi(api: apiKey, p_pin: id), timeout: 30 * 1000){
- id = response.getBody(key: CoreMessage_TMessageKey.F_PIN, default_value: "")
- if(!id.isEmpty) {
- Nexilis.changeUser(f_pin: id)
- UserDefaults.standard.setValue(id, forKey: "me")
- }
- }
- }
- if UserDefaults.standard.string(forKey: "apiKey") == nil {
- UserDefaults.standard.setValue(apiKey, forKey: "apiKey")
- }
-
- if let me = UserDefaults.standard.string(forKey: "me") {
- _ = Nexilis.write(message: CoreMessage_TMessageBank.getPostRegistration(p_pin: me))
- DispatchQueue.global().asyncAfter(deadline: .now() + 1.5, execute: {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursorData = Database.shared.getRecords(fmdb: fmdb, query: "SELECT image_id FROM GROUPZ where group_type = 1 AND official = 1"), cursorData.next() {
- do {
- let documentDir = try FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
- let file = documentDir.appendingPathComponent(cursorData.string(forColumnIndex: 0)!)
- if !FileManager().fileExists(atPath: file.path) {
- Download().start(forKey: cursorData.string(forColumnIndex: 0)!) { (name, progress) in}
- }
- } catch {}
- cursorData.close()
- }
- })
- })
- delegate.onSuccess(userId: me)
- if showButton {
- DispatchQueue.main.async {
- var viewController = UIApplication.shared.windows.first?.rootViewController
- var notNull = false
- while !notNull {
- viewController = UIApplication.shared.windows.first?.rootViewController
- if viewController != nil {
- notNull = true
- }
- }
- viewController?.view.addSubview(FloatingButton())
- }
- }
- }
- Nexilis.destroyAll()
- }
- catch {
- print(error)
- delegate.onFailed(error: "99:Something went wrong")
- }
- }
-
- public static func destroyAll() {
- let onGoingCC = UserDefaults.standard.string(forKey: "onGoingCC") ?? ""
- if !onGoingCC.isEmpty {
- let requester = onGoingCC.components(separatedBy: ",")[0]
- let officer = onGoingCC.isEmpty ? "" : onGoingCC.components(separatedBy: ",")[1]
- let complaintId = onGoingCC.isEmpty ? "" : onGoingCC.components(separatedBy: ",")[2]
- let idMe = UserDefaults.standard.string(forKey: "me")!
- let startTimeCC = UserDefaults.standard.string(forKey: "startTimeCC") ?? ""
- let date = "\(Date().currentTimeMillis())"
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- do {
- _ = try Database.shared.insertRecord(fmdb: fmdb, table: "CALL_CENTER_HISTORY", cvalues: [
- "type" : "0",
- "title" : "Contact Center".localized(),
- "time" : startTimeCC,
- "f_pin" : officer,
- "data" : complaintId,
- "time_end" : date,
- "complaint_id" : complaintId,
- "members" : "",
- "requester": requester
- ], replace: true)
- } catch {
- rollback.pointee = true
- print(error)
- }
- })
- if officer == idMe {
- _ = Nexilis.write(message: CoreMessage_TMessageBank.endCallCenter(complaint_id: complaintId, l_pin: requester))
- } else {
- if requester == idMe {
- _ = Nexilis.write(message: CoreMessage_TMessageBank.endCallCenter(complaint_id: complaintId, l_pin: officer))
- } else {
- _ = Nexilis.write(message: CoreMessage_TMessageBank.leaveCCRoomInvite(ticket_id: complaintId))
- }
- }
- UserDefaults.standard.removeObject(forKey: "onGoingCC")
- UserDefaults.standard.removeObject(forKey: "membersCC")
- UserDefaults.standard.removeObject(forKey: "startTimeCC")
- if UIApplication.shared.applicationState == .active {
- 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()
- }
- }
- }
- if !Nexilis.onGoingPushCC.isEmpty {
- DispatchQueue.global().async {
- _ = Nexilis.write(message: CoreMessage_TMessageBank.timeOutRequestCallCenter(channel: Nexilis.onGoingPushCC["channel"]!, l_pin: Nexilis.onGoingPushCC["l_pin"]!))
- }
- }
- UserDefaults.standard.removeObject(forKey: "inEditorPersonal")
- UserDefaults.standard.removeObject(forKey: "inEditorGroup")
- UserDefaults.standard.removeObject(forKey: "waitingRequestCC")
- }
-
- public static func changeUser(f_pin: String){
- do {
- print("change user to fpin")
- Nexilis.dispatch = DispatchGroup()
- Nexilis.dispatch?.enter()
-
- try API.initConnection(bSwitchIP: true, sAPIK: Nexilis.sAPIKey, aAppMain: nil, cbiI: Callback(), sTCPAddr: Nexilis.ADDRESS, nTCPPort: Nexilis.PORT, sUserID: f_pin, sStartWH: "08:00")
-
- // wait until connection true
- Nexilis.dispatch?.wait()
- Nexilis.dispatch = nil
- print("success change user to fpin")
- _ = Nexilis.writeSync(message: CoreMessage_TMessageBank.getChangeConnectionID(p_pin: f_pin))
- } catch{
- print(error)
- }
- }
-
- public static func addQueueMessage(message: TMessage) {
- OutgoingThread.default.addQueue(message: message)
- }
-
- private static var wbDelegate: WhiteboardDelegate?
- private static var wbReceiver: WhiteboardReceiver?
-
- public static func setWhiteboardDelegate(delegate: WhiteboardDelegate?){
- Nexilis.wbDelegate = delegate
- }
-
- public static func getWhiteboardDelegate() -> WhiteboardDelegate? {
- return Nexilis.wbDelegate
- }
-
- public static func setWhiteboardReceiver(receiver: WhiteboardReceiver?){
- Nexilis.wbReceiver = receiver
- }
-
- public static func getWhiteboardReceiver() -> WhiteboardReceiver? {
- return Nexilis.wbReceiver
- }
-
- public static func getEditorPersonal() -> EditorPersonal {
- return AppStoryBoard.Palio.instance.instantiateViewController(identifier: "editorPersonalVC") as! EditorPersonal
- }
- public static func getEditorGroup() -> EditorGroup {
- return AppStoryBoard.Palio.instance.instantiateViewController(identifier: "editorGroupVC") as! EditorGroup
- }
-
- public static func getEditorStarMessage() -> EditorStarMessages {
- return AppStoryBoard.Palio.instance.instantiateViewController(identifier: "staredVC") as! EditorStarMessages
- }
-
- static func getAddress() -> [String] {
- var result = [String]()
- let url = URL(string: "https://newuniverse.io/dipp/NuN1v3rs3/5ch0oL18")!
- let urlConfig = URLSessionConfiguration.default
- urlConfig.requestCachePolicy = .returnCacheDataElseLoad
- urlConfig.timeoutIntervalForRequest = 10.0
- urlConfig.timeoutIntervalForResource = 10.0
- let semaphore = DispatchSemaphore(value: 0)
- let task = URLSession(configuration: urlConfig).dataTask(with: url) {(data, response, error) in
- guard let data = data else {
- semaphore.signal()
- return
- }
- let html = String(data: data, encoding: .utf8)!
- let base64Address = html.components(separatedBy: "<body>")[1].components(separatedBy: "</body>")[0].trimmingCharacters(in: .whitespacesAndNewlines)
- if let addressData = Data(base64Encoded: base64Address), let decodeAddress = String(data: addressData, encoding: .utf8) {
- let rows = decodeAddress.trimmingCharacters(in: CharacterSet.newlines).split(separator: ",")
- for r in rows {
- let _address = r.split(separator: ":")
- var ip:String = ""
- let _data = _address[0].split(separator: ".", maxSplits: 4, omittingEmptySubsequences: false)
- ip.append(String(_data[3]))
- ip.append(".")
- ip.append(String(_data[1]))
- ip.append(".")
- ip.append(String(_data[0]))
- ip.append(".")
- ip.append(String(_data[2]))
- result.append(ip + ":" + _address[2])
- }
-
- }
- semaphore.signal()
- }
- task.resume()
- _ = semaphore.wait(timeout: .distantFuture)
- debugPrint("[App] getAddress:", result)
- return result
- }
-
- static func getCLMUserId() -> String {
- guard let me = UserDefaults.standard.string(forKey: "me") else {
- return ""
- }
- return me
- }
-
- public static func writeSync(message: TMessage, timeout: Int = 15 * 1000) -> TMessage? {
- do {
- print(">> SENDING MESSAGE >> ", message.toLogString())
- if let data = try API.sGetResponse(sRequest: message.pack(), lTimeout: timeout, bKeepTOResp: true) {
- let response = TMessage(data: data)
- print("<< RESPONSE MESSAGE << ", response.toLogString())
- return response
- }
- } catch {
- print(error)
- }
- return nil
- }
-
- public static func write(message: TMessage, timeout: Int = 15 * 1000) -> String? {
- do {
- if API.nGetCLXConnState() == 0 {
- return nil
- }
- print(">> SENDING MESSAGE >> ", message.toLogString())
- if message.getMedia().count == 0 {
- if let data = try API.sSend(sData: message.pack(), nPriority: 1, lTimeout: timeout) {
- print("<< RESPONSE MESSAGE << ", data)
- return data
- }
- }
- // media
- if let data = try API.sSend(abData: message.toBytes(), nPriority: 2, lTimeout: timeout) {
- print("<< RESPONSE MESSAGE << ", data)
- return data
- }
- } catch {
- print(error)
- }
- return nil
- }
-
- public static func writeDraw(data: String, timeout: Int = 15 * 1000) -> String? {
- do {
- if !API.bInetConnAvailable() {
- return nil
- }
- print(">> SENDING MESSAGE >> ", data)
- if let data = try API.sSend(sData: data, nPriority: 1, lTimeout: timeout) {
- print("<< RESPONSE MESSAGE << ", data)
- return data
- }
- } catch {
- print(error)
- }
- return nil
- }
-
- public static func response(packetId: String, message: TMessage, timeout: Int = 15 * 1000) -> String? {
- var result: String? = nil
- do {
- if !API.bInetConnAvailable() {
- return nil
- }
- print(">> RESPONSE >> " + packetId + " " + message.toLogString());
- result = try API.sSendResponse(sRequestID: packetId, sResponse: message.pack(), lTimeout: timeout)
- } catch {
- print(error)
- }
- return result
- }
-
- public static func startAudio(nMode: Int!, bSpeakerOn: Bool!) {
-
- let xSessionMode = nMode == 0 ? nSessionMode : nMode
- do {
- if ("iPhone 6" == UIDevice.current.modelName) {
- try AVAudioSession.sharedInstance().setCategory(.playAndRecord, options: .duckOthers)
- if (xSessionMode == 1) {
- try AVAudioSession.sharedInstance().setMode(.voiceChat)
- } else if (xSessionMode == 2) {
- try AVAudioSession.sharedInstance().setMode(.voiceChat)
- // try avAudioSession.setMode(AVAudioSessionModeVideoChat)
- }
- if (bSpeakerOn) {
- try AVAudioSession.sharedInstance().overrideOutputAudioPort(.speaker)
- } else {
- try AVAudioSession.sharedInstance().overrideOutputAudioPort(.none)
- }
- } else {
- if (bSpeakerOn) {
- try AVAudioSession.sharedInstance().setCategory(.playAndRecord, options: .defaultToSpeaker)
- } else {
- try AVAudioSession.sharedInstance().setCategory(.playAndRecord, options: .duckOthers)
- }
- if (xSessionMode == 1) {
- try AVAudioSession.sharedInstance().setMode(.voiceChat)
- } else if (xSessionMode == 2) {
- try AVAudioSession.sharedInstance().setMode(.voiceChat)
- }
- }
- try AVAudioSession.sharedInstance().setActive(true)
- } catch {}
- nSessionMode = xSessionMode
- }
-
- public static func turnSpeakerOn(bSpeakerOn: Bool!) {
- do{
- if ("iPhone 6" == UIDevice.current.modelName) {
- if (bSpeakerOn) {
- try AVAudioSession.sharedInstance().overrideOutputAudioPort(.speaker)
- } else {
- try AVAudioSession.sharedInstance().overrideOutputAudioPort(.none)
- }
- return
- }
- }catch{
- print(error)
- }
-
- API.pauseAudio()
- stopAudio()
- startAudio(nMode: 0, bSpeakerOn: bSpeakerOn)
- API.resumeAudio(bSpeakerOn: bSpeakerOn)
- }
- public static func stopAudio() {
- do {
- try AVAudioSession.sharedInstance().setCategory(.ambient)
- try AVAudioSession.sharedInstance().setMode(.default)
- try AVAudioSession.sharedInstance().overrideOutputAudioPort(.none)
- }catch{
- print(error)
- }
- }
-
- public static func muteMicrophone(isMute: Bool!){
- do {
- if(isMute){
- try AVAudioSession.sharedInstance().setCategory(.playback)
- }
- else{
- try AVAudioSession.sharedInstance().setCategory(.playAndRecord)
- }
- }catch{
- print(error)
- }
- }
- public static func buttonClicked(index: Int, id: String = "") {
- let fb = FloatingButton()
- if index == 1 {
- fb.fb1Tap()
- } else if index == 2 {
- fb.fb2Tap()
- } else if index == 3 {
- fb.fb3Tap()
- } else if index == 4 {
- fb.fb4Tap()
- } else if id == "openQMS" {
- fb.bniBookingTap()
- } else if id == "openHistoryCC" {
- fb.historyBroadcastTap()
- } else {
- let idButton = UIButton()
- idButton.restorationIdentifier = id
- fb.tapMoreApp(idButton)
- }
- }
-
- private static var groupWait = DispatchGroup()
-
- private static var waitQueue = [String: TMessage]()
-
- public static func writeAndWait(message: TMessage, timeout: Int = 15 * 1000) -> TMessage? {
- groupWait.enter()
- _ = write(message: message, timeout: timeout)
- waitQueue[message.getStatus()] = message
- if groupWait.wait(timeout: .now() + 15) == .timedOut {
- waitQueue.removeValue(forKey: message.getStatus())
- groupWait.leave()
- return nil
- }
- return waitQueue.removeValue(forKey: message.getStatus())
- }
-
- static func incomingData(packetId: String, data: AnyObject) {
- let message = TMessage()
- if data is String {
- let d = data as! String
- guard message.unpack(data: d) else {
- print("UNKNOWN DATA STRING...", data)
- if(data.hasPrefix("WB")){
- let dataWB = data.components(separatedBy: "/")
- if(dataWB[1] == "1"){
- let x = dataWB[2]
- let y = dataWB[3]
- let w = dataWB[4]
- let h = dataWB[5]
- let fc = dataWB[6]
- let sw = dataWB[7]
- let xo = dataWB[8]
- let yo = dataWB[9]
- if(Nexilis.getWhiteboardDelegate() != nil){
- Nexilis.getWhiteboardDelegate()!.draw(x: x, y: y, w: w, h: h, fc: fc, sw: sw, xo: xo, yo: yo, data: "")
- }
- } else if(dataWB[1] == "3") {
- if(Nexilis.getWhiteboardDelegate() != nil){
- Nexilis.getWhiteboardDelegate()!.clear()
- }
- } else if(dataWB[1] == "2"){
- if(Nexilis.getWhiteboardReceiver() != nil){
- Nexilis.getWhiteboardReceiver()!.incomingWB(roomId: dataWB[2])
- }
- } else if(dataWB[1] == "22"){
-
- } else if(dataWB[1] == "88"){
- if(Nexilis.getWhiteboardReceiver() != nil){
- Nexilis.getWhiteboardReceiver()!.cancel(roomId: dataWB[2])
- }
- }
- }
- return
- }
- } else if data is [UInt8] {
- let d = data as! [UInt8]
- guard message.unpack(bytes_data: d) else {
- print("UNKNOWN DATA BYTES...", data)
- return
- }
- }
- message.mBodies[CoreMessage_TMessageKey.PACKET_ID] = packetId
- if let _ = waitQueue[message.getStatus()] {
- waitQueue[message.getStatus()] = message
- groupWait.leave()
- return
- }
- IncomingThread.default.addQueue(message: message)
- }
-
- static func saveMessage(message: TMessage, withStatus: Bool = true) {
- guard let me = UserDefaults.standard.string(forKey: "me") else {
- return
- }
- let message_id = message.getBody(key : CoreMessage_TMessageKey.MESSAGE_ID, default_value : "")
- guard !message_id.isEmpty else {
- return
- }
- let f_pin = message.getBody(key : CoreMessage_TMessageKey.F_PIN, default_value : "")
- guard !f_pin.isEmpty else {
- return
- }
- let l_pin = message.getBody(key : CoreMessage_TMessageKey.L_PIN, default_value : "")
- let scope = message.getBody(key : CoreMessage_TMessageKey.MESSAGE_SCOPE_ID, default_value : "3")
- let status = message.getBody(key : CoreMessage_TMessageKey.STATUS, default_value : "")
- let chat_id = message.getBody(key : CoreMessage_TMessageKey.CHAT_ID, default_value : "")
- let broadcast_flag = message.getBody(key: CoreMessage_TMessageKey.BROADCAST_FLAG, default_value: "0")
- let is_call_center = message.getBody(key: CoreMessage_TMessageKey.IS_CALL_CENTER, default_value: "0")
- let call_center_id = message.getBody(key: CoreMessage_TMessageKey.CALL_CENTER_ID, default_value: "")
- print("prepare save db")
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- do {
- _ = try Database.shared.insertRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [
- "message_id" : message_id,
- "f_pin" : f_pin,
- "f_display_name" : message.getBody(key : CoreMessage_TMessageKey.F_DISPLAY_NAME, default_value : ""),
- "l_pin" : l_pin,
- "l_user_id" : message.getBody(key : CoreMessage_TMessageKey.L_USER_ID, default_value : ""),
- "message_scope_id" : scope,
- "server_date" : message.getBody(key: CoreMessage_TMessageKey.SERVER_DATE, default_value : String(Date().currentTimeMillis())),
- "status" : status,
- "message_text" : message.getBody(key : CoreMessage_TMessageKey.MESSAGE_TEXT, default_value : "").toNormalString(),
- "audio_id" : message.getBody(key : CoreMessage_TMessageKey.AUDIO_ID, default_value : ""),
- "video_id" : message.getBody(key : CoreMessage_TMessageKey.VIDEO_ID, default_value : ""),
- "image_id" : message.getBody(key : CoreMessage_TMessageKey.IMAGE_ID, default_value : ""),
- "file_id" : message.getBody(key : CoreMessage_TMessageKey.FILE_ID, default_value : ""),
- "thumb_id" : message.getBody(key : CoreMessage_TMessageKey.THUMB_ID, default_value : ""),
- "opposite_pin" : message.getBody(key : CoreMessage_TMessageKey.OPPOSITE_PIN, default_value : ""),
- "format" : message.getBody(key : CoreMessage_TMessageKey.FORMAT, default_value : ""),
- "blog_id" : message.getBody(key : CoreMessage_TMessageKey.BLOG_ID, default_value : ""),
- "read_receipts" : message.getBody(key: CoreMessage_TMessageKey.READ_RECEIPTS, default_value: "0"),
- "chat_id" : chat_id,
- "account_type" : message.getBody(key : CoreMessage_TMessageKey.BUSINESS_CATEGORY, default_value : "1"),
- "credential" : message.getBody(key : CoreMessage_TMessageKey.CREDENTIAL, default_value : ""),
- "reff_id" : message.getBody(key : CoreMessage_TMessageKey.REF_ID, default_value : ""),
- "message_large_text" : message.getBody(key : CoreMessage_TMessageKey.BODY, default_value : "").toNormalString(),
- "attachment_flag" : message.getBody(key: CoreMessage_TMessageKey.ATTACHMENT_FLAG, default_value: "0"),
- "local_timestamp" : message.getBody(key: CoreMessage_TMessageKey.LOCAL_TIMESTAMP, default_value : String(Date().currentTimeMillis())),
- "broadcast_flag" : broadcast_flag,
- "is_call_center" : is_call_center,
- "call_center_id" : call_center_id
- ], replace: true)
- } catch {
- rollback.pointee = true
- print(error)
- }
- })
-
- if withStatus {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- do {
- if scope == "4" {
- for pin in getGroupMembers(fmdb: fmdb, l_pin: l_pin) {
- if f_pin == pin { continue }
- _ = try Database.shared.insertRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [
- "message_id" : message_id,
- "status" : status,
- "f_pin" : pin,
- "last_update" : Date().currentTimeMillis()
- ], replace: true)
- }
- } else {
- _ = try Database.shared.insertRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [
- "message_id" : message_id,
- "status" : status,
- "f_pin" : l_pin,
- "last_update" : Date().currentTimeMillis()
- ], replace: true)
- }
- } catch {
- rollback.pointee = true
- print(error)
- }
- })
- }
- var pin = l_pin
- if l_pin == me {
- pin = f_pin
- }
- if !chat_id.isEmpty {
- pin = chat_id
- }
- var counter : Int? = nil
- if l_pin == me || (scope == "4" && f_pin != me) {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "select counter from MESSAGE_SUMMARY where l_pin = '\(pin)'"), cursor.next() {
- counter = Int(cursor.int(forColumnIndex: 0))
- counter! += 1
- cursor.close()
- print("select db message summary")
- }
- })
- if counter == nil {
- counter = 1
- print("set counter message summary")
- }
- }
- if counter == nil {
- counter = 0
- }
- if is_call_center == "0" {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- do {
- _ = try Database.shared.insertRecord(fmdb: fmdb, table: "MESSAGE_SUMMARY", cvalues: [
- "l_pin" : pin,
- "message_id" : message_id,
- "counter" : counter!
- ], replace: true)
- } catch {
- rollback.pointee = true
- print(error)
- }
- })
- }
- print("insert db message summary \(message_id)")
-
- }
-
- public static func saveMessageBot(textMessage: String, blog_id: String, attachment_type:String)->Void{
- guard let me = UserDefaults.standard.string(forKey: "me") else {
- return
- }
-
- var user_id:String? = ""
- let message_id = me + CoreMessage_TMessageUtil.getTID()
-
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "select user_id from BUDDY where f_pin = '\(me)'"), cursor.next() {
- user_id = cursor.string(forColumnIndex: 0)
- cursor.close()
- }
- })
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- do {
- _ = try Database.shared.insertRecord(fmdb: fmdb, table: "MESSAGE", cvalues: [
- "message_id" : message_id ,
- "f_pin" : "-999",
- "f_display_name" : "Bot",
- "l_pin" : me,
- "l_user_id" : String(user_id!),
- "message_scope_id" : "3",
- "server_date" : String(Date().currentTimeMillis()),
- "status" : "3",
- "message_text" : textMessage,
- "audio_id" : "",
- "video_id" : "",
- "image_id" : "",
- "file_id" : "",
- "thumb_id" : "",
- "opposite_pin" : "",
- "format" : "",
- "blog_id" : blog_id,
- "read_receipts" : "0",
- "chat_id" : "",
- "account_type" : "1",
- "credential" :"",
- "reff_id" : "",
- "message_large_text" : "",
- "attachment_flag" : attachment_type,
- "local_timestamp" : String(Date().currentTimeMillis())
- ], replace: true)
- } catch {
- rollback.pointee = true
- print(error)
- }
- })
- let pin = "-999"
- var counter : Int? = nil
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "select counter from MESSAGE_SUMMARY where l_pin = '\(pin)'"), cursor.next() {
- counter = Int(cursor.int(forColumnIndex: 0))
- counter! += 1
- cursor.close()
- print("select db message summary")
- }
- })
- if counter == nil {
- counter = 1
- print("set counter message summary")
- }
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- do {
- _ = try Database.shared.insertRecord(fmdb: fmdb, table: "MESSAGE_SUMMARY", cvalues: [
- "l_pin" : pin,
- "message_id" : message_id,
- "counter" : counter!
- ], replace: true)
- } catch {
- rollback.pointee = true
- print(error)
- }
- })
- print("insert db message summary \(message_id)")
- }
-
- static func updateMessageStatus(message: TMessage) -> Void {
- let message_id = message.getBody(key : CoreMessage_TMessageKey.MESSAGE_ID, default_value : "")
- guard !message_id.isEmpty else {
- return
- }
- let status = message.getBody(key : CoreMessage_TMessageKey.STATUS, default_value : "")
- guard !status.isEmpty else {
- return
- }
- let l_pin = message.getBody(key : CoreMessage_TMessageKey.L_PIN, default_value : "")
- guard !l_pin.isEmpty else {
- return
- }
- Database.shared.database?.inTransaction({ (fmdb, rollbac) in
- if message_id.starts(with: "-1") || message_id.starts(with: "-2") {
- for s in message_id.split(separator: ",") {
- let t = s.trimmingCharacters(in: .whitespaces)
- if t == "-1" || t == "-2" {
- continue
- }
- if status == "3" {
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [
- "status" : status,
- "time_delivered" : String(Date().currentTimeMillis()),
- "last_update" : String(Date().currentTimeMillis())], _where: "message_id = '\(t)' and f_pin = '\(l_pin)'")
- } else if status == "4" {
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [
- "status" : status,
- "time_read" : String(Date().currentTimeMillis()),
- "last_update" : String(Date().currentTimeMillis())], _where: "message_id = '\(t)' and f_pin = '\(l_pin)'")
- } else if status == "8" {
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [
- "status" : status,
- "time_ack" : String(Date().currentTimeMillis()),
- "last_update" : String(Date().currentTimeMillis())], _where: "message_id = '\(t)' and f_pin = '\(l_pin)'")
- } else {
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [
- "status" : status,
- "last_update" : String(Date().currentTimeMillis())], _where: "message_id = '\(t)' and f_pin = '\(l_pin)'")
- }
- }
- } else {
- if status == "3" {
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [
- "status" : status,
- "time_delivered" : String(Date().currentTimeMillis()),
- "last_update" : String(Date().currentTimeMillis())], _where: "message_id = '\(message_id)' and f_pin = '\(l_pin)'")
- } else if status == "4" {
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [
- "status" : status,
- "time_read" : String(Date().currentTimeMillis()),
- "last_update" : String(Date().currentTimeMillis())], _where: "message_id = '\(message_id)' and f_pin = '\(l_pin)'")
- } else if status == "8" {
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [
- "status" : status,
- "time_ack" : String(Date().currentTimeMillis()),
- "last_update" : String(Date().currentTimeMillis())], _where: "message_id = '\(message_id)' and f_pin = '\(l_pin)'")
- } else {
- _ = Database.shared.updateRecord(fmdb: fmdb, table: "MESSAGE_STATUS", cvalues: [
- "status" : status,
- "last_update" : String(Date().currentTimeMillis())], _where: "message_id = '\(message_id)' and f_pin = '\(l_pin)'")
- }
- }
- })
- }
-
- static func getGroupMembers(fmdb: FMDatabase, l_pin: String) -> [String] {
- var result = [String]()
- if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "select f_pin from GROUPZ_MEMBER where group_id = '\(l_pin)'") {
- while cursor.next() {
- if let value = cursor.string(forColumnIndex: 0) {
- result.append(value)
- }
- }
- cursor.close()
- }
- return result
- }
-
- static func getVideoThumbnail(name: String, completion: @escaping (Bool)->()) {
- DispatchQueue.global().async {
- do {
- let fileManager = FileManager.default
- let documentDir = try fileManager.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
- let fileDir = documentDir.appendingPathComponent(name)
- let path = fileDir.path
- if FileManager.default.fileExists(atPath: path) {
- let asset = AVAsset(url: URL(fileURLWithPath: path))
- let avAssetImageGenerator = AVAssetImageGenerator(asset: asset)
- avAssetImageGenerator.appliesPreferredTrackTransform = true
- let thumnailTime = CMTimeMake(value: 2, timescale: 1)
- let thumbImage = UIImage(cgImage: try avAssetImageGenerator.copyCGImage(at: thumnailTime, actualTime: nil))
- guard let data = thumbImage.jpegData(compressionQuality: 1.0) else {
- completion(false)
- return
- }
- let thumbFileDir = documentDir.appendingPathComponent("THUMB_" + name)
- try data.write(to: thumbFileDir)
- completion(true)
- } else {
- completion(false)
- }
- } catch {
- print(error)
- }
- }
- }
-
- static func resizedImage(at url: URL, for size: CGSize) -> UIImage? {
- guard let image = UIImage(contentsOfFile: url.path) else {
- return nil
- }
-
- let renderer = UIGraphicsImageRenderer(size: size)
- return renderer.image { (context) in
- image.draw(in: CGRect(origin: .zero, size: size))
- }
- }
-
- static func initFollowing() -> Void {
- if let me = UserDefaults.standard.string(forKey: "me") {
- if let response = Nexilis.writeSync(message: CoreMessage_TMessageBank.getListFollowing(l_pin: me)) {
- let data = response.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] {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- do {
- for json in jsonArray {
- _ = try Database.shared.insertRecord(fmdb: fmdb, table: "FOLLOW", cvalues: [
- "f_pin" : CoreMessage_TMessageUtil.getString(json: json, key: "pin")
- ], replace: true)
- }
- } catch {
- rollback.pointee = true
- print(error)
- }
- })
- }
- }
- }
- }
- }
-
- // do {
- // _ = try Database.shared.insertRecord(fmdb: fmdb, table: "CALL_CENTER_HISTORY", cvalues: [
- // "type" : "1",
- // "title" : displayName,
- // "time" : timeStart,
- // "f_pin" : f_pin,
- // "data" : dataCC,
- // "time_end" : date,
- // "complaint_id" : complaint_id.isEmpty ? "C\(date)" : complaint_id,
- // "members" : "",
- // "requester": ""
- // ], replace: true)
- // _ = try Database.shared.insertRecord(fmdb: fmdb, table: "PREFS", cvalues: [
- // "key" : "CC:\(f_pin)",
- // "value" : status,
- // ], replace: true)
- // ret = true
- // } catch {
- // rollback.pointee = true
- // print(error)
- // }
-
- private static var uploadQueue = DispatchQueue(label: "UPLOAD_DICT", attributes: .concurrent)
-
- private static var UPLOAD_DICT = [String: Network]()
-
- static func removeUploadFile(forKey: String) -> Network? {
- var _result: Network? = nil
- uploadQueue.sync {
- _result = self.UPLOAD_DICT.removeValue(forKey: forKey)
- }
- return _result
- }
-
- static func putUploadFile(forKey: String, uploader: Network) {
- uploadQueue.async (flags: .barrier) {
- self.UPLOAD_DICT[forKey] = uploader
- }
- }
-
- static func getUploadFile(forKey: String) -> Network? {
- var _result: Network? = nil
- uploadQueue.sync {
- _result = self.UPLOAD_DICT[forKey]
- }
- return _result
- }
-
- private static var downloadQueue = DispatchQueue(label: "DOWNLOAD_DICT", attributes: .concurrent)
-
- private static var DOWNLOAD_DICT = [String:Download]()
-
- static func addDownload(forKey : String, download: Download){
- downloadQueue.async (flags: .barrier) {
- self.DOWNLOAD_DICT[forKey] = download
- }
- }
-
- static func getDownload(forKey: String) -> Download? {
- var _result: Download? = nil
- downloadQueue.sync {
- _result = self.DOWNLOAD_DICT[forKey]
- }
- return _result
- }
-
- static func writeImageToFile(data: Data, fileName: String){
- guard let directory = FileManager.default.urls(for: .picturesDirectory, in: .userDomainMask).last else {
- return
- }
- let fileURL = directory.appendingPathComponent("\(fileName)")
- if FileManager.default.fileExists(atPath: fileURL.path) {
- if let fileHandle = FileHandle(forWritingAtPath: fileURL.path) {
- fileHandle.seekToEndOfFile()
- fileHandle.write(data)
- fileHandle.closeFile()
- } else {
- print("Can't open file to write")
- }
- } else {
- do {
- try data.write(to: fileURL, options: .atomic)
- } catch {
- print("Unable to write in new file")
- }
- }
- }
-
- static func writeVideoToFile(data: Data, fileName: String){
- guard let directory = FileManager.default.urls(for: .moviesDirectory, in: .userDomainMask).last else {
- return
- }
- let fileURL = directory.appendingPathComponent("\(fileName)")
- if FileManager.default.fileExists(atPath: fileURL.path) {
- if let fileHandle = FileHandle(forWritingAtPath: fileURL.path) {
- fileHandle.seekToEndOfFile()
- fileHandle.write(data)
- fileHandle.closeFile()
- } else {
- print("Can't open file to write")
- }
- } else {
- do {
- try data.write(to: fileURL, options: .atomic)
- } catch {
- print("Unable to write in new file")
- }
- }
- }
-
- static func writeDocumentsToFile(data: Data, fileName: String){
- guard let directory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).last else {
- return
- }
- let fileURL = directory.appendingPathComponent("\(fileName)")
- if FileManager.default.fileExists(atPath: fileURL.path) {
- if let fileHandle = FileHandle(forWritingAtPath: fileURL.path) {
- fileHandle.seekToEndOfFile()
- fileHandle.write(data)
- fileHandle.closeFile()
- } else {
- print("Can't open file to write")
- }
- } else {
- do {
- try data.write(to: fileURL, options: .atomic)
- } catch {
- print("Unable to write in new file")
- }
- }
- }
-
- public static func checkMicPermission() -> Bool {
- var permissionCheck: Bool = false
- switch AVAudioSession.sharedInstance().recordPermission {
- case .granted:
- permissionCheck = true
- case .denied:
- permissionCheck = false
- case .undetermined:
- AVAudioSession.sharedInstance().requestRecordPermission({ (granted) in
- if granted {
- permissionCheck = true
- } else {
- permissionCheck = false
- }
- })
- default:
- break
- }
- return permissionCheck
- }
-
- public static func checkCameraPermission() -> Int {
- var permissionCheck: Int = -1
- if AVCaptureDevice.authorizationStatus(for: .video) == .authorized {
- permissionCheck = 1
- } else if AVCaptureDevice.authorizationStatus(for: .video) == .denied {
- permissionCheck = 0
- } else {
- AVCaptureDevice.requestAccess(for: .video, completionHandler: { (granted: Bool) -> Void in
-
- })
- }
- return permissionCheck
- }
-
- public static func startTimer(){
- broadcastTimer = Timer.scheduledTimer(withTimeInterval: 1.0, repeats: true, block: {_ in
- if(!openBroadcast && !broadcastList.isEmpty){
- openBroadcast = true
- let m = broadcastList.removeFirst()
- print("broadcast show: \(m)")
- DispatchQueue.main.async {
- Nexilis.shared.showBroadcastMessage(m: m)
- }
- }
- })
- }
-
- /*
- * Delegate
- */
-
- weak open var loginDelegate: LoginDelegate?
-
- weak open var messageDelegate: MessageDelegate?
-
- weak open var groupDelegate: GroupDelegate?
-
- weak open var callDelegate: CallDelegate?
-
- weak open var streamingDelagate: LiveStreamingDelegate?
-
- weak open var personInfoDelegate: PersonInfoDelegate?
-
- weak open var screenSharingDelegate: ScreenSharingDelegate?
-
- weak open var commentDelegate: CommentDelegate?
-
- weak open var uploadDelegate: UploadDelegate?
-
- weak open var timelineDelegate: TimelineDelegate?
-
- weak open var connectionDelegate: ConnectionDelegate?
-
- }
- public protocol LoginDelegate: NSObjectProtocol {
- func onProgress(code: String, progress: Int)
- func onProcess(message: String, status: String)
- }
- public protocol MessageDelegate: NSObjectProtocol {
- func onReceive(message: TMessage)
- func onReceiveComment(message: TMessage)
- func onReceive(message: [AnyHashable: Any?])
- func onMessage(message: TMessage)
- func onUpload(name: String, progress: Double)
- func onTyping(message: TMessage)
- }
- public protocol GroupDelegate: NSObjectProtocol {
- func onGroup(code: String, f_pin: String, groupId: String)
- func onTopic(code: String, f_pin: String, topicId: String)
- func onMember(code: String, f_pin: String, groupId: String, member: String)
- }
- public protocol DownloadDelegate: NSObjectProtocol {
- func onDownloadProgress(fileName: String, progress: Double)
- }
- public protocol CallDelegate: NSObjectProtocol {
- func onIncomingCall(state: Int, message: String)
- func onStatusCall(state: Int, message: String)
- }
- public protocol LiveStreamingDelegate: NSObjectProtocol {
- func onStartLS(state: Int, message: String)
- func onJoinLS(state: Int, message: String)
- }
- public protocol VideoCallDelegate: NSObjectProtocol {
- func onInitiateVideoCall(destination:String,state: Int, message: String)
- func onAcceptVideoCall(originator:String,state: Int, message: String)
- func onVideoCallReceiverTerminate(originator:String,state: Int, message: String)
-
- }
- public protocol PersonInfoDelegate: NSObjectProtocol {
- func onUpdatePersonInfo(state: Int, message: String)
- }
- public protocol ScreenSharingDelegate: NSObjectProtocol {
- func onStartScreenSharing(state:Int,message:String)
- func onJoinScreenSharing(state:Int,message:String)
- }
- public protocol CommentDelegate: NSObjectProtocol {
- func onReceiveComment(message: TMessage)
- func onDeleteComment(message: TMessage)
- }
- public protocol UploadDelegate: NSObjectProtocol {
- func onUploadProgress(fileName: String, progress: Double)
- }
- public protocol TimelineDelegate: NSObjectProtocol {
- func onPostUpdate(status: String, message: String)
- }
- public protocol ConnectionDelegate: NSObjectProtocol {
- func connectionStateChanged(userId: String!, deviceId: String, state: Bool)
- }
- public protocol ConnectDelegate: NSObjectProtocol {
- func onSuccess(userId: String)
- func onFailed(error: String)
- }
- public enum AppStoryBoard: String {
-
- case Palio = "Palio"
-
- public var instance: UIStoryboard {
- return UIStoryboard(name: self.rawValue, bundle: Bundle.resourceBundle(for: Nexilis.self))
- }
-
- }
- extension Nexilis: CallDelegate {
-
- func displayIncomingCall(uuid: UUID, handle: String, hasVideo: Bool = false, completion: ((Error?) -> Void)? = nil) {
- providerDelegate?.reportIncomingCall(uuid: uuid, handle: handle, hasVideo: hasVideo, completion: completion)
- }
-
- public func onIncomingCall(state: Int, message: String) {
- DispatchQueue.main.async {
- let idMe = UserDefaults.standard.string(forKey: "me")!
- let myData = User.getData(pin: idMe)
- let onGoingCC = UserDefaults.standard.string(forKey: "onGoingCC") ?? ""
- if myData?.offline_mode == "1" {
- API.terminateCall(sParty: nil)
- return
- }
- let deviceId = message.split(separator: ",")[0]
- var isShowAlert: Double?
- let canShow = UIApplication.shared.visibleViewController
- if canShow != nil && !(canShow is UINavigationController) {
- if !(canShow is EditorPersonal) {
- isShowAlert = 0
- } else {
- isShowAlert = 1.5
- }
- } else if canShow != nil {
- if canShow is UINavigationController {
- let canShowNC = canShow as! UINavigationController
- if !(canShowNC.visibleViewController is EditorPersonal) {
- isShowAlert = 0
- } else {
- isShowAlert = 1.5
- }
- } else {
- isShowAlert = 0
- }
- }
- if (state == 21 && message.split(separator: ",")[1] != "joining Ac.room on channel 0") {
- if onGoingCC.isEmpty {
- let backgroundTaskIdentifier = UIApplication.shared.beginBackgroundTask(expirationHandler: nil)
- self.displayIncomingCall(uuid: UUID(), handle: String(deviceId), hasVideo: false) { error in
- UIApplication.shared.endBackgroundTask(backgroundTaskIdentifier)
- }
- } else {
- DispatchQueue.main.asyncAfter(deadline: .now() + isShowAlert!, execute: {
- do {
- try AVAudioSession.sharedInstance().setCategory(.playAndRecord)
- try AVAudioSession.sharedInstance().setMode(.voiceChat)
- try AVAudioSession.sharedInstance().overrideOutputAudioPort(.none)
- } catch {
- }
- let controller = QmeraAudioViewController()
- controller.user = User.getData(pin: String(deviceId))
- controller.isOnGoing = true
- controller.isOutgoing = false
- controller.modalPresentationStyle = .overCurrentContext
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(controller, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(controller, animated: true, completion: nil)
- }
- API.receiveCCall(sParty: String(deviceId))
- })
- }
- } else if (state != -3 && state != 21) {
- let fpin = deviceId
- var data: [String: String?] = [:]
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursorData = Database.shared.getRecords(fmdb: fmdb, query: "SELECT f_pin, first_name, last_name, official_account, image_id, device_id, offline_mode, user_type FROM BUDDY where f_pin = '\(fpin)'") {
- while cursorData.next() {
- data["f_pin"] = cursorData.string(forColumnIndex: 0)
- var name = ""
- if let firstname = cursorData.string(forColumnIndex: 1) {
- name = firstname
- }
- if let lastname = cursorData.string(forColumnIndex: 2) {
- name = name + " " + lastname
- }
- data["name"] = name
- data["picture"] = cursorData.string(forColumnIndex: 4)
- data["isOfficial"] = cursorData.string(forColumnIndex: 3)
- data["deviceId"] = cursorData.string(forColumnIndex: 5)
- data["isOffline"] = cursorData.string(forColumnIndex: 6)
- data["user_type"] = cursorData.string(forColumnIndex: 7)
- }
- cursorData.close()
- }
- })
- let videoController = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "videoVCQmera") as! QmeraVideoViewController
- videoController.dataPerson.append(data)
- videoController.isInisiator = false
- if !onGoingCC.isEmpty {
- videoController.users.append(User.getData(pin: data["f_pin"]!!)!)
- }
- let navigationController = UINavigationController(rootViewController: videoController)
- navigationController.modalPresentationStyle = .fullScreen
- if !onGoingCC.isEmpty {
- videoController.isAutoAccept = true
- DispatchQueue.main.asyncAfter(deadline: .now() + isShowAlert!, execute: {
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(navigationController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(navigationController, animated: true, completion: nil)
- }
- })
- } else {
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(navigationController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(navigationController, animated: true, completion: nil)
- }
- }
- }
- }
- }
-
- public func onStatusCall(state: Int, message: String) {
- let r = message.split(separator: ",")
- if state == 23 {
- if let call = callManager.call(with: String(r[0])) {
- print("onStatusCall:connectingCall")
- DispatchQueue.main.async {
- call.connectingCall()
- }
- }
- } else if state == 22 {
- if let call = callManager.call(with: String(r[1])) {
- print("onStatusCall:answerCall")
- DispatchQueue.main.async {
- call.answerCall()
- }
- }
- }
- var dataCall: [AnyHashable : Any] = [:]
- dataCall["state"] = state
- dataCall["message"] = message
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onStatusCall"), object: nil, userInfo: dataCall)
- }
-
- }
- var previewItem : NSURL?
- extension Nexilis: MessageDelegate {
- public func onReceiveComment(message: TMessage) {
- var dataMessage: [AnyHashable : Any] = [:]
- dataMessage["message"] = message
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onReceiveComment"), object: nil, userInfo: dataMessage)
- }
-
- @objc func tapLinkBroadcast(_ sender: ObjectGesture) {
- var stringURl = sender.message_id.lowercased()
- if stringURl.starts(with: "www.") {
- stringURl = "https://" + stringURl.replacingOccurrences(of: "www.", with: "")
- }
- guard let url = URL(string: stringURl) else { return }
- UIApplication.shared.open(url)
- }
-
- func showBroadcastMessage(m: [String: String]) {
- let fileType = m[CoreMessage_TMessageKey.CATEGORY_FLAG]!
- let broadcastVC = UIViewController()
- if let viewBroadcast = broadcastVC.view {
- broadcastVC.modalPresentationStyle = .custom
- viewBroadcast.backgroundColor = .black.withAlphaComponent(0.3)
-
- let stringLink = m[CoreMessage_TMessageKey.LINK] ?? ""
-
- let containerView = UIView()
- viewBroadcast.addSubview(containerView)
- if stringLink.isEmpty {
- containerView.anchor(centerX: viewBroadcast.centerXAnchor, centerY: viewBroadcast.centerYAnchor, width: viewBroadcast.bounds.width - 40, minHeight: 100, maxHeight: viewBroadcast.bounds.height - 100)
- } else {
- containerView.anchor(centerX: viewBroadcast.centerXAnchor, centerY: viewBroadcast.centerYAnchor, width: viewBroadcast.bounds.width - 40, minHeight: 200, maxHeight: viewBroadcast.bounds.height - 100)
- }
- containerView.backgroundColor = .white.withAlphaComponent(0.9)
- containerView.layer.cornerRadius = 15.0
- containerView.clipsToBounds = true
-
- let subContainerView = UIView()
- subContainerView.backgroundColor = .clear
- containerView.addSubview(subContainerView)
- subContainerView.anchor(top: containerView.topAnchor, left: containerView.leftAnchor, bottom: containerView.bottomAnchor, right: containerView.rightAnchor, paddingTop: 20.0, paddingLeft: 10.0, paddingBottom: 20.0, paddingRight: 10.0)
-
- let buttonClose = UIButton(type: .close)
- buttonClose.frame.size = CGSize(width: 30, height: 30)
- buttonClose.layer.cornerRadius = 15.0
- buttonClose.clipsToBounds = true
- buttonClose.backgroundColor = .secondaryColor.withAlphaComponent(0.5)
- buttonClose.actionHandle(controlEvents: .touchUpInside,
- ForAction:{() -> Void in
- broadcastVC.dismiss(animated: true, completion: {
- Nexilis.broadcastList.remove(at: 0)
- if Nexilis.broadcastList.count > 0 {
- Nexilis.shared.showBroadcastMessage(m: Nexilis.broadcastList[0])
- }
- })
- })
- containerView.addSubview(buttonClose)
- buttonClose.anchor(top: containerView.topAnchor, right: containerView.rightAnchor, width: 30, height: 30)
-
- let title = UILabel()
- title.font = .systemFont(ofSize: 18, weight: .bold)
- title.text = m["MERNAM"]
- title.textAlignment = .center
- subContainerView.addSubview(title)
- title.anchor(top: subContainerView.topAnchor, left: subContainerView.leftAnchor, right: subContainerView.rightAnchor)
-
- let titleBroadcast = UILabel()
- subContainerView.addSubview(titleBroadcast)
- titleBroadcast.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- titleBroadcast.topAnchor.constraint(equalTo: title.bottomAnchor, constant: 20.0),
- titleBroadcast.leadingAnchor.constraint(equalTo: subContainerView.leadingAnchor),
- titleBroadcast.trailingAnchor.constraint(equalTo: subContainerView.trailingAnchor),
- ])
- titleBroadcast.font = UIFont.systemFont(ofSize: 14, weight: .semibold)
- titleBroadcast.numberOfLines = 0
- titleBroadcast.attributedText = m[CoreMessage_TMessageKey.TITLE]!.richText()
- titleBroadcast.textColor = .black
-
- let descBroadcast = UILabel()
- subContainerView.addSubview(descBroadcast)
- descBroadcast.translatesAutoresizingMaskIntoConstraints = false
- let constraintDesc = descBroadcast.bottomAnchor.constraint(equalTo: subContainerView.bottomAnchor)
- if !stringLink.isEmpty{
- constraintDesc.constant = constraintDesc.constant - 30
- }
- if fileType != BroadcastViewController.FILE_TYPE_CHAT {
- constraintDesc.constant = constraintDesc.constant - 260
- }
- NSLayoutConstraint.activate([
- descBroadcast.topAnchor.constraint(equalTo: titleBroadcast.bottomAnchor, constant: 10),
- descBroadcast.leadingAnchor.constraint(equalTo: subContainerView.leadingAnchor),
- descBroadcast.trailingAnchor.constraint(equalTo: subContainerView.trailingAnchor),
- constraintDesc,
- ])
- descBroadcast.font = UIFont.systemFont(ofSize: 12)
- descBroadcast.numberOfLines = 0
- descBroadcast.attributedText = m[CoreMessage_TMessageKey.MESSAGE_TEXT_ENG]!.richText()
- descBroadcast.textColor = .black
-
- let linkBroadcast = UILabel()
- if !stringLink.isEmpty {
- subContainerView.addSubview(linkBroadcast)
- linkBroadcast.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- linkBroadcast.topAnchor.constraint(equalTo: descBroadcast.bottomAnchor, constant: 10),
- linkBroadcast.leadingAnchor.constraint(equalTo: subContainerView.leadingAnchor),
- linkBroadcast.trailingAnchor.constraint(equalTo: subContainerView.trailingAnchor),
- ])
- linkBroadcast.font = UIFont.systemFont(ofSize: 12)
- linkBroadcast.isUserInteractionEnabled = true
- linkBroadcast.numberOfLines = 2
- let attributedString = NSMutableAttributedString(string: stringLink, attributes:[NSAttributedString.Key.link: URL(string: stringLink)!])
- linkBroadcast.attributedText = attributedString
- let tap = ObjectGesture(target: self, action: #selector(tapLinkBroadcast))
- tap.message_id = stringLink
- linkBroadcast.addGestureRecognizer(tap)
- }
-
- let thumb = m[CoreMessage_TMessageKey.THUMB_ID] ?? ""
- let image = m[CoreMessage_TMessageKey.IMAGE_ID] ?? ""
- let video = m[CoreMessage_TMessageKey.VIDEO_ID] ?? ""
- let file = m[CoreMessage_TMessageKey.FILE_ID] ?? ""
- if fileType != BroadcastViewController.FILE_TYPE_CHAT {
- let imageBroadcast = UIImageView()
- subContainerView.addSubview(imageBroadcast)
- imageBroadcast.translatesAutoresizingMaskIntoConstraints = false
- var constImage = imageBroadcast.topAnchor.constraint(equalTo: descBroadcast.bottomAnchor, constant: 10)
- if !stringLink.isEmpty {
- constImage = imageBroadcast.topAnchor.constraint(equalTo: linkBroadcast.bottomAnchor, constant: 10)
- }
- NSLayoutConstraint.activate([
- constImage,
- imageBroadcast.leadingAnchor.constraint(equalTo: subContainerView.leadingAnchor),
- imageBroadcast.trailingAnchor.constraint(equalTo: subContainerView.trailingAnchor),
- imageBroadcast.heightAnchor.constraint(equalToConstant: 250)
- ])
- imageBroadcast.layer.cornerRadius = 10.0
- imageBroadcast.clipsToBounds = true
- if fileType != BroadcastViewController.FILE_TYPE_DOCUMENT {
- imageBroadcast.contentMode = .scaleAspectFill
- imageBroadcast.setImage(name: thumb)
-
- if fileType == BroadcastViewController.FILE_TYPE_VIDEO {
- let imagePlay = UIImageView(image: UIImage(systemName: "play.circle.fill"))
- imageBroadcast.addSubview(imagePlay)
- imagePlay.clipsToBounds = true
- imagePlay.translatesAutoresizingMaskIntoConstraints = false
- imagePlay.centerYAnchor.constraint(equalTo: imageBroadcast.centerYAnchor).isActive = true
- imagePlay.centerXAnchor.constraint(equalTo: imageBroadcast.centerXAnchor).isActive = true
- imagePlay.widthAnchor.constraint(equalToConstant: 60).isActive = true
- imagePlay.heightAnchor.constraint(equalToConstant: 60).isActive = true
- imagePlay.tintColor = .gray.withAlphaComponent(0.5)
- }
- } else {
- imageBroadcast.image = UIImage(systemName: "doc.fill")
- imageBroadcast.tintColor = .mainColor
- imageBroadcast.contentMode = .scaleAspectFit
- }
-
- imageBroadcast.actionHandle(controlEvents: .touchUpInside,
- ForAction:{() -> Void in
- let nsDocumentDirectory = FileManager.SearchPathDirectory.documentDirectory
- let nsUserDomainMask = FileManager.SearchPathDomainMask.userDomainMask
- let paths = NSSearchPathForDirectoriesInDomains(nsDocumentDirectory, nsUserDomainMask, true)
- if fileType == BroadcastViewController.FILE_TYPE_IMAGE {
- if let dirPath = paths.first {
- let imageURL = URL(fileURLWithPath: dirPath).appendingPathComponent(image)
- if FileManager.default.fileExists(atPath: imageURL.path) {
- let image = UIImage(contentsOfFile: imageURL.path)
- let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: Nexilis.self))
- previewImageVC.image = image
- previewImageVC.isHiddenTextField = true
- previewImageVC.modalPresentationStyle = .overFullScreen
- previewImageVC.modalTransitionStyle = .crossDissolve
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(previewImageVC, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(previewImageVC, animated: true, completion: nil)
- }
- } else {
- Download().start(forKey: image) { (name, progress) in
- guard progress == 100 else {
- return
- }
-
- DispatchQueue.main.async {
- let image = UIImage(contentsOfFile: imageURL.path)
- let previewImageVC = PreviewAttachmentImageVideo(nibName: "PreviewAttachmentImageVideo", bundle: Bundle.resourceBundle(for: Nexilis.self))
- previewImageVC.image = image
- previewImageVC.isHiddenTextField = true
- previewImageVC.modalPresentationStyle = .overFullScreen
- previewImageVC.modalTransitionStyle = .crossDissolve
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(previewImageVC, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(previewImageVC, animated: true, completion: nil)
- }
- }
- }
- }
- }
- } else if fileType == BroadcastViewController.FILE_TYPE_VIDEO {
- //https://qmera.io/filepalio/image/
- let player = AVPlayer(url: URL(string: "https://\(Nexilis.ADDRESS)/filepalio/image/\(video)")!)
- let playerVC = AVPlayerViewController()
- playerVC.player = player
- playerVC.modalPresentationStyle = .custom
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(playerVC, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(playerVC, animated: true, completion: nil)
- }
- } else if fileType == BroadcastViewController.FILE_TYPE_DOCUMENT {
- if let dirPath = paths.first {
- let fileURL = URL(fileURLWithPath: dirPath).appendingPathComponent(file)
- if FileManager.default.fileExists(atPath: fileURL.path) {
- previewItem = fileURL as NSURL
- let previewController = QLPreviewController()
- let rightBarButton = UIBarButtonItem()
- previewController.navigationItem.rightBarButtonItem = rightBarButton
- previewController.dataSource = self
- previewController.modalPresentationStyle = .overFullScreen
-
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(previewController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(previewController, animated: true, completion: nil)
- }
- } else {
- Download().start(forKey: file) { (name, progress) in
- DispatchQueue.main.async {
- guard progress == 100 else {
- return
- }
- previewItem = fileURL as NSURL
- let previewController = QLPreviewController()
- let rightBarButton = UIBarButtonItem()
- previewController.navigationItem.rightBarButtonItem = rightBarButton
- previewController.dataSource = self
- previewController.modalPresentationStyle = .overFullScreen
-
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(previewController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(previewController, animated: true, completion: nil)
- }
- }
- }
- }
- }
- }
- })
- }
- broadcastVC.modalTransitionStyle = .crossDissolve
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(broadcastVC, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(broadcastVC, animated: true, completion: nil)
- }
- }
- }
-
- public func onReceive(message: TMessage) {
- var dataMessage: [AnyHashable : Any] = [:]
- dataMessage["message"] = message
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onReceiveChat"), object: nil, userInfo: dataMessage)
- if message.getCode() == CoreMessage_TMessageCode.PUSH_CALL_CENTER {
- DispatchQueue.main.async {
- if Nexilis.onGoingPushCC.isEmpty {
- var data: [String: String] = [:]
- data["channel"] = message.getBody(key: CoreMessage_TMessageKey.CHANNEL)
- data["l_pin"] = message.getBody(key: CoreMessage_TMessageKey.L_PIN)
- data["f_display_name"] = message.getBody(key: CoreMessage_TMessageKey.F_DISPLAY_NAME)
- Nexilis.onGoingPushCC = data
- } else if Nexilis.onGoingPushCC["f_display_name"] == message.getBody(key: CoreMessage_TMessageKey.F_DISPLAY_NAME) {
- return
- }
- let alert = UIAlertController(title: "", message: "\n\n\n\n\n\n\n\n\n\n".localized(), preferredStyle: .alert)
- let newWidth = UIScreen.main.bounds.width * 0.90 - 270
- // update width constraint value for main view
- if let viewWidthConstraint = alert.view.constraints.filter({ return $0.firstAttribute == .width }).first{
- viewWidthConstraint.constant = newWidth
- }
- // update width constraint value for container view
- if let containerViewWidthConstraint = alert.view.subviews.first?.constraints.filter({ return $0.firstAttribute == .width }).first {
- containerViewWidthConstraint.constant = newWidth
- }
- let titleFont = [NSAttributedString.Key.font: UIFont.systemFont(ofSize: 18), NSAttributedString.Key.foregroundColor: UIColor.black]
- let titleAttrString = NSMutableAttributedString(string: "Call Center".localized(), attributes: titleFont)
- alert.setValue(titleAttrString, forKey: "attributedTitle")
- alert.view.subviews.first?.subviews.first?.subviews.first?.backgroundColor = .lightGray
- alert.view.tintColor = .black
- let rejectAction = UIAlertAction(title: "Pass to other representative".localized(), style: .destructive, handler: {(_) in
- DispatchQueue.global().async {
- _ = Nexilis.write(message: CoreMessage_TMessageBank.timeOutRequestCallCenter(channel: message.getBody(key: CoreMessage_TMessageKey.CHANNEL), l_pin: message.getBody(key: CoreMessage_TMessageKey.L_PIN)))
- }
- Nexilis.onGoingPushCC.removeAll()
- alert.dismiss(animated: true, completion: nil)
- })
- let acceptAction = UIAlertAction(title: "I'll handle the customer".localized(), style: .default, handler: {(_) in
- let goAudioCall = Nexilis.checkMicPermission()
- if !goAudioCall && message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "1" {
- let alert = UIAlertController(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)
- }
- }))
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(alert, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(alert, animated: true, completion: nil)
- }
- DispatchQueue.global().async {
- DispatchQueue.global().async {
- _ = Nexilis.write(message: CoreMessage_TMessageBank.timeOutRequestCallCenter(channel: message.getBody(key: CoreMessage_TMessageKey.CHANNEL), l_pin: message.getBody(key: CoreMessage_TMessageKey.L_PIN)))
- }
- }
- Nexilis.onGoingPushCC.removeAll()
- return
- }
- if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "2" {
- var permissionCheck = -1
- if AVCaptureDevice.authorizationStatus(for: .video) == .authorized {
- permissionCheck = 1
- } else if AVCaptureDevice.authorizationStatus(for: .video) == .denied {
- permissionCheck = 0
- } else {
- AVCaptureDevice.requestAccess(for: .video, completionHandler: { (granted: Bool) -> Void in
- if granted == true {
- permissionCheck = 1
- } else {
- permissionCheck = 0
- }
- })
- }
-
- while permissionCheck == -1 {
- sleep(1)
- }
-
- if permissionCheck == 0 {
- let alert = UIAlertController(title: "Attention!".localized(), message: "Please allow camera 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)
- }
- }))
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(alert, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(alert, animated: true, completion: nil)
- }
- DispatchQueue.global().async {
- DispatchQueue.global().async {
- _ = Nexilis.write(message: CoreMessage_TMessageBank.timeOutRequestCallCenter(channel: message.getBody(key: CoreMessage_TMessageKey.CHANNEL), l_pin: message.getBody(key: CoreMessage_TMessageKey.L_PIN)))
- }
- }
- Nexilis.onGoingPushCC.removeAll()
- return
- }
- }
- if UIApplication.shared.visibleViewController is UINavigationController {
- let nc = UIApplication.shared.visibleViewController as! UINavigationController
- if nc.visibleViewController is QmeraStreamingViewController {
- let vc = nc.visibleViewController as! QmeraStreamingViewController
- var alert = UIAlertController(title: "", message: "Are you sure you want to end Live Streaming, and open notification?".localized(), preferredStyle: .alert)
- if !vc.isLive {
- alert = UIAlertController(title: "", message: "Are you sure you want to leave Live Streaming, and open notification?".localized(), preferredStyle: .alert)
- }
- alert.addAction(UIAlertAction(title: "No".localized(), style: UIAlertAction.Style.default, handler: { _ in
- DispatchQueue.global().async {
- _ = Nexilis.write(message: CoreMessage_TMessageBank.timeOutRequestCallCenter(channel: message.getBody(key: CoreMessage_TMessageKey.CHANNEL), l_pin: message.getBody(key: CoreMessage_TMessageKey.L_PIN)))
- }
- Nexilis.onGoingPushCC.removeAll()
- alert.dismiss(animated: true, completion: nil)
- }))
- alert.addAction(UIAlertAction(title: "Yes".localized(), style: UIAlertAction.Style.default, handler: { _ in
- DispatchQueue.global().async {
- API.terminateBC(sBroadcasterID: vc.isLive ? nil : vc.data)
- vc.sendLeft()
- }
- vc.dismiss(animated: true, completion: {
- acceptCC()
- })
- }))
- nc.present(alert, animated: true, completion: nil)
- // NotificationCenter.default.post(name: NSNotification.Name(rawValue: "isRunningStreaming"), object: nil, userInfo: dataMessage)
- } else {
- acceptCC()
- }
- } else {
- acceptCC()
- }
- func acceptCC() {
- if let response = Nexilis.writeSync(message: CoreMessage_TMessageBank.acceptRequestCallCenter(channel: message.getBody(key: CoreMessage_TMessageKey.CHANNEL), l_pin: message.getBody(key: CoreMessage_TMessageKey.L_PIN), complaint_id: message.getBody(key: CoreMessage_TMessageKey.DATA))) {
- if (response.getBody(key: CoreMessage_TMessageKey.ERRCOD, default_value: "99") == "00") {
- Nexilis.onGoingPushCC.removeAll()
- let complaintId = response.getBody(key: CoreMessage_TMessageKey.DATA, default_value: "")
- if !complaintId.isEmpty {
- alert.dismiss(animated: true, completion: nil)
- let idMe = UserDefaults.standard.string(forKey: "me")!
- UserDefaults.standard.set("\(message.getBody(key: CoreMessage_TMessageKey.L_PIN)),\(idMe),\(complaintId)", forKey: "onGoingCC")
- UserDefaults.standard.set("\(message.getBody(key: CoreMessage_TMessageKey.L_PIN))", forKey: "membersCC")
- if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "0" {
- let editorPersonalVC = AppStoryBoard.Palio.instance.instantiateViewController(identifier: "editorPersonalVC") as! EditorPersonal
- editorPersonalVC.isContactCenter = true
- editorPersonalVC.isRequestContactCenter = false
- editorPersonalVC.unique_l_pin = message.getBody(key: CoreMessage_TMessageKey.L_PIN)
- editorPersonalVC.complaintId = complaintId
- editorPersonalVC.channelContactCenter = message.getBody(key: CoreMessage_TMessageKey.CHANNEL)
- editorPersonalVC.fPinContacCenter = message.getBody(key: CoreMessage_TMessageKey.L_PIN)
- let navigationController = UINavigationController(rootViewController: editorPersonalVC)
- navigationController.modalPresentationStyle = .fullScreen
- navigationController.navigationBar.tintColor = .white
- navigationController.navigationBar.barTintColor = .mainColor
- navigationController.navigationBar.isTranslucent = false
- let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white]
- navigationController.navigationBar.titleTextAttributes = textAttributes
- navigationController.view.backgroundColor = .mainColor
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(navigationController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(navigationController, animated: true, completion: nil)
- }
- } else {
- UserDefaults.standard.set("\(Date().currentTimeMillis())", forKey: "startTimeCC")
- DispatchQueue.main.asyncAfter(deadline: .now() + 1, execute: {
- if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "1" {
- let pin = message.getBody(key: CoreMessage_TMessageKey.L_PIN)
- let controller = QmeraAudioViewController()
- controller.user = User.getData(pin: pin)
- controller.isOutgoing = true
- controller.modalPresentationStyle = .overCurrentContext
- let navigationController = UINavigationController(rootViewController: controller)
- navigationController.modalPresentationStyle = .fullScreen
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(navigationController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(navigationController, animated: true, completion: nil)
- }
- } else if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "2" {
- let videoVC = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "videoVCQmera") as! QmeraVideoViewController
- videoVC.fPin = message.getBody(key: CoreMessage_TMessageKey.L_PIN)
- videoVC.users.append(User.getData(pin: message.getBody(key: CoreMessage_TMessageKey.L_PIN))!)
- let navigationController = UINavigationController(rootViewController: videoVC)
- navigationController.modalPresentationStyle = .fullScreen
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(navigationController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(navigationController, animated: true, completion: nil)
- }
- }
- })
- }
- }
- }
- }
- }
- })
- alert.addAction(acceptAction)
- alert.addAction(rejectAction)
-
- let containerView = UIView(frame: CGRect(x: 20, y: 60, width: alert.view.bounds.size.width * 0.9 - 40, height: 150))
- alert.view.addSubview(containerView)
- containerView.layer.cornerRadius = 10.0
- containerView.clipsToBounds = true
- containerView.backgroundColor = .secondaryColor.withAlphaComponent(0.5)
-
- let imageProfile = UIImageView()
- containerView.addSubview(imageProfile)
- imageProfile.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- imageProfile.topAnchor.constraint(equalTo: containerView.topAnchor, constant: 10),
- imageProfile.bottomAnchor.constraint(equalTo: containerView.bottomAnchor, constant: -10),
- imageProfile.leadingAnchor.constraint(equalTo: containerView.leadingAnchor, constant: 10),
- imageProfile.widthAnchor.constraint(equalToConstant: 100)
- ])
- imageProfile.layer.cornerRadius = 10.0
- imageProfile.clipsToBounds = true
- imageProfile.backgroundColor = .lightGray.withAlphaComponent(0.3)
- imageProfile.tintColor = .secondaryColor
- imageProfile.image = UIImage(systemName: "person")
- if message.getBody(key: CoreMessage_TMessageKey.THUMB_ID) != "" {
- imageProfile.setImage(name: message.getBody(key: CoreMessage_TMessageKey.THUMB_ID))
- imageProfile.contentMode = .scaleAspectFill
- }
-
- let labelName = UILabel()
- containerView.addSubview(labelName)
- labelName.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelName.topAnchor.constraint(equalTo: containerView.topAnchor, constant: 15),
- labelName.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5)
- ])
- labelName.font = UIFont.systemFont(ofSize: 12)
- labelName.text = "Name".localized()
- labelName.textColor = .mainColor
-
- let valueName = UILabel()
- containerView.addSubview(valueName)
- valueName.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- valueName.topAnchor.constraint(equalTo: labelName.bottomAnchor),
- valueName.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5)
- ])
- valueName.font = UIFont.systemFont(ofSize: 12)
- valueName.text = message.getBody(key: CoreMessage_TMessageKey.F_DISPLAY_NAME)
- valueName.textColor = .mainColor
-
- let labelType = UILabel()
- containerView.addSubview(labelType)
- labelType.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelType.topAnchor.constraint(equalTo: valueName.bottomAnchor, constant: 5),
- labelType.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5)
- ])
- labelType.font = UIFont.systemFont(ofSize: 12)
- labelType.text = "Request Type".localized()
- labelType.textColor = .mainColor
-
- let valueType = UILabel()
- containerView.addSubview(valueType)
- valueType.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- valueType.topAnchor.constraint(equalTo: labelType.bottomAnchor),
- valueType.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5)
- ])
- valueType.font = UIFont.systemFont(ofSize: 12)
- if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "0" {
- valueType.text = "Chat".localized()
- } else if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "1" {
- valueType.text = "Audio Call".localized()
- } else if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "2" {
- valueType.text = "Video Call".localized()
- } else {
- valueType.text = "Email".localized()
- }
- valueType.textColor = .mainColor
-
- let labelIdentity = UILabel()
- containerView.addSubview(labelIdentity)
- labelIdentity.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelIdentity.topAnchor.constraint(equalTo: valueType.bottomAnchor, constant: 5),
- labelIdentity.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5)
- ])
- labelIdentity.font = UIFont.systemFont(ofSize: 12)
- labelIdentity.text = "Complaint ID".localized()
- labelIdentity.textColor = .mainColor
-
- let valueIdentity = UILabel()
- containerView.addSubview(valueIdentity)
- valueIdentity.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- valueIdentity.topAnchor.constraint(equalTo: labelIdentity.bottomAnchor),
- valueIdentity.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5),
- valueIdentity.trailingAnchor.constraint(equalTo: containerView.trailingAnchor)
- ])
- valueIdentity.font = UIFont.systemFont(ofSize: 12)
- valueIdentity.text = message.getBody(key: CoreMessage_TMessageKey.DATA)
- valueIdentity.numberOfLines = 0
- valueIdentity.textColor = .mainColor
-
- var isShowAlert: Int?
- let canShow = UIApplication.shared.visibleViewController
- if canShow != nil && !(canShow is UINavigationController) {
- if !(canShow is EditorPersonal) && !(canShow is QmeraAudioViewController) && !(canShow is QmeraVideoViewController) {
- isShowAlert = 0
- } else {
- isShowAlert = 3
- }
- } else if canShow != nil {
- if canShow is UINavigationController {
- let canShowNC = canShow as! UINavigationController
- if !(canShowNC.visibleViewController is EditorPersonal) && !(canShowNC.visibleViewController is QmeraAudioViewController) && !(canShowNC.visibleViewController is QmeraVideoViewController) {
- isShowAlert = 0
- } else {
- isShowAlert = 3
- }
- } else {
- isShowAlert = 0
- }
- }
- DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(isShowAlert!), execute: {
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(alert, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(alert, animated: true, completion: nil)
- }
- })
- }
- } else if message.getCode() == CoreMessage_TMessageCode.ACCEPT_CALL_CENTER {
- let fPinContacCenter = message.getBody(key: CoreMessage_TMessageKey.F_PIN)
- let requester = message.getBody(key: CoreMessage_TMessageKey.UPLINE_PIN)
- let complaintId = message.getBody(key: CoreMessage_TMessageKey.DATA)
- if !requester.isEmpty {
- UserDefaults.standard.set("\(requester),\(fPinContacCenter),\(complaintId)", forKey: "onGoingCC")
- UserDefaults.standard.set("\(fPinContacCenter)", forKey: "membersCC")
- }
- } else if message.getCode() == CoreMessage_TMessageCode.INVITE_TO_ROOM_CONTACT_CENTER {
- DispatchQueue.main.async {
- let alert = UIAlertController(title: "", message: "\n\n\n\n\n\n\n\n\n\n".localized(), preferredStyle: .alert)
- let newWidth = UIScreen.main.bounds.width * 0.90 - 270
- // update width constraint value for main view
- if let viewWidthConstraint = alert.view.constraints.filter({ return $0.firstAttribute == .width }).first{
- viewWidthConstraint.constant = newWidth
- }
- // update width constraint value for container view
- if let containerViewWidthConstraint = alert.view.subviews.first?.constraints.filter({ return $0.firstAttribute == .width }).first {
- containerViewWidthConstraint.constant = newWidth
- }
- let titleFont = [NSAttributedString.Key.font: UIFont.systemFont(ofSize: 18), NSAttributedString.Key.foregroundColor: UIColor.black]
- let titleAttrString = NSMutableAttributedString(string: "You're invited to\nCall Center".localized(), attributes: titleFont)
- alert.setValue(titleAttrString, forKey: "attributedTitle")
- alert.view.subviews.first?.subviews.first?.subviews.first?.backgroundColor = .lightGray
- alert.view.tintColor = .black
- let rejectAction = UIAlertAction(title: "Reject".localized(), style: .destructive, handler: {(_) in
- DispatchQueue.global().async {
- if let result = Nexilis.writeSync(message: CoreMessage_TMessageBank.acceptCCRoomInvite(l_pin: message.getPIN(), type: 0, ticket_id: message.getBody(key: CoreMessage_TMessageKey.CALL_CENTER_ID))) {
- if result.isOk() {
- return
- }
- }
- }
- alert.dismiss(animated: true, completion: nil)
- })
- let acceptAction = UIAlertAction(title: "Accept".localized(), style: .default, handler: {(_) in
- let goAudioCall = Nexilis.checkMicPermission()
- if !goAudioCall && message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "1" {
- let alert = UIAlertController(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)
- }
- }))
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(alert, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(alert, animated: true, completion: nil)
- }
- DispatchQueue.global().async {
- if let result = Nexilis.writeSync(message: CoreMessage_TMessageBank.acceptCCRoomInvite(l_pin: message.getPIN(), type: 0, ticket_id: message.getBody(key: CoreMessage_TMessageKey.CALL_CENTER_ID))) {
- if result.isOk() {
- return
- }
- }
- }
- return
- }
- if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "2" {
- var permissionCheck = -1
- if AVCaptureDevice.authorizationStatus(for: .video) == .authorized {
- permissionCheck = 1
- } else if AVCaptureDevice.authorizationStatus(for: .video) == .denied {
- permissionCheck = 0
- } else {
- AVCaptureDevice.requestAccess(for: .video, completionHandler: { (granted: Bool) -> Void in
- if granted == true {
- permissionCheck = 1
- } else {
- permissionCheck = 0
- }
- })
- }
-
- while permissionCheck == -1 {
- sleep(1)
- }
-
- if permissionCheck == 0 {
- let alert = UIAlertController(title: "Attention!".localized(), message: "Please allow camera 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)
- }
- }))
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(alert, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(alert, animated: true, completion: nil)
- }
- DispatchQueue.global().async {
- if let result = Nexilis.writeSync(message: CoreMessage_TMessageBank.acceptCCRoomInvite(l_pin: message.getPIN(), type: 0, ticket_id: message.getBody(key: CoreMessage_TMessageKey.CALL_CENTER_ID))) {
- if result.isOk() {
- return
- }
- }
- }
- return
- }
- }
- if UIApplication.shared.visibleViewController is UINavigationController {
- let nc = UIApplication.shared.visibleViewController as! UINavigationController
- if nc.visibleViewController is QmeraStreamingViewController {
- let vc = nc.visibleViewController as! QmeraStreamingViewController
- var alert = UIAlertController(title: "", message: "Are you sure you want to end Live Streaming, and open notification?".localized(), preferredStyle: .alert)
- if !vc.isLive {
- alert = UIAlertController(title: "", message: "Are you sure you want to leave Live Streaming, and open notification?".localized(), preferredStyle: .alert)
- }
- alert.addAction(UIAlertAction(title: "No".localized(), style: UIAlertAction.Style.default, handler: { _ in
- DispatchQueue.global().async {
- if let result = Nexilis.writeSync(message: CoreMessage_TMessageBank.acceptCCRoomInvite(l_pin: message.getPIN(), type: 0, ticket_id: message.getBody(key: CoreMessage_TMessageKey.CALL_CENTER_ID))) {
- if result.isOk() {
- return
- }
- }
- }
- alert.dismiss(animated: true, completion: nil)
- }))
- alert.addAction(UIAlertAction(title: "Yes".localized(), style: UIAlertAction.Style.default, handler: { _ in
- DispatchQueue.global().async {
- API.terminateBC(sBroadcasterID: vc.isLive ? nil : vc.data)
- vc.sendLeft()
- }
- vc.dismiss(animated: true, completion: {
- acceptCC()
- })
- }))
- nc.present(alert, animated: true, completion: nil)
- } else {
- acceptCC()
- }
- } else {
- acceptCC()
- }
- func acceptCC() {
- if let result = Nexilis.writeSync(message: CoreMessage_TMessageBank.acceptCCRoomInvite(l_pin: message.getPIN(), type: 1, ticket_id: message.getBody(key: CoreMessage_TMessageKey.CALL_CENTER_ID))) {
- if result.isOk() {
- let requester = result.getBody(key: CoreMessage_TMessageKey.UPLINE_PIN)
- let officer = result.getBody(key: CoreMessage_TMessageKey.FRIEND_FPIN)
- let data = result.getBody(key: CoreMessage_TMessageKey.DATA)
- let complaintId = message.getBody(key: CoreMessage_TMessageKey.CALL_CENTER_ID)
- UserDefaults.standard.set("\(requester),\(officer),\(complaintId)", forKey: "onGoingCC")
- UserDefaults.standard.set("\(Date().currentTimeMillis())", forKey: "startTimeCC")
- if !data.isEmpty {
- if let jsonArray = try! JSONSerialization.jsonObject(with: data.data(using: String.Encoding.utf8)!, options: JSONSerialization.ReadingOptions()) as? [AnyObject] {
- var members = ""
- var user : [User] = []
- let idMe = UserDefaults.standard.string(forKey: "me")!
- for json in jsonArray {
- if "\(json)" != idMe {
- if members.isEmpty {
- members = "\(json)"
- } else {
- members += ",\(json)"
- }
- if let userData = User.getData(pin: "\(json)") {
- user.append(userData)
- } else {
- Nexilis.addFriend (fpin: "\(json)") { result in
- DispatchQueue.main.async {
- if result {
- let userData = User.getData(pin: "\(json)")!
- user.append(userData)
- } else {
- let imageView = UIImageView(image: UIImage(systemName: "xmark.circle.fill"))
- imageView.tintColor = .white
- let banner = FloatingNotificationBanner(title: "Server busy, please try again later".localized(), subtitle: nil, titleFont: UIFont.systemFont(ofSize: 16), titleColor: nil, titleTextAlign: .left, subtitleFont: nil, subtitleColor: nil, subtitleTextAlign: nil, leftView: imageView, rightView: nil, style: .danger, colors: nil, iconPosition: .center)
- banner.show()
- }
- }
- }
- }
- }
- }
- UserDefaults.standard.set("\(members)", forKey: "membersCC")
- if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "0" {
- let editorPersonalVC = AppStoryBoard.Palio.instance.instantiateViewController(identifier: "editorPersonalVC") as! EditorPersonal
- editorPersonalVC.hidesBottomBarWhenPushed = true
- editorPersonalVC.unique_l_pin = officer
- editorPersonalVC.fromNotification = true
- editorPersonalVC.isContactCenter = true
- editorPersonalVC.fPinContacCenter = members
- editorPersonalVC.complaintId = complaintId
- editorPersonalVC.onGoingCC = true
- editorPersonalVC.isRequestContactCenter = false
- editorPersonalVC.users = user
- let navigationController = UINavigationController(rootViewController: editorPersonalVC)
- navigationController.modalPresentationStyle = .fullScreen
- navigationController.navigationBar.tintColor = .white
- navigationController.navigationBar.barTintColor = .mainColor
- navigationController.navigationBar.isTranslucent = false
- let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white]
- navigationController.navigationBar.titleTextAttributes = textAttributes
- navigationController.view.backgroundColor = .mainColor
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(navigationController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(navigationController, animated: true, completion: nil)
- }
- }
- }
- }
- } else {
- 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()
- }
- }
- }
- })
- alert.addAction(rejectAction)
- alert.addAction(acceptAction)
-
- let containerView = UIView(frame: CGRect(x: 50, y: 80, width: alert.view.bounds.size.width * 0.9 - 100, height: 150))
- alert.view.addSubview(containerView)
- containerView.layer.cornerRadius = 10.0
- containerView.clipsToBounds = true
- containerView.backgroundColor = .secondaryColor.withAlphaComponent(0.5)
-
- let userData = User.getData(pin: message.getPIN())
-
- let imageProfile = UIImageView()
- containerView.addSubview(imageProfile)
- imageProfile.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- imageProfile.topAnchor.constraint(equalTo: containerView.topAnchor, constant: 10),
- imageProfile.bottomAnchor.constraint(equalTo: containerView.bottomAnchor, constant: -10),
- imageProfile.leadingAnchor.constraint(equalTo: containerView.leadingAnchor, constant: 10),
- imageProfile.widthAnchor.constraint(equalToConstant: 100)
- ])
- imageProfile.layer.cornerRadius = 10.0
- imageProfile.clipsToBounds = true
- imageProfile.backgroundColor = .lightGray.withAlphaComponent(0.3)
- imageProfile.tintColor = .secondaryColor
- imageProfile.image = UIImage(systemName: "person")
- if userData!.thumb != "" {
- imageProfile.setImage(name: userData!.thumb)
- imageProfile.contentMode = .scaleAspectFill
- }
-
- let labelName = UILabel()
- containerView.addSubview(labelName)
- labelName.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelName.topAnchor.constraint(equalTo: containerView.topAnchor, constant: 15),
- labelName.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5)
- ])
- labelName.font = UIFont.systemFont(ofSize: 12)
- labelName.text = "Name".localized()
- labelName.textColor = .mainColor
-
- let valueName = UILabel()
- containerView.addSubview(valueName)
- valueName.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- valueName.topAnchor.constraint(equalTo: labelName.bottomAnchor),
- valueName.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5)
- ])
- valueName.font = UIFont.systemFont(ofSize: 12)
- valueName.text = userData!.fullName
- valueName.textColor = .mainColor
-
- let labelType = UILabel()
- containerView.addSubview(labelType)
- labelType.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelType.topAnchor.constraint(equalTo: valueName.bottomAnchor, constant: 5),
- labelType.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5)
- ])
- labelType.font = UIFont.systemFont(ofSize: 12)
- labelType.text = "Request Type".localized()
- labelType.textColor = .mainColor
-
- let valueType = UILabel()
- containerView.addSubview(valueType)
- valueType.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- valueType.topAnchor.constraint(equalTo: labelType.bottomAnchor),
- valueType.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5)
- ])
- valueType.font = UIFont.systemFont(ofSize: 12)
- if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "0" {
- valueType.text = "Chat".localized()
- } else if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "1" {
- valueType.text = "Audio Call".localized()
- } else if message.getBody(key: CoreMessage_TMessageKey.CHANNEL) == "2" {
- valueType.text = "Video Call".localized()
- } else {
- valueType.text = "Email".localized()
- }
- valueType.textColor = .mainColor
-
- let labelIdentity = UILabel()
- containerView.addSubview(labelIdentity)
- labelIdentity.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- labelIdentity.topAnchor.constraint(equalTo: valueType.bottomAnchor, constant: 5),
- labelIdentity.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5)
- ])
- labelIdentity.font = UIFont.systemFont(ofSize: 12)
- labelIdentity.text = "Complaint ID".localized()
- labelIdentity.textColor = .mainColor
-
- let valueIdentity = UILabel()
- containerView.addSubview(valueIdentity)
- valueIdentity.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- valueIdentity.topAnchor.constraint(equalTo: labelIdentity.bottomAnchor),
- valueIdentity.leadingAnchor.constraint(equalTo: imageProfile.trailingAnchor, constant: 5),
- valueIdentity.trailingAnchor.constraint(equalTo: containerView.trailingAnchor)
- ])
- valueIdentity.font = UIFont.systemFont(ofSize: 12)
- valueIdentity.text = message.getBody(key: CoreMessage_TMessageKey.CALL_CENTER_ID)
- valueIdentity.numberOfLines = 0
- valueIdentity.textColor = .mainColor
-
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(alert, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(alert, animated: true, completion: nil)
- }
- }
- } else if message.getCode() != CoreMessage_TMessageCode.PUSH_CALL_CENTER && message.getCode() != CoreMessage_TMessageCode.ACCEPT_CALL_CENTER && message.getCode() != CoreMessage_TMessageCode.END_CALL_CENTER && message.getCode() != CoreMessage_TMessageCode.TIMEOUT_CONTACT_CENTER && message.getCode() != CoreMessage_TMessageCode.ACCEPT_CONTACT_CENTER && message.getCode() != CoreMessage_TMessageCode.PUSH_MEMBER_ROOM_CONTACT_CENTER && message.getCode() != CoreMessage_TMessageCode.INVITE_END_CONTACT_CENTER && message.getCode() != CoreMessage_TMessageCode.INVITE_EXIT_CONTACT_CENTER || message.mBodies["MERNAM"] != nil {
- let m = message.mBodies
- // if m[CoreMessage_TMessageKey.IS_CALL_CENTER] == "1" {
- // return
- // }
- if message.mBodies["MERNAM"] != nil {
- DispatchQueue.main.async {
- if !Nexilis.broadcastList.isEmpty {
- Nexilis.broadcastList.append(m)
- } else {
- Nexilis.broadcastList.append(m)
- Nexilis.shared.showBroadcastMessage(m: m)
- }
- }
- return
- }
- let sender = m[CoreMessage_TMessageKey.F_PIN]!
- let me = UserDefaults.standard.string(forKey: "me")!
- if(sender != me) {
- let inEditorPersonal = UserDefaults.standard.string(forKey: "inEditorPersonal")
- let inEditorGroup = UserDefaults.standard.stringArray(forKey: "inEditorGroup")
- var text = m["A07"]!
- if (m.keys.contains("A57") && !((m["A57"]!).isEmpty)) {
- text = "Sent Image 📷"
- } else if (m.keys.contains("A149")) && (m["A149"]!) == "11" {
- text = "Sent Sticker ❤️"
- } else if (m.keys.contains("A47") && !((m["A47"]!).isEmpty)) {
- text = "Sent Video 📹"
- } else if (m.keys.contains("BN") && !((m["BN"]!).isEmpty)) {
- if m["A06"]! == "18" {
- text = "Sent Form 📄"
- } else {
- text = "Sent File 📄"
- }
- } else if (m.keys.contains("A63") && !((m["A63"]!).isEmpty)) {
- text = "Sent Audio 🎵"
- } else if ((m["A07"]!).contains("Share%20location%20")) {
- text = "Sent Location 📌"
- } else if (m.keys.contains("A149")) && (m["A149"]!) == "27" {
- text = "Sent link Live Streaming"
- } else if (m.keys.contains("A149")) && (m["A149"]!) == "25" {
- text = "Sent link Video Conference Room"
- } else if (m.keys.contains("A149")) && (m["A149"]!) == "24" {
- text = "Sent link Quiz"
- } else if (m.keys.contains("A118")) && (m["A118"]!) == "1" {
- text = "Sent Confidential Message"
- }
- var nameUser: String?
- var profile = ""
- var threadIdentifier = sender
- let onGoingCC = UserDefaults.standard.string(forKey: "onGoingCC") ?? ""
- if !onGoingCC.isEmpty {
- return
- }
- if(m["A06"]! == "3" || m["A06"]! == "18" || m["A06"]! == "5") {
- if inEditorPersonal == sender || (inEditorPersonal != nil && inEditorPersonal!.contains(",")) {
- return
- }
- if(nameUser == nil) {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "SELECT first_name, last_name, image_id FROM BUDDY WHERE f_pin='\(String(describing: sender))'") {
- while cursor.next() {
- let first_name = cursor.string(forColumnIndex: 0)!
- let last_name = cursor.string(forColumnIndex: 1)!
- nameUser = "\(first_name) \(last_name)".trimmingCharacters(in: .whitespaces)
- profile = cursor.string(forColumnIndex: 2)!
- }
- cursor.close()
- }
- })
- }
- } else {
- let idGroup = m["A01"]!
- var topicGroup: String?
- var idTopic: String?
- if (m.keys.contains("BA")) {
- idTopic = m["BA"]
- }
- if (idTopic == nil) {
- idTopic = "Lounge"
- topicGroup = "Lounge"
- } else {
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "SELECT title FROM DISCUSSION_FORUM WHERE chat_id='\(idTopic!)'") {
- while cursor.next() {
- let title = cursor.string(forColumnIndex: 0)
- topicGroup = title
- }
- cursor.close()
- }
- })
- }
- if (inEditorGroup != nil) {
- let editorIdGroup = inEditorGroup![0]
- let editorIdTopic = inEditorGroup![1]
- var idTempTopic = idTopic
- if (idTempTopic == "Lounge") {
- idTempTopic = ""
- }
- if (editorIdGroup == idGroup && editorIdTopic == idTempTopic) {
- return
- }
- }
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursor = Database.shared.getRecords(fmdb: fmdb, query: "SELECT f_name, image_id FROM GROUPZ WHERE group_id='\(idGroup)'") {
- while cursor.next() {
- let f_name = cursor.string(forColumnIndex: 0)
- var senderName = m["BR"]
- if senderName == nil {
- senderName = "Bot"
- }
- nameUser =
- "\(senderName!) \u{2022} \(f_name!)(\(topicGroup!))"
- profile = cursor.string(forColumnIndex: 1)!
- }
- cursor.close()
- }
- })
- if idTopic == "Lounge" {
- threadIdentifier = idGroup
- } else {
- threadIdentifier = idTopic!
- }
- }
- if nameUser == nil && threadIdentifier == "-999" {
- nameUser = "Bot"
- }
- DispatchQueue.main.async {
- let container = UIView()
- container.backgroundColor = .gray
- let profileImage = UIImageView()
- profileImage.frame.size = CGSize(width: 60, height: 60)
- container.addSubview(profileImage)
- profileImage.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- profileImage.leadingAnchor.constraint(equalTo: container.leadingAnchor, constant: 8.0),
- profileImage.centerYAnchor.constraint(equalTo: container.centerYAnchor),
- profileImage.widthAnchor.constraint(equalToConstant: 60),
- profileImage.heightAnchor.constraint(equalToConstant: 60),
- ])
-
- let title = UILabel()
- container.addSubview(title)
- title.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- title.leadingAnchor.constraint(equalTo: profileImage.trailingAnchor, constant: 8.0),
- title.topAnchor.constraint(equalTo: container.topAnchor, constant: 20.0),
- ])
- title.font = UIFont.systemFont(ofSize: 14)
- title.text = nameUser ?? "Unknown"
- title.textColor = .white
-
- let subtitle = UILabel()
- container.addSubview(subtitle)
- subtitle.translatesAutoresizingMaskIntoConstraints = false
- NSLayoutConstraint.activate([
- subtitle.leadingAnchor.constraint(equalTo: profileImage.trailingAnchor, constant: 8.0),
- subtitle.trailingAnchor.constraint(equalTo: container.trailingAnchor, constant: -15.0),
- subtitle.topAnchor.constraint(equalTo: title.bottomAnchor),
- ])
- subtitle.font = UIFont.systemFont(ofSize: 12)
- subtitle.attributedText = text.richText()
- subtitle.textColor = .white
-
- let floating = FloatingNotificationBanner(customView: container)
- floating.bannerHeight = 100.0
- floating.transparency = 0.9
-
- if threadIdentifier == "-999" {
- if Utils.getIconDock() != nil {
- 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 {
- profileImage.image = UIImage(data: dataImage!)
- }
- } else {
- profileImage.image = UIImage(named: "pb_button", in: Bundle.resourceBundle(for: Nexilis.self), with: nil)
- }
- } else if profile != "" {
- profileImage.circle()
- do {
- let documentDir = try FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
- let file = documentDir.appendingPathComponent(profile)
- if FileManager().fileExists(atPath: file.path) {
- profileImage.image = UIImage(contentsOfFile: file.path)
- profileImage.backgroundColor = .clear
- } else {
- Download().start(forKey: profile) { (name, progress) in
- guard progress == 100 else {
- return
- }
-
- DispatchQueue.main.async {
- profileImage.image = UIImage(contentsOfFile: file.path)
- profileImage.backgroundColor = .clear
- if !onGoingCC.isEmpty {
- floating.autoDismiss = false
- }
- floating.show(queuePosition: .front, bannerPosition: .top, queue: NotificationBannerQueue(maxBannersOnScreenSimultaneously: 1), on: nil, edgeInsets: UIEdgeInsets(top: 8.0, left: 8.0, bottom: 0, right: 8.0), cornerRadius: 8.0, shadowColor: .clear, shadowOpacity: .zero, shadowBlurRadius: .zero, shadowCornerRadius: .zero, shadowOffset: .zero, shadowEdgeInsets: nil)
- floating.onTap = {
- showNotif()
- }
- }
- }
- return
- }
- } catch {}
- profileImage.contentMode = .scaleAspectFill
- } else {
- profileImage.circle()
- if m["A06"]! == "3" {
- profileImage.image = UIImage(systemName: "person")
- } else {
- profileImage.image = UIImage(systemName: "person.3")
- }
- profileImage.contentMode = .scaleAspectFit
- profileImage.backgroundColor = .lightGray
- profileImage.tintColor = .white
- }
-
- floating.show(queuePosition: .front, bannerPosition: .top, queue: NotificationBannerQueue(maxBannersOnScreenSimultaneously: 1), on: nil, edgeInsets: UIEdgeInsets(top: 8.0, left: 8.0, bottom: 0, right: 8.0), cornerRadius: 8.0, shadowColor: .clear, shadowOpacity: .zero, shadowBlurRadius: .zero, shadowCornerRadius: .zero, shadowOffset: .zero, shadowEdgeInsets: nil)
- if !onGoingCC.isEmpty {
- floating.autoDismiss = false
- }
- floating.onTap = {
- showNotif()
- }
- func showNotif() {
- if !onGoingCC.isEmpty {
- floating.dismiss()
- }
- Database.shared.database?.inTransaction({ (fmdb, rollback) in
- if let cursorData = Database.shared.getRecords(fmdb: fmdb, query: "SELECT first_name, last_name FROM BUDDY where f_pin = '\(UserDefaults.standard.string(forKey: "me")!)'"), cursorData.next() {
- if (cursorData.string(forColumnIndex: 0)! + " " + cursorData.string(forColumnIndex: 1)!).trimmingCharacters(in: .whitespaces) == "USR\(UserDefaults.standard.string(forKey: "me")!)" {
- let alert = UIAlertController(title: "Change Profile".localized(), message: "You must change your name to use this feature".localized(), preferredStyle: .alert)
- alert.addAction(UIAlertAction(title: "OK".localized(), style: UIAlertAction.Style.default, handler: {(_) in
- let controller = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "changeNS") as! ChangeNamePassswordViewController
- let navigationController = UINavigationController(rootViewController: controller)
- navigationController.modalPresentationStyle = .fullScreen
- navigationController.navigationBar.tintColor = .white
- navigationController.navigationBar.barTintColor = .mainColor
- navigationController.navigationBar.isTranslucent = false
- let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white]
- navigationController.navigationBar.titleTextAttributes = textAttributes
- navigationController.view.backgroundColor = .mainColor
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(navigationController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(navigationController, animated: true, completion: nil)
- }
- }))
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(alert, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(alert, animated: true, completion: nil)
- }
- }
- cursorData.close()
- return
- }
- })
- if(m["A06"]! == "3" || m["A06"]! == "5" || m["A06"]! == "18") {
- func openEditor() {
- let editorPersonalVC = AppStoryBoard.Palio.instance.instantiateViewController(identifier: "editorPersonalVC") as! EditorPersonal
- editorPersonalVC.hidesBottomBarWhenPushed = true
- editorPersonalVC.unique_l_pin = threadIdentifier
- editorPersonalVC.fromNotification = true
- if !onGoingCC.isEmpty {
- let compalintId = onGoingCC.components(separatedBy: ",")[2]
- let fPinCC = onGoingCC.isEmpty ? "" : onGoingCC.components(separatedBy: ",")[1]
- editorPersonalVC.isContactCenter = true
- editorPersonalVC.fPinContacCenter = fPinCC
- editorPersonalVC.complaintId = compalintId
- editorPersonalVC.onGoingCC = true
- editorPersonalVC.isRequestContactCenter = false
- }
- let navigationController = UINavigationController(rootViewController: editorPersonalVC)
- navigationController.modalPresentationStyle = .fullScreen
- navigationController.navigationBar.tintColor = .white
- navigationController.navigationBar.barTintColor = .mainColor
- navigationController.navigationBar.isTranslucent = false
- let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white]
- navigationController.navigationBar.titleTextAttributes = textAttributes
- navigationController.view.backgroundColor = .mainColor
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(navigationController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(navigationController, animated: true, completion: nil)
- }
- }
- if UIApplication.shared.visibleViewController is UINavigationController {
- let nc = UIApplication.shared.visibleViewController as! UINavigationController
- if nc.visibleViewController is QmeraStreamingViewController {
- let vc = nc.visibleViewController as! QmeraStreamingViewController
- var alert = UIAlertController(title: "", message: "Are you sure you want to end Live Streaming, and open notification?".localized(), preferredStyle: .alert)
- if !vc.isLive {
- alert = UIAlertController(title: "", message: "Are you sure you want to leave Live Streaming, and open notification?".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
- DispatchQueue.global().async {
- API.terminateBC(sBroadcasterID: vc.isLive ? nil : vc.data)
- vc.sendLeft()
- }
- vc.dismiss(animated: true, completion: {
- openEditor()
- })
- }))
- nc.present(alert, animated: true, completion: nil)
- // NotificationCenter.default.post(name: NSNotification.Name(rawValue: "isRunningStreaming"), object: nil, userInfo: dataMessage)
- } else if nc.visibleViewController is EditorPersonal {
- let vc = nc.visibleViewController as! EditorPersonal
- if vc.fromNotification {
- vc.dismiss(animated: true, completion: {
- openEditor()
- })
- } else {
- vc.navigationController?.popViewController(animated: true)
- openEditor()
- }
- } else {
- openEditor()
- }
- } else if UIApplication.shared.visibleViewController is EditorPersonal {
- let vc = UIApplication.shared.visibleViewController as! EditorPersonal
- if vc.fromNotification{
- vc.dismiss(animated: true, completion: {
- openEditor()
- })
- } else {
- vc.navigationController?.popViewController(animated: true)
- openEditor()
- }
- } else {
- openEditor()
- }
- } else {
- func openEditor() {
- let editorGroupVC = AppStoryBoard.Palio.instance.instantiateViewController(withIdentifier: "editorGroupVC") as! EditorGroup
- editorGroupVC.hidesBottomBarWhenPushed = true
- editorGroupVC.unique_l_pin = threadIdentifier
- editorGroupVC.fromNotification = true
- let navigationController = UINavigationController(rootViewController: editorGroupVC)
- navigationController.modalPresentationStyle = .fullScreen
- navigationController.navigationBar.tintColor = .white
- navigationController.navigationBar.barTintColor = .mainColor
- navigationController.navigationBar.isTranslucent = false
- let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white]
- navigationController.navigationBar.titleTextAttributes = textAttributes
- navigationController.view.backgroundColor = .mainColor
- if UIApplication.shared.visibleViewController?.navigationController != nil {
- UIApplication.shared.visibleViewController?.navigationController?.present(navigationController, animated: true, completion: nil)
- } else {
- UIApplication.shared.visibleViewController?.present(navigationController, animated: true, completion: nil)
- }
- }
- if UIApplication.shared.visibleViewController is UINavigationController {
- let nc = UIApplication.shared.visibleViewController as! UINavigationController
- if nc.visibleViewController is QmeraStreamingViewController {
- let vc = nc.visibleViewController as! QmeraStreamingViewController
- var alert = UIAlertController(title: "", message: "Are you sure you want to end Live Streaming, and open notification?".localized(), preferredStyle: .alert)
- if !vc.isLive {
- alert = UIAlertController(title: "", message: "Are you sure you want to leave Live Streaming, and open notification?".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
- DispatchQueue.global().async {
- API.terminateBC(sBroadcasterID: vc.isLive ? nil : vc.data)
- vc.sendLeft()
- }
- vc.dismiss(animated: true, completion: {
- openEditor()
- })
- }))
- nc.present(alert, animated: true, completion: nil)
- // NotificationCenter.default.post(name: NSNotification.Name(rawValue: "isRunningStreaming"), object: nil, userInfo: dataMessage)
- } else if nc.visibleViewController is EditorGroup {
- let vc = nc.visibleViewController as! EditorGroup
- if vc.fromNotification {
- vc.dismiss(animated: true, completion: {
- openEditor()
- })
- } else {
- vc.navigationController?.popViewController(animated: true)
- openEditor()
- }
- } else {
- openEditor()
- }
- } else if UIApplication.shared.visibleViewController is EditorGroup {
- let vc = UIApplication.shared.visibleViewController as! EditorGroup
- if vc.fromNotification {
- vc.dismiss(animated: true, completion: {
- openEditor()
- })
- } else {
- vc.navigationController?.popViewController(animated: true)
- openEditor()
- }
- } else {
- openEditor()
- }
- }
- }
- }
- }
- }
- }
-
- public static func addFriend(fpin: String, completion: @escaping (Bool) -> ()) {
- DispatchQueue.global().async {
- if let response = Nexilis.writeAndWait(message: CoreMessage_TMessageBank.getAddFriendQRCode(fpin: fpin)), response.isOk() {
- completion(true)
- } else {
- completion(false)
- }
- }
- }
-
- public func onReceive(message: [AnyHashable : Any?]) {
- var dataMessage: [AnyHashable : Any] = [:]
- dataMessage["message"] = message
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onReceiveChat"), object: nil, userInfo: dataMessage)
- }
-
- public func onMessage(message: TMessage) {
- var dataMessage: [AnyHashable : Any] = [:]
- dataMessage["message"] = message
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onMessageChat"), object: nil, userInfo: dataMessage)
- }
-
- public func onUpload(name: String, progress: Double) {
- var dataMessage: [AnyHashable : Any] = [:]
- dataMessage["name"] = name
- dataMessage["progress"] = progress
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onUploadChat"), object: nil, userInfo: dataMessage)
- }
-
- public func onTyping(message: TMessage) {
- var dataMessage: [AnyHashable : Any] = [:]
- dataMessage["message"] = message
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onTypingChat"), object: nil, userInfo: dataMessage)
- }
-
- // public static func faceDetect(fd: FaceDetector?,image: UIImage, completion: ((Bool) -> ())?){
- // print("enter vision")
- // let visionImage = VisionImage(image: image)
- // print("exit vision")
- // var retval = false
- // visionImage.orientation = image.imageOrientation
- // var fd1 : FaceDetector?
- // if(fd == nil){
- // fd1 = FaceDetector.faceDetector()
- // }
- // else {
- // fd1 = fd
- // }
- //
- // // [START detect_faces]
- // fd1?.process(visionImage) {faces, error in
- // guard error == nil, let faces = faces, !faces.isEmpty else {
- // print("faces empty")
- // completion?(false)
- // return
- // }
- // if(faces.count > 0){
- // print("face count: \(faces.count)")
- // retval = true
- // }
- // completion?(retval)
- // }
- //
- // }
- }
- extension Nexilis: GroupDelegate {
- public func onGroup(code: String, f_pin: String, groupId: String) {
- var data: [AnyHashable : Any] = [:]
- data["code"] = code
- data["f_pin"] = f_pin
- data["groupId"] = groupId
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onGroup"), object: nil, userInfo: data)
- }
-
- public func onTopic(code: String, f_pin: String, topicId: String) {
- var data: [AnyHashable : Any] = [:]
- data["code"] = code
- data["f_pin"] = f_pin
- data["topicId"] = topicId
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onTopic"), object: nil, userInfo: data)
- }
-
- public func onMember(code: String, f_pin: String, groupId: String, member: String) {
- var data: [AnyHashable : Any] = [:]
- data["code"] = code
- data["f_pin"] = f_pin
- data["groupId"] = groupId
- data["member"] = member
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onMember"), object: nil, userInfo: data)
- }
-
-
- }
- extension Nexilis: PersonInfoDelegate {
- public func onUpdatePersonInfo(state: Int, message: String) {
- var data: [AnyHashable : Any] = [:]
- data["state"] = state
- data["message"] = message
- NotificationCenter.default.post(name: NSNotification.Name(rawValue: "onUpdatePersonInfo"), object: nil, userInfo: data)
- }
- }
- extension Nexilis: QLPreviewControllerDataSource {
- public func numberOfPreviewItems(in controller: QLPreviewController) -> Int {
- return 1
- }
-
- public func previewController(_ controller: QLPreviewController, previewItemAt index: Int) -> QLPreviewItem {
- return previewItem!
- }
- }
|