com.brandwatch.robots.RobotsLoaderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robots-core Show documentation
Show all versions of robots-core Show documentation
Support for Robots Exclusion Protocol, including parsing
and matching against robot.txt directives.
package com.brandwatch.robots;
/*
* #%L
* Robots (core)
* %%
* Copyright (C) 2014 - 2015 Brandwatch
* %%
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the Brandwatch nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
* #L%
*/
import com.brandwatch.robots.domain.Robots;
import com.brandwatch.robots.net.CharSourceSupplier;
import com.brandwatch.robots.net.LoggingReader;
import com.brandwatch.robots.net.TemporaryAllow;
import com.brandwatch.robots.net.TemporaryDisallow;
import com.brandwatch.robots.parser.ParseException;
import com.brandwatch.robots.parser.RobotsParser;
import com.brandwatch.robots.util.LogLevel;
import com.google.common.io.CharSource;
import com.google.common.io.Closer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.annotation.Nonnull;
import java.io.IOException;
import java.io.Reader;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.concurrent.TimeoutException;
import static com.google.common.base.Preconditions.checkNotNull;
import static java.text.MessageFormat.format;
final class RobotsLoaderImpl implements RobotsLoader {
private static final Logger log = LoggerFactory.getLogger(RobotsLoaderImpl.class);
@Nonnull
private final RobotsFactory factory;
@Nonnull
private final CharSourceSupplier charSourceSupplier;
public RobotsLoaderImpl(@Nonnull RobotsFactory factory) {
this.factory = checkNotNull(factory, "factory is null");
this.charSourceSupplier = checkNotNull(factory.createCharSourceSupplier());
}
@Nonnull
@Override
public Robots load(@Nonnull URI robotsResource) {
checkNotNull(robotsResource, "robotsResource");
log.debug("Loading: {}", robotsResource);
return load(robotsResource, charSourceSupplier.get(robotsResource));
}
public void close() throws IOException {
charSourceSupplier.close();
}
@Nonnull
private Robots load(@Nonnull URI robotsResource, @Nonnull CharSource robotsData) {
try {
final Closer closer = Closer.create();
try {
final Reader reader;
try {
reader = closer.register(robotsData.openBufferedStream());
} catch (TemporaryAllow e) {
return fullAllow(robotsResource, e.getMessage());
} catch (TemporaryDisallow e) {
return fullDisallow(robotsResource, e.getMessage());
}
return conditionalAllow(robotsResource, reader);
} catch (Throwable t) {
throw closer.rethrow(t);
} finally {
closer.close();
}
} catch (IOException e) {
if(e.getCause() instanceof TimeoutException) {
return fullAllow(robotsResource, format("Timeout waiting for response."));
} else {
log.debug("Caught IO exception", e);
return fullAllow(robotsResource, format("IO exception: \"{0}\"", e.getMessage()));
}
}
}
@Nonnull
private Robots conditionalAllow(@Nonnull URI robotsResource, @Nonnull Reader robotsData)
throws IOException {
log.debug("Conditional allow; parsing contents of {}", robotsResource);
final Reader reader = new LoggingReader(robotsData, this.getClass(), LogLevel.TRACE);
final RobotsParser parser = factory.createRobotsParser(reader);
final RobotsBuildingParseHandler handler = factory.createRobotsBuildingHandler();
try {
parser.parse(handler);
return handler.get();
} catch (ParseException e) {
return fullAllow(robotsResource, format("Caught parsing exception: \"{0}\"", e));
}
}
@Nonnull
private Robots fullAllow(@Nonnull URI robotsResource, @Nonnull String reason, @Nonnull Object... args) {
log.info("Allowing entire site: {}; {}", site(robotsResource), format(reason, args));
return factory.createAllowAllRobots();
}
@Nonnull
private Robots fullDisallow(@Nonnull URI robotsResource, @Nonnull String reason, @Nonnull Object... args) {
log.info("Disallowing entire site: {}; {}", site(robotsResource), format(reason, args));
return factory.createDisallowAllRobots();
}
static URI site(URI resource) {
try {
return new URI(resource.getScheme(), resource.getUserInfo(), resource.getHost(),
resource.getPort(), null, null, null);
} catch (URISyntaxException e) {
throw new AssertionError(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy