Package org.jboss.portletbridge.example.seam

Source Code of org.jboss.portletbridge.example.seam.Pages

/**
*
*/
package org.jboss.portletbridge.example.seam;

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import javax.faces.FacesException;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.portlet.PortletConfig;
import javax.portlet.PortletRequest;
import javax.portlet.faces.Bridge;
import javax.portlet.faces.BridgeUtil;
import javax.servlet.ServletContext;

/**
* @author asmirnov
*
*/
public class Pages {

  private static final Pattern JSP_PATTERN = Pattern.compile(".*\\.jspx?");

  private static final Pattern XHTML_PATTERN = Pattern.compile(".*\\.xhtml");

  private static final Pattern TITLE_PATTERN = Pattern.compile(
      "<h1>(.*)</h1>", Pattern.CASE_INSENSITIVE | Pattern.MULTILINE);

  private List<PageDescriptionBean> _jspPages;

  private String _path;

  private List<PageDescriptionBean> _xhtmlPages;

  /**
   * @return the path
   */
  public String getPath() {
    return _path;
  }

  /**
   * @param path
   *            the path to set
   */
  public void setPath(String path) {
    _path = path;
  }

  public List<PageDescriptionBean> getJspPages() {
    if (_jspPages == null && null != getExternalContext()) {
      _jspPages = getPagesByPattern(JSP_PATTERN);
    }

    return _jspPages;
  }

  private ExternalContext getExternalContext() {
    FacesContext facesContext = FacesContext.getCurrentInstance();

    ExternalContext externalContext = null;
    if (null != facesContext) {
      externalContext = facesContext.getExternalContext();
    }
    return externalContext;
  }

  public List<PageDescriptionBean> getXhtmlPages() {
    if (_xhtmlPages == null && null != getExternalContext()) {
      _xhtmlPages = getPagesByPattern(XHTML_PATTERN);
    }

    return _xhtmlPages;
  }

  /**
   *
   */
  private List<PageDescriptionBean> getPagesByPattern(Pattern pattern) {
    List<PageDescriptionBean> jspPages = new ArrayList<PageDescriptionBean>();
    Set<String> resourcePaths = getExternalContext().getResourcePaths(
        getPath());
    for (Iterator<String> iterator = resourcePaths.iterator(); iterator
        .hasNext();) {
      String page = iterator.next();
      if (pattern.matcher(page).matches()) {
        PageDescriptionBean pageBean = new PageDescriptionBean();
        pageBean.setPath(page);
        InputStream pageInputStream = getExternalContext()
            .getResourceAsStream(page);
        if (null != pageInputStream) {
          byte[] head = new byte[1024];
          try {
            int readed = pageInputStream.read(head);
            String headString = new String(head, 0, readed);
            Matcher titleMatcher = TITLE_PATTERN
                .matcher(headString);
            if (titleMatcher.find()
                && titleMatcher.group(1).length() > 0) {
              pageBean.setTitle(titleMatcher.group(1));
            } else {
              pageBean.setTitle(page);
            }
          } catch (IOException e) {
            throw new FacesException(
                "can't read directory content", e);
          } finally {
            try {
              pageInputStream.close();
            } catch (IOException e) {
              // ignore it.
            }
          }
        }
        jspPages.add(pageBean);
      }
    }
    return jspPages;
  }

  public String defaultPage() {
    String page = null;
    if (BridgeUtil.isPortletRequest()) {
      FacesContext facesContext = FacesContext.getCurrentInstance();
      PortletConfig portletConfig = (PortletConfig) facesContext
          .getELContext().getContext(PortletConfig.class);
      String bridgeParametersPrefix = Bridge.BRIDGE_PACKAGE_PREFIX
          + portletConfig.getPortletName() + ".";
      Map<String, String> defaultViewIdMap = (Map<String, String>) facesContext
          .getExternalContext().getApplicationMap().get(
              bridgeParametersPrefix + Bridge.DEFAULT_VIEWID_MAP);
      PortletRequest request = (PortletRequest) facesContext.getExternalContext().getRequest();
      page = defaultViewIdMap.get(request.getPortletMode().toString());
    }
    return page;
  }

}
TOP

Related Classes of org.jboss.portletbridge.example.seam.Pages

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.