/* * Copyright 2016 Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.keycloak.services.util; import java.net.URI; import org.jboss.resteasy.spi.HttpResponse; import org.jboss.resteasy.spi.ResteasyProviderFactory; import org.keycloak.common.util.ServerCookie; import org.keycloak.models.KeycloakSession; import org.keycloak.models.RealmModel; import org.keycloak.services.managers.AuthenticationManager; import javax.ws.rs.core.Cookie; import javax.ws.rs.core.HttpHeaders; import javax.ws.rs.core.UriBuilder; import javax.ws.rs.core.UriInfo; /** * @author <a href="mailto:bill@burkecentral.com">Bill Burke</a> * @version $Revision: 1 $ */ public class CookieHelper { /** * Set a response cookie. This solely exists because JAX-RS 1.1 does not support setting HttpOnly cookies * * @param name * @param value * @param path * @param domain * @param comment * @param maxAge * @param secure * @param httpOnly */ public static void addCookie(String name, String value, String path, String domain, String comment, int maxAge, boolean secure, boolean httpOnly) { HttpResponse response = ResteasyProviderFactory.getContextData(HttpResponse.class); StringBuffer cookieBuf = new StringBuffer(); ServerCookie.appendCookieValue(cookieBuf, 1, name, value, path, domain, comment, maxAge, secure, httpOnly); String cookie = cookieBuf.toString(); response.getOutputHeaders().add(HttpHeaders.SET_COOKIE, cookie); } public static String getCookieValue(String name) { HttpHeaders headers = ResteasyProviderFactory.getContextData(HttpHeaders.class); Cookie cookie = headers.getCookies().get(name); return cookie != null ? cookie.getValue() : null; } }