/* * 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.SearchException; import org.xwiki.extension.repository.search.Searchable; import org.xwiki.script.internal.safe.ScriptSafeProvider; /** * Provide a public script access to a {@link Searchable} ratable extension repository. * * @param <T> * @version $Id: 09f2ebd89624811cdff37bd849365dd55c5cf452 $ * @since 6.4M3 */ public class SafeSearchableRatableExtensionRepository<T extends ExtensionRepository> extends SafeRatableExtensionRepository<T> implements Searchable { /** * @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 SafeSearchableRatableExtensionRepository(T repository, ScriptSafeProvider<?> safeProvider, Execution execution, boolean hasProgrammingRight) { super(repository, safeProvider, execution, hasProgrammingRight); } @Override public IterableResult<Extension> search(String pattern, int offset, int nb) throws SearchException { setError(null); try { return safe(((Searchable) getWrapped()).search(pattern, offset, nb)); } catch (Exception e) { setError(e); } return null; } }