| | |
| | | package org.keycloak.protocol.cas; |
| | | |
| | | import jakarta.ws.rs.Path; |
| | | import jakarta.ws.rs.core.Context; |
| | | import jakarta.ws.rs.core.HttpHeaders; |
| | | import jakarta.ws.rs.core.Response; |
| | | import jakarta.ws.rs.core.UriBuilder; |
| | | import org.jboss.resteasy.spi.HttpRequest; |
| | | import org.jboss.resteasy.spi.ResteasyProviderFactory; |
| | | import org.keycloak.events.EventBuilder; |
| | | import org.keycloak.models.KeycloakSession; |
| | |
| | | private KeycloakSession session; |
| | | private RealmModel realm; |
| | | private EventBuilder event; |
| | | |
| | | @Context |
| | | private HttpHeaders headers; |
| | | |
| | | @Context |
| | | private HttpRequest request; |
| | | |
| | | public CASLoginProtocolService(KeycloakSession session, EventBuilder event) { |
| | | this.session = session; |
| | |
| | | |
| | | @Path("logout") |
| | | public Object logout() { |
| | | LogoutEndpoint endpoint = new LogoutEndpoint(realm); |
| | | LogoutEndpoint endpoint = new LogoutEndpoint(session, realm); |
| | | ResteasyProviderFactory.getInstance().injectProperties(endpoint); |
| | | return endpoint; |
| | | } |
| | | |
| | | @Path("validate") |
| | | public Object validate() { |
| | | ValidateEndpoint endpoint = new ValidateEndpoint(realm, event); |
| | | ValidateEndpoint endpoint = new ValidateEndpoint(session, realm, event); |
| | | ResteasyProviderFactory.getInstance().injectProperties(endpoint); |
| | | return endpoint; |
| | | } |
| | | |
| | | @Path("samlValidate") |
| | | public Object validateSaml11() { |
| | | SamlValidateEndpoint endpoint = new SamlValidateEndpoint(realm, event); |
| | | SamlValidateEndpoint endpoint = new SamlValidateEndpoint(session, realm, event); |
| | | ResteasyProviderFactory.getInstance().injectProperties(endpoint); |
| | | return endpoint; |
| | | } |
| | | |
| | | @Path("serviceValidate") |
| | | public Object serviceValidate() { |
| | | ServiceValidateEndpoint endpoint = new ServiceValidateEndpoint(realm, event); |
| | | ServiceValidateEndpoint endpoint = new ServiceValidateEndpoint(session, realm, event); |
| | | ResteasyProviderFactory.getInstance().injectProperties(endpoint); |
| | | return endpoint; |
| | | } |