mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-11-24 17:07:00 +02:00
79 lines
2.0 KiB
Go
79 lines
2.0 KiB
Go
package apis
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/labstack/echo/v5"
|
|
"github.com/pocketbase/pocketbase/core"
|
|
"github.com/pocketbase/pocketbase/forms"
|
|
"github.com/pocketbase/pocketbase/tools/rest"
|
|
)
|
|
|
|
// BindSettingsApi registers the settings api endpoints.
|
|
func BindSettingsApi(app core.App, rg *echo.Group) {
|
|
api := settingsApi{app: app}
|
|
|
|
subGroup := rg.Group("/settings", ActivityLogger(app), RequireAdminAuth())
|
|
subGroup.GET("", api.list)
|
|
subGroup.PATCH("", api.set)
|
|
}
|
|
|
|
type settingsApi struct {
|
|
app core.App
|
|
}
|
|
|
|
func (api *settingsApi) list(c echo.Context) error {
|
|
settings, err := api.app.Settings().RedactClone()
|
|
if err != nil {
|
|
return rest.NewBadRequestError("", err)
|
|
}
|
|
|
|
event := &core.SettingsListEvent{
|
|
HttpContext: c,
|
|
RedactedSettings: settings,
|
|
}
|
|
|
|
return api.app.OnSettingsListRequest().Trigger(event, func(e *core.SettingsListEvent) error {
|
|
return e.HttpContext.JSON(http.StatusOK, e.RedactedSettings)
|
|
})
|
|
}
|
|
|
|
func (api *settingsApi) set(c echo.Context) error {
|
|
form := forms.NewSettingsUpsert(api.app)
|
|
|
|
// load request
|
|
if err := c.Bind(form); err != nil {
|
|
return rest.NewBadRequestError("An error occurred while reading the submitted data.", err)
|
|
}
|
|
|
|
event := &core.SettingsUpdateEvent{
|
|
HttpContext: c,
|
|
OldSettings: api.app.Settings(),
|
|
NewSettings: form.Settings,
|
|
}
|
|
|
|
// update the settings
|
|
submitErr := form.Submit(func(next forms.InterceptorNextFunc) forms.InterceptorNextFunc {
|
|
return func() error {
|
|
return api.app.OnSettingsBeforeUpdateRequest().Trigger(event, func(e *core.SettingsUpdateEvent) error {
|
|
if err := next(); err != nil {
|
|
return rest.NewBadRequestError("An error occurred while submitting the form.", err)
|
|
}
|
|
|
|
redactedSettings, err := api.app.Settings().RedactClone()
|
|
if err != nil {
|
|
return rest.NewBadRequestError("", err)
|
|
}
|
|
|
|
return e.HttpContext.JSON(http.StatusOK, redactedSettings)
|
|
})
|
|
}
|
|
})
|
|
|
|
if submitErr == nil {
|
|
api.app.OnSettingsAfterUpdateRequest().Trigger(event)
|
|
}
|
|
|
|
return submitErr
|
|
}
|