All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aoindustries.website.SessionTimeoutAction Maven / Gradle / Ivy

Go to download

Core API for legacy Struts-based site framework with AOServ Platform control panels.

There is a newer version: 2.0.0
Show newest version
/*
 * Copyright 2007-2009, 2015, 2016 by AO Industries, Inc.,
 * 7262 Bull Pen Cir, Mobile, Alabama, 36695, U.S.A.
 * All rights reserved.
 */
package com.aoindustries.website;

import java.util.Locale;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.util.MessageResources;

/**
 * @author  AO Industries, Inc.
 */
public class SessionTimeoutAction extends SkinAction {

	@Override
	public ActionForward execute(
		ActionMapping mapping,
		ActionForm form,
		HttpServletRequest request,
		HttpServletResponse response,
		SiteSettings siteSettings,
		Locale locale,
		Skin skin
	) throws Exception {
		// Logout, just in case session not actually expired
		HttpSession session = request.getSession();
		session.removeAttribute(Constants.AO_CONN);
		session.removeAttribute(Constants.AUTHENTICATED_AO_CONN);
		session.removeAttribute(Constants.AUTHENTICATION_TARGET);
		session.removeAttribute(Constants.SU_REQUESTED);

		// Save the target so authentication will return to the previous page
		String target = request.getParameter("target");
		if(target!=null && target.length()>0 && !target.endsWith("/login.do")) {
			request.getSession().setAttribute(Constants.AUTHENTICATION_TARGET, target);
		}

		// Set the authenticationMessage
		MessageResources applicationResources = (MessageResources)request.getAttribute("/ApplicationResources");
		request.setAttribute(Constants.AUTHENTICATION_MESSAGE, applicationResources.getMessage(locale, "SessionTimeoutAction.authenticationMessage"));

		return mapping.findForward("success");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy