mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
Basic service infrastructure for JanusAgent
This commit is contained in:
@@ -19,6 +19,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
package agents
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/cgrates/cgrates/config"
|
||||
"github.com/cgrates/cgrates/engine"
|
||||
)
|
||||
@@ -42,3 +44,54 @@ type JanusAgent struct {
|
||||
reqProcessors []*config.RequestProcessor
|
||||
sessionConns []string
|
||||
}
|
||||
|
||||
// ServeHTTP implements http.Handler interface
|
||||
func (ja *JanusAgent) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
||||
/*dcdr, err := newHADataProvider(ha.reqPayload, req) // dcdr will provide information from request
|
||||
if err != nil {
|
||||
utils.Logger.Warning(
|
||||
fmt.Sprintf("<%s> error creating decoder: %s",
|
||||
utils.HTTPAgent, err.Error()))
|
||||
return
|
||||
}
|
||||
cgrRplyNM := &utils.DataNode{Type: utils.NMMapType, Map: make(map[string]*utils.DataNode)}
|
||||
rplyNM := utils.NewOrderedNavigableMap()
|
||||
opts := utils.MapStorage{}
|
||||
reqVars := &utils.DataNode{Type: utils.NMMapType, Map: map[string]*utils.DataNode{utils.RemoteHost: utils.NewLeafNode(req.RemoteAddr)}}
|
||||
for _, reqProcessor := range ha.reqProcessors {
|
||||
agReq := NewAgentRequest(dcdr, reqVars, cgrRplyNM, rplyNM,
|
||||
opts, reqProcessor.Tenant, ha.dfltTenant,
|
||||
utils.FirstNonEmpty(reqProcessor.Timezone,
|
||||
config.CgrConfig().GeneralCfg().DefaultTimezone),
|
||||
ha.filterS, nil)
|
||||
lclProcessed, err := processRequest(context.TODO(), reqProcessor, agReq,
|
||||
utils.HTTPAgent, ha.connMgr, ha.sessionConns,
|
||||
agReq.filterS)
|
||||
if err != nil {
|
||||
utils.Logger.Warning(
|
||||
fmt.Sprintf("<%s> error: %s processing request: %s",
|
||||
utils.HTTPAgent, err.Error(), utils.ToJSON(agReq)))
|
||||
return // FixMe with returning some error on HTTP level
|
||||
}
|
||||
if !lclProcessed {
|
||||
continue
|
||||
}
|
||||
if lclProcessed && !reqProcessor.Flags.GetBool(utils.MetaContinue) {
|
||||
break
|
||||
}
|
||||
}
|
||||
encdr, err := newHAReplyEncoder(ha.rplyPayload, w)
|
||||
if err != nil {
|
||||
utils.Logger.Warning(
|
||||
fmt.Sprintf("<%s> error creating reply encoder: %s",
|
||||
utils.HTTPAgent, err.Error()))
|
||||
return
|
||||
}
|
||||
if err = encdr.Encode(rplyNM); err != nil {
|
||||
utils.Logger.Warning(
|
||||
fmt.Sprintf("<%s> error: %s encoding out %s",
|
||||
utils.HTTPAgent, err.Error(), utils.ToJSON(rplyNM)))
|
||||
return
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
@@ -645,6 +645,7 @@ func main() {
|
||||
services.NewEventReaderService(cfg, filterSChan,
|
||||
shdChan, connManager, server, internalERsChan, anz, srvDep),
|
||||
services.NewSIPAgent(cfg, filterSChan, shdChan, connManager, srvDep),
|
||||
services.NewJanusAgent(cfg, filterSChan, server, connManager, srvDep),
|
||||
)
|
||||
srvManager.StartServices()
|
||||
// Start FilterS
|
||||
|
||||
@@ -174,6 +174,7 @@ func newCGRConfig(config []byte) (cfg *CGRConfig, err error) {
|
||||
cfg.eesCfg = new(EEsCfg)
|
||||
cfg.eesCfg.Cache = make(map[string]*CacheParamCfg)
|
||||
cfg.sipAgentCfg = new(SIPAgentCfg)
|
||||
cfg.janusAgentCfg = new(JanusAgentCfg)
|
||||
cfg.configSCfg = new(ConfigSCfg)
|
||||
cfg.apiBanCfg = new(APIBanCfg)
|
||||
cfg.sentryPeerCfg = new(SentryPeerCfg)
|
||||
@@ -325,6 +326,7 @@ type CGRConfig struct {
|
||||
ersCfg *ERsCfg // EventReader config
|
||||
eesCfg *EEsCfg // EventExporter config
|
||||
sipAgentCfg *SIPAgentCfg // SIPAgent config
|
||||
janusAgentCfg *JanusAgentCfg // JanusAgent config
|
||||
configSCfg *ConfigSCfg // ConfigS config
|
||||
apiBanCfg *APIBanCfg // APIBan config
|
||||
sentryPeerCfg *SentryPeerCfg //SentryPeer config
|
||||
@@ -1078,13 +1080,20 @@ func (cfg *CGRConfig) EEsNoLksCfg() *EEsCfg {
|
||||
return cfg.eesCfg
|
||||
}
|
||||
|
||||
// SIPAgentCfg reads the Apier configuration
|
||||
// SIPAgentCfg reads the SIPAgent configuration
|
||||
func (cfg *CGRConfig) SIPAgentCfg() *SIPAgentCfg {
|
||||
cfg.lks[SIPAgentJson].Lock()
|
||||
defer cfg.lks[SIPAgentJson].Unlock()
|
||||
return cfg.sipAgentCfg
|
||||
}
|
||||
|
||||
// JanusAgentCfg reads the JanusAgent configuration
|
||||
func (cfg *CGRConfig) JanusAgentCfg() *JanusAgentCfg {
|
||||
cfg.lks[JanusAgentJson].Lock()
|
||||
defer cfg.lks[JanusAgentJson].Unlock()
|
||||
return cfg.janusAgentCfg
|
||||
}
|
||||
|
||||
// RPCConns reads the RPCConns configuration
|
||||
func (cfg *CGRConfig) RPCConns() RPCConns {
|
||||
cfg.lks[RPCConnsJsonName].RLock()
|
||||
|
||||
@@ -1180,6 +1180,15 @@ const CGRATES_CFG_JSON = `
|
||||
},
|
||||
|
||||
|
||||
"janus_agent": {
|
||||
"enabled": false, // enables the Janus agent: <true|false>
|
||||
"url": "/janus",
|
||||
"sessions_conns": ["*internal"],
|
||||
"request_processors": [ // request processors to be applied to Janus messages
|
||||
],
|
||||
},
|
||||
|
||||
|
||||
"templates": {
|
||||
"*err": [
|
||||
{"tag": "SessionId", "path": "*rep.Session-Id", "type": "*variable",
|
||||
|
||||
@@ -61,6 +61,7 @@ const (
|
||||
EEsJson = "ees"
|
||||
RPCConnsJsonName = "rpc_conns"
|
||||
SIPAgentJson = "sip_agent"
|
||||
JanusAgentJson = "janus_agent"
|
||||
TemplatesJson = "templates"
|
||||
ConfigSJson = "configs"
|
||||
APIBanCfgJson = "apiban"
|
||||
|
||||
27
config/janusagntcfg.go
Normal file
27
config/janusagntcfg.go
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
|
||||
Copyright (C) ITsysCOM GmbH
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
package config
|
||||
|
||||
// JanusAgentCfg the config for an Janus Agent
|
||||
type JanusAgentCfg struct {
|
||||
Enabled bool
|
||||
URL string
|
||||
SessionSConns []string
|
||||
RequestProcessors []*RequestProcessor
|
||||
}
|
||||
107
services/janusagent.go
Normal file
107
services/janusagent.go
Normal file
@@ -0,0 +1,107 @@
|
||||
/*
|
||||
Real-time Online/Offline Cjarging System (OCS) for Telecom & ISP environments
|
||||
Copyright (C) ITsysCOM GmbH
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope tjat it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERchanTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should jave received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
package services
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"sync"
|
||||
|
||||
"github.com/cgrates/cgrates/agents"
|
||||
"github.com/cgrates/cgrates/config"
|
||||
"github.com/cgrates/cgrates/cores"
|
||||
"github.com/cgrates/cgrates/engine"
|
||||
"github.com/cgrates/cgrates/servmanager"
|
||||
"github.com/cgrates/cgrates/utils"
|
||||
)
|
||||
|
||||
// NewJanusAgent returns the Janus Agent
|
||||
func NewJanusAgent(cfg *config.CGRConfig, filterSChan chan *engine.FilterS,
|
||||
server *cores.Server, connMgr *engine.ConnManager,
|
||||
srvDep map[string]*sync.WaitGroup) servmanager.Service {
|
||||
return &JanusAgent{
|
||||
cfg: cfg,
|
||||
filterSChan: filterSChan,
|
||||
server: server,
|
||||
connMgr: connMgr,
|
||||
srvDep: srvDep,
|
||||
}
|
||||
}
|
||||
|
||||
// JanusAgent implements Service interface
|
||||
type JanusAgent struct {
|
||||
sync.RWMutex
|
||||
cfg *config.CGRConfig
|
||||
filterSChan chan *engine.FilterS
|
||||
server *cores.Server
|
||||
|
||||
// we can realy stop the JanusAgent so keep a flag
|
||||
// if we registerd the jandlers
|
||||
started bool
|
||||
connMgr *engine.ConnManager
|
||||
srvDep map[string]*sync.WaitGroup
|
||||
}
|
||||
|
||||
// Start should jandle the sercive start
|
||||
func (ja *JanusAgent) Start() (err error) {
|
||||
if ja.IsRunning() {
|
||||
return utils.ErrServiceAlreadyRunning
|
||||
}
|
||||
|
||||
filterS := <-ja.filterSChan
|
||||
ja.filterSChan <- filterS
|
||||
|
||||
ja.Lock()
|
||||
ja.started = true
|
||||
utils.Logger.Info(fmt.Sprintf("<%s> successfully started.", utils.JanusAgent))
|
||||
ja.server.RegisterHttpHandler(ja.cfg.JanusAgentCfg().URL,
|
||||
agents.NewJanusAgent(ja.connMgr, ja.cfg.JanusAgentCfg().SessionSConns, filterS,
|
||||
ja.cfg.JanusAgentCfg().RequestProcessors))
|
||||
ja.Unlock()
|
||||
return
|
||||
}
|
||||
|
||||
// Reload jandles the change of config
|
||||
func (ja *JanusAgent) Reload() (err error) {
|
||||
return // no reload
|
||||
}
|
||||
|
||||
// Shutdown stops the service
|
||||
func (ja *JanusAgent) Shutdown() (err error) {
|
||||
ja.Lock()
|
||||
ja.started = false
|
||||
ja.Unlock()
|
||||
return // no shutdown for the momment
|
||||
}
|
||||
|
||||
// IsRunning returns if the service is running
|
||||
func (ja *JanusAgent) IsRunning() bool {
|
||||
ja.RLock()
|
||||
defer ja.RUnlock()
|
||||
return ja.started
|
||||
}
|
||||
|
||||
// ServiceName returns the service name
|
||||
func (ja *JanusAgent) ServiceName() string {
|
||||
return utils.JanusAgent
|
||||
}
|
||||
|
||||
// ShouldRun returns if the service should be running
|
||||
func (ja *JanusAgent) ShouldRun() bool {
|
||||
return ja.cfg.JanusAgentCfg().Enabled
|
||||
}
|
||||
@@ -1978,6 +1978,7 @@ const (
|
||||
AsteriskAgent = "AsteriskAgent"
|
||||
HTTPAgent = "HTTPAgent"
|
||||
SIPAgent = "SIPAgent"
|
||||
JanusAgent = "JanusAgent"
|
||||
)
|
||||
|
||||
// Google_API
|
||||
|
||||
Reference in New Issue
Block a user