mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-19 15:54:14 +01:00
- Changed the response type of the health endpoint to use a new HealthMap type for better clarity. - Updated the health information retrieval method to GetHealthInfoWithoutDetail for improved accuracy in the response. - Adjusted Swagger documentation to reflect the new response structure.
42 lines
1.2 KiB
Go
42 lines
1.2 KiB
Go
package v1
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
entrypoint "github.com/yusing/godoxy/internal/entrypoint/types"
|
|
"github.com/yusing/godoxy/internal/types"
|
|
"github.com/yusing/goutils/apitypes"
|
|
"github.com/yusing/goutils/http/httpheaders"
|
|
"github.com/yusing/goutils/http/websocket"
|
|
)
|
|
|
|
type HealthMap = map[string]types.HealthInfoWithoutDetail // @name HealthMap
|
|
|
|
// @x-id "health"
|
|
// @BasePath /api/v1
|
|
// @Summary Get routes health info
|
|
// @Description Get health info by route name
|
|
// @Tags v1,websocket
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Success 200 {object} HealthMap "Health info by route name"
|
|
// @Failure 403 {object} apitypes.ErrorResponse
|
|
// @Failure 500 {object} apitypes.ErrorResponse
|
|
// @Router /health [get]
|
|
func Health(c *gin.Context) {
|
|
ep := entrypoint.FromCtx(c.Request.Context())
|
|
if ep == nil { // impossible, but just in case
|
|
c.JSON(http.StatusInternalServerError, apitypes.Error("entrypoint not initialized"))
|
|
return
|
|
}
|
|
if httpheaders.IsWebsocket(c.Request.Header) {
|
|
websocket.PeriodicWrite(c, 1*time.Second, func() (any, error) {
|
|
return ep.GetHealthInfoWithoutDetail(), nil
|
|
})
|
|
} else {
|
|
c.JSON(http.StatusOK, ep.GetHealthInfoWithoutDetail())
|
|
}
|
|
}
|