|
|
|
@ -32,44 +32,44 @@ func (s *SAMLStrategy) GetProviderConfig(_ context.Context, provider string) (ma |
|
|
|
|
func (s *SAMLStrategy) loadSAMLSettings() map[string]any { |
|
|
|
|
section := s.settingsProvider.Section("auth.saml") |
|
|
|
|
result := map[string]any{ |
|
|
|
|
"allow_idp_initiated": section.KeyValue("allow_idp_initiated").MustBool(false), |
|
|
|
|
"allow_sign_up": section.KeyValue("allow_sign_up").MustBool(false), |
|
|
|
|
"allowed_organizations": section.KeyValue("allowed_organizations").MustString(""), |
|
|
|
|
"assertion_attribute_email": section.KeyValue("assertion_attribute_email").MustString(""), |
|
|
|
|
"assertion_attribute_groups": section.KeyValue("assertion_attribute_groups").MustString(""), |
|
|
|
|
"assertion_attribute_login": section.KeyValue("assertion_attribute_login").MustString(""), |
|
|
|
|
"assertion_attribute_name": section.KeyValue("assertion_attribute_name").MustString(""), |
|
|
|
|
"assertion_attribute_org": section.KeyValue("assertion_attribute_org").MustString(""), |
|
|
|
|
"assertion_attribute_role": section.KeyValue("assertion_attribute_role").MustString(""), |
|
|
|
|
"auto_login": section.KeyValue("auto_login").MustBool(false), |
|
|
|
|
"certificate": section.KeyValue("certificate").MustString(""), |
|
|
|
|
"certificate_path": section.KeyValue("certificate_path").MustString(""), |
|
|
|
|
"client_id": section.KeyValue("client_id").MustString(""), |
|
|
|
|
"client_secret": section.KeyValue("client_secret").MustString(""), |
|
|
|
|
"enabled": section.KeyValue("enabled").MustBool(false), |
|
|
|
|
"entity_id": section.KeyValue("entity_id").MustString(""), |
|
|
|
|
"external_uid_assertion_name": section.KeyValue("external_uid_assertion_name").MustString(""), |
|
|
|
|
"force_use_graph_api": section.KeyValue("force_use_graph_api").MustBool(false), |
|
|
|
|
"idp_metadata": section.KeyValue("idp_metadata").MustString(""), |
|
|
|
|
"idp_metadata_path": section.KeyValue("idp_metadata_path").MustString(""), |
|
|
|
|
"idp_metadata_url": section.KeyValue("idp_metadata_url").MustString(""), |
|
|
|
|
"max_issue_delay": section.KeyValue("max_issue_delay").MustDuration(90 * time.Second), |
|
|
|
|
"metadata_valid_duration": section.KeyValue("metadata_valid_duration").MustDuration(48 * time.Hour), |
|
|
|
|
"name": section.KeyValue("name").MustString("SAML"), |
|
|
|
|
"name_id_format": section.KeyValue("name_id_format").MustString(""), |
|
|
|
|
"org_mapping": section.KeyValue("org_mapping").MustString(""), |
|
|
|
|
"private_key": section.KeyValue("private_key").MustString(""), |
|
|
|
|
"private_key_path": section.KeyValue("private_key_path").MustString(""), |
|
|
|
|
"relay_state": section.KeyValue("relay_state").MustString(""), |
|
|
|
|
"role_values_admin": section.KeyValue("role_values_admin").MustString(""), |
|
|
|
|
"role_values_editor": section.KeyValue("role_values_editor").MustString(""), |
|
|
|
|
"role_values_grafana_admin": section.KeyValue("role_values_grafana_admin").MustString(""), |
|
|
|
|
"role_values_none": section.KeyValue("role_values_none").MustString(""), |
|
|
|
|
"role_values_viewer": section.KeyValue("role_values_viewer").MustString(""), |
|
|
|
|
"signature_algorithm": section.KeyValue("signature_algorithm").MustString(""), |
|
|
|
|
"single_logout": section.KeyValue("single_logout").MustBool(false), |
|
|
|
|
"skip_org_role_sync": section.KeyValue("skip_org_role_sync").MustBool(false), |
|
|
|
|
"token_url": section.KeyValue("token_url").MustString(""), |
|
|
|
|
"allow_idp_initiated": section.KeyValue("allow_idp_initiated").MustBool(false), |
|
|
|
|
"allow_sign_up": section.KeyValue("allow_sign_up").MustBool(false), |
|
|
|
|
"allowed_organizations": section.KeyValue("allowed_organizations").MustString(""), |
|
|
|
|
"assertion_attribute_email": section.KeyValue("assertion_attribute_email").MustString(""), |
|
|
|
|
"assertion_attribute_external_uid": section.KeyValue("assertion_attribute_external_uid").MustString(""), |
|
|
|
|
"assertion_attribute_groups": section.KeyValue("assertion_attribute_groups").MustString(""), |
|
|
|
|
"assertion_attribute_login": section.KeyValue("assertion_attribute_login").MustString(""), |
|
|
|
|
"assertion_attribute_name": section.KeyValue("assertion_attribute_name").MustString(""), |
|
|
|
|
"assertion_attribute_org": section.KeyValue("assertion_attribute_org").MustString(""), |
|
|
|
|
"assertion_attribute_role": section.KeyValue("assertion_attribute_role").MustString(""), |
|
|
|
|
"auto_login": section.KeyValue("auto_login").MustBool(false), |
|
|
|
|
"certificate": section.KeyValue("certificate").MustString(""), |
|
|
|
|
"certificate_path": section.KeyValue("certificate_path").MustString(""), |
|
|
|
|
"client_id": section.KeyValue("client_id").MustString(""), |
|
|
|
|
"client_secret": section.KeyValue("client_secret").MustString(""), |
|
|
|
|
"enabled": section.KeyValue("enabled").MustBool(false), |
|
|
|
|
"entity_id": section.KeyValue("entity_id").MustString(""), |
|
|
|
|
"force_use_graph_api": section.KeyValue("force_use_graph_api").MustBool(false), |
|
|
|
|
"idp_metadata": section.KeyValue("idp_metadata").MustString(""), |
|
|
|
|
"idp_metadata_path": section.KeyValue("idp_metadata_path").MustString(""), |
|
|
|
|
"idp_metadata_url": section.KeyValue("idp_metadata_url").MustString(""), |
|
|
|
|
"max_issue_delay": section.KeyValue("max_issue_delay").MustDuration(90 * time.Second), |
|
|
|
|
"metadata_valid_duration": section.KeyValue("metadata_valid_duration").MustDuration(48 * time.Hour), |
|
|
|
|
"name": section.KeyValue("name").MustString("SAML"), |
|
|
|
|
"name_id_format": section.KeyValue("name_id_format").MustString(""), |
|
|
|
|
"org_mapping": section.KeyValue("org_mapping").MustString(""), |
|
|
|
|
"private_key": section.KeyValue("private_key").MustString(""), |
|
|
|
|
"private_key_path": section.KeyValue("private_key_path").MustString(""), |
|
|
|
|
"relay_state": section.KeyValue("relay_state").MustString(""), |
|
|
|
|
"role_values_admin": section.KeyValue("role_values_admin").MustString(""), |
|
|
|
|
"role_values_editor": section.KeyValue("role_values_editor").MustString(""), |
|
|
|
|
"role_values_grafana_admin": section.KeyValue("role_values_grafana_admin").MustString(""), |
|
|
|
|
"role_values_none": section.KeyValue("role_values_none").MustString(""), |
|
|
|
|
"role_values_viewer": section.KeyValue("role_values_viewer").MustString(""), |
|
|
|
|
"signature_algorithm": section.KeyValue("signature_algorithm").MustString(""), |
|
|
|
|
"single_logout": section.KeyValue("single_logout").MustBool(false), |
|
|
|
|
"skip_org_role_sync": section.KeyValue("skip_org_role_sync").MustBool(false), |
|
|
|
|
"token_url": section.KeyValue("token_url").MustString(""), |
|
|
|
|
} |
|
|
|
|
return result |
|
|
|
|
} |
|
|
|
|