| | |
| | | package org.keycloak.protocol.cas.mappers; |
| | | |
| | | import org.keycloak.models.ProtocolMapperModel; |
| | | import org.keycloak.models.UserModel; |
| | | import org.keycloak.models.UserSessionModel; |
| | | import org.keycloak.models.*; |
| | | import org.keycloak.models.utils.KeycloakModelUtils; |
| | | import org.keycloak.protocol.ProtocolMapperUtils; |
| | | import org.keycloak.protocol.oidc.mappers.OIDCAttributeMapperHelper; |
| | | import org.keycloak.provider.ProviderConfigProperty; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | property.setType(ProviderConfigProperty.BOOLEAN_TYPE); |
| | | configProperties.add(property); |
| | | |
| | | property = new ProviderConfigProperty(); |
| | | property.setName(ProtocolMapperUtils.AGGREGATE_ATTRS); |
| | | property.setLabel(ProtocolMapperUtils.AGGREGATE_ATTRS_LABEL); |
| | | property.setHelpText(ProtocolMapperUtils.AGGREGATE_ATTRS_HELP_TEXT); |
| | | property.setType(ProviderConfigProperty.BOOLEAN_TYPE); |
| | | configProperties.add(property); |
| | | } |
| | | |
| | | public static final String PROVIDER_ID = "cas-usermodel-attribute-mapper"; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public void setAttribute(Map<String, Object> attributes, ProtocolMapperModel mappingModel, UserSessionModel userSession) { |
| | | public void setAttribute(Map<String, Object> attributes, ProtocolMapperModel mappingModel, UserSessionModel userSession, |
| | | KeycloakSession session, ClientSessionContext clientSessionCt) { |
| | | UserModel user = userSession.getUser(); |
| | | String attributeName = mappingModel.getConfig().get(ProtocolMapperUtils.USER_ATTRIBUTE); |
| | | List<String> attributeValue = KeycloakModelUtils.resolveAttribute(user, attributeName); |
| | | boolean aggregateAttrs = Boolean.valueOf(mappingModel.getConfig().get(ProtocolMapperUtils.AGGREGATE_ATTRS)); |
| | | Collection<String> attributeValue = KeycloakModelUtils.resolveAttribute(user, attributeName, aggregateAttrs); |
| | | setMappedAttribute(attributes, mappingModel, attributeValue); |
| | | } |
| | | |
| | | public static ProtocolMapperModel create(String name, String userAttribute, |
| | | String tokenClaimName, String claimType, |
| | | boolean consentRequired, String consentText, boolean multivalued) { |
| | | boolean multivalued) { |
| | | return create(name, userAttribute, tokenClaimName, claimType, multivalued, false); |
| | | } |
| | | |
| | | public static ProtocolMapperModel create(String name, String userAttribute, |
| | | String tokenClaimName, String claimType, |
| | | boolean multivalued, boolean aggregateAttrs) { |
| | | ProtocolMapperModel mapper = CASAttributeMapperHelper.createClaimMapper(name, tokenClaimName, |
| | | claimType, consentRequired, consentText, PROVIDER_ID); |
| | | claimType, PROVIDER_ID); |
| | | mapper.getConfig().put(ProtocolMapperUtils.USER_ATTRIBUTE, userAttribute); |
| | | if (multivalued) { |
| | | mapper.getConfig().put(ProtocolMapperUtils.MULTIVALUED, "true"); |
| | | } |
| | | if (aggregateAttrs) { |
| | | mapper.getConfig().put(ProtocolMapperUtils.AGGREGATE_ATTRS, "true"); |
| | | } |
| | | return mapper; |
| | | } |
| | | } |