blob: d689d2c8fa7fe333d257a2d8c400b1210166f81f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. The ASF licenses this file to You
* under the Apache 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.apache.org/licenses/LICENSE-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. For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
package org.apache.roller.weblogger.ui.rendering.util;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.roller.weblogger.WebloggerException;
import org.apache.roller.weblogger.business.themes.ThemeNotFoundException;
import org.apache.roller.weblogger.business.WebloggerFactory;
import org.apache.roller.weblogger.business.themes.ThemeManager;
import org.apache.roller.weblogger.pojos.Theme;
/**
*
*/
public class WeblogPreviewResourceRequest extends WeblogResourceRequest {
private static Log log = LogFactory.getLog(WeblogPreviewResourceRequest.class);
// lightweight attributes
private String themeName = null;
// heavyweight attributes
private Theme theme = null;
public WeblogPreviewResourceRequest() {}
public WeblogPreviewResourceRequest(HttpServletRequest request)
throws InvalidRequestException {
// let parent go first
super(request);
// all we need to worry about is the query params
// the only param we expect is "theme"
if(request.getParameter("theme") != null) {
this.themeName = request.getParameter("theme");
}
if(log.isDebugEnabled()) {
log.debug("theme = "+this.themeName);
}
}
public String getThemeName() {
return themeName;
}
public void setThemeName(String theme) {
this.themeName = theme;
}
// override so that previews never show login status
@Override
public String getAuthenticUser() {
return null;
}
// override so that previews never show login status
@Override
public boolean isLoggedIn() {
return false;
}
public Theme getTheme() {
if(theme == null && themeName != null) {
try {
ThemeManager themeMgr = WebloggerFactory.getWeblogger().getThemeManager();
theme = themeMgr.getTheme(themeName);
} catch(ThemeNotFoundException tnfe) {
// bogus theme specified ... don't worry about it
} catch(WebloggerException re) {
log.error("Error looking up theme "+themeName, re);
}
}
return theme;
}
public void setTheme(Theme theme) {
this.theme = theme;
}
}