2022-08-30 02:30:36 +00:00
|
|
|
package v1
|
|
|
|
|
|
|
|
import (
|
2022-09-04 02:42:03 +00:00
|
|
|
"net/http"
|
|
|
|
|
2022-09-24 19:33:38 +00:00
|
|
|
"github.com/hay-kot/homebox/backend/internal/services"
|
|
|
|
"github.com/hay-kot/homebox/backend/internal/types"
|
|
|
|
"github.com/hay-kot/homebox/backend/pkgs/server"
|
2022-08-30 02:30:36 +00:00
|
|
|
)
|
|
|
|
|
2022-09-24 19:33:38 +00:00
|
|
|
func WithMaxUploadSize(maxUploadSize int64) func(*V1Controller) {
|
|
|
|
return func(ctrl *V1Controller) {
|
|
|
|
ctrl.maxUploadSize = maxUploadSize
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 02:30:36 +00:00
|
|
|
type V1Controller struct {
|
2022-09-24 19:33:38 +00:00
|
|
|
svc *services.AllServices
|
|
|
|
maxUploadSize int64
|
2022-08-30 02:30:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func BaseUrlFunc(prefix string) func(s string) string {
|
|
|
|
v1Base := prefix + "/v1"
|
|
|
|
prefixFunc := func(s string) string {
|
|
|
|
return v1Base + s
|
|
|
|
}
|
|
|
|
|
|
|
|
return prefixFunc
|
|
|
|
}
|
|
|
|
|
2022-09-24 19:33:38 +00:00
|
|
|
func NewControllerV1(svc *services.AllServices, options ...func(*V1Controller)) *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]
|
2022-09-14 04:06:07 +00:00
|
|
|
func (ctrl *V1Controller) HandleBase(ready ReadyFunc, build types.Build) http.HandlerFunc {
|
2022-09-04 02:42:03 +00:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
server.Respond(w, http.StatusOK, types.ApiSummary{
|
2022-09-14 04:06:07 +00:00
|
|
|
Healthy: ready(),
|
|
|
|
Title: "Go API Template",
|
|
|
|
Message: "Welcome to the Go API Template Application!",
|
|
|
|
Build: build,
|
2022-09-04 02:42:03 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|