mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-18 07:24:31 +01:00
- These changes makes the API incombatible with previous versions - Added new types for error handling, success responses, and health checks. - Updated health check logic to utilize the new types for better clarity and structure. - Refactored existing handlers to improve response consistency and error handling. - Updated Makefile to include a new target for generating API types from Swagger. - Updated "new agent" API to respond an encrypted cert pair
56 lines
1.5 KiB
Go
56 lines
1.5 KiB
Go
package v1
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
config "github.com/yusing/go-proxy/internal/config/types"
|
|
"github.com/yusing/go-proxy/internal/net/gphttp/httpheaders"
|
|
"github.com/yusing/go-proxy/internal/net/gphttp/websocket"
|
|
"github.com/yusing/go-proxy/internal/types"
|
|
"github.com/yusing/go-proxy/internal/utils/strutils"
|
|
)
|
|
|
|
type StatsResponse struct {
|
|
Proxies ProxyStats `json:"proxies"`
|
|
Uptime string `json:"uptime"`
|
|
} // @name StatsResponse
|
|
|
|
type ProxyStats struct {
|
|
Total uint16 `json:"total"`
|
|
ReverseProxies types.RouteStats `json:"reverse_proxies"`
|
|
Streams types.RouteStats `json:"streams"`
|
|
Providers map[string]types.ProviderStats `json:"providers"`
|
|
} // @name ProxyStats
|
|
|
|
// @x-id "stats"
|
|
// @BasePath /api/v1
|
|
// @Summary Get GoDoxy stats
|
|
// @Description Get stats
|
|
// @Tags v1,websocket
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200 {object} StatsResponse
|
|
// @Failure 403 {object} apitypes.ErrorResponse
|
|
// @Failure 500 {object} apitypes.ErrorResponse
|
|
// @Router /stats [get]
|
|
func Stats(c *gin.Context) {
|
|
cfg := config.GetInstance()
|
|
getStats := func() (any, error) {
|
|
return map[string]any{
|
|
"proxies": cfg.Statistics(),
|
|
"uptime": strutils.FormatDuration(time.Since(startTime)),
|
|
}, nil
|
|
}
|
|
|
|
if httpheaders.IsWebsocket(c.Request.Header) {
|
|
websocket.PeriodicWrite(c, time.Second, getStats)
|
|
} else {
|
|
stats, _ := getStats()
|
|
c.JSON(http.StatusOK, stats)
|
|
}
|
|
}
|
|
|
|
var startTime = time.Now()
|