Package org.g4studio.core.web.taglib.html

Source Code of org.g4studio.core.web.taglib.html.HtmlTag

package org.g4studio.core.web.taglib.html;

import java.io.IOException;
import java.io.StringWriter;

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

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.g4studio.common.util.SpringBeanLoader;
import org.g4studio.common.util.WebUtils;
import org.g4studio.core.metatype.Dto;
import org.g4studio.core.metatype.impl.BaseDto;
import org.g4studio.core.properties.PropertiesFactory;
import org.g4studio.core.properties.PropertiesFile;
import org.g4studio.core.properties.PropertiesHelper;
import org.g4studio.core.tplengine.DefaultTemplate;
import org.g4studio.core.tplengine.FileTemplate;
import org.g4studio.core.tplengine.TemplateEngine;
import org.g4studio.core.tplengine.TemplateEngineFactory;
import org.g4studio.core.tplengine.TemplateType;
import org.g4studio.core.util.G4Constants;
import org.g4studio.core.util.G4Utils;
import org.g4studio.core.web.taglib.util.TagConstant;
import org.g4studio.core.web.taglib.util.TagHelper;
import org.g4studio.system.admin.service.TagSupportService;
import org.g4studio.system.common.dao.vo.UserInfoVo;

/**
* HTML标签
* @author XiongChun
* @since 2010-01-30
*/
public class HtmlTag extends TagSupport{
 
  private TagSupportService armTagSupportService = (TagSupportService)SpringBeanLoader.getSpringBean("armTagSupportService");
 
  private static Log log = LogFactory.getLog(HtmlTag.class);
  private String extDisabled;
  private String title;
  private String jqueryEnabled;
  private String showLoading;
  private String uxEnabled = "true";
  private String fcfEnabled = "false";
  private String doctypeEnable="false"//带有时分秒选择的控件的页面需要设置为:true
  private String exportParams = "false";
  private String exportUserinfo = "false";
  private String isSubPage = "true";
  private String urlSecurity2 = "true";
  private String exportExceptionWindow = "false";
 
  /**
   * 标签开始
   */
  public int doStartTag() throws JspException{
    HttpServletRequest request = (HttpServletRequest)pageContext.getRequest();
    UserInfoVo userInfo = WebUtils.getSessionContainer(request).getUserInfo();
    String contextPath = request.getContextPath();
    request.setAttribute("webContext", contextPath);
    Dto dto = new BaseDto();
    PropertiesHelper pHelper = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
    String micolor = pHelper.getValue("micolor", "blue");
    dto.put("micolor", micolor);
    String urlSecurity = pHelper.getValue("urlSecurity", "1");
    dto.put("urlSecurity", urlSecurity);
    dto.put("urlSecurity2", urlSecurity2);
    dto.put("userInfo", userInfo);
    dto.put("ajaxErrCode", G4Constants.Ajax_Timeout);
    dto.put("requestURL", request.getRequestURL());
    dto.put("contextPath", contextPath);
    dto.put("doctypeEnable", doctypeEnable);
    dto.put("extDisabled", G4Utils.isEmpty(extDisabled) ? "false" : extDisabled);
    dto.put("title", G4Utils.isEmpty(title) ? "G4Studio" : title);
    dto.put("jqueryEnabled", G4Utils.isEmpty(jqueryEnabled) ? "false" : jqueryEnabled);
    dto.put("showLoading", G4Utils.isEmpty(showLoading) ? "true" : showLoading);
    dto.put("uxEnabled", uxEnabled);
    dto.put("exportExceptionWindow", exportExceptionWindow);
    dto.put("fcfEnabled", fcfEnabled);
    dto.put("exportParams", exportParams);
    dto.put("exportUserinfo", exportUserinfo);
    dto.put("isSubPage", isSubPage);
    dto.put("pageLoadMsg", WebUtils.getParamValue("PAGE_LOAD_MSG", request));
    String titleIcon = WebUtils.getParamValue("TITLE_ICON", request);
    dto.put("titleIcon", G4Utils.isEmpty(titleIcon) ? "G4Studio.ico" : titleIcon);
    if (exportParams.equals("true")) {
      dto.put("paramList", WebUtils.getParamList(request));
    }
    //String agent = request.getHeader("user-agent");
    //dto.put("firefox", agent.indexOf("Firefox") == -1 ? "false" : "true");
    PropertiesHelper p = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
    dto.put("extMode", p.getValue("extMode", TagConstant.Ext_Mode_Run));
    dto.put("runMode", p.getValue("runMode", TagConstant.RUN_MODE_NORMAL));
    Dto themeDto = new BaseDto();
    Dto resultDto = new BaseDto();
    if(G4Utils.isNotEmpty(userInfo)){
      themeDto.put("userid", userInfo.getUserid());
      resultDto = armTagSupportService.getEauserSubInfo(themeDto);
    }
    String theme = null;
    if(G4Utils.isNotEmpty(resultDto))
      theme = resultDto.getAsString("theme");
    String defaultTheme = WebUtils.getParamValue("SYS_DEFAULT_THEME", request);
    theme = G4Utils.isEmpty(theme) ? defaultTheme : theme;
    dto.put("theme", theme);
    TemplateEngine engine = TemplateEngineFactory.getTemplateEngine(TemplateType.VELOCITY);
    DefaultTemplate template = new FileTemplate();
    template.setTemplateResource(TagHelper.getTemplatePath(getClass().getName()));
    StringWriter writer = engine.mergeTemplate(template, dto);
    try {
      pageContext.getOut().write(writer.toString());
    } catch (IOException e) {
      log.error(G4Constants.Exception_Head + e.getMessage());
      e.printStackTrace();
    }
    return super.EVAL_BODY_INCLUDE;
  }
 
