org.sakaiproject.jsf.renderer.ViewRenderer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsf-widgets Show documentation
Show all versions of jsf-widgets Show documentation
This is the Maven project for the custom JSF widgets.
The widgets and the resources projects are closely tied together.
These widgets will be deployed as a jar file containing Sakai JSF widgets
(components).
Web applications can include this jar in order to use the Sakai JSF
widgets in a JSF tool.
/**********************************************************************************
*
* Header:
*
***********************************************************************************
*
* Copyright (c) 2003, 2004, 2005, 2006, 2007, 2008 The Sakai Foundation
*
* Licensed under the Educational Community License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.opensource.org/licenses/ECL-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
**********************************************************************************/
package org.sakaiproject.jsf.renderer;
import java.io.IOException;
import java.util.Locale;
import org.apache.commons.lang3.StringUtils;
import org.sakaiproject.user.api.Preferences;
import org.sakaiproject.user.api.PreferencesService;
import org.sakaiproject.tool.cover.SessionManager;
import org.sakaiproject.component.cover.ComponentManager;
import org.sakaiproject.component.cover.ServerConfigurationService;
import javax.faces.component.UIComponent;
import javax.faces.component.UIOutput;
import javax.faces.component.UIViewRoot;
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
import javax.faces.render.Renderer;
import javax.servlet.http.HttpServletRequest;
import org.sakaiproject.jsf.util.RendererUtil;
import org.sakaiproject.jsf.util.LocaleUtil;
public class ViewRenderer extends Renderer
{
public boolean supportsComponentType(UIComponent component)
{
// this should be just UIViewRoot, but since that's not working now...
return (component instanceof UIViewRoot) || (component instanceof UIOutput);
}
public void encodeBegin(FacesContext context, UIComponent component) throws IOException
{
HttpServletRequest req = (HttpServletRequest) context.getExternalContext().getRequest();
ResponseWriter writer = context.getResponseWriter();
if (!renderAsFragment(context))
{
// The stylesheets and javascripts to include are really the portal's responsibility
// so get them from the portal through the request attributes.
// Any tool-specific stylesheets need to be placed after Sakai's base CSS (so that
// tool-specific overrides can take place), but before the installation's skin CSS
// (so that the tool can be skinned).
String headBaseCss = (String)req.getAttribute("sakai.html.head.css.base");
if (headBaseCss == null || headBaseCss.length() == 0) {
// include default stylesheet
headBaseCss = "\n";
}
String toolCssHref = (String) RendererUtil.getAttribute(context, component, "toolCssHref");
if (toolCssHref != null) {
toolCssHref = "\n";
}
String headSkinCss = (String)req.getAttribute("sakai.html.head.css.skin");
String headJs = (String)req.getAttribute("sakai.html.head.js");
String bodyonload = (String) req.getAttribute("sakai.html.body.onload");
// SAK-23099 - Set the lang tag to the current user's locale.
Locale locale = LocaleUtil.getLocale(context);
String lang = locale.getLanguage();
String userTheme = "sakaiUserTheme-notSet";
boolean sakaiThemesEnabled = ServerConfigurationService.getBoolean("portal.themes", true);
if ( sakaiThemesEnabled ) {
String thisUser = SessionManager.getCurrentSessionUserId();
PreferencesService preferencesService = ComponentManager.get(PreferencesService.class);
Preferences prefs = preferencesService.getPreferences(thisUser);
if ( prefs != null ) {
userTheme = StringUtils.defaultIfEmpty(prefs.getProperties(PreferencesService.USER_SELECTED_UI_THEME_PREFS).getProperty("theme"), "sakaiUserTheme-notSet");
}
}
if(lang == null || lang.equals("")) lang = "en";
String countryCode = locale.getCountry();
if(countryCode != null && countryCode.length() > 0) {
lang += "-" + countryCode;
}
writer.write("\n");
writer.write("\n");
writer.write("\n");
String title = (String) RendererUtil.getAttribute(context, component, "title");
if (title != null)
{
writer.write("");
writer.write(title);
writer.write(" \n");
}
writer.write(headBaseCss);
if (toolCssHref != null) writer.write(toolCssHref);
if (headSkinCss != null) writer.write(headSkinCss);
if (headJs != null) writer.write(headJs);
// Useful to include something in the head
UIComponent headFacet = component.getFacet("head");
if (headFacet!=null) {
headFacet.encodeBegin(context);
headFacet.encodeChildren(context);
headFacet.encodeEnd(context);
}
writer.write("\n");
writer.write(" 0)
{
writer.write(" onload=\"");
writer.write(bodyonload);
writer.write("\"");
}
writer.write(">\n");
}
writer.write("\n");
}
/**
* @param context FacesContext for the request we are processing
* @param component UIComponent to be rendered
* @exception IOException if an input/output error occurs while rendering
* @exception NullPointerException if context
or component
is null
*/
public void encodeEnd(FacesContext context, UIComponent component) throws IOException
{
ResponseWriter writer = context.getResponseWriter();
writer.write("");
if (!renderAsFragment(context))
{
writer.write("");
}
}
/** Looks at Sakai-specific attributes to determine if the view should
* render HTML, HEAD, BODY; if the request attribute "sakai.fragment"="true",
* then don't render HTML, HEAD, BODY, etc.
* @param context
* @return
*/
protected static boolean renderAsFragment(FacesContext context)
{
String fragStr = (String) ((HttpServletRequest) context.getExternalContext().getRequest()).getAttribute("sakai.fragment");
return (fragStr != null && "true".equals(fragStr));
}
}