/* * Copyright 2015-Present Entando Inc. (http://www.entando.com) All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.agiletec.apsadmin.tags; import com.agiletec.aps.system.SystemConstants; import com.agiletec.aps.system.services.user.UserDetails; import com.agiletec.aps.util.ApsWebApplicationUtils; import com.agiletec.apsadmin.system.ApsAdminSystemConstants; import com.opensymphony.xwork2.util.ValueStack; import javax.servlet.http.HttpServletRequest; import javax.servlet.jsp.JspException; import org.apache.struts2.views.jsp.StrutsBodyTagSupport; import org.entando.entando.apsadmin.common.MyShortcutConfigAction; import org.entando.entando.apsadmin.system.services.shortcut.IShortcutManager; import org.entando.entando.apsadmin.system.services.shortcut.model.UserConfigBean; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Returns the configured shortcuts (object {@link UserConfigBean}) of the current user. * @author E.Santoboni */ public class UserShortcutsConfigTag extends StrutsBodyTagSupport { private static final Logger _logger = LoggerFactory.getLogger(UserShortcutsConfigTag.class); @Override public int doEndTag() throws JspException { HttpServletRequest request = (HttpServletRequest) this.pageContext.getRequest(); try { UserConfigBean config = (UserConfigBean) request.getSession().getAttribute(MyShortcutConfigAction.SESSION_PARAM_MY_SHORTCUTS); UserDetails currentUser = (UserDetails) request.getSession().getAttribute(SystemConstants.SESSIONPARAM_CURRENT_USER); if (null == config || !currentUser.getUsername().equals(config.getUsername())) { request.getSession().removeAttribute(MyShortcutConfigAction.SESSION_PARAM_MY_SHORTCUTS); IShortcutManager shortcutManager = (IShortcutManager) ApsWebApplicationUtils.getBean(ApsAdminSystemConstants.SHORTCUT_MANAGER, this.pageContext); config = shortcutManager.getUserConfigBean(currentUser); } if (null != this.getVar()) { ValueStack stack = this.getStack(); stack.getContext().put(this.getVar(), config); stack.setValue("#attr['" + this.getVar() + "']", config, false); } } catch (Throwable t) { _logger.error("Error on doStartTag", t); throw new JspException("Error on doStartTag", t); } return super.doEndTag(); } public String getVar() { return _var; } public void setVar(String var) { this._var = var; } private String _var; }