mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-15 05:09:54 +05:00
123 lines
3.9 KiB
Go
123 lines
3.9 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 v1
|
|
|
|
import (
|
|
"github.com/cgrates/cgrates/sessions"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
func NewSessionSv1(sS *sessions.SessionS) *SessionSv1 {
|
|
return &SessionSv1{Ss: sS}
|
|
}
|
|
|
|
// SessionSv1 exports RPC from SessionSv1
|
|
type SessionSv1 struct {
|
|
Ss *sessions.SessionS
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) AuthorizeEvent(args *sessions.V1AuthorizeArgs,
|
|
rply *sessions.V1AuthorizeReply) error {
|
|
return ssv1.Ss.BiRPCv1AuthorizeEvent(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) AuthorizeEventWithDigest(args *sessions.V1AuthorizeArgs,
|
|
rply *sessions.V1AuthorizeReplyWithDigest) error {
|
|
return ssv1.Ss.BiRPCv1AuthorizeEventWithDigest(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) InitiateSession(args *sessions.V1InitSessionArgs,
|
|
rply *sessions.V1InitSessionReply) error {
|
|
return ssv1.Ss.BiRPCv1InitiateSession(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) InitiateSessionWithDigest(args *sessions.V1InitSessionArgs,
|
|
rply *sessions.V1InitReplyWithDigest) error {
|
|
return ssv1.Ss.BiRPCv1InitiateSessionWithDigest(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) UpdateSession(args *sessions.V1UpdateSessionArgs,
|
|
rply *sessions.V1UpdateSessionReply) error {
|
|
return ssv1.Ss.BiRPCv1UpdateSession(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) SyncSessions(args *string,
|
|
rply *string) error {
|
|
return ssv1.Ss.BiRPCv1SyncSessions(nil, "", rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) TerminateSession(args *sessions.V1TerminateSessionArgs,
|
|
rply *string) error {
|
|
return ssv1.Ss.BiRPCv1TerminateSession(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) ProcessCDR(cgrEv *utils.CGREventWithArgDispatcher, rply *string) error {
|
|
return ssv1.Ss.BiRPCv1ProcessCDR(nil, cgrEv, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) ProcessEvent(args *sessions.V1ProcessEventArgs,
|
|
rply *sessions.V1ProcessEventReply) error {
|
|
return ssv1.Ss.BiRPCv1ProcessEvent(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) GetActiveSessions(args map[string]string,
|
|
rply *[]*sessions.ActiveSession) error {
|
|
return ssv1.Ss.BiRPCv1GetActiveSessions(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) GetActiveSessionsCount(args map[string]string,
|
|
rply *int) error {
|
|
return ssv1.Ss.BiRPCv1GetActiveSessionsCount(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) ForceDisconnect(args map[string]string,
|
|
rply *string) error {
|
|
return ssv1.Ss.BiRPCv1ForceDisconnect(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) GetPassiveSessions(args map[string]string,
|
|
rply *[]*sessions.ActiveSession) error {
|
|
return ssv1.Ss.BiRPCv1GetPassiveSessions(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) GetPassiveSessionsCount(args map[string]string,
|
|
rply *int) error {
|
|
return ssv1.Ss.BiRPCv1GetPassiveSessionsCount(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) Ping(ign *utils.CGREvent, reply *string) error {
|
|
*reply = utils.Pong
|
|
return nil
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) ReplicateSessions(args sessions.ArgsReplicateSessions, rply *string) error {
|
|
return ssv1.Ss.BiRPCv1ReplicateSessions(nil, args, rply)
|
|
}
|
|
|
|
func (ssv1 *SessionSv1) SetPassiveSession(args *sessions.Session,
|
|
reply *string) error {
|
|
return ssv1.Ss.BiRPCv1SetPassiveSession(nil, args, reply)
|
|
}
|
|
|
|
// Call implements rpcclient.RpcClientConnection interface for internal RPC
|
|
func (ssv1 *SessionSv1) Call(serviceMethod string,
|
|
args interface{}, reply interface{}) error {
|
|
return utils.APIerRPCCall(ssv1, serviceMethod, args, reply)
|
|
}
|