/* 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 */ package config import ( "time" "github.com/cgrates/birpc/context" "github.com/cgrates/cgrates/utils" "github.com/ericlagergren/decimal" ) var ( AccountsAccountIDsDftOpt = []string{} AccountsUsageDftOpt = decimal.New(int64(time.Minute), 0) ) const AccountsProfileIgnoreFiltersDftOpt = false type AccountsOpts struct { AccountIDs []*utils.DynamicStringSliceOpt Usage []*utils.DynamicDecimalBigOpt ProfileIgnoreFilters []*utils.DynamicBoolOpt } // AccountSCfg is the configuration of ActionS type AccountSCfg struct { Enabled bool AttributeSConns []string RateSConns []string ThresholdSConns []string IndexedSelects bool StringIndexedFields *[]string PrefixIndexedFields *[]string SuffixIndexedFields *[]string NestedFields bool MaxIterations int MaxUsage *utils.Decimal Opts *AccountsOpts } // loadAccountSCfg loads the AccountS section of the configuration func (acS *AccountSCfg) Load(ctx *context.Context, jsnCfg ConfigDB, _ *CGRConfig) (err error) { jsnActionCfg := new(AccountSJsonCfg) if err = jsnCfg.GetSection(ctx, AccountSJSON, jsnActionCfg); err != nil { return } return acS.loadFromJSONCfg(jsnActionCfg) } func (accOpts *AccountsOpts) loadFromJSONCfg(jsnCfg *AccountsOptsJson) (err error) { if jsnCfg == nil { return } if jsnCfg.AccountIDs != nil { accOpts.AccountIDs = append(accOpts.AccountIDs, jsnCfg.AccountIDs...) } if jsnCfg.Usage != nil { var usage []*utils.DynamicDecimalBigOpt if usage, err = utils.StringToDecimalBigDynamicOpts(jsnCfg.Usage); err != nil { return } accOpts.Usage = append(accOpts.Usage, usage...) } if jsnCfg.ProfileIgnoreFilters != nil { accOpts.ProfileIgnoreFilters = append(accOpts.ProfileIgnoreFilters, jsnCfg.ProfileIgnoreFilters...) } return } func (acS *AccountSCfg) loadFromJSONCfg(jsnCfg *AccountSJsonCfg) (err error) { if jsnCfg == nil { return } if jsnCfg.Enabled != nil { acS.Enabled = *jsnCfg.Enabled } if jsnCfg.Indexed_selects != nil { acS.IndexedSelects = *jsnCfg.Indexed_selects } if jsnCfg.Attributes_conns != nil { acS.AttributeSConns = updateInternalConns(*jsnCfg.Attributes_conns, utils.MetaAttributes) } if jsnCfg.Rates_conns != nil { acS.RateSConns = updateInternalConns(*jsnCfg.Rates_conns, utils.MetaRateS) } if jsnCfg.Thresholds_conns != nil { acS.ThresholdSConns = updateInternalConns(*jsnCfg.Thresholds_conns, utils.MetaThresholds) } if jsnCfg.String_indexed_fields != nil { acS.StringIndexedFields = utils.SliceStringPointer(utils.CloneStringSlice(*jsnCfg.String_indexed_fields)) } if jsnCfg.Prefix_indexed_fields != nil { acS.PrefixIndexedFields = utils.SliceStringPointer(utils.CloneStringSlice(*jsnCfg.Prefix_indexed_fields)) } if jsnCfg.Suffix_indexed_fields != nil { acS.SuffixIndexedFields = utils.SliceStringPointer(utils.CloneStringSlice(*jsnCfg.Suffix_indexed_fields)) } if jsnCfg.Nested_fields != nil { acS.NestedFields = *jsnCfg.Nested_fields } if jsnCfg.Max_iterations != nil { acS.MaxIterations = *jsnCfg.Max_iterations } if jsnCfg.Max_usage != nil { if acS.MaxUsage, err = utils.NewDecimalFromUsage(*jsnCfg.Max_usage); err != nil { return err } } if jsnCfg.Opts != nil { err = acS.Opts.loadFromJSONCfg(jsnCfg.Opts) } return } // AsMapInterface returns the config as a map[string]interface{} func (acS AccountSCfg) AsMapInterface(string) interface{} { opts := map[string]interface{}{ utils.MetaAccountIDsCfg: acS.Opts.AccountIDs, utils.MetaUsage: acS.Opts.Usage, utils.MetaProfileIgnoreFilters: acS.Opts.ProfileIgnoreFilters, } mp := map[string]interface{}{ utils.EnabledCfg: acS.Enabled, utils.IndexedSelectsCfg: acS.IndexedSelects, utils.NestedFieldsCfg: acS.NestedFields, utils.MaxIterations: acS.MaxIterations, utils.OptsCfg: opts, } if acS.AttributeSConns != nil { mp[utils.AttributeSConnsCfg] = getInternalJSONConns(acS.AttributeSConns) } if acS.RateSConns != nil { mp[utils.RateSConnsCfg] = getInternalJSONConns(acS.RateSConns) } if acS.ThresholdSConns != nil { mp[utils.ThresholdSConnsCfg] = getInternalJSONConns(acS.ThresholdSConns) } if acS.StringIndexedFields != nil { mp[utils.StringIndexedFieldsCfg] = utils.CloneStringSlice(*acS.StringIndexedFields) } if acS.PrefixIndexedFields != nil { mp[utils.PrefixIndexedFieldsCfg] = utils.CloneStringSlice(*acS.PrefixIndexedFields) } if acS.SuffixIndexedFields != nil { mp[utils.SuffixIndexedFieldsCfg] = utils.CloneStringSlice(*acS.SuffixIndexedFields) } if acS.MaxUsage != nil { mp[utils.MaxUsage] = acS.MaxUsage.String() } return mp } func (accOpts *AccountsOpts) Clone() *AccountsOpts { var accIDs []*utils.DynamicStringSliceOpt if accOpts.AccountIDs != nil { accIDs = utils.CloneDynamicStringSliceOpt(accOpts.AccountIDs) } var usage []*utils.DynamicDecimalBigOpt if accOpts.Usage != nil { usage = utils.CloneDynamicDecimalBigOpt(accOpts.Usage) } var profileIgnoreFilters []*utils.DynamicBoolOpt if accOpts.ProfileIgnoreFilters != nil { profileIgnoreFilters = utils.CloneDynamicBoolOpt(accOpts.ProfileIgnoreFilters) } return &AccountsOpts{ AccountIDs: accIDs, Usage: usage, ProfileIgnoreFilters: profileIgnoreFilters, } } func (AccountSCfg) SName() string { return AccountSJSON } func (acS AccountSCfg) CloneSection() Section { return acS.Clone() } // Clone returns a deep copy of AccountSCfg func (acS AccountSCfg) Clone() (cln *AccountSCfg) { cln = &AccountSCfg{ Enabled: acS.Enabled, IndexedSelects: acS.IndexedSelects, NestedFields: acS.NestedFields, MaxIterations: acS.MaxIterations, MaxUsage: acS.MaxUsage, Opts: acS.Opts.Clone(), } if acS.AttributeSConns != nil { cln.AttributeSConns = utils.CloneStringSlice(acS.AttributeSConns) } if acS.RateSConns != nil { cln.RateSConns = utils.CloneStringSlice(acS.RateSConns) } if acS.ThresholdSConns != nil { cln.ThresholdSConns = utils.CloneStringSlice(acS.ThresholdSConns) } if acS.StringIndexedFields != nil { cln.StringIndexedFields = utils.SliceStringPointer(utils.CloneStringSlice(*acS.StringIndexedFields)) } if acS.PrefixIndexedFields != nil { cln.PrefixIndexedFields = utils.SliceStringPointer(utils.CloneStringSlice(*acS.PrefixIndexedFields)) } if acS.SuffixIndexedFields != nil { cln.SuffixIndexedFields = utils.SliceStringPointer(utils.CloneStringSlice(*acS.SuffixIndexedFields)) } return } type AccountsOptsJson struct { AccountIDs []*utils.DynamicStringSliceOpt `json:"*accountIDs"` Usage []*utils.DynamicStringOpt `json:"*usage"` ProfileIgnoreFilters []*utils.DynamicBoolOpt `json:"*profileIgnoreFilters"` } // Account service config section type AccountSJsonCfg struct { Enabled *bool Indexed_selects *bool Attributes_conns *[]string Rates_conns *[]string Thresholds_conns *[]string String_indexed_fields *[]string Prefix_indexed_fields *[]string Suffix_indexed_fields *[]string Nested_fields *bool // applies when indexed fields is not defined Max_iterations *int Max_usage *string Opts *AccountsOptsJson } func diffAccountsOptsJsonCfg(d *AccountsOptsJson, v1, v2 *AccountsOpts) *AccountsOptsJson { if d == nil { d = new(AccountsOptsJson) } if !utils.DynamicStringSliceOptEqual(v1.AccountIDs, v2.AccountIDs) { d.AccountIDs = v2.AccountIDs } if !utils.DynamicDecimalBigOptEqual(v1.Usage, v2.Usage) { d.Usage = utils.DecimalBigToStringDynamicOpts(v2.Usage) } if !utils.DynamicBoolOptEqual(v1.ProfileIgnoreFilters, v2.ProfileIgnoreFilters) { d.ProfileIgnoreFilters = v2.ProfileIgnoreFilters } return d } func diffAccountSJsonCfg(d *AccountSJsonCfg, v1, v2 *AccountSCfg) *AccountSJsonCfg { if d == nil { d = new(AccountSJsonCfg) } if v1.Enabled != v2.Enabled { d.Enabled = utils.BoolPointer(v2.Enabled) } if !utils.SliceStringEqual(v1.AttributeSConns, v2.AttributeSConns) { d.Attributes_conns = utils.SliceStringPointer(getInternalJSONConns(v2.AttributeSConns)) } if !utils.SliceStringEqual(v1.RateSConns, v2.RateSConns) { d.Rates_conns = utils.SliceStringPointer(getInternalJSONConns(v2.RateSConns)) } if !utils.SliceStringEqual(v1.ThresholdSConns, v2.ThresholdSConns) { d.Thresholds_conns = utils.SliceStringPointer(getInternalJSONConns(v2.ThresholdSConns)) } if v1.IndexedSelects != v2.IndexedSelects { d.Indexed_selects = utils.BoolPointer(v2.IndexedSelects) } d.String_indexed_fields = diffIndexSlice(d.String_indexed_fields, v1.StringIndexedFields, v2.StringIndexedFields) d.Prefix_indexed_fields = diffIndexSlice(d.Prefix_indexed_fields, v1.PrefixIndexedFields, v2.PrefixIndexedFields) d.Suffix_indexed_fields = diffIndexSlice(d.Suffix_indexed_fields, v1.SuffixIndexedFields, v2.SuffixIndexedFields) if v1.NestedFields != v2.NestedFields { d.Nested_fields = utils.BoolPointer(v2.NestedFields) } if v1.MaxIterations != v2.MaxIterations { d.Max_iterations = utils.IntPointer(v2.MaxIterations) } if v2.MaxUsage != nil { if v1.MaxUsage == nil || v1.MaxUsage.Cmp(v2.MaxUsage.Big) != 0 { d.Max_usage = utils.StringPointer(v2.MaxUsage.String()) } } else { d.Max_usage = nil } d.Opts = diffAccountsOptsJsonCfg(d.Opts, v1.Opts, v2.Opts) return d }