2022-08-29 18:30:36 -08:00
|
|
|
package v1
|
|
|
|
|
|
|
|
import (
|
2022-09-03 18:42:03 -08:00
|
|
|
"net/http"
|
|
|
|
|
2022-10-29 20:05:38 -08:00
|
|
|
"github.com/hay-kot/homebox/backend/internal/core/services"
|
|
|
|
"github.com/hay-kot/homebox/backend/internal/data/repo"
|
2023-03-20 20:32:10 -08:00
|
|
|
"github.com/hay-kot/safeserve/errchain"
|
|
|
|
"github.com/hay-kot/safeserve/server"
|
2022-08-29 18:30:36 -08:00
|
|
|
)
|
|
|
|
|
2023-03-20 20:32:10 -08:00
|
|
|
type Wrapped struct {
|
|
|
|
Item interface{} `json:"item"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func Wrap(v any) Wrapped {
|
|
|
|
return Wrapped{Item: v}
|
|
|
|
}
|
|
|
|
|
2022-09-24 11:33:38 -08:00
|
|
|
func WithMaxUploadSize(maxUploadSize int64) func(*V1Controller) {
|
|
|
|
return func(ctrl *V1Controller) {
|
|
|
|
ctrl.maxUploadSize = maxUploadSize
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-12 12:53:22 -08:00
|
|
|
func WithDemoStatus(demoStatus bool) func(*V1Controller) {
|
|
|
|
return func(ctrl *V1Controller) {
|
|
|
|
ctrl.isDemo = demoStatus
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-14 14:02:16 -08:00
|
|
|
func WithRegistration(allowRegistration bool) func(*V1Controller) {
|
|
|
|
return func(ctrl *V1Controller) {
|
|
|
|
ctrl.allowRegistration = allowRegistration
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-29 18:30:36 -08:00
|
|
|
type V1Controller struct {
|
2022-10-29 20:05:38 -08:00
|
|
|
repo *repo.AllRepos
|
2022-10-14 14:02:16 -08:00
|
|
|
svc *services.AllServices
|
|
|
|
maxUploadSize int64
|
|
|
|
isDemo bool
|
|
|
|
allowRegistration bool
|
2022-08-29 18:30:36 -08:00
|
|
|
}
|
|
|
|
|
2022-09-27 15:52:13 -08:00
|
|
|
type (
|
2022-10-16 18:50:44 -08:00
|
|
|
ReadyFunc func() bool
|
|
|
|
|
2022-09-27 15:52:13 -08:00
|
|
|
Build struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
Commit string `json:"commit"`
|
|
|
|
BuildTime string `json:"buildTime"`
|
|
|
|
}
|
|
|
|
|
|
|
|
ApiSummary struct {
|
2023-02-15 08:58:38 -09:00
|
|
|
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-09-27 15:52:13 -08:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2022-08-29 18:30:36 -08:00
|
|
|
func BaseUrlFunc(prefix string) func(s string) string {
|
2022-10-16 18:50:44 -08:00
|
|
|
return func(s string) string {
|
|
|
|
return prefix + "/v1" + s
|
2022-08-29 18:30:36 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-29 20:05:38 -08:00
|
|
|
func NewControllerV1(svc *services.AllServices, repos *repo.AllRepos, options ...func(*V1Controller)) *V1Controller {
|
2022-08-29 18:30:36 -08:00
|
|
|
ctrl := &V1Controller{
|
2022-10-29 20:05:38 -08:00
|
|
|
repo: repos,
|
2022-10-14 14:02:16 -08:00
|
|
|
svc: svc,
|
|
|
|
allowRegistration: true,
|
2022-08-29 18:30:36 -08:00
|
|
|
}
|
|
|
|
|
2022-10-12 12:53:22 -08:00
|
|
|
for _, opt := range options {
|
|
|
|
opt(ctrl)
|
|
|
|
}
|
|
|
|
|
2022-08-29 18:30:36 -08:00
|
|
|
return ctrl
|
|
|
|
}
|
2022-09-03 18:42:03 -08:00
|
|
|
|
|
|
|
// HandleBase godoc
|
2023-03-06 21:18:58 -09:00
|
|
|
//
|
|
|
|
// @Summary Application Info
|
|
|
|
// @Tags Base
|
|
|
|
// @Produce json
|
|
|
|
// @Success 200 {object} ApiSummary
|
|
|
|
// @Router /v1/status [GET]
|
2023-03-20 20:32:10 -08:00
|
|
|
func (ctrl *V1Controller) HandleBase(ready ReadyFunc, build Build) errchain.HandlerFunc {
|
2022-10-29 18:15:35 -08:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) error {
|
2023-03-20 20:32:10 -08:00
|
|
|
return server.JSON(w, http.StatusOK, ApiSummary{
|
2023-02-15 08:58:38 -09:00
|
|
|
Healthy: ready(),
|
2023-03-06 21:18:58 -09:00
|
|
|
Title: "Homebox",
|
|
|
|
Message: "Track, Manage, and Organize your shit",
|
2023-02-15 08:58:38 -09:00
|
|
|
Build: build,
|
|
|
|
Demo: ctrl.isDemo,
|
|
|
|
AllowRegistration: ctrl.allowRegistration,
|
2022-09-03 18:42:03 -08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|