forked from mirrors/homebox
23b5892aef
* introduce scaffold for new models * wip: shoutrrr wrapper (may remove) * update schema files * gen: ent code * gen: migrations * go mod tidy * add group_id to notifier * db migration * new mapper helpers * notifier repo * introduce experimental adapter pattern for hdlrs * refactor adapters to fit more common use cases * new routes for notifiers * update errors to fix validation panic * go tidy * reverse checkbox label display * wip: notifiers UI * use badges instead of text * improve documentation * add scaffold schema reference * remove notifier service * refactor schema folder * support group edges via scaffold * delete test file * include link to API docs * audit and update documentation + improve format * refactor schema edges * refactor * add custom validator * set validate + order fields by name * fix failing tests
69 lines
2.2 KiB
Go
69 lines
2.2 KiB
Go
package v1
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/hay-kot/homebox/backend/internal/core/services"
|
|
"github.com/hay-kot/homebox/backend/internal/sys/validate"
|
|
"github.com/hay-kot/homebox/backend/pkgs/server"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
type ActionAmountResult struct {
|
|
Completed int `json:"completed"`
|
|
}
|
|
|
|
func actionHandlerFactory(ref string, fn func(context.Context, uuid.UUID) (int, error)) server.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) error {
|
|
ctx := services.NewContext(r.Context())
|
|
|
|
totalCompleted, err := fn(ctx, ctx.GID)
|
|
if err != nil {
|
|
log.Err(err).Str("action_ref", ref).Msg("failed to run action")
|
|
return validate.NewRequestError(err, http.StatusInternalServerError)
|
|
}
|
|
|
|
return server.Respond(w, http.StatusOK, ActionAmountResult{Completed: totalCompleted})
|
|
}
|
|
}
|
|
|
|
// HandleEnsureAssetID godoc
|
|
//
|
|
// @Summary Ensure Asset IDs
|
|
// @Description Ensures all items in the database have an asset ID
|
|
// @Tags Actions
|
|
// @Produce json
|
|
// @Success 200 {object} ActionAmountResult
|
|
// @Router /v1/actions/ensure-asset-ids [Post]
|
|
// @Security Bearer
|
|
func (ctrl *V1Controller) HandleEnsureAssetID() server.HandlerFunc {
|
|
return actionHandlerFactory("ensure asset IDs", ctrl.svc.Items.EnsureAssetID)
|
|
}
|
|
|
|
// HandleEnsureImportRefs godoc
|
|
//
|
|
// @Summary Ensures Import Refs
|
|
// @Description Ensures all items in the database have an import ref
|
|
// @Tags Actions
|
|
// @Produce json
|
|
// @Success 200 {object} ActionAmountResult
|
|
// @Router /v1/actions/ensure-import-refs [Post]
|
|
// @Security Bearer
|
|
func (ctrl *V1Controller) HandleEnsureImportRefs() server.HandlerFunc {
|
|
return actionHandlerFactory("ensure import refs", ctrl.svc.Items.EnsureImportRef)
|
|
}
|
|
|
|
// HandleItemDateZeroOut godoc
|
|
//
|
|
// @Summary Zero Out Time Fields
|
|
// @Description Resets all item date fields to the beginning of the day
|
|
// @Tags Actions
|
|
// @Produce json
|
|
// @Success 200 {object} ActionAmountResult
|
|
// @Router /v1/actions/zero-item-time-fields [Post]
|
|
// @Security Bearer
|
|
func (ctrl *V1Controller) HandleItemDateZeroOut() server.HandlerFunc {
|
|
return actionHandlerFactory("zero out date time", ctrl.repo.Items.ZeroOutTimeFields)
|
|
}
|