mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
143 lines
3.3 KiB
Go
143 lines
3.3 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 Affero 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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
package utils
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"net"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
type Server interface {
|
|
RpcRegister(rcvr any)
|
|
RpcRegisterName(name string, rcvr any)
|
|
RegisterHttpFunc(pattern string, handler func(http.ResponseWriter, *http.Request))
|
|
RegisterHttpHandler(pattern string, handler http.Handler)
|
|
BiRPCRegisterName(method string, handlerFunc any)
|
|
}
|
|
|
|
func LocalAddr() *NetAddr {
|
|
return &NetAddr{network: Local, ip: Local}
|
|
}
|
|
|
|
func NewNetAddr(network, host string) *NetAddr {
|
|
ip, port, err := net.SplitHostPort(host)
|
|
if err != nil {
|
|
Logger.Warning(fmt.Sprintf("failed parsing RemoteAddr: %s, err: %s",
|
|
host, err.Error()))
|
|
}
|
|
p, err := strconv.Atoi(port)
|
|
if err != nil {
|
|
Logger.Warning(fmt.Sprintf("failed converting port : %+v, err: %s",
|
|
port, err.Error()))
|
|
}
|
|
return &NetAddr{network: network, ip: ip, port: p}
|
|
}
|
|
|
|
type NetAddr struct {
|
|
network string
|
|
ip string
|
|
port int
|
|
}
|
|
|
|
// Network is part of net.Addr interface
|
|
func (lc *NetAddr) Network() string {
|
|
return lc.network
|
|
}
|
|
|
|
// String is part of net.Addr interface
|
|
func (lc *NetAddr) String() string {
|
|
return lc.ip
|
|
}
|
|
|
|
// Port .
|
|
func (lc *NetAddr) Port() int {
|
|
return lc.port
|
|
}
|
|
|
|
// Host .
|
|
func (lc *NetAddr) Host() string {
|
|
if lc.ip == Local {
|
|
return Local
|
|
}
|
|
return ConcatenatedKey(lc.ip, strconv.Itoa(lc.port))
|
|
}
|
|
|
|
// GetRemoteIP returns the IP from http request
|
|
func GetRemoteIP(r *http.Request) (ip string, err error) {
|
|
ip = r.Header.Get("X-REAL-IP")
|
|
if net.ParseIP(ip) != nil {
|
|
return
|
|
}
|
|
for _, ip = range strings.Split(r.Header.Get("X-FORWARDED-FOR"), FieldsSep) {
|
|
if net.ParseIP(ip) != nil {
|
|
return
|
|
}
|
|
}
|
|
if ip, _, err = net.SplitHostPort(r.RemoteAddr); err != nil {
|
|
return
|
|
}
|
|
if net.ParseIP(ip) != nil {
|
|
return
|
|
}
|
|
ip = EmptyString
|
|
err = fmt.Errorf("no valid ip found")
|
|
return
|
|
}
|
|
|
|
func DecodeServerRequest(r io.Reader) (req *serverRequest, err error) {
|
|
req = new(serverRequest)
|
|
err = json.NewDecoder(r).Decode(req)
|
|
return
|
|
}
|
|
|
|
// NewServerRequest used in registrarc tests
|
|
func NewServerRequest(method string, params, id json.RawMessage) *serverRequest {
|
|
return &serverRequest{
|
|
Method: method,
|
|
Params: ¶ms,
|
|
Id: &id,
|
|
}
|
|
}
|
|
|
|
type serverRequest struct {
|
|
Method string `json:"method"`
|
|
Params *json.RawMessage `json:"params"`
|
|
Id *json.RawMessage `json:"id"`
|
|
}
|
|
|
|
func WriteServerResponse(w io.Writer, id *json.RawMessage, result, err any) error {
|
|
return json.NewEncoder(w).Encode(
|
|
serverResponse{
|
|
Id: id,
|
|
Result: result,
|
|
Error: err,
|
|
})
|
|
}
|
|
|
|
type serverResponse struct {
|
|
Id *json.RawMessage `json:"id"`
|
|
Result any `json:"result"`
|
|
Error any `json:"error"`
|
|
}
|