SAML 1.1 - return "SAMLart" instead of "ticket" if "TARGET" is specified
| | |
| | | public static final String FORMAT_PARAM = "format"; |
| | | |
| | | public static final String TICKET_RESPONSE_PARAM = "ticket"; |
| | | public static final String SAMLART_RESPONSE_PARAM = "SAMLart"; |
| | | |
| | | public static final String SERVICE_TICKET_PREFIX = "ST-"; |
| | | public static final String SESSION_SERVICE_TICKET = "service_ticket"; |
| | |
| | | String code = OAuth2CodeParser.persistCode(session, clientSession, codeData); |
| | | |
| | | KeycloakUriBuilder uriBuilder = KeycloakUriBuilder.fromUri(service); |
| | | uriBuilder.queryParam(TICKET_RESPONSE_PARAM, SERVICE_TICKET_PREFIX + code); |
| | | |
| | | String loginTicket = SERVICE_TICKET_PREFIX + code; |
| | | |
| | | if (authSession.getClientNotes().containsKey(CASLoginProtocol.TARGET_PARAM)) { |
| | | // This was a SAML 1.1 auth request so return the ticket ID as "SAMLart" instead of "ticket" |
| | | uriBuilder.queryParam(SAMLART_RESPONSE_PARAM, loginTicket); |
| | | } else { |
| | | uriBuilder.queryParam(TICKET_RESPONSE_PARAM, loginTicket); |
| | | } |
| | | |
| | | URI redirectUri = uriBuilder.build(); |
| | | |
| | |
| | | public Response build() { |
| | | MultivaluedMap<String, String> params = session.getContext().getUri().getQueryParameters(); |
| | | String service = params.getFirst(CASLoginProtocol.SERVICE_PARAM); |
| | | |
| | | boolean isSaml11Request = false; |
| | | if (service == null && params.containsKey(CASLoginProtocol.TARGET_PARAM)) { |
| | | // SAML 1.1 authorization uses the TARGET parameter instead of service |
| | | service = params.getFirst(CASLoginProtocol.TARGET_PARAM); |
| | | isSaml11Request = true; |
| | | } |
| | | boolean renew = params.containsKey(CASLoginProtocol.RENEW_PARAM); |
| | | boolean gateway = params.containsKey(CASLoginProtocol.GATEWAY_PARAM); |
| | | |
| | |
| | | if (gateway) { |
| | | authenticationSession.setClientNote(CASLoginProtocol.GATEWAY_PARAM, "true"); |
| | | } |
| | | if (isSaml11Request) { |
| | | // Flag the session so we can return the ticket as "SAMLart" in the response |
| | | authenticationSession.setClientNote(CASLoginProtocol.TARGET_PARAM, "true"); |
| | | } |
| | | |
| | | this.event.event(EventType.LOGIN); |
| | | return handleBrowserAuthenticationRequest(authenticationSession, new CASLoginProtocol(session, realm, session.getContext().getUri(), headers, event), gateway, false); |