| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912 |
- package action
- import (
- "errors"
- "fmt"
- "pbx-api-gin/internal/app/stc/active"
- "pbx-api-gin/internal/app/stc/priority"
- alstatus "pbx-api-gin/internal/app/stc/sendstatus"
- "pbx-api-gin/pkg/lfshook"
- "pbx-api-gin/pkg/utils"
- "sort"
- "strings"
- "sync"
- "time"
- )
- var Pads = []string{"2413", "2414", "2415", "2421", "2422", "2423", "2424", "2425", "2431", "2432", "2433", "2434", "2435", "2441", "2442", "2443", "2444",
- "2445", "2451", "2452", "2453", "2454", "2455", "2461", "2462", "2463", "2464", "2465", "2471", "2472", "2473", "2474", "2475", "2481", "2482", "2483",
- "2484", "2485", "2411", "2412"}
- var Pacus = []string{"2111", "2121", "2131", "2141", "2151", "2161", "2171", "2181"}
- var Speakers = []string{"2111", "2121", "2131", "2141", "2151", "2161", "2171", "2181", "2311", "2381"}
- // Function triggered before no cab occupied signal interrupt
- func InActiveHangup() {
- if active.ActivedCab == "" {
- HangupTask("PA")
- HangupTask("CPA")
- HangupTask("VOL")
- //HangupTask("PAD-OCC")
- } else {
- HangupTask("PA")
- HangupTask("PAD-OCC")
- HangupTask("CPA")
- HangupTask("EMG")
- HangupTask("SPC")
- HangupTask("DCS")
- HangupTask("STN")
- HangupTask("CHK")
- HangupTask("VOL")
- Hangup("2311") //hangup cabcab
- }
- }
- // Hangup 挂断指定分机或通道
- func Hangup(channel string) {
- lfshook.NewLogger().Infof("Hangup extensions/channel :%s", channel)
- if !utils.IsChannel(channel) {
- channel = fmt.Sprintf(`/^(PJ)?SIP\/%s-.*$/`, channel)
- }
- action := map[string]string{
- "Action": "hangup",
- "Channel": channel,
- }
- //lfshook.NewLogger().Infof("hangup action :%+v", action)
- if _, _, err := AminInstance.Send(action); err != nil {
- lfshook.NewLogger().Errorf("Hangup %+v", err)
- }
- }
- // Hangup 挂断所有分机,除指定分机和PAD
- func HangupAllExcept(caller string) {
- //all PACU
- for _, ret := range Pacus {
- Hangup(ret)
- }
- switch caller {
- case "2311":
- Hangup("1411") //IO1
- Hangup("1481") //IO8
- //Hangup("2311") //ICP1
- Hangup("2381") //ICP8
- case "2381":
- Hangup("1411") //IO1
- Hangup("1481") //IO8
- Hangup("2311") //ICP1
- //Hangup("2381") //ICP8
- case "1411":
- //Hangup("1411") //IO1
- Hangup("1481") //IO8
- Hangup("2311") //ICP1
- Hangup("2381") //ICP8
- case "1481":
- Hangup("1411") //IO1
- //Hangup("1481") //IO8
- Hangup("2311") //ICP1
- Hangup("2381") //ICP8
- case "":
- Hangup("1411") //IO1
- Hangup("1481") //IO8
- Hangup("2311") //ICP1
- Hangup("2381") //ICP8
- }
- }
- // Hangup task
- func HangupTask(TaskName string) {
- lfshook.NewLogger().Infof("HangupTask Check TaskName:%s ", TaskName)
- if TaskName == "PAD-OCC" {
- resCaller, err := QueueStatus("0301", "") // check OCC queue, get entries
- if err != nil {
- lfshook.NewLogger().Infof("QueueStatus err:%+v", err)
- return
- }
- //lfshook.NewLogger().Infof("============QueueStatus ret :%+v", resCaller)
- if resCaller != nil {
- //lfshook.NewLogger().Infof("===QueueStatus=entry=%+v", resCaller.Entrys)
- if resCaller.Entrys != nil {
- for _, caller := range resCaller.Entrys {
- //lfshook.NewLogger().Infof("===QueueStatus=entry=%+v", caller)
- time.Sleep(time.Millisecond * 50)
- RedirectInQueue(caller.CallerIDNum, "0300", "queues-icp-redirect", caller.CallerIDNum) // redirect All PAD redirect to ICP queue
- }
- }
- }
- }
- taskInfo, ok := priority.RegistryTask.Get(TaskName)
- if ok {
- HangupAllLocalChan()
- ConfbridgeKick(taskInfo.ConfbridgeID, "all")
- Hangup(taskInfo.RunChannel)
- }
- }
- // interrupt the running task
- func InterruptRunningTask(toRunTask string) string {
- utils.LoggerDebug.Printf("InterruptRunningTask TorunType:%s", toRunTask)
- var task priority.TaskInfo
- var taskName string
- var ok bool
- lfshook.NewLogger().Infof("InterruptRunningTask toRuntask:%s ", toRunTask)
- if toRunTask != "PA" && toRunTask != "PAD-ICP" && toRunTask != "PAD-TMS" { // ignore C2C
- taskName, task, ok = priority.RegistryTask.HighestPriorityRunningTask1()
- if !ok {
- return ""
- }
- } else { // have to check C2C
- taskName, task, ok = priority.RegistryTask.HighestPriorityRunningTask()
- if !ok {
- return ""
- }
- }
- utils.LoggerDebug.Printf("InterruptRunningTask RunningTask:%+v", taskName)
- lfshook.NewLogger().Infof("InterruptRunningTask RunningTask:%+v ", task)
- //same type return
- if toRunTask == taskName {
- if toRunTask == "PAD-ICP" || toRunTask == "PAD-TMS" || toRunTask == "PAD-OCC" {
- //Auto Answer PAD-OCC one by one, clean the old confbridge and channels before answer a new PAD .
- if toRunTask == "PAD-OCC" {
- Hangup(task.RunChannel) //pad
- ConfbridgeKick(task.ConfbridgeID, "all")
- HangupIO() //io
- //lfshook.NewLogger().Infof("===InterruptRunningTask=ret==== ")
- }
- return taskName
- }
- }
- //pad all reset
- if toRunTask == "AlarmHoldResetAll" {
- HangupAllLocalChan()
- return taskName
- }
- switch task.RunType {
- case "SPC":
- if toRunTask == "C2C" {
- HangupICP()
- //alstatus.PaStatus("", "SPC", "end")
- } else {
- ConfbridgeKick(task.ConfbridgeID, "all")
- alstatus.PaStatus("", "SPC", "end")
- }
- time.Sleep(time.Millisecond * 200)
- case "CHK":
- if toRunTask == "C2C" {
- HangupICP()
- //alstatus.PaStatus("", "CHK", "end")
- } else {
- ConfbridgeKick(task.ConfbridgeID, "all")
- alstatus.PaStatus("", "CHK", "end")
- }
- time.Sleep(time.Millisecond * 200)
- case "DCS":
- if toRunTask == "STN" {
- return taskName
- } else if toRunTask == "C2C" {
- HangupICP()
- //alstatus.PaStatus("", "DCS", "end")
- } else {
- ConfbridgeKick(task.ConfbridgeID, "all")
- alstatus.PaStatus("", "DCS", "end")
- }
- time.Sleep(time.Millisecond * 200)
- case "STN":
- if toRunTask == "DCS" {
- return taskName
- } else if toRunTask == "C2C" {
- HangupICP()
- //alstatus.PaStatus("", "STN", "end")
- } else {
- ConfbridgeKick(task.ConfbridgeID, "all")
- alstatus.PaStatus("", "STN", "end")
- }
- time.Sleep(time.Millisecond * 200)
- case "CPA":
- //kick CPA members
- if toRunTask != "C2C" {
- CPAConfbridgeKick(task.ConfbridgeID)
- alstatus.PaStatus("", "CPA", "end")
- } else if toRunTask == "C2C" {
- HangupICP()
- //alstatus.PaStatus("", "CPA", "end")
- }
- time.Sleep(time.Millisecond * 200)
- case "EMG":
- //kick EMG members
- if toRunTask != "C2C" {
- EMGConfbridgeKick(task.ConfbridgeID)
- alstatus.PaStatus("", "EMG", "end")
- } else if toRunTask == "C2C" {
- HangupICP()
- //alstatus.PaStatus("", "EMG", "end")
- }
- time.Sleep(time.Millisecond * 200)
- case "C2C": // Interrupt C2C task running,
- if toRunTask == "PA" || toRunTask == "PAD-ICP" || toRunTask == "PAD-TMS" {
- HangupICP()
- return taskName
- }
- case "PAD-ICP", "PAD-TMS": // Interrupt PAD task running,
- if toRunTask == "PAD-ICP" || toRunTask == "PAD-TMS" {
- break
- }
- priority.InterruptedPad = "PAD-ICP"
- lfshook.NewLogger().Infof("InterruptRunningTask interrupt PAD-ICP/PAD-TMS ,Running type :%s !", task.RunType)
- chans, err := CoreShowChannels()
- if err != nil {
- lfshook.NewLogger().Infof("InterruptRunningTask CoreShowChannels err:%+v", err)
- return taskName
- }
- //1. Redirect the connected PAD to 0300,hangup the other pad channel
- for _, ret := range chans {
- // Redirect the connected PAD to 0300
- if utils.IsPAIU(ret.CallerIDNum) {
- lfshook.NewLogger().Infof("====interrupt PAD ==== %+v ", ret)
- if ret.ConnectedLineNum == "<unknown>" { //redirect pad chanspy channel
- err := Redirect(ret.Channel, "0300", "queues-icp-redirect", "", "PAD")
- if err != nil {
- lfshook.NewLogger().Infof("InterruptRunningTask Redirect err:%+v", err)
- return taskName
- }
- lfshook.NewLogger().Infof("====interrupt PAD =1111=== %+v ", ret)
- number := strings.Split(strings.Split(ret.Channel, "-")[0], "/")[1]
- active.NotifyPaiu(number, "hold")
- //HangupAllLocalChan()
- }
- }
- }
- for _, ret := range chans {
- //hangup pad call ICP channel
- if utils.IsPAIU(ret.CallerIDNum) {
- if utils.IsPAIU(ret.CallerIDNum) && ret.ChannelStateDesc == "Up" && utils.IsICP(ret.ConnectedLineNum) {
- lfshook.NewLogger().Infof("Hangup PAD Channel :%+v", ret.Channel)
- Hangup(ret.Channel)
- }
- }
- }
- priority.RegistryTask.StopAndUnregister("PAD-ICP")
- priority.RegistryTask.StopAndUnregister("PAD-TMS")
- //2. hangup task channel (ICP + PACU)
- //lfshook.NewLogger().Infof("===InterruptRunningTask=2. hangup task channel === ")
- HangupAllLocalChan()
- HangupICP()
- //pad end
- if priority.PADStart == 1 {
- alstatus.PaStatus("", "PAD", "end")
- priority.PADStart = 0
- }
- case "PAD-OCC": // Interrupt PAD-OCC task running,
- if toRunTask == "C2C" {
- HangupICP()
- break
- } else {
- priority.InterruptedPad = "PAD-OCC"
- priority.OCCAnswer = 0
- resCaller, err := QueueStatus("0301", "") // check OCC queue, get entries
- if err != nil {
- lfshook.NewLogger().Infof("QueueStatus err:%+v", err)
- return taskName
- }
- if resCaller == nil {
- return taskName
- }
- if resCaller.Entrys != nil {
- for _, caller := range resCaller.Entrys {
- //lfshook.NewLogger().Infof("===QueueStatus=entry=%+v", caller)
- time.Sleep(time.Millisecond * 50)
- RedirectInQueue(caller.CallerIDNum, "0300", "queues-icp-redirect", caller.CallerIDNum) // redirect All PAD redirect to ICP queue
- }
- }
- priority.RegistryTask.StopAndUnregister("PAD-OCC")
- //2. Hangup connected PAD
- //lfshook.NewLogger().Infof("===InterruptRunningTask=Hangup connected PAD=== ")
- Hangup(task.RunChannel)
- //3. Hangup OI & ICP
- HangupIO()
- HangupAllLocalChan()
- ConfbridgeKick(task.ConfbridgeID, "all")
- //occ pad end
- if priority.PADOccStart == 1 {
- alstatus.OccPad("end")
- priority.PADOccStart = 0
- }
- }
- default:
- lfshook.NewLogger().Infof("InterruptRunningTask goto default !")
- //if !strings.Contains(priority.RunningPATaskChan, "0502@default") {
- // Hangup(priority.RunningPATaskChan)
- //}
- if toRunTask != "C2C" && task.RunType != "PA" {
- Hangup(task.RunChannel)
- ConfbridgeKick(task.ConfbridgeID, "all")
- }
- }
- return taskName
- }
- // Hangup all ICP
- func HangupICP() {
- Hangup("2311") //ICP1
- Hangup("2381") //ICP8
- }
- // Hangup all IO
- func HangupIO() {
- Hangup("1411") //IO1
- Hangup("1481") //IO8
- }
- // Hangup all PACU
- func HangupAllPACU() {
- //all PACU
- for _, ret := range Pacus {
- Hangup(ret)
- }
- }
- func HangupAllLocalChan() {
- chans, err := CoreShowChannels()
- if err != nil {
- lfshook.NewLogger().Infof("CoreShowChannels %+v", err)
- return
- }
- for _, ret := range chans {
- if strings.Contains(ret.Channel, "Local") && !strings.Contains(ret.Channel, "0502@default") {
- //lfshook.NewLogger().Infof("HangupAllLocalChan=====hangup========= %+v", ret)
- Hangup(ret.Channel)
- }
- }
- }
- // Hangup all PACU
- func HangupAllPAD() {
- //all PAD
- for _, ret := range Pads {
- Hangup(ret)
- }
- }
- // Hangup all calls
- func HangupAll() {
- utils.ExecCmdAsync("/usr/sbin/asterisk", "-rx", "hangup request all")
- }
- // Dial 拨打号码
- func Dial(src, dst, dialrule, callerID, callerName string, callType string) {
- chanel := fmt.Sprintf("%s/%s@default", "Local", src)
- action := map[string]string{
- "Action": "Originate",
- "Channel": chanel,
- "Exten": dst,
- "Context": dialrule,
- "CallerID": fmt.Sprintf("%s<%s>", callerName, callerID),
- "Priority": "1",
- "Variable": fmt.Sprintf("CAB=%s", callType),
- "async": "true",
- }
- lfshook.NewLogger().Infof("================dial action %+v", action)
- res, _, err := AminInstance.Send(action)
- if err != nil {
- lfshook.NewLogger().Errorf("%+v", err)
- }
- lfshook.NewLogger().Info(res)
- }
- // Dial 拨打号码
- func DialICP(src, dst, dialrule, callerID, callerName string) {
- chanel := fmt.Sprintf("%s/%s@call-icp", "Local", src)
- action := map[string]string{
- "Action": "Originate",
- "Channel": chanel,
- "Exten": dst,
- "Context": dialrule,
- "CallerID": fmt.Sprintf("%s<%s>", callerName, callerID),
- "Priority": "1",
- "Variable": fmt.Sprintf("CBID=%s", callerID),
- "async": "true",
- }
- lfshook.NewLogger().Infof("dial action %+v", action)
- res, _, err := AminInstance.Send(action)
- if err != nil {
- lfshook.NewLogger().Errorf("%+v", err)
- }
- lfshook.NewLogger().Info(res)
- }
- // 获取分机状态
- func ExtenStatus(exten string) (Status string) {
- action := map[string]string{
- "Action": "ExtensionState",
- "Exten": exten,
- "Context": "default",
- }
- res, _, err := AminInstance.Send(action)
- if err != nil {
- lfshook.NewLogger().Errorf("%+v", err)
- return ""
- }
- //lfshook.NewLogger().Infof("================ExtensionState:res %+v", res)
- return res["StatusText"]
- }
- // PACU ChanSpy
- func ChanSpy(src, dst string, whisper, bargein bool) {
- lfshook.NewLogger().Infof("chan spy src:%s dst:%s", src, dst)
- //channel := fmt.Sprintf("%s/%s", utils.DialPrefix, dst)
- channel := fmt.Sprintf("Local/%s@aio-rule", dst)
- data := fmt.Sprintf("%s/%s,qBE", utils.DialPrefix, src)
- /*
- if whisper {
- data = fmt.Sprintf("%s,w", data)
- }
- if bargein {
- data = fmt.Sprintf("%s,B", data)
- }
- */
- action := map[string]string{
- "Action": "Originate",
- "Channel": channel, // 不存在的通话
- "Application": "ChanSpy",
- "Data": data, // 存在的通话
- "CallerID": dst,
- "Async": "true",
- }
- lfshook.NewLogger().Infof("PACU ChanSpy action %+v", action)
- _, _, err := AminInstance.Send(action)
- if err != nil {
- lfshook.NewLogger().Errorf("%+v", err)
- }
- }
- // Redirect 转接
- func RedirectInQueue(channel, dst, dialrule, callerID string) (err error) {
- //callerID := "redirect"
- //lfshook.NewLogger().Infof("redirect src %s to dst %s", channel, dst)
- if !utils.IsChannel(channel) {
- //callerID = channel
- if channel, err = GetChannelByExtenNotBridged(channel); err != nil {
- return err
- }
- }
- action := map[string]string{
- "Action": "Redirect",
- "Channel": channel,
- "Exten": dst,
- "Context": dialrule,
- "CallerID": callerID,
- "Priority": "1",
- "async": "true",
- }
- lfshook.NewLogger().Infof("RedirectInQueue: %+v", action)
- res, _, err := AminInstance.Send(action)
- if err != nil {
- lfshook.NewLogger().Error(err)
- }
- lfshook.NewLogger().Info(res)
- return err
- }
- // Redirect 转接
- func Redirect(channel, dst, dialrule, callerID, callerName string) (err error) {
- //callerID := "redirect"
- //lfshook.NewLogger().Infof("redirect src %s to dst %s", channel, dst)
- if !utils.IsChannel(channel) {
- callerID = channel
- if channel, err = GetChannelByExten(channel); err != nil {
- return err
- }
- }
- action := map[string]string{
- "Action": "Redirect",
- "Channel": channel,
- "Exten": dst,
- "Context": dialrule,
- "CallerID": fmt.Sprintf("%s<%s>", callerName, callerID),
- "Priority": "1",
- "async": "true",
- }
- lfshook.NewLogger().Infof("Redirect: %+v", action)
- res, _, err := AminInstance.Send(action)
- if err != nil {
- lfshook.NewLogger().Error(err)
- }
- lfshook.NewLogger().Info(res)
- return err
- }
- func SetPadTimer() {
- toRunPadpriority := priority.GetPriorityByKey(priority.InterruptedPad) //Get PAD priori 获取之前打断的报警优先级
- //toRunpriority := priority.GetPriorityByKey("PAD-ICP")
- _, taskTmp, ok := priority.RegistryTask.HighestPriorityRunningTask()
- if ok {
- lfshook.NewLogger().Infof("PAD SetPadTimer runing priority:%d toRun priority:%d", taskTmp.Priority, toRunPadpriority)
- if taskTmp.Priority < toRunPadpriority { //higher priority task running ,do not set timer
- return
- }
- }
- res, err := QueueStatus("0300", "") // check OCC queue , if empty OCC-PAD start
- if err != nil {
- lfshook.NewLogger().Infof("QueueStatus err%+v", err)
- return
- }
- if res == nil {
- return
- }
- if res.Calls != "0" {
- lfshook.NewLogger().Infof("PAD SetPadTimer Set QueueTimer timeout 30s !")
- //active.SetTimer = true
- //lfshook.NewLogger().Logger.Infof("=========Start PAD timer !=============")
- if active.QueueTimer != nil {
- if active.QueueTimer.Stop() {
- //lfshook.NewLogger().Logger.Infof("=========Release PAD timer true !============")
- } else {
- //lfshook.NewLogger().Logger.Infof("=========Release PAD timer false ! ============")
- }
- }
- //lfshook.NewLogger().Logger.Infof("=========Start PAD timer !======%d=======", active.PADTimeout)
- active.QueueTimer = time.AfterFunc(time.Duration(active.PADTimeout)*time.Second, func() { // check the PAD 30s timeout
- //active.QueueTimer = time.AfterFunc(30*time.Second, func() { // check the PAD 30s timeout
- //if both not active , return
- if active.ActivedCab == "" {
- return
- }
- res, err := QueueStatus("0301", "") // check OCC queue , if empty OCC-PAD start
- if err != nil {
- lfshook.NewLogger().Infof("OCC QueueStatus err:%+v", err)
- return
- }
- if res == nil {
- return
- }
- if res.Calls == "0" { // OCC queue empty
- resCaller, err := QueueStatus("0300", "") // check ICP queue, get entries
- if err != nil {
- lfshook.NewLogger().Infof("ICP QueueStatus err:%+v", err)
- return
- }
- if resCaller.Entrys != nil {
- sort.Slice(resCaller.Entrys, func(i, j int) bool {
- return resCaller.Entrys[i].Position < resCaller.Entrys[j].Position
- })
- for _, caller := range resCaller.Entrys {
- priority.ICPAnswer = 0
- //lfshook.NewLogger().Infof("====SetPadTimer==QueueTimer==2=")
- //lfshook.NewLogger().Infof("Q300==SetPadTimer==Redirect to 0301 entry:%s=Pos:%s==", caller.CallerIDNum, caller.Position)
- //order by pos
- RedirectInQueue(caller.CallerIDNum, "0301", "queues-occ", caller.CallerIDNum) // redirect All ICP-PAD redirect to OCC queue
- time.Sleep(time.Millisecond * 100) //200 ms delay
- }
- }
- //==============test info =====================
- /*
- time.Sleep(2 * time.Second)
- occque, err1 := QueueStatus("0301", "") // check ICP queue, get entries
- if err1 != nil {
- lfshook.NewLogger().Infof("ICP QueueStatus err:%+v", err)
- return
- }
- for _, caller := range occque.Entrys {
- lfshook.NewLogger().Infof("Q301==SetPadTimer==Redirect to 0301 entry:%s=Pos:%s==", caller.CallerIDNum, caller.Position)
- }*/
- }
- })
- }
- }
- func ConfbridgeKick(confnum, channel string) (res map[string]string, err error) {
- action := map[string]string{
- "Action": "ConfbridgeKick",
- "Conference": confnum,
- "Channel": channel,
- }
- res, _, err = AminInstance.Send(action)
- if err != nil {
- return nil, err
- }
- lfshook.NewLogger().Infof("ConfbridgeKick res:%+v", res)
- if res["Response"] != "Success" {
- return nil, errors.New(res["Message"])
- }
- return res, nil
- }
- func CPAConfbridgeKick(confnum string) (res map[string]string, err error) {
- utils.LoggerDebug.Printf("CPA CPAConfbridgeKick , kick all members .")
- chans, err := ConfbridgeList(confnum)
- if err != nil {
- return nil, errors.New(res["Message"])
- }
- for _, confChan := range chans {
- if !strings.Contains(confChan, "PJSIP/1481") {
- ConfbridgeKick(confnum, confChan)
- }
- }
- return res, nil
- }
- func CPAConfbridgeReinvite(confID string) {
- utils.LoggerDebug.Printf("CPA CPAConfbridgeReinvite , resume CPA .")
- time.Sleep(time.Millisecond * 500)
- for _, ext := range Speakers {
- ConfbridgeReinvite(ext, "call-speakers-cpa", confID)
- }
- }
- func EMGConfbridgeKick(confnum string) (res map[string]string, err error) {
- utils.LoggerDebug.Printf("EMG EMGConfbridgeKick , kick all members .")
- chans, err := ConfbridgeList(confnum)
- if err != nil {
- return nil, errors.New(res["Message"])
- }
- for _, confChan := range chans {
- if !strings.Contains(confChan, "0502@default") {
- ConfbridgeKick(confnum, confChan)
- }
- }
- return res, nil
- }
- func EMGConfbridgeReinvite(confID string) {
- utils.LoggerDebug.Printf("EMG ConfbridgeReinvite , resume EMG .")
- time.Sleep(time.Millisecond * 500)
- for _, ext := range Speakers {
- ConfbridgeReinvite(ext, "call-speakers-emg", confID)
- }
- }
- func ConfbridgeList(confnum string) (chans []string, err error) {
- action := map[string]string{
- "Action": "ConfbridgeList",
- "Conference": confnum,
- }
- res, events, err := AminInstance.Send(action)
- if err != nil {
- return nil, err
- }
- lfshook.NewLogger().Infof("ConfbridgeList res:%+v", res)
- if res["Response"] == "Success" {
- for _, event := range events {
- if event.Data["Event"] == "ConfbridgeList" {
- chans = append(chans, event.Data["Channel"])
- }
- }
- return chans, nil
- } else {
- return nil, errors.New(res["Message"])
- }
- }
- func ConfbridgeReinvite(src, context, confID string) {
- if ExtenStatus(src) != "Idle" {
- lfshook.NewLogger().Infof(" ConfbridgeReinvite ext:%s Not Idle !", src)
- return
- }
- chanel := fmt.Sprintf("Local/%s@%s", src, context)
- action := map[string]string{
- "Action": "Originate",
- "Channel": chanel,
- "Exten": "000",
- "Context": "confbridge-join",
- "CallerID": fmt.Sprintf("%s<%s>", "", ""),
- "Priority": "1",
- "Variable": fmt.Sprintf("CBID=%s", confID),
- "async": "true",
- }
- lfshook.NewLogger().Infof("dial action %+v", action)
- res, _, err := AminInstance.Send(action)
- if err != nil {
- lfshook.NewLogger().Errorf("%+v", err)
- }
- lfshook.NewLogger().Info(res)
- }
- func ICPConfbridgeReinvite(confID, paType string) {
- switch paType {
- case "PAD-OCC":
- go DialICP("8", "2311", "confbridge-join", confID, "1") //ICP1---call
- go DialICP("8", "2381", "confbridge-join", confID, "8") //ICP8---call
- case "CPA":
- go DialICP("2", "2311", "confbridge-join", confID, "1") //ICP1---call
- go DialICP("2", "2381", "confbridge-join", confID, "8") //ICP8---call
- case "EMG":
- go DialICP("3", "2311", "confbridge-join", confID, "1") //ICP1---call
- go DialICP("3", "2381", "confbridge-join", confID, "8") //ICP8---call
- case "SPC":
- go DialICP("6", "2311", "confbridge-join", confID, "1") //ICP1---call
- go DialICP("6", "2381", "confbridge-join", confID, "8") //ICP8---call
- case "STN":
- go DialICP("4", "2311", "confbridge-join", confID, "1") //ICP1---call
- go DialICP("4", "2381", "confbridge-join", confID, "8") //ICP8---call
- case "DCS":
- go DialICP("5", "2311", "confbridge-join", confID, "1") //ICP1---call
- go DialICP("5", "2381", "confbridge-join", confID, "8") //ICP8---call
- case "CHK":
- go DialICP("10", "2311", "confbridge-join", confID, "1") //ICP1---call
- go DialICP("10", "2381", "confbridge-join", confID, "8") //ICP8---call
- case "VOL":
- go DialICP("11", "2311", "confbridge-join", confID, "1") //ICP1---call
- go DialICP("11", "2381", "confbridge-join", confID, "8") //ICP8---call
- }
- }
- var waitMutex sync.Mutex
- // 设置全局变量控制任务创建过程,避免被其他任务打乱任务创建过程
- func WaitTaskCreate(task string, args ...string) { //arg1(task chan)
- utils.LoggerDebug.Printf("%s check task creating ..... ,TaskCreating = %s", task, priority.TaskCreating)
- waitMutex.Lock()
- defer waitMutex.Unlock()
- switch priority.TaskCreating {
- case "C2C":
- if /*task == "PA" ||*/ task == "CPA" {
- //获取正在创建的任务的优先级
- priorityC2C := priority.GetPriorityByKey("C2C")
- //获取将要创建的任务的优先级
- priorityTask := priority.GetPriorityByKey(task)
- //比较优先级,确定是否终止正在创建的任务
- if priorityC2C < priorityTask {
- utils.LoggerDebug.Printf("%s check task C2C creating , hangup CPA %s ", task, args[0])
- //结束task(CPA)
- if len(args) > 0 {
- Hangup(args[0])
- goto DELAY
- }
- } else {
- //结束C2C,PA 则不需要挂断ICP(由ICP自行处理优先级)
- utils.LoggerDebug.Printf("%s check task C2C creating , hangup C2C ICPs ", task)
- HangupICP()
- goto DELAY
- }
- }
- return
- case "CPA":
- if task == "PA" /*|| task == "C2C"*/ {
- //获取正在创建的任务的优先级
- priorityCPA := priority.GetPriorityByKey("CPA")
- //获取将要创建的任务的优先级
- priorityTask := priority.GetPriorityByKey(task)
- //比较优先级,确定是否终止正在创建的任务
- if priorityCPA < priorityTask {
- utils.LoggerDebug.Printf("%s check task CPA creating , hangup %s %s", task, task, args[0])
- //结束task(PA,CPA)
- if len(args) > 0 {
- Hangup(args[0])
- goto DELAY
- }
- } else {
- //结束CPA,获取CPA通道
- if active.ActivedCab == "1" {
- utils.LoggerDebug.Printf("%s check task creating , hangup CPA %s ", task, args[0])
- Hangup("1481")
- goto DELAY
- } else if active.ActivedCab == "8" {
- utils.LoggerDebug.Printf("%s check task C2C creating , hangup CPA %s ", task, args[0])
- Hangup("1411")
- goto DELAY
- }
- }
- }
- return
- case "PA":
- if task == "CPA" /*|| task == "C2C"*/ {
- //获取正在创建的任务的优先级
- priorityPA := priority.GetPriorityByKey("PA")
- //获取将要创建的任务的优先级
- priorityTask := priority.GetPriorityByKey(task)
- //比较优先级,确定是否终止正在创建的任务
- if priorityPA < priorityTask {
- utils.LoggerDebug.Printf("%s check task PA creating , hangup CPA %s ", task, args[0])
- //结束task(CPA)
- if len(args) > 0 {
- Hangup(args[0])
- goto DELAY
- }
- } else {
- //结束PA,获取PA通道
- if active.ActivedCab == "1" {
- utils.LoggerDebug.Printf("%s check task PA creating , hangup PA %s ", task, "2311")
- Hangup("2311")
- goto DELAY
- } else if active.ActivedCab == "8" {
- utils.LoggerDebug.Printf("%s check task PA creating , hangup PA %s ", task, "2381")
- Hangup("2381")
- goto DELAY
- }
- }
- }
- return
- default:
- //utils.LoggerDebug.Printf("%s waiting trd=============previous task:%s creating ..... ", task, priority.TaskCreating)
- for i := 0; i < 4; i++ {
- if priority.TaskCreating != "" {
- utils.LoggerDebug.Printf("%s waiting previous task:%s creating ..... ", task, priority.TaskCreating)
- time.Sleep(time.Millisecond * 500)
- } else {
- utils.LoggerDebug.Printf("TaskCreating is nill, Set TaskCreating=%s", task)
- priority.TaskCreating = task
- return
- }
- }
- priority.TaskCreating = task
- utils.LoggerDebug.Printf("%s waiting previous task:%s creating timeout ! Set TaskCreating=%s", task, priority.TaskCreating, task)
- return
- }
- DELAY:
- time.Sleep(100 * time.Millisecond)
- }
|