blob: afa97cf5adba7419ef75068e8c0a538fd0ff3f94 [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.planet.ui;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.roller.RollerException;
import org.apache.roller.planet.config.PlanetRuntimeConfig;
import org.apache.roller.weblogger.business.PropertiesManager;
import org.apache.roller.weblogger.business.WebloggerFactory;
import org.apache.roller.weblogger.config.runtime.ConfigDef;
import org.apache.roller.weblogger.config.runtime.DisplayGroup;
import org.apache.roller.weblogger.config.runtime.PropertyDef;
import org.apache.roller.weblogger.config.runtime.RuntimeConfigDefs;
import org.apache.roller.weblogger.pojos.GlobalPermission;
import org.apache.roller.weblogger.pojos.RuntimeConfigProperty;
import org.apache.struts2.convention.annotation.AllowedMethods;
import org.apache.struts2.interceptor.ParameterAware;
/**
* Planet Config Action.
*
* Handles editing of planet global runtime properties.
*/
// TODO: make this work @AllowedMethods({"execute","save"})
public class PlanetConfig extends PlanetUIAction implements ParameterAware {
private static Log log = LogFactory.getLog(PlanetConfig.class);
// original request parameters
private Map parameters = Collections.EMPTY_MAP;
// runtime properties data
private Map<String, RuntimeConfigProperty> properties = Collections.emptyMap();
// the runtime config def used to populate the display
private ConfigDef globalConfigDef = null;
public PlanetConfig() {
this.actionName = "planetConfig";
this.desiredMenu = "admin";
this.pageTitle = "planetConfig.title";
}
public List<String> requiredGlobalPermissionActions() {
return Collections.singletonList(GlobalPermission.ADMIN);
}
@Override
public boolean isWeblogRequired() {
return false;
}
@Override
public void myPrepare() {
try {
// just grab our properties map
PropertiesManager pMgr = WebloggerFactory.getWeblogger().getPropertiesManager();
setProperties(pMgr.getProperties());
} catch (RollerException ex) {
log.error("Error loading planet properties");
}
// set config def used to draw the view
RuntimeConfigDefs defs = PlanetRuntimeConfig.getRuntimeConfigDefs();
List<ConfigDef> configDefs = defs.getConfigDefs();
for (ConfigDef configDef : configDefs) {
if("global-properties".equals(configDef.getName())) {
setGlobalConfigDef(configDef);
}
}
}
public String execute() {
return INPUT;
}
public String save() {
try {
String incomingProp = null;
// only set values for properties that are already defined
RuntimeConfigDefs defs = PlanetRuntimeConfig.getRuntimeConfigDefs();
for ( ConfigDef configDef : defs.getConfigDefs()) {
for ( DisplayGroup displayGroup : configDef.getDisplayGroups() ) {
for ( PropertyDef propertyDef : displayGroup.getPropertyDefs() ) {
String propName = propertyDef.getName();
log.debug("Checking property [" + propName + "]");
RuntimeConfigProperty updProp = getProperties().get(propName);
if ( updProp == null ) {
updProp = new RuntimeConfigProperty(propName, "");
getProperties().put( propName, updProp);
}
String[] propValues = (String[]) getParameters().get(updProp.getName());
if (propValues != null && propValues.length > 0) {
// we don't deal with multi-valued props
incomingProp = propValues[0];
}
// some special treatment for booleans
// this is a bit hacky since we are assuming that any prop
// with a value of "true" or "false" is meant to be a boolean
// it may not always be the case, but we should be okay for now
// below null check needed against Oracle DB
if (updProp.getValue() != null && (updProp.getValue().equals("true")
|| updProp.getValue().equals("false"))) {
incomingProp = (incomingProp == null
|| !incomingProp.equals("on")) ? "false" : "true";
}
// only work on props that were submitted with the request
if (incomingProp != null) {
log.debug("Setting new value for [" + propName + "]");
updProp.setValue(incomingProp.trim());
}
}
}
}
// save it
PropertiesManager pMgr = WebloggerFactory.getWeblogger().getPropertiesManager();
pMgr.saveProperties(this.properties);
WebloggerFactory.getWeblogger().flush();
addMessage("ConfigForm.message.saveSucceeded");
} catch (RollerException e) {
log.error(e);
addError("ConfigForm.error.saveFailed");
}
return INPUT;
}
public Map getParameters() {
return parameters;
}
public void setParameters(Map parameters) {
this.parameters = parameters;
}
public Map<String, RuntimeConfigProperty> getProperties() {
return properties;
}
public void setProperties(Map<String, RuntimeConfigProperty> properties) {
this.properties = properties;
}
public ConfigDef getGlobalConfigDef() {
return globalConfigDef;
}
public void setGlobalConfigDef(ConfigDef globalConfigDef) {
this.globalConfigDef = globalConfigDef;
}
}