mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
475 lines
14 KiB
Go
475 lines
14 KiB
Go
/*
|
|
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
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
// Returns the first cached default value for a FreeSWITCHAgent connection
|
|
func NewDfltRemoteHost() *RemoteHost {
|
|
if dfltRemoteHost == nil {
|
|
return new(RemoteHost) // No defaults, most probably we are building the defaults now
|
|
}
|
|
dfltVal := *dfltRemoteHost // Copy the value instead of it's pointer
|
|
return &dfltVal
|
|
}
|
|
|
|
// One connection to Rater
|
|
type RemoteHost struct {
|
|
Address string
|
|
Transport string
|
|
Synchronous bool
|
|
TLS bool
|
|
}
|
|
|
|
func (self *RemoteHost) loadFromJsonCfg(jsnCfg *RemoteHostJson) error {
|
|
if jsnCfg == nil {
|
|
return nil
|
|
}
|
|
if jsnCfg.Address != nil {
|
|
self.Address = *jsnCfg.Address
|
|
}
|
|
if jsnCfg.Transport != nil {
|
|
self.Transport = *jsnCfg.Transport
|
|
}
|
|
if jsnCfg.Synchronous != nil {
|
|
self.Synchronous = *jsnCfg.Synchronous
|
|
}
|
|
if jsnCfg.Tls != nil {
|
|
self.TLS = *jsnCfg.Tls
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Returns the first cached default value for a FreeSWITCHAgent connection
|
|
func NewDfltFsConnConfig() *FsConnCfg {
|
|
if dfltFsConnConfig == nil {
|
|
return new(FsConnCfg) // No defaults, most probably we are building the defaults now
|
|
}
|
|
dfltVal := *dfltFsConnConfig // Copy the value instead of it's pointer
|
|
return &dfltVal
|
|
}
|
|
|
|
// One connection to FreeSWITCH server
|
|
type FsConnCfg struct {
|
|
Address string
|
|
Password string
|
|
Reconnects int
|
|
Alias string
|
|
}
|
|
|
|
func (self *FsConnCfg) loadFromJsonCfg(jsnCfg *FsConnJsonCfg) error {
|
|
if jsnCfg == nil {
|
|
return nil
|
|
}
|
|
if jsnCfg.Address != nil {
|
|
self.Address = *jsnCfg.Address
|
|
}
|
|
if jsnCfg.Password != nil {
|
|
self.Password = *jsnCfg.Password
|
|
}
|
|
if jsnCfg.Reconnects != nil {
|
|
self.Reconnects = *jsnCfg.Reconnects
|
|
}
|
|
self.Alias = self.Address
|
|
if jsnCfg.Alias != nil && *jsnCfg.Alias != "" {
|
|
self.Alias = *jsnCfg.Alias
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type SessionSCfg struct {
|
|
Enabled bool
|
|
ListenBijson string
|
|
ChargerSConns []*RemoteHost
|
|
RALsConns []*RemoteHost
|
|
ResSConns []*RemoteHost
|
|
ThreshSConns []*RemoteHost
|
|
StatSConns []*RemoteHost
|
|
SupplSConns []*RemoteHost
|
|
AttrSConns []*RemoteHost
|
|
CDRsConns []*RemoteHost
|
|
SessionReplicationConns []*RemoteHost
|
|
DebitInterval time.Duration
|
|
StoreSCosts bool
|
|
MinCallDuration time.Duration
|
|
MaxCallDuration time.Duration
|
|
SessionTTL time.Duration
|
|
SessionTTLMaxDelay *time.Duration
|
|
SessionTTLLastUsed *time.Duration
|
|
SessionTTLUsage *time.Duration
|
|
SessionIndexes utils.StringMap
|
|
ClientProtocol float64
|
|
ChannelSyncInterval time.Duration
|
|
}
|
|
|
|
func (self *SessionSCfg) loadFromJsonCfg(jsnCfg *SessionSJsonCfg) (err error) {
|
|
if jsnCfg == nil {
|
|
return nil
|
|
}
|
|
if jsnCfg.Enabled != nil {
|
|
self.Enabled = *jsnCfg.Enabled
|
|
}
|
|
if jsnCfg.Listen_bijson != nil {
|
|
self.ListenBijson = *jsnCfg.Listen_bijson
|
|
}
|
|
if jsnCfg.Chargers_conns != nil {
|
|
self.ChargerSConns = make([]*RemoteHost, len(*jsnCfg.Chargers_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Chargers_conns {
|
|
self.ChargerSConns[idx] = NewDfltRemoteHost()
|
|
self.ChargerSConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Rals_conns != nil {
|
|
self.RALsConns = make([]*RemoteHost, len(*jsnCfg.Rals_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Rals_conns {
|
|
self.RALsConns[idx] = NewDfltRemoteHost()
|
|
self.RALsConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Resources_conns != nil {
|
|
self.ResSConns = make([]*RemoteHost, len(*jsnCfg.Resources_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Resources_conns {
|
|
self.ResSConns[idx] = NewDfltRemoteHost()
|
|
self.ResSConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Thresholds_conns != nil {
|
|
self.ThreshSConns = make([]*RemoteHost, len(*jsnCfg.Thresholds_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Thresholds_conns {
|
|
self.ThreshSConns[idx] = NewDfltRemoteHost()
|
|
self.ThreshSConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Stats_conns != nil {
|
|
self.StatSConns = make([]*RemoteHost, len(*jsnCfg.Stats_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Stats_conns {
|
|
self.StatSConns[idx] = NewDfltRemoteHost()
|
|
self.StatSConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Suppliers_conns != nil {
|
|
self.SupplSConns = make([]*RemoteHost, len(*jsnCfg.Suppliers_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Suppliers_conns {
|
|
self.SupplSConns[idx] = NewDfltRemoteHost()
|
|
self.SupplSConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Attributes_conns != nil {
|
|
self.AttrSConns = make([]*RemoteHost, len(*jsnCfg.Attributes_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Attributes_conns {
|
|
self.AttrSConns[idx] = NewDfltRemoteHost()
|
|
self.AttrSConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Cdrs_conns != nil {
|
|
self.CDRsConns = make([]*RemoteHost, len(*jsnCfg.Cdrs_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Cdrs_conns {
|
|
self.CDRsConns[idx] = NewDfltRemoteHost()
|
|
self.CDRsConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Session_replication_conns != nil {
|
|
self.SessionReplicationConns = make([]*RemoteHost, len(*jsnCfg.Session_replication_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Session_replication_conns {
|
|
self.SessionReplicationConns[idx] = NewDfltRemoteHost()
|
|
self.SessionReplicationConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Debit_interval != nil {
|
|
if self.DebitInterval, err = utils.ParseDurationWithNanosecs(*jsnCfg.Debit_interval); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if jsnCfg.Store_session_costs != nil {
|
|
self.StoreSCosts = *jsnCfg.Store_session_costs
|
|
}
|
|
if jsnCfg.Min_call_duration != nil {
|
|
if self.MinCallDuration, err = utils.ParseDurationWithNanosecs(*jsnCfg.Min_call_duration); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if jsnCfg.Max_call_duration != nil {
|
|
if self.MaxCallDuration, err = utils.ParseDurationWithNanosecs(*jsnCfg.Max_call_duration); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if jsnCfg.Session_ttl != nil {
|
|
if self.SessionTTL, err = utils.ParseDurationWithNanosecs(*jsnCfg.Session_ttl); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if jsnCfg.Session_ttl_max_delay != nil {
|
|
if maxTTLDelay, err := utils.ParseDurationWithNanosecs(*jsnCfg.Session_ttl_max_delay); err != nil {
|
|
return err
|
|
} else {
|
|
self.SessionTTLMaxDelay = &maxTTLDelay
|
|
}
|
|
}
|
|
if jsnCfg.Session_ttl_last_used != nil {
|
|
if sessionTTLLastUsed, err := utils.ParseDurationWithNanosecs(*jsnCfg.Session_ttl_last_used); err != nil {
|
|
return err
|
|
} else {
|
|
self.SessionTTLLastUsed = &sessionTTLLastUsed
|
|
}
|
|
}
|
|
if jsnCfg.Session_indexes != nil {
|
|
self.SessionIndexes = utils.StringMapFromSlice(*jsnCfg.Session_indexes)
|
|
}
|
|
if jsnCfg.Client_protocol != nil {
|
|
self.ClientProtocol = *jsnCfg.Client_protocol
|
|
}
|
|
if jsnCfg.Channel_sync_interval != nil {
|
|
if self.ChannelSyncInterval, err = utils.ParseDurationWithNanosecs(*jsnCfg.Channel_sync_interval); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type FsAgentCfg struct {
|
|
Enabled bool
|
|
SessionSConns []*RemoteHost
|
|
SubscribePark bool
|
|
CreateCdr bool
|
|
ExtraFields RSRParsers
|
|
//MinDurLowBalance time.Duration
|
|
//LowBalanceAnnFile string
|
|
EmptyBalanceContext string
|
|
EmptyBalanceAnnFile string
|
|
MaxWaitConnection time.Duration
|
|
EventSocketConns []*FsConnCfg
|
|
}
|
|
|
|
func (self *FsAgentCfg) loadFromJsonCfg(jsnCfg *FreeswitchAgentJsonCfg) error {
|
|
if jsnCfg == nil {
|
|
return nil
|
|
}
|
|
var err error
|
|
if jsnCfg.Enabled != nil {
|
|
self.Enabled = *jsnCfg.Enabled
|
|
}
|
|
if jsnCfg.Sessions_conns != nil {
|
|
self.SessionSConns = make([]*RemoteHost, len(*jsnCfg.Sessions_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Sessions_conns {
|
|
self.SessionSConns[idx] = NewDfltRemoteHost()
|
|
self.SessionSConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Subscribe_park != nil {
|
|
self.SubscribePark = *jsnCfg.Subscribe_park
|
|
}
|
|
if jsnCfg.Create_cdr != nil {
|
|
self.CreateCdr = *jsnCfg.Create_cdr
|
|
}
|
|
if jsnCfg.Extra_fields != nil {
|
|
if self.ExtraFields, err = NewRSRParsersFromSlice(*jsnCfg.Extra_fields, true); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if jsnCfg.Empty_balance_context != nil {
|
|
self.EmptyBalanceContext = *jsnCfg.Empty_balance_context
|
|
}
|
|
|
|
if jsnCfg.Empty_balance_ann_file != nil {
|
|
self.EmptyBalanceAnnFile = *jsnCfg.Empty_balance_ann_file
|
|
}
|
|
if jsnCfg.Max_wait_connection != nil {
|
|
if self.MaxWaitConnection, err = utils.ParseDurationWithNanosecs(*jsnCfg.Max_wait_connection); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if jsnCfg.Event_socket_conns != nil {
|
|
self.EventSocketConns = make([]*FsConnCfg, len(*jsnCfg.Event_socket_conns))
|
|
for idx, jsnConnCfg := range *jsnCfg.Event_socket_conns {
|
|
self.EventSocketConns[idx] = NewDfltFsConnConfig()
|
|
self.EventSocketConns[idx].loadFromJsonCfg(jsnConnCfg)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Returns the first cached default value for a FreeSWITCHAgent connection
|
|
func NewDfltKamConnConfig() *KamConnCfg {
|
|
if dfltKamConnConfig == nil {
|
|
return new(KamConnCfg) // No defaults, most probably we are building the defaults now
|
|
}
|
|
dfltVal := *dfltKamConnConfig
|
|
return &dfltVal
|
|
}
|
|
|
|
// Represents one connection instance towards OpenSIPS, not in use for now but planned for future
|
|
type OsipsConnConfig struct {
|
|
MiAddr string
|
|
Reconnects int
|
|
}
|
|
|
|
func (self *OsipsConnConfig) loadFromJsonCfg(jsnCfg *OsipsConnJsonCfg) error {
|
|
if jsnCfg.Mi_addr != nil {
|
|
self.MiAddr = *jsnCfg.Mi_addr
|
|
}
|
|
if jsnCfg.Reconnects != nil {
|
|
self.Reconnects = *jsnCfg.Reconnects
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// SM-OpenSIPS config section
|
|
type SmOsipsConfig struct {
|
|
Enabled bool
|
|
ListenUdp string
|
|
RALsConns []*RemoteHost
|
|
CDRsConns []*RemoteHost
|
|
CreateCdr bool
|
|
DebitInterval time.Duration
|
|
MinCallDuration time.Duration
|
|
MaxCallDuration time.Duration
|
|
EventsSubscribeInterval time.Duration
|
|
MiAddr string
|
|
}
|
|
|
|
func (self *SmOsipsConfig) loadFromJsonCfg(jsnCfg *SmOsipsJsonCfg) error {
|
|
var err error
|
|
if jsnCfg.Enabled != nil {
|
|
self.Enabled = *jsnCfg.Enabled
|
|
}
|
|
if jsnCfg.Listen_udp != nil {
|
|
self.ListenUdp = *jsnCfg.Listen_udp
|
|
}
|
|
if jsnCfg.Rals_conns != nil {
|
|
self.RALsConns = make([]*RemoteHost, len(*jsnCfg.Rals_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Rals_conns {
|
|
self.RALsConns[idx] = NewDfltRemoteHost()
|
|
self.RALsConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Cdrs_conns != nil {
|
|
self.CDRsConns = make([]*RemoteHost, len(*jsnCfg.Cdrs_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Cdrs_conns {
|
|
self.CDRsConns[idx] = NewDfltRemoteHost()
|
|
self.CDRsConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Create_cdr != nil {
|
|
self.CreateCdr = *jsnCfg.Create_cdr
|
|
}
|
|
if jsnCfg.Debit_interval != nil {
|
|
if self.DebitInterval, err = utils.ParseDurationWithNanosecs(*jsnCfg.Debit_interval); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if jsnCfg.Min_call_duration != nil {
|
|
if self.MinCallDuration, err = utils.ParseDurationWithNanosecs(*jsnCfg.Min_call_duration); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if jsnCfg.Max_call_duration != nil {
|
|
if self.MaxCallDuration, err = utils.ParseDurationWithNanosecs(*jsnCfg.Max_call_duration); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if jsnCfg.Events_subscribe_interval != nil {
|
|
if self.EventsSubscribeInterval, err = utils.ParseDurationWithNanosecs(*jsnCfg.Events_subscribe_interval); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if jsnCfg.Mi_addr != nil {
|
|
self.MiAddr = *jsnCfg.Mi_addr
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Uses stored defaults so we can pre-populate by loading from JSON config
|
|
func NewDefaultAsteriskConnCfg() *AsteriskConnCfg {
|
|
if dfltAstConnCfg == nil {
|
|
return new(AsteriskConnCfg) // No defaults, most probably we are building the defaults now
|
|
}
|
|
dfltVal := *dfltAstConnCfg // Copy the value instead of it's pointer
|
|
return &dfltVal
|
|
}
|
|
|
|
type AsteriskConnCfg struct {
|
|
Address string
|
|
User string
|
|
Password string
|
|
ConnectAttempts int
|
|
Reconnects int
|
|
}
|
|
|
|
func (aConnCfg *AsteriskConnCfg) loadFromJsonCfg(jsnCfg *AstConnJsonCfg) error {
|
|
if jsnCfg == nil {
|
|
return nil
|
|
}
|
|
if jsnCfg.Address != nil {
|
|
aConnCfg.Address = *jsnCfg.Address
|
|
}
|
|
if jsnCfg.User != nil {
|
|
aConnCfg.User = *jsnCfg.User
|
|
}
|
|
if jsnCfg.Password != nil {
|
|
aConnCfg.Password = *jsnCfg.Password
|
|
}
|
|
if jsnCfg.Connect_attempts != nil {
|
|
aConnCfg.ConnectAttempts = *jsnCfg.Connect_attempts
|
|
}
|
|
if jsnCfg.Reconnects != nil {
|
|
aConnCfg.Reconnects = *jsnCfg.Reconnects
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type AsteriskAgentCfg struct {
|
|
Enabled bool
|
|
SessionSConns []*RemoteHost
|
|
CreateCDR bool
|
|
AsteriskConns []*AsteriskConnCfg
|
|
}
|
|
|
|
func (aCfg *AsteriskAgentCfg) loadFromJsonCfg(jsnCfg *AsteriskAgentJsonCfg) (err error) {
|
|
if jsnCfg == nil {
|
|
return nil
|
|
}
|
|
if jsnCfg.Enabled != nil {
|
|
aCfg.Enabled = *jsnCfg.Enabled
|
|
}
|
|
if jsnCfg.Sessions_conns != nil {
|
|
aCfg.SessionSConns = make([]*RemoteHost, len(*jsnCfg.Sessions_conns))
|
|
for idx, jsnHaCfg := range *jsnCfg.Sessions_conns {
|
|
aCfg.SessionSConns[idx] = NewDfltRemoteHost()
|
|
aCfg.SessionSConns[idx].loadFromJsonCfg(jsnHaCfg)
|
|
}
|
|
}
|
|
if jsnCfg.Create_cdr != nil {
|
|
aCfg.CreateCDR = *jsnCfg.Create_cdr
|
|
}
|
|
if jsnCfg.Asterisk_conns != nil {
|
|
aCfg.AsteriskConns = make([]*AsteriskConnCfg, len(*jsnCfg.Asterisk_conns))
|
|
for i, jsnAConn := range *jsnCfg.Asterisk_conns {
|
|
aCfg.AsteriskConns[i] = NewDefaultAsteriskConnCfg()
|
|
aCfg.AsteriskConns[i].loadFromJsonCfg(jsnAConn)
|
|
}
|
|
}
|
|
return nil
|
|
}
|