org.xwiki.script.internal.safe.DefaultScriptSafeProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwiki-commons-script Show documentation
Show all versions of xwiki-commons-script Show documentation
Scripting APIs, on top of JSR-223
/*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.xwiki.script.internal.safe;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.Arrays;
import java.util.List;
import javax.inject.Inject;
import javax.inject.Singleton;
import org.slf4j.Logger;
import org.xwiki.component.annotation.Component;
import org.xwiki.component.manager.ComponentLookupException;
import org.xwiki.component.manager.ComponentManager;
import org.xwiki.component.util.DefaultParameterizedType;
import org.xwiki.component.util.ReflectionUtils;
import org.xwiki.script.safe.ScriptSafeProvider;
/**
* Find the right safe provider for the passed object.
*
* @version $Id: e693ee6ade26575d35523a5c0ec8819efe92edc9 $
* @since 4.0M2
*/
@Component
@Singleton
@SuppressWarnings("rawtypes")
public class DefaultScriptSafeProvider implements ScriptSafeProvider
{
/**
* Used to lookup {@link ScriptSafeProvider} implementations.
*/
@Inject
private ComponentManager component;
/**
* The logger.
*/
@Inject
private Logger logger;
@Override
public Object get(Object unsafe)
{
if (unsafe == null) {
return null;
}
Object safe = get(unsafe, Arrays.asList(unsafe.getClass()));
if (safe == null) {
safe = unsafe;
}
return safe;
}
/**
* @param unsafe the unsafe version of the object
* @param types the types implemented or extended by the object for which to search a provider
* @return a safe version of the passed object, null if none could be provided
*/
private Object get(Object unsafe, List types)
{
for (Type type : types) {
Object safe = get(unsafe, type);
if (safe != null) {
return safe;
}
}
for (Type type : types) {
Object safe = get(unsafe, ReflectionUtils.getDirectTypes(type));
if (safe != null) {
return safe;
}
}
return null;
}
/**
* @param unsafe the unsafe version of the object
* @param type the type implemented or extended by the object for which to search a provider
* @return a safe version of the passed object, null if none could be provided
*/
private Object get(Object unsafe, Type type)
{
Type completeRole = new DefaultParameterizedType(null, ScriptSafeProvider.class, type);
if (this.component.hasComponent(completeRole)) {
try {
ScriptSafeProvider