Package com.agiletec.plugins.jpmyportalplus.aps.tags

Source Code of com.agiletec.plugins.jpmyportalplus.aps.tags.CheckValidWidgetTag

/*
*
* Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved.
*
* This file is part of Entando software.
* Entando is a free software;
* You can redistribute it and/or modify it
* under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation; version 2.
*
* See the file License for the specific language governing permissions  
* and limitations under the License
*
*
*
* Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved.
*
*/
package com.agiletec.plugins.jpmyportalplus.aps.tags;

import java.util.Set;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagSupport;

import com.agiletec.aps.system.ApsSystemUtils;
import com.agiletec.aps.system.RequestContext;
import com.agiletec.aps.system.SystemConstants;
import com.agiletec.aps.system.services.page.Widget;
import com.agiletec.aps.util.ApsWebApplicationUtils;
import com.agiletec.plugins.jpmyportalplus.aps.system.JpmyportalplusSystemConstants;
import com.agiletec.plugins.jpmyportalplus.aps.system.services.config.IMyPortalConfigManager;

/**
* Toggle the visibility of the elements contained in body tag,
* depending on the presents of showlet type into the allowed types of MyPortal Service.
* Is possible to insert the result of the check in a variable placed in the page context.
* @author E.Santoboni
*/
public class CheckValidWidgetTag extends TagSupport {

  @Override
  public int doStartTag() throws JspException {
    IMyPortalConfigManager myPortalConfigManager = (IMyPortalConfigManager) ApsWebApplicationUtils.getBean(JpmyportalplusSystemConstants.MYPORTAL_CONFIG_MANAGER, pageContext);
    HttpServletRequest req =  (HttpServletRequest) this.pageContext.getRequest();
    try {
      boolean check = false;
      RequestContext reqCtx = (RequestContext) req.getAttribute(RequestContext.REQCTX);
      Widget currentShowlet = (Widget) reqCtx.getExtraParam(SystemConstants.EXTRAPAR_CURRENT_WIDGET);
      if (null != currentShowlet && null != currentShowlet.getType()) {
        String typeCode = currentShowlet.getType().getCode();
        Set<String> showletTypeCodes = myPortalConfigManager.getConfig().getAllowedShowlets();
        check = showletTypeCodes.contains(typeCode);
      }
      if (null != this.getVar()) {
        this.pageContext.setAttribute(this.getVar(), new Boolean(check));
      }
      if (check) {
        return EVAL_BODY_INCLUDE;
      } else {
        return SKIP_BODY;
      }
    } catch (Throwable t) {
      ApsSystemUtils.logThrowable(t, this, "doStartTag", "Error on doStartTag");
      throw new JspException("Error on doStartTag", t);
    }
  }

  public String getVar() {
    return _var;
  }
  public void setVar(String var) {
    this._var = var;
  }

  private String _var;

}
TOP

Related Classes of com.agiletec.plugins.jpmyportalplus.aps.tags.CheckValidWidgetTag

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.