|
|
@ -28,13 +28,11 @@ import (
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type GeneralResponse struct {
|
|
|
|
type GeneralResponse struct {
|
|
|
|
Code int64 `json:"code"`
|
|
|
|
Code int
|
|
|
|
Msg string `json:"msg"`
|
|
|
|
Msg string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ServerInfoResp struct {
|
|
|
|
type ServerInfoResp struct {
|
|
|
|
GeneralResponse
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Version string `json:"version"`
|
|
|
|
Version string `json:"version"`
|
|
|
|
BindPort int `json:"bind_port"`
|
|
|
|
BindPort int `json:"bind_port"`
|
|
|
|
BindUdpPort int `json:"bind_udp_port"`
|
|
|
|
BindUdpPort int `json:"bind_udp_port"`
|
|
|
@ -55,18 +53,19 @@ type ServerInfoResp struct {
|
|
|
|
|
|
|
|
|
|
|
|
// api/serverinfo
|
|
|
|
// api/serverinfo
|
|
|
|
func (svr *Service) ApiServerInfo(w http.ResponseWriter, r *http.Request) {
|
|
|
|
func (svr *Service) ApiServerInfo(w http.ResponseWriter, r *http.Request) {
|
|
|
|
var (
|
|
|
|
res := GeneralResponse{Code: 200}
|
|
|
|
buf []byte
|
|
|
|
|
|
|
|
res ServerInfoResp
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
defer func() {
|
|
|
|
log.Info("Http response [%s]: code [%d]", r.URL.Path, res.Code)
|
|
|
|
log.Info("Http response [%s]: code [%d]", r.URL.Path, res.Code)
|
|
|
|
|
|
|
|
w.WriteHeader(res.Code)
|
|
|
|
|
|
|
|
if len(res.Msg) > 0 {
|
|
|
|
|
|
|
|
w.Write([]byte(res.Msg))
|
|
|
|
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
|
|
log.Info("Http request: [%s]", r.URL.Path)
|
|
|
|
log.Info("Http request: [%s]", r.URL.Path)
|
|
|
|
cfg := &g.GlbServerCfg.ServerCommonConf
|
|
|
|
cfg := &g.GlbServerCfg.ServerCommonConf
|
|
|
|
serverStats := svr.statsCollector.GetServer()
|
|
|
|
serverStats := svr.statsCollector.GetServer()
|
|
|
|
res = ServerInfoResp{
|
|
|
|
svrResp := ServerInfoResp{
|
|
|
|
Version: version.Full(),
|
|
|
|
Version: version.Full(),
|
|
|
|
BindPort: cfg.BindPort,
|
|
|
|
BindPort: cfg.BindPort,
|
|
|
|
BindUdpPort: cfg.BindUdpPort,
|
|
|
|
BindUdpPort: cfg.BindUdpPort,
|
|
|
@ -85,8 +84,8 @@ func (svr *Service) ApiServerInfo(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ProxyTypeCounts: serverStats.ProxyTypeCounts,
|
|
|
|
ProxyTypeCounts: serverStats.ProxyTypeCounts,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
buf, _ = json.Marshal(&res)
|
|
|
|
buf, _ := json.Marshal(&svrResp)
|
|
|
|
w.Write(buf)
|
|
|
|
res.Msg = string(buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type BaseOutConf struct {
|
|
|
|
type BaseOutConf struct {
|
|
|
@ -155,31 +154,29 @@ type ProxyStatsInfo struct {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type GetProxyInfoResp struct {
|
|
|
|
type GetProxyInfoResp struct {
|
|
|
|
GeneralResponse
|
|
|
|
|
|
|
|
Proxies []*ProxyStatsInfo `json:"proxies"`
|
|
|
|
Proxies []*ProxyStatsInfo `json:"proxies"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// api/proxy/:type
|
|
|
|
// api/proxy/:type
|
|
|
|
func (svr *Service) ApiProxyByType(w http.ResponseWriter, r *http.Request) {
|
|
|
|
func (svr *Service) ApiProxyByType(w http.ResponseWriter, r *http.Request) {
|
|
|
|
var (
|
|
|
|
res := GeneralResponse{Code: 200}
|
|
|
|
buf []byte
|
|
|
|
|
|
|
|
res GetProxyInfoResp
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
params := mux.Vars(r)
|
|
|
|
params := mux.Vars(r)
|
|
|
|
proxyType := params["type"]
|
|
|
|
proxyType := params["type"]
|
|
|
|
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
defer func() {
|
|
|
|
log.Info("Http response [%s]: code [%d]", r.URL.Path, res.Code)
|
|
|
|
log.Info("Http response [%s]: code [%d]", r.URL.Path, res.Code)
|
|
|
|
log.Info(r.URL.Path)
|
|
|
|
w.WriteHeader(res.Code)
|
|
|
|
log.Info(r.URL.RawPath)
|
|
|
|
if len(res.Msg) > 0 {
|
|
|
|
|
|
|
|
w.Write([]byte(res.Msg))
|
|
|
|
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}()
|
|
|
|
log.Info("Http request: [%s]", r.URL.Path)
|
|
|
|
log.Info("Http request: [%s]", r.URL.Path)
|
|
|
|
|
|
|
|
|
|
|
|
res.Proxies = svr.getProxyStatsByType(proxyType)
|
|
|
|
proxyInfoResp := GetProxyInfoResp{}
|
|
|
|
|
|
|
|
proxyInfoResp.Proxies = svr.getProxyStatsByType(proxyType)
|
|
|
|
buf, _ = json.Marshal(&res)
|
|
|
|
|
|
|
|
w.Write(buf)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
buf, _ := json.Marshal(&proxyInfoResp)
|
|
|
|
|
|
|
|
res.Msg = string(buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (svr *Service) getProxyStatsByType(proxyType string) (proxyInfos []*ProxyStatsInfo) {
|
|
|
|
func (svr *Service) getProxyStatsByType(proxyType string) (proxyInfos []*ProxyStatsInfo) {
|
|
|
@ -215,8 +212,6 @@ func (svr *Service) getProxyStatsByType(proxyType string) (proxyInfos []*ProxySt
|
|
|
|
|
|
|
|
|
|
|
|
// Get proxy info by name.
|
|
|
|
// Get proxy info by name.
|
|
|
|
type GetProxyStatsResp struct {
|
|
|
|
type GetProxyStatsResp struct {
|
|
|
|
GeneralResponse
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Conf interface{} `json:"conf"`
|
|
|
|
Conf interface{} `json:"conf"`
|
|
|
|
TodayTrafficIn int64 `json:"today_traffic_in"`
|
|
|
|
TodayTrafficIn int64 `json:"today_traffic_in"`
|
|
|
@ -229,45 +224,50 @@ type GetProxyStatsResp struct {
|
|
|
|
|
|
|
|
|
|
|
|
// api/proxy/:type/:name
|
|
|
|
// api/proxy/:type/:name
|
|
|
|
func (svr *Service) ApiProxyByTypeAndName(w http.ResponseWriter, r *http.Request) {
|
|
|
|
func (svr *Service) ApiProxyByTypeAndName(w http.ResponseWriter, r *http.Request) {
|
|
|
|
var (
|
|
|
|
res := GeneralResponse{Code: 200}
|
|
|
|
buf []byte
|
|
|
|
|
|
|
|
res GetProxyStatsResp
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
params := mux.Vars(r)
|
|
|
|
params := mux.Vars(r)
|
|
|
|
proxyType := params["type"]
|
|
|
|
proxyType := params["type"]
|
|
|
|
name := params["name"]
|
|
|
|
name := params["name"]
|
|
|
|
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
defer func() {
|
|
|
|
log.Info("Http response [%s]: code [%d]", r.URL.Path, res.Code)
|
|
|
|
log.Info("Http response [%s]: code [%d]", r.URL.Path, res.Code)
|
|
|
|
|
|
|
|
w.WriteHeader(res.Code)
|
|
|
|
|
|
|
|
if len(res.Msg) > 0 {
|
|
|
|
|
|
|
|
w.Write([]byte(res.Msg))
|
|
|
|
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}()
|
|
|
|
log.Info("Http request: [%s]", r.URL.Path)
|
|
|
|
log.Info("Http request: [%s]", r.URL.Path)
|
|
|
|
|
|
|
|
|
|
|
|
res = svr.getProxyStatsByTypeAndName(proxyType, name)
|
|
|
|
proxyStatsResp := GetProxyStatsResp{}
|
|
|
|
|
|
|
|
proxyStatsResp, res.Code, res.Msg = svr.getProxyStatsByTypeAndName(proxyType, name)
|
|
|
|
|
|
|
|
if res.Code != 200 {
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
buf, _ = json.Marshal(&res)
|
|
|
|
buf, _ := json.Marshal(&proxyStatsResp)
|
|
|
|
w.Write(buf)
|
|
|
|
res.Msg = string(buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (svr *Service) getProxyStatsByTypeAndName(proxyType string, proxyName string) (proxyInfo GetProxyStatsResp) {
|
|
|
|
func (svr *Service) getProxyStatsByTypeAndName(proxyType string, proxyName string) (proxyInfo GetProxyStatsResp, code int, msg string) {
|
|
|
|
proxyInfo.Name = proxyName
|
|
|
|
proxyInfo.Name = proxyName
|
|
|
|
ps := svr.statsCollector.GetProxiesByTypeAndName(proxyType, proxyName)
|
|
|
|
ps := svr.statsCollector.GetProxiesByTypeAndName(proxyType, proxyName)
|
|
|
|
if ps == nil {
|
|
|
|
if ps == nil {
|
|
|
|
proxyInfo.Code = 1
|
|
|
|
code = 404
|
|
|
|
proxyInfo.Msg = "no proxy info found"
|
|
|
|
msg = "no proxy info found"
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
if pxy, ok := svr.pxyManager.GetByName(proxyName); ok {
|
|
|
|
if pxy, ok := svr.pxyManager.GetByName(proxyName); ok {
|
|
|
|
content, err := json.Marshal(pxy.GetConf())
|
|
|
|
content, err := json.Marshal(pxy.GetConf())
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
log.Warn("marshal proxy [%s] conf info error: %v", ps.Name, err)
|
|
|
|
log.Warn("marshal proxy [%s] conf info error: %v", ps.Name, err)
|
|
|
|
proxyInfo.Code = 2
|
|
|
|
code = 400
|
|
|
|
proxyInfo.Msg = "parse conf error"
|
|
|
|
msg = "parse conf error"
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
proxyInfo.Conf = getConfByType(ps.Type)
|
|
|
|
proxyInfo.Conf = getConfByType(ps.Type)
|
|
|
|
if err = json.Unmarshal(content, &proxyInfo.Conf); err != nil {
|
|
|
|
if err = json.Unmarshal(content, &proxyInfo.Conf); err != nil {
|
|
|
|
log.Warn("unmarshal proxy [%s] conf info error: %v", ps.Name, err)
|
|
|
|
log.Warn("unmarshal proxy [%s] conf info error: %v", ps.Name, err)
|
|
|
|
proxyInfo.Code = 2
|
|
|
|
code = 400
|
|
|
|
proxyInfo.Msg = "parse conf error"
|
|
|
|
msg = "parse conf error"
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
proxyInfo.Status = consts.Online
|
|
|
|
proxyInfo.Status = consts.Online
|
|
|
@ -286,36 +286,38 @@ func (svr *Service) getProxyStatsByTypeAndName(proxyType string, proxyName strin
|
|
|
|
|
|
|
|
|
|
|
|
// api/traffic/:name
|
|
|
|
// api/traffic/:name
|
|
|
|
type GetProxyTrafficResp struct {
|
|
|
|
type GetProxyTrafficResp struct {
|
|
|
|
GeneralResponse
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
TrafficIn []int64 `json:"traffic_in"`
|
|
|
|
TrafficIn []int64 `json:"traffic_in"`
|
|
|
|
TrafficOut []int64 `json:"traffic_out"`
|
|
|
|
TrafficOut []int64 `json:"traffic_out"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (svr *Service) ApiProxyTraffic(w http.ResponseWriter, r *http.Request) {
|
|
|
|
func (svr *Service) ApiProxyTraffic(w http.ResponseWriter, r *http.Request) {
|
|
|
|
var (
|
|
|
|
res := GeneralResponse{Code: 200}
|
|
|
|
buf []byte
|
|
|
|
|
|
|
|
res GetProxyTrafficResp
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
params := mux.Vars(r)
|
|
|
|
params := mux.Vars(r)
|
|
|
|
name := params["name"]
|
|
|
|
name := params["name"]
|
|
|
|
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
defer func() {
|
|
|
|
log.Info("Http response [%s]: code [%d]", r.URL.Path, res.Code)
|
|
|
|
log.Info("Http response [%s]: code [%d]", r.URL.Path, res.Code)
|
|
|
|
|
|
|
|
w.WriteHeader(res.Code)
|
|
|
|
|
|
|
|
if len(res.Msg) > 0 {
|
|
|
|
|
|
|
|
w.Write([]byte(res.Msg))
|
|
|
|
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}()
|
|
|
|
log.Info("Http request: [%s]", r.URL.Path)
|
|
|
|
log.Info("Http request: [%s]", r.URL.Path)
|
|
|
|
|
|
|
|
|
|
|
|
res.Name = name
|
|
|
|
trafficResp := GetProxyTrafficResp{}
|
|
|
|
|
|
|
|
trafficResp.Name = name
|
|
|
|
proxyTrafficInfo := svr.statsCollector.GetProxyTraffic(name)
|
|
|
|
proxyTrafficInfo := svr.statsCollector.GetProxyTraffic(name)
|
|
|
|
|
|
|
|
|
|
|
|
if proxyTrafficInfo == nil {
|
|
|
|
if proxyTrafficInfo == nil {
|
|
|
|
res.Code = 1
|
|
|
|
res.Code = 404
|
|
|
|
res.Msg = "no proxy info found"
|
|
|
|
res.Msg = "no proxy info found"
|
|
|
|
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
res.TrafficIn = proxyTrafficInfo.TrafficIn
|
|
|
|
trafficResp.TrafficIn = proxyTrafficInfo.TrafficIn
|
|
|
|
res.TrafficOut = proxyTrafficInfo.TrafficOut
|
|
|
|
trafficResp.TrafficOut = proxyTrafficInfo.TrafficOut
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
buf, _ = json.Marshal(&res)
|
|
|
|
buf, _ := json.Marshal(&res)
|
|
|
|
w.Write(buf)
|
|
|
|
res.Msg = string(buf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|