/* 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 utils import ( "strings" "time" ) // CGREvent is a generic event processed by CGR services type CGREvent struct { Tenant string ID string Event map[string]interface{} APIOpts map[string]interface{} clnb bool //rpcclonable } func (ev *CGREvent) HasField(fldName string) (has bool) { _, has = ev.Event[fldName] return } func (ev *CGREvent) CheckMandatoryFields(fldNames []string) error { for _, fldName := range fldNames { if _, has := ev.Event[fldName]; !has { return NewErrMandatoryIeMissing(fldName) } } return nil } // FieldAsString returns a field as string instance func (ev *CGREvent) FieldAsString(fldName string) (val string, err error) { iface, has := ev.Event[fldName] if !has { return "", ErrNotFound } return IfaceAsString(iface), nil } // OptAsInt64 returns an option as int64 func (ev *CGREvent) OptAsInt64(optName string) (int64, error) { iface, has := ev.APIOpts[optName] if !has { return 0, ErrNotFound } return IfaceAsTInt64(iface) } // FieldAsTime returns a field as Time instance func (ev *CGREvent) FieldAsTime(fldName string, timezone string) (t time.Time, err error) { iface, has := ev.Event[fldName] if !has { err = ErrNotFound return } return IfaceAsTime(iface, timezone) } // FieldAsDuration returns a field as Duration instance func (ev *CGREvent) FieldAsDuration(fldName string) (d time.Duration, err error) { iface, has := ev.Event[fldName] if !has { err = ErrNotFound return } return IfaceAsDuration(iface) } func (ev *CGREvent) Clone() (clned *CGREvent) { clned = &CGREvent{ Tenant: ev.Tenant, ID: ev.ID, Event: make(map[string]interface{}), // a bit forced but safe APIOpts: make(map[string]interface{}), } for k, v := range ev.Event { clned.Event[k] = v } if ev.APIOpts != nil { for opt, val := range ev.APIOpts { clned.APIOpts[opt] = val } } return } // AsDataProvider returns the CGREvent as MapStorage with *opts and *req paths set func (cgrEv *CGREvent) AsDataProvider() (ev MapStorage) { return MapStorage{ MetaOpts: cgrEv.APIOpts, MetaReq: cgrEv.Event, } } // CGREventWithRateProfile is used to get the rates prom a specific RatePRofileID that is matching our Event type CGREventWithRateProfile struct { RateProfileID string *CGREvent } type EventsWithOpts struct { Event map[string]interface{} Opts map[string]interface{} } // CGREventWithEeIDs is the CGREventWithOpts with EventExporterIDs type CGREventWithEeIDs struct { EeIDs []string *CGREvent } func (CGREventWithEeIDs) RPCClone() {} // disable rpcClonable from CGREvent // NMAsCGREvent builds a CGREvent considering Time as time.Now() // and Event as linear map[string]interface{} with joined paths // treats particular case when the value of map is []*NMItem - used in agents/AgentRequest func NMAsCGREvent(nM *OrderedNavigableMap, tnt string, pathSep string, opts MapStorage) (cgrEv *CGREvent) { if nM == nil { return } el := nM.GetFirstElement() if el == nil { return } cgrEv = &CGREvent{ Tenant: tnt, ID: UUIDSha1Prefix(), Event: make(map[string]interface{}), APIOpts: opts, } for ; el != nil; el = el.Next() { path := el.Value val, _ := nM.Field(path) // this should never return error cause we get the path from the order if val.AttributeID != "" { continue } path = path[:len(path)-1] // remove the last index opath := strings.Join(path, NestingSep) if _, has := cgrEv.Event[opath]; !has { cgrEv.Event[opath] = val.Data // first item which is not an attribute will become the value } } return } // SetCloneable sets if the args should be clonned on internal connections func (attr *CGREvent) SetCloneable(rpcCloneable bool) { attr.clnb = rpcCloneable } // RPCClone implements rpcclient.RPCCloner interface func (attr *CGREvent) RPCClone() (interface{}, error) { if !attr.clnb { return attr, nil } return attr.Clone(), nil }