  /**
   * 标签结束
   */
  public int doEndTag() throws JspException{
    try {
      pageContext.getOut().write("</html>");
    } catch (IOException e) {
      log.error(G4Constants.Exception_Head + e.getMessage());
      e.printStackTrace();
    }
    return super.EVAL_PAGE;
  }
 
  /**
   * 释放资源
   */
  public void release(){
    extDisabled = null;
    title = null;
    jqueryEnabled = null;
    uxEnabled = null;
    fcfEnabled = null;
    doctypeEnable = null;
    exportParams = null;
    exportUserinfo = null;
    isSubPage = null;
    urlSecurity2 = null;
    super.release();
  }

  public void setExtDisabled(String extDisabled) {
    this.extDisabled = extDisabled;
  }

  public void setJqueryEnabled(String jqueryEnabled) {
    this.jqueryEnabled = jqueryEnabled;
  }

  public void setTitle(String title) {
    this.title = title;
  }

  public void setShowLoading(String showLoading) {
    this.showLoading = showLoading;
  }

  public void setUxEnabled(String uxEnabled) {
    this.uxEnabled = uxEnabled;
  }

  public String getFcfEnabled() {
    return fcfEnabled;
  }

  public void setFcfEnabled(String fcfEnabled) {
    this.fcfEnabled = fcfEnabled;
  }

  public void setDoctypeEnable(String doctypeEnable) {
    this.doctypeEnable = doctypeEnable;
  }

  public void setExportParams(String exportParams) {
    this.exportParams = exportParams;
  }

  public void setExportUserinfo(String exportUserinfo) {
    this.exportUserinfo = exportUserinfo;
  }

  public void setIsSubPage(String isSubPage) {
    this.isSubPage = isSubPage;
  }

  public void setUrlSecurity2(String urlSecurity2) {
    this.urlSecurity2 = urlSecurity2;
  }

  public void setExportExceptionWindow(String exportExceptionWindow) {
    this.exportExceptionWindow = exportExceptionWindow;
  }
}
TOP

Related Classes of org.g4studio.core.web.taglib.html.HtmlTag

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.