mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-24 08:38:45 +05:00
224 lines
7.8 KiB
Go
Executable File
224 lines
7.8 KiB
Go
Executable File
/*
|
|
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 v1
|
|
|
|
import (
|
|
"github.com/cgrates/cgrates/dispatcher"
|
|
"github.com/cgrates/cgrates/engine"
|
|
"github.com/cgrates/cgrates/sessions"
|
|
)
|
|
|
|
func NewDispatcherThresholdSv1(dps *dispatcher.DispatcherService) *DispatcherThresholdSv1 {
|
|
return &DispatcherThresholdSv1{dS: dps}
|
|
}
|
|
|
|
// Exports RPC from RLs
|
|
type DispatcherThresholdSv1 struct {
|
|
dS *dispatcher.DispatcherService
|
|
}
|
|
|
|
// Ping implements ThresholdSv1Ping
|
|
func (dT *DispatcherThresholdSv1) Ping(ign string, reply *string) error {
|
|
return dT.dS.ThresholdSv1Ping(ign, reply)
|
|
}
|
|
|
|
// GetThresholdsForEvent implements ThresholdSv1GetThresholdsForEvent
|
|
func (dT *DispatcherThresholdSv1) GetThresholdsForEvent(tntID *dispatcher.ArgsProcessEventWithApiKey,
|
|
t *engine.Thresholds) error {
|
|
return dT.dS.ThresholdSv1GetThresholdsForEvent(tntID, t)
|
|
}
|
|
|
|
// ProcessEvent implements ThresholdSv1ProcessEvent
|
|
func (dT *DispatcherThresholdSv1) ProcessEvent(args *dispatcher.ArgsProcessEventWithApiKey,
|
|
tIDs *[]string) error {
|
|
return dT.dS.ThresholdSv1ProcessEvent(args, tIDs)
|
|
}
|
|
|
|
func NewDispatcherStatSv1(dps *dispatcher.DispatcherService) *DispatcherStatSv1 {
|
|
return &DispatcherStatSv1{dS: dps}
|
|
}
|
|
|
|
// Exports RPC from RLs
|
|
type DispatcherStatSv1 struct {
|
|
dS *dispatcher.DispatcherService
|
|
}
|
|
|
|
// Ping implements StatSv1Ping
|
|
func (dSts *DispatcherStatSv1) Ping(ign string, reply *string) error {
|
|
return dSts.dS.StatSv1Ping(ign, reply)
|
|
}
|
|
|
|
// GetStatQueuesForEvent implements StatSv1GetStatQueuesForEvent
|
|
func (dSts *DispatcherStatSv1) GetStatQueuesForEvent(args *dispatcher.ArgsStatProcessEventWithApiKey, reply *[]string) error {
|
|
return dSts.dS.StatSv1GetStatQueuesForEvent(args, reply)
|
|
}
|
|
|
|
// GetQueueStringMetrics implements StatSv1GetQueueStringMetrics
|
|
func (dSts *DispatcherStatSv1) GetQueueStringMetrics(args *dispatcher.TntIDWithApiKey,
|
|
reply *map[string]string) error {
|
|
return dSts.dS.StatSv1GetQueueStringMetrics(args, reply)
|
|
}
|
|
|
|
// GetQueueStringMetrics implements StatSv1ProcessEvent
|
|
func (dSts *DispatcherStatSv1) ProcessEvent(args *dispatcher.ArgsStatProcessEventWithApiKey, reply *[]string) error {
|
|
return dSts.dS.StatSv1ProcessEvent(args, reply)
|
|
}
|
|
|
|
func NewDispatcherResourceSv1(dps *dispatcher.DispatcherService) *DispatcherResourceSv1 {
|
|
return &DispatcherResourceSv1{dRs: dps}
|
|
}
|
|
|
|
// Exports RPC from RLs
|
|
type DispatcherResourceSv1 struct {
|
|
dRs *dispatcher.DispatcherService
|
|
}
|
|
|
|
// Ping implements ResourceSv1Ping
|
|
func (dRs *DispatcherResourceSv1) Ping(ign string, reply *string) error {
|
|
return dRs.dRs.ResourceSv1Ping(ign, reply)
|
|
}
|
|
|
|
// GetResourcesForEvent implements ResourceSv1GetResourcesForEvent
|
|
func (dRs *DispatcherResourceSv1) GetResourcesForEvent(args *dispatcher.ArgsV1ResUsageWithApiKey,
|
|
reply *engine.Resources) error {
|
|
return dRs.dRs.ResourceSv1GetResourcesForEvent(args, reply)
|
|
}
|
|
|
|
func NewDispatcherSupplierSv1(dps *dispatcher.DispatcherService) *DispatcherSupplierSv1 {
|
|
return &DispatcherSupplierSv1{dSup: dps}
|
|
}
|
|
|
|
// Exports RPC from RLs
|
|
type DispatcherSupplierSv1 struct {
|
|
dSup *dispatcher.DispatcherService
|
|
}
|
|
|
|
// Ping implements SupplierSv1Ping
|
|
func (dSup *DispatcherSupplierSv1) Ping(ign string, reply *string) error {
|
|
return dSup.dSup.SupplierSv1Ping(ign, reply)
|
|
}
|
|
|
|
// GetSuppliers implements SupplierSv1GetSuppliers
|
|
func (dSup *DispatcherSupplierSv1) GetSuppliers(args *dispatcher.ArgsGetSuppliersWithApiKey,
|
|
reply *engine.SortedSuppliers) error {
|
|
return dSup.dSup.SupplierSv1GetSuppliers(args, reply)
|
|
}
|
|
|
|
func NewDispatcherAttributeSv1(dps *dispatcher.DispatcherService) *DispatcherAttributeSv1 {
|
|
return &DispatcherAttributeSv1{dA: dps}
|
|
}
|
|
|
|
// Exports RPC from RLs
|
|
type DispatcherAttributeSv1 struct {
|
|
dA *dispatcher.DispatcherService
|
|
}
|
|
|
|
// Ping implements SupplierSv1Ping
|
|
func (dA *DispatcherAttributeSv1) Ping(ign string, reply *string) error {
|
|
return dA.dA.AttributeSv1Ping(ign, reply)
|
|
}
|
|
|
|
// GetAttributeForEvent implements AttributeSv1GetAttributeForEvent
|
|
func (dA *DispatcherAttributeSv1) GetAttributeForEvent(args *dispatcher.ArgsAttrProcessEventWithApiKey,
|
|
reply *engine.AttributeProfile) error {
|
|
return dA.dA.AttributeSv1GetAttributeForEvent(args, reply)
|
|
}
|
|
|
|
// ProcessEvent implements AttributeSv1ProcessEvent
|
|
func (dA *DispatcherAttributeSv1) ProcessEvent(args *dispatcher.ArgsAttrProcessEventWithApiKey,
|
|
reply *engine.AttrSProcessEventReply) error {
|
|
return dA.dA.AttributeSv1ProcessEvent(args, reply)
|
|
}
|
|
|
|
func NewDispatcherSessionSv1(dps *dispatcher.DispatcherService) *DispatcherSessionSv1 {
|
|
return &DispatcherSessionSv1{dS: dps}
|
|
}
|
|
|
|
// Exports RPC from RLs
|
|
type DispatcherSessionSv1 struct {
|
|
dS *dispatcher.DispatcherService
|
|
}
|
|
|
|
// Ping implements SessionSv1Ping
|
|
func (dS *DispatcherSessionSv1) Ping(ign string, reply *string) error {
|
|
return dS.dS.SessionSv1Ping(ign, reply)
|
|
}
|
|
|
|
// AuthorizeEventWithDigest implements SessionSv1AuthorizeEventWithDigest
|
|
func (dS *DispatcherSessionSv1) AuthorizeEventWithDigest(args *dispatcher.AuthorizeArgsWithApiKey,
|
|
reply *sessions.V1AuthorizeReplyWithDigest) error {
|
|
return dS.dS.SessionSv1AuthorizeEventWithDigest(args, reply)
|
|
}
|
|
|
|
// InitiateSessionWithDigest implements SessionSv1InitiateSessionWithDigest
|
|
func (dS *DispatcherSessionSv1) InitiateSessionWithDigest(args *dispatcher.InitArgsWithApiKey,
|
|
reply *sessions.V1InitSessionReply) (err error) {
|
|
return dS.dS.SessionSv1InitiateSessionWithDigest(args, reply)
|
|
}
|
|
|
|
// ProcessCDR implements SessionSv1ProcessCDR
|
|
func (dS *DispatcherSessionSv1) ProcessCDR(args *dispatcher.CGREvWithApiKey,
|
|
reply *string) (err error) {
|
|
return dS.dS.SessionSv1ProcessCDR(args, reply)
|
|
}
|
|
|
|
// ProcessEvent implements SessionSv1ProcessEvent
|
|
func (dS *DispatcherSessionSv1) ProcessEvent(args *dispatcher.ProcessEventWithApiKey,
|
|
reply *sessions.V1ProcessEventReply) (err error) {
|
|
return dS.dS.SessionSv1ProcessEvent(args, reply)
|
|
}
|
|
|
|
// TerminateSession implements SessionSv1TerminateSession
|
|
func (dS *DispatcherSessionSv1) TerminateSession(args *dispatcher.TerminateSessionWithApiKey,
|
|
reply *string) (err error) {
|
|
return dS.dS.SessionSv1TerminateSession(args, reply)
|
|
}
|
|
|
|
// UpdateSession implements SessionSv1UpdateSession
|
|
func (dS *DispatcherSessionSv1) UpdateSession(args *dispatcher.UpdateSessionWithApiKey,
|
|
reply *sessions.V1UpdateSessionReply) (err error) {
|
|
return dS.dS.SessionSv1UpdateSession(args, reply)
|
|
}
|
|
|
|
func NewDispatcherChargerSv1(dps *dispatcher.DispatcherService) *DispatcherChargerSv1 {
|
|
return &DispatcherChargerSv1{dC: dps}
|
|
}
|
|
|
|
// Exports RPC from RLs
|
|
type DispatcherChargerSv1 struct {
|
|
dC *dispatcher.DispatcherService
|
|
}
|
|
|
|
// Ping implements ChargerSv1Ping
|
|
func (dC *DispatcherChargerSv1) Ping(ign string, reply *string) error {
|
|
return dC.dC.ChargerSv1Ping(ign, reply)
|
|
}
|
|
|
|
// GetChargersForEvent implements ChargerSv1GetChargersForEvent
|
|
func (dC *DispatcherChargerSv1) GetChargersForEvent(args *dispatcher.CGREvWithApiKey,
|
|
reply *engine.ChargerProfiles) (err error) {
|
|
return dC.dC.ChargerSv1GetChargersForEvent(args, reply)
|
|
}
|
|
|
|
// ProcessEvent implements ChargerSv1ProcessEvent
|
|
func (dC *DispatcherChargerSv1) ProcessEvent(args *dispatcher.CGREvWithApiKey,
|
|
reply *[]*engine.AttrSProcessEventReply) (err error) {
|
|
return dC.dC.ChargerSv1ProcessEvent(args, reply)
|
|
}
|