2018-06-11 13:13:19 +00:00
|
|
|
package settings
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-09-10 10:01:38 +00:00
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
|
|
"github.com/portainer/libhttp/response"
|
2018-06-11 13:13:19 +00:00
|
|
|
)
|
|
|
|
|
2021-02-23 03:21:39 +00:00
|
|
|
// @id SettingsInspect
|
|
|
|
// @summary Retrieve Portainer settings
|
|
|
|
// @description Retrieve Portainer settings.
|
|
|
|
// @description **Access policy**: administrator
|
|
|
|
// @tags settings
|
|
|
|
// @security jwt
|
|
|
|
// @produce json
|
|
|
|
// @success 200 {object} portainer.Settings "Success"
|
|
|
|
// @failure 500 "Server error"
|
|
|
|
// @router /settings [get]
|
2018-06-11 13:13:19 +00:00
|
|
|
func (handler *Handler) settingsInspect(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
2020-05-20 05:23:15 +00:00
|
|
|
settings, err := handler.DataStore.Settings().Settings()
|
2018-06-11 13:13:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to retrieve the settings from the database", err}
|
|
|
|
}
|
|
|
|
|
2018-11-23 19:40:56 +00:00
|
|
|
hideFields(settings)
|
2018-06-11 13:13:19 +00:00
|
|
|
return response.JSON(w, settings)
|
|
|
|
}
|