Package com.agiletec.plugins.jpfacetnav.aps.tags

Source Code of com.agiletec.plugins.jpfacetnav.aps.tags.FacetNodeTitleTag

/*
*
* 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.jpfacetnav.aps.tags;

import javax.servlet.ServletRequest;
import javax.servlet.jsp.JspException;

import org.apache.taglibs.standard.tag.common.core.OutSupport;

import com.agiletec.aps.system.ApsSystemUtils;
import com.agiletec.aps.system.RequestContext;
import com.agiletec.aps.system.SystemConstants;
import com.agiletec.aps.system.common.tree.ITreeNode;
import com.agiletec.aps.system.common.tree.ITreeNodeManager;
import com.agiletec.aps.system.services.lang.ILangManager;
import com.agiletec.aps.system.services.lang.Lang;
import com.agiletec.aps.util.ApsWebApplicationUtils;
import com.agiletec.plugins.jpfacetnav.aps.system.JpFacetNavSystemConstants;
import com.agiletec.plugins.jpfacetnav.aps.system.services.content.showlet.IFacetNavHelper;

/**
*
* @author E.Santoboni
*/
public class FacetNodeTitleTag extends OutSupport {
 
  @Override
  public int doStartTag() throws JspException {
    ServletRequest request =  this.pageContext.getRequest();
    RequestContext reqCtx = (RequestContext) request.getAttribute(RequestContext.REQCTX);
    try {
      IFacetNavHelper facetNavHelper = (IFacetNavHelper) ApsWebApplicationUtils.getBean(JpFacetNavSystemConstants.CONTENT_FACET_NAV_HELPER, this.pageContext);
      ITreeNodeManager facetManager =  facetNavHelper.getTreeNodeManager();
      ITreeNode facetNode = facetManager.getNode(this.getFacetNodeCode());
      String separator = (this.getSeparator() == null) ? " / " : this.getSeparator();
      if (null != facetNode) {
        Lang currentLang = (Lang) reqCtx.getExtraParam(SystemConstants.EXTRAPAR_CURRENT_LANG);
        String title = facetNode.getTitles().getProperty(currentLang.getCode());
        if (this.isFullTitle()) {
          title = facetNode.getFullTitle(currentLang.getCode(), separator);
        }
        if (null == title || title.trim().length() == 0) {
          ILangManager langManager = (ILangManager) ApsWebApplicationUtils.getBean(SystemConstants.LANGUAGE_MANAGER, this.pageContext);
          Lang defaultLang = langManager.getDefaultLang();
          title = facetNode.getTitles().getProperty(defaultLang.getCode());
          if (this.isFullTitle()) {
            title = facetNode.getFullTitle(defaultLang.getCode(), separator);
          }
        }
        if (null == title || title.trim().length() == 0) {
          title = this.getFacetNodeCode();
        }
       
        if (this.getEscapeXml()) {
          out(this.pageContext, this.getEscapeXml(), title);
        } else {
          this.pageContext.getOut().print(title);
        }
      } else this.pageContext.getOut().print("UNKNOWN FACET");
     
    } catch (Throwable t) {
      ApsSystemUtils.logThrowable(t, this, "doStartTag");
      throw new JspException("Error initialization tag", t);
    }
    return super.doStartTag();
  }
 
  @Override
  public void release() {
    super.release();
    this._facetNodeCode = null;
    this._fullTitle = false;
    this._separator = " / ";
  }
 
  public String getFacetNodeCode() {
    return _facetNodeCode;
  }
  public void setFacetNodeCode(String facetNodeCode) {
    this._facetNodeCode = facetNodeCode;
  }
 
  public boolean isFullTitle() {
    return _fullTitle;
  }
  public void setFullTitle(boolean fullTitle) {
    this._fullTitle = fullTitle;
  }
 
  public String getSeparator() {
    return _separator;
  }
  public void setSeparator(String separator) {
    this._separator = separator;
  }

  /**
   * Determina se effettuare l'escape dei caratteri speciali nella label ricavata.
   * @return True nel caso si debba effettuare l'escape, false in caso contrario.
   */
  public boolean getEscapeXml() {
    return super.escapeXml;
  }
 
  /**
   * Setta se effettuare l'escape dei caratteri speciali nella label ricavata.
   * @param escapeXml True nel caso si debba effettuare l'escape, false in caso contrario.
   */
  public void setEscapeXml(boolean escapeXml) {
    super.escapeXml = escapeXml;
  }
 
  private String _facetNodeCode;
  private boolean _fullTitle = false;
  private String _separator = " / ";
 
}
TOP

Related Classes of com.agiletec.plugins.jpfacetnav.aps.tags.FacetNodeTitleTag

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.