net.bull.javamelody.internal.web.HttpCookieManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javamelody-core Show documentation
Show all versions of javamelody-core Show documentation
Monitoring of JavaEE applications
/*
* Copyright 2008-2017 by Emeric Vernat
*
* This file is part of Java Melody.
*
* 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 net.bull.javamelody.internal.web;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Locale;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.bull.javamelody.internal.common.HttpParameter;
import net.bull.javamelody.internal.common.I18N;
import net.bull.javamelody.internal.model.Period;
import net.bull.javamelody.internal.model.Range;
/**
* Gestionnaire de cookie http persistent.
* @author Emeric Vernat
*/
public class HttpCookieManager {
private static final String PERIOD_COOKIE_NAME = "javamelody.period";
// période par défaut : jour
private static Range defaultRange = Period.JOUR.getRange();
public Range getRange(HttpServletRequest req, HttpServletResponse resp) {
final DateFormat dateFormat;
final String pattern = HttpParameter.PATTERN.getParameterFrom(req);
if (pattern == null || pattern.isEmpty()) {
dateFormat = I18N.createDateFormat();
} else {
dateFormat = new SimpleDateFormat(pattern, Locale.US);
}
final Range range;
if (HttpParameter.PERIOD.getParameterFrom(req) == null) {
// pas de paramètre period dans la requête, on cherche le cookie
final Cookie cookie = getCookieByName(req, PERIOD_COOKIE_NAME);
if (cookie == null) {
// pas de cookie, période par défaut
range = defaultRange;
} else {
range = Range.parse(cookie.getValue(), dateFormat);
}
} else {
range = Range.parse(HttpParameter.PERIOD.getParameterFrom(req), dateFormat);
// un paramètre period est présent dans la requête :
// l'utilisateur a choisi une période, donc on fixe le cookie
addCookie(req, resp, PERIOD_COOKIE_NAME, range.getValue());
}
return range;
}
Cookie getCookieByName(HttpServletRequest req, String cookieName) {
final Cookie[] cookies = req.getCookies();
if (cookies != null) {
for (final Cookie cookie : cookies) {
if (cookieName.equals(cookie.getName())) {
return cookie;
}
}
}
return null;
}
void addCookie(HttpServletRequest req, HttpServletResponse resp, String cookieName,
String cookieValue) {
if (!"added".equals(req.getAttribute(cookieName))) {
final Cookie cookie = new Cookie(cookieName, cookieValue);
// cookie persistant, valide pendant 30 jours
cookie.setMaxAge(30 * 24 * 60 * 60);
// inutile d'envoyer ce cookie aux autres URLs que le monitoring
cookie.setPath(req.getRequestURI());
resp.addCookie(cookie);
req.setAttribute(cookieName, "added");
}
}
String getCookiesAsString(HttpServletRequest req) {
final Cookie[] cookies = req.getCookies();
if (cookies != null) {
final StringBuilder sb = new StringBuilder();
for (int i = 0; i < cookies.length; i++) {
final Cookie cookie = cookies[i];
sb.append(cookie.getName()).append('=').append(cookie.getValue());
if (i < cookies.length - 1) {
sb.append("; ");
}
}
return sb.toString();
}
return null;
}
public static void setDefaultRange(Range range) {
defaultRange = range;
}
}