2

我正在创建一个钩子以在登录时检查用户,并且根据某些参数,它将被重定向到一个或另一个自定义页面。

我正在这样做:

Portal.properties

#Gestion evento login
login.events.post=com.liferay.portal.events.AccionLogin
auth.forward.by.last.path=true

动作类

public class AccionLogin extends Action {

    @Override
    public void run(HttpServletRequest request, HttpServletResponse response) throws ActionException {
        try {
            doRun(request, response);
        } catch (Exception e) {
            throw new ActionException(e);
        }
    }
    protected void doRun(HttpServletRequest request, HttpServletResponse response) throws Exception {

        HttpSession sesion = request.getSession();

        User usuarioLogin = PortalUtil.getUser(request);

        // Recupero la lista de roles
        ArrayList<Role> roles = UtilRoles.getIntExtRol();

        // Compruebo si el usuario pertenece al grupo
        if (UtilLdap.esGrupo(request, usuarioLogin.getScreenName())) {
            Constantes._log.info("El usuario es Interno en el Ldap vector. Gestiono su rol");
            UtilRoles.setRoleIfNotHave(usuarioLogin, roles, Constantes.INTERNOS);
            sesion.setAttribute(WebKeys.LAST_PATH, UtilUrls.generaLasthPath(request, Constantes.INTERNOS));
        } else {
            Constantes._log.info("El usuario es externo en el Ldap vector. Gestiono su rol");
            UtilRoles.setRoleIfNotHave(usuarioLogin, roles, Constantes.EXTERNOS);
            sesion.setAttribute(WebKeys.LAST_PATH, UtilUrls.generaLasthPath(request, Constantes.EXTERNOS));
        }
    }
}

这种方法:

sesion.setAttribute(WebKeys.LAST_PATH, UtilUrls.generaLasthPath(request, Constantes.EXTERNOS));

这样做:

return new LastPath(StringPool.BLANK,Constantes.GROUPINTRANET+Constantes.SEPARADOR+Constantes.INICIOINTERNOS,
             new HashMap<String, String[]>());

Generatesgroup/intranet/pageforexterns和相同的,interns但是当我登录时出现 cookie 错误和重定向错误。

我究竟做错了什么?

谢谢

4

1 回答 1

2

而不是创建 LastPath 的新实例,您只需通过 LastPath lastPath=(LastPath)session.getAttribute(WebKeys.LAST_PATH); 获取 LastPath 对象 并使用 lastPath.setPath(PATH) 来避免任何错误。

于 2013-04-17T11:41:42.860 回答