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

95 lines
2.3 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"
"github.com/hay-kot/homebox/backend/internal/core/services"
"github.com/hay-kot/homebox/backend/internal/data/repo"
"github.com/hay-kot/homebox/backend/pkgs/server"
2022-08-30 02:30:36 +00:00
)
func WithMaxUploadSize(maxUploadSize int64) func(*V1Controller) {
return func(ctrl *V1Controller) {
ctrl.maxUploadSize = maxUploadSize
}
}
func WithDemoStatus(demoStatus bool) func(*V1Controller) {
return func(ctrl *V1Controller) {
ctrl.isDemo = demoStatus
}
}
2022-10-14 22:02:16 +00:00
func WithRegistration(allowRegistration bool) func(*V1Controller) {
return func(ctrl *V1Controller) {
ctrl.allowRegistration = allowRegistration
}
}
2022-08-30 02:30:36 +00:00
type V1Controller struct {
repo *repo.AllRepos
2022-10-14 22:02:16 +00:00
svc *services.AllServices
maxUploadSize int64
isDemo bool
allowRegistration bool
2022-08-30 02:30:36 +00:00
}
type (
ReadyFunc func() bool
Build struct {
Version string `json:"version"`
Commit string `json:"commit"`
BuildTime string `json:"buildTime"`
}
ApiSummary struct {
Healthy bool `json:"health"`
Versions []string `json:"versions"`
Title string `json:"title"`
Message string `json:"message"`
Build Build `json:"build"`
Demo bool `json:"demo"`
AllowRegistration bool `json:"allowRegistration"`
}
)
2022-08-30 02:30:36 +00:00
func BaseUrlFunc(prefix string) func(s string) string {
return func(s string) string {
return prefix + "/v1" + s
2022-08-30 02:30:36 +00:00
}
}
func NewControllerV1(svc *services.AllServices, repos *repo.AllRepos, options ...func(*V1Controller)) *V1Controller {
2022-08-30 02:30:36 +00:00
ctrl := &V1Controller{
repo: repos,
2022-10-14 22:02:16 +00:00
svc: svc,
allowRegistration: true,
2022-08-30 02:30:36 +00:00
}
for _, opt := range options {
opt(ctrl)
}
2022-08-30 02:30:36 +00:00
return ctrl
}
2022-09-04 02:42:03 +00:00
// HandleBase godoc
// @Summary Retrieves the basic information about the API
// @Tags Base
// @Produce json
// @Success 200 {object} ApiSummary
// @Router /v1/status [GET]
func (ctrl *V1Controller) HandleBase(ready ReadyFunc, build Build) server.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) error {
return server.Respond(w, http.StatusOK, ApiSummary{
Healthy: ready(),
Title: "Go API Template",
Message: "Welcome to the Go API Template Application!",
Build: build,
Demo: ctrl.isDemo,
AllowRegistration: ctrl.allowRegistration,
2022-09-04 02:42:03 +00:00
})
}
}