/* * 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.extension.script.internal.safe; import org.xwiki.context.Execution; import org.xwiki.extension.Extension; import org.xwiki.extension.repository.ExtensionRepository; import org.xwiki.extension.repository.result.IterableResult; import org.xwiki.extension.repository.search.AdvancedSearchable; import org.xwiki.extension.repository.search.ExtensionQuery; import org.xwiki.extension.repository.search.SearchException; import org.xwiki.script.internal.safe.ScriptSafeProvider; /** * Provide a public script access to a {@link AdvancedSearchable} ratable extension repository. * * @param <T> * @version $Id: abd47b2aa6a2f12a0c54d58a4248a616f9ad7257 $ * @since 7.0M2 */ public class SafeAdvancedSearchableRatableExtensionRepository<T extends ExtensionRepository> extends SafeSearchableRatableExtensionRepository<T> implements AdvancedSearchable { /** * @param repository wrapped repository * @param safeProvider the provider of instances safe for public scripts * @param execution provide access to the current context * @param hasProgrammingRight does the caller script has programming right */ public SafeAdvancedSearchableRatableExtensionRepository(T repository, ScriptSafeProvider<?> safeProvider, Execution execution, boolean hasProgrammingRight) { super(repository, safeProvider, execution, hasProgrammingRight); } // AdvancedSearchable @Override public boolean isFilterable() { return ((AdvancedSearchable) getWrapped()).isFilterable(); } @Override public boolean isSortable() { return ((AdvancedSearchable) getWrapped()).isSortable(); } @Override public IterableResult<Extension> search(ExtensionQuery query) throws SearchException { setError(null); try { return safe(((AdvancedSearchable) getWrapped()).search(query)); } catch (Exception e) { setError(e); } return null; } }