mirror of https://github.com/portainer/portainer
120 lines
5.6 KiB
Go
120 lines
5.6 KiB
Go
package settings
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/pkg/featureflags"
|
|
httperror "github.com/portainer/portainer/pkg/libhttp/error"
|
|
"github.com/portainer/portainer/pkg/libhttp/response"
|
|
)
|
|
|
|
type publicSettingsResponse struct {
|
|
// URL to a logo that will be displayed on the login page as well as on top of the sidebar. Will use default Portainer logo when value is empty string
|
|
LogoURL string `json:"LogoURL" example:"https://mycompany.mydomain.tld/logo.png"`
|
|
// Active authentication method for the Portainer instance. Valid values are: 1 for internal, 2 for LDAP, or 3 for oauth
|
|
AuthenticationMethod portainer.AuthenticationMethod `json:"AuthenticationMethod" example:"1"`
|
|
// The minimum required length for a password of any user when using internal auth mode
|
|
RequiredPasswordLength int `json:"RequiredPasswordLength" example:"1"`
|
|
// Deployment options for encouraging deployment as code
|
|
GlobalDeploymentOptions portainer.GlobalDeploymentOptions `json:"GlobalDeploymentOptions"`
|
|
// Show the Kompose build option (discontinued in 2.18)
|
|
ShowKomposeBuildOption bool `json:"ShowKomposeBuildOption" example:"false"`
|
|
// Whether edge compute features are enabled
|
|
EnableEdgeComputeFeatures bool `json:"EnableEdgeComputeFeatures" example:"true"`
|
|
// Supported feature flags
|
|
Features map[featureflags.Feature]bool `json:"Features"`
|
|
// The URL used for oauth login
|
|
OAuthLoginURI string `json:"OAuthLoginURI" example:"https://gitlab.com/oauth"`
|
|
// The URL used for oauth logout
|
|
OAuthLogoutURI string `json:"OAuthLogoutURI" example:"https://gitlab.com/oauth/logout"`
|
|
// Whether telemetry is enabled
|
|
EnableTelemetry bool `json:"EnableTelemetry" example:"true"`
|
|
// The expiry of a Kubeconfig
|
|
KubeconfigExpiry string `example:"24h" default:"0"`
|
|
// Whether team sync is enabled
|
|
TeamSync bool `json:"TeamSync" example:"true"`
|
|
|
|
// Whether FDO is enabled
|
|
IsFDOEnabled bool
|
|
// Whether AMT is enabled
|
|
IsAMTEnabled bool
|
|
|
|
Edge struct {
|
|
// The ping interval for edge agent - used in edge async mode [seconds]
|
|
PingInterval int `json:"PingInterval" example:"60"`
|
|
// The snapshot interval for edge agent - used in edge async mode [seconds]
|
|
SnapshotInterval int `json:"SnapshotInterval" example:"60"`
|
|
// The command list interval for edge agent - used in edge async mode [seconds]
|
|
CommandInterval int `json:"CommandInterval" example:"60"`
|
|
// The check in interval for edge agent (in seconds) - used in non async mode [seconds]
|
|
CheckinInterval int `example:"60"`
|
|
}
|
|
|
|
IsDockerDesktopExtension bool `json:"IsDockerDesktopExtension" example:"false"`
|
|
}
|
|
|
|
// @id SettingsPublic
|
|
// @summary Retrieve Portainer public settings
|
|
// @description Retrieve public settings. Returns a small set of settings that are not reserved to administrators only.
|
|
// @description **Access policy**: public
|
|
// @tags settings
|
|
// @produce json
|
|
// @success 200 {object} publicSettingsResponse "Success"
|
|
// @failure 500 "Server error"
|
|
// @router /settings/public [get]
|
|
func (handler *Handler) settingsPublic(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
settings, err := handler.DataStore.Settings().Settings()
|
|
if err != nil {
|
|
return httperror.InternalServerError("Unable to retrieve the settings from the database", err)
|
|
}
|
|
|
|
publicSettings := generatePublicSettings(settings)
|
|
return response.JSON(w, publicSettings)
|
|
}
|
|
|
|
func generatePublicSettings(appSettings *portainer.Settings) *publicSettingsResponse {
|
|
publicSettings := &publicSettingsResponse{
|
|
LogoURL: appSettings.LogoURL,
|
|
AuthenticationMethod: appSettings.AuthenticationMethod,
|
|
RequiredPasswordLength: appSettings.InternalAuthSettings.RequiredPasswordLength,
|
|
EnableEdgeComputeFeatures: appSettings.EnableEdgeComputeFeatures,
|
|
GlobalDeploymentOptions: appSettings.GlobalDeploymentOptions,
|
|
ShowKomposeBuildOption: appSettings.ShowKomposeBuildOption,
|
|
EnableTelemetry: appSettings.EnableTelemetry,
|
|
KubeconfigExpiry: appSettings.KubeconfigExpiry,
|
|
Features: featureflags.FeatureFlags(),
|
|
IsFDOEnabled: appSettings.EnableEdgeComputeFeatures && appSettings.FDOConfiguration.Enabled,
|
|
IsAMTEnabled: appSettings.EnableEdgeComputeFeatures && appSettings.OpenAMTConfiguration.Enabled,
|
|
}
|
|
|
|
publicSettings.Edge.PingInterval = appSettings.Edge.PingInterval
|
|
publicSettings.Edge.SnapshotInterval = appSettings.Edge.SnapshotInterval
|
|
publicSettings.Edge.CommandInterval = appSettings.Edge.CommandInterval
|
|
publicSettings.Edge.CheckinInterval = appSettings.EdgeAgentCheckinInterval
|
|
|
|
publicSettings.IsDockerDesktopExtension = appSettings.IsDockerDesktopExtension
|
|
|
|
//if OAuth authentication is on, compose the related fields from application settings
|
|
if publicSettings.AuthenticationMethod == portainer.AuthenticationOAuth {
|
|
publicSettings.OAuthLogoutURI = appSettings.OAuthSettings.LogoutURI
|
|
publicSettings.OAuthLoginURI = fmt.Sprintf("%s?response_type=code&client_id=%s&redirect_uri=%s&scope=%s",
|
|
appSettings.OAuthSettings.AuthorizationURI,
|
|
appSettings.OAuthSettings.ClientID,
|
|
appSettings.OAuthSettings.RedirectURI,
|
|
appSettings.OAuthSettings.Scopes)
|
|
//control prompt=login param according to the SSO setting
|
|
if !appSettings.OAuthSettings.SSO {
|
|
publicSettings.OAuthLoginURI += "&prompt=login"
|
|
}
|
|
}
|
|
//if LDAP authentication is on, compose the related fields from application settings
|
|
if publicSettings.AuthenticationMethod == portainer.AuthenticationLDAP && appSettings.LDAPSettings.GroupSearchSettings != nil {
|
|
if len(appSettings.LDAPSettings.GroupSearchSettings) > 0 {
|
|
publicSettings.TeamSync = len(appSettings.LDAPSettings.GroupSearchSettings[0].GroupBaseDN) > 0
|
|
}
|
|
}
|
|
return publicSettings
|
|
}
|