org.xwiki.rendering.internal.parser.reference.DefaultImageReferenceParser Maven / Gradle / Ivy
/*
* 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.rendering.internal.parser.reference;
import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Singleton;
import org.xwiki.component.annotation.Component;
import org.xwiki.rendering.listener.reference.ResourceReference;
import org.xwiki.rendering.listener.reference.ResourceType;
import org.xwiki.rendering.parser.ResourceReferenceParser;
/**
* Similar to {@link org.xwiki.rendering.internal.parser.reference.DefaultResourceReferenceParser} but handles the
* case where the resource type wasn't specified. In this case it uses a
* {@link org.xwiki.rendering.internal.parser.reference.DefaultUntypedImageReferenceParser} which trues to guess the
* type.
*
* @version $Id: 8ecfec70b37a1fa9eb4471c7f7032f779fdf45dd $
* @since 2.6M1
*/
@Component
@Named("image")
@Singleton
public class DefaultImageReferenceParser implements ResourceReferenceParser
{
/**
* Default parser to parse typed resource references.
*/
@Inject
private ResourceReferenceParser defaultResourceReferenceParser;
/**
* Used to parse untyped resource reference and guess their types.
*/
@Inject
@Named("image/untyped")
private ResourceReferenceParser untypedImageReferenceParser;
@Override
public ResourceReference parse(String rawReference)
{
ResourceReference reference = this.defaultResourceReferenceParser.parse(rawReference);
if (reference.getType().equals(ResourceType.UNKNOWN)) {
reference = this.untypedImageReferenceParser.parse(rawReference);
}
return reference;
}
}