mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-17 14:18:43 +00:00
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
|
package base
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/hay-kot/git-web-template/backend/internal/types"
|
||
|
"github.com/hay-kot/git-web-template/backend/pkgs/logger"
|
||
|
"github.com/hay-kot/git-web-template/backend/pkgs/server"
|
||
|
)
|
||
|
|
||
|
type ReadyFunc func() bool
|
||
|
|
||
|
type BaseController struct {
|
||
|
log *logger.Logger
|
||
|
svr *server.Server
|
||
|
}
|
||
|
|
||
|
func NewBaseController(log *logger.Logger, svr *server.Server) *BaseController {
|
||
|
h := &BaseController{
|
||
|
log: log,
|
||
|
svr: svr,
|
||
|
}
|
||
|
return h
|
||
|
}
|
||
|
|
||
|
// HandleBase godoc
|
||
|
// @Summary Retrieves the basic information about the API
|
||
|
// @Tags Base
|
||
|
// @Produce json
|
||
|
// @Success 200 {object} server.Result{item=types.ApiSummary}
|
||
|
// @Router /status [GET]
|
||
|
func (ctrl *BaseController) HandleBase(ready ReadyFunc, versions ...string) http.HandlerFunc {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
data := types.ApiSummary{
|
||
|
Healthy: ready(),
|
||
|
Versions: versions,
|
||
|
Title: "Go API Template",
|
||
|
Message: "Welcome to the Go API Template Application!",
|
||
|
}
|
||
|
|
||
|
err := server.Respond(w, http.StatusOK, server.Wrap(data))
|
||
|
|
||
|
if err != nil {
|
||
|
ctrl.log.Error(err, nil)
|
||
|
server.RespondInternalServerError(w)
|
||
|
}
|
||
|
}
|
||
|
}
|