2010-08-04 01:01:18 +02:00
|
|
|
package com.google.gridworks.util;
|
2010-04-21 23:08:34 +02:00
|
|
|
|
|
|
|
import javax.servlet.http.Cookie;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
public class CookiesUtilities {
|
|
|
|
|
2010-04-23 10:25:52 +02:00
|
|
|
public static final String DOMAIN = "127.0.0.1";
|
|
|
|
public static final String PATH = "/";
|
|
|
|
|
2010-04-21 23:08:34 +02:00
|
|
|
public static Cookie getCookie(HttpServletRequest request, String name) {
|
|
|
|
if (name == null) throw new RuntimeException("cookie name cannot be null");
|
|
|
|
Cookie cookie = null;
|
|
|
|
Cookie[] cookies = request.getCookies();
|
|
|
|
if (cookies != null) {
|
|
|
|
for (Cookie c : cookies) {
|
|
|
|
if (name.equals(c.getName())) {
|
|
|
|
cookie = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cookie;
|
|
|
|
}
|
|
|
|
|
2010-04-30 08:12:42 +02:00
|
|
|
public static void setCookie(HttpServletRequest request, HttpServletResponse response, String name, String value, int max_age) {
|
2010-04-23 10:25:52 +02:00
|
|
|
Cookie c = new Cookie(name, value);
|
2010-04-30 08:12:42 +02:00
|
|
|
c.setDomain(getDomain(request));
|
2010-04-23 10:25:52 +02:00
|
|
|
c.setPath(PATH);
|
|
|
|
c.setMaxAge(max_age);
|
|
|
|
response.addCookie(c);
|
|
|
|
}
|
|
|
|
|
2010-04-21 23:08:34 +02:00
|
|
|
public static void deleteCookie(HttpServletRequest request, HttpServletResponse response, String name) {
|
2010-04-23 10:25:52 +02:00
|
|
|
Cookie c = new Cookie(name, "");
|
2010-04-30 08:12:42 +02:00
|
|
|
c.setDomain(getDomain(request));
|
2010-04-23 10:25:52 +02:00
|
|
|
c.setPath(PATH);
|
|
|
|
c.setMaxAge(0);
|
|
|
|
response.addCookie(c);
|
2010-04-21 23:08:34 +02:00
|
|
|
}
|
|
|
|
|
2010-04-30 08:12:42 +02:00
|
|
|
public static String getDomain(HttpServletRequest request) {
|
|
|
|
String host = request.getHeader("Host");
|
|
|
|
if (host == null) return DOMAIN;
|
|
|
|
int index = host.indexOf(':');
|
|
|
|
return (index > -1) ? host.substring(0,index) : host ;
|
|
|
|
}
|
2010-04-21 23:08:34 +02:00
|
|
|
}
|