homebox/backend/app/api/v1/controller.go

50 lines
1.1 KiB
Go
Raw Normal View History

2022-08-30 02:30:36 +00:00
package v1
import (
2022-09-04 02:42:03 +00:00
"net/http"
2022-08-30 02:40:54 +00:00
"github.com/hay-kot/content/backend/internal/services"
2022-09-04 02:42:03 +00:00
"github.com/hay-kot/content/backend/internal/types"
"github.com/hay-kot/content/backend/pkgs/server"
2022-08-30 02:30:36 +00:00
)
type V1Controller struct {
svc *services.AllServices
}
func BaseUrlFunc(prefix string) func(s string) string {
v1Base := prefix + "/v1"
prefixFunc := func(s string) string {
return v1Base + s
}
return prefixFunc
}
2022-09-03 18:38:35 +00:00
func NewControllerV1(svc *services.AllServices) *V1Controller {
2022-08-30 02:30:36 +00:00
ctrl := &V1Controller{
svc: svc,
}
return ctrl
}
2022-09-04 02:42:03 +00:00
type ReadyFunc func() bool
// HandleBase godoc
// @Summary Retrieves the basic information about the API
// @Tags Base
// @Produce json
// @Success 200 {object} types.ApiSummary
// @Router /v1/status [GET]
func (ctrl *V1Controller) HandleBase(ready ReadyFunc, versions ...string) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
server.Respond(w, http.StatusOK, types.ApiSummary{
Healthy: ready(),
Versions: versions,
Title: "Go API Template",
Message: "Welcome to the Go API Template Application!",
})
}
}