Status
lines of R code: 1007, lines of test code: 1758
Development version
0.7.13 - 2020-08-19 / 20:39:24
Description
Provides functions to download and parse ‘robots.txt’ files. Ultimately the package makes it easy to check if bots (spiders, crawler, scrapers, …) are allowed to access specific resources on a domain.
License
MIT + file LICENSE
Peter Meissner [aut, cre], Kun Ren [aut, cph] (Author and copyright holder of list_merge.R.), Oliver Keys [ctb] (original release code review), Rich Fitz John [ctb] (original release code review)
Citation
BibTex for citing
Contribution - AKA The-Think-Twice-Be-Nice-Rule
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms:
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
This Code of Conduct is adapted from the Contributor Covenant (https://www.contributor-covenant.org/), version 1.0.0, available at https://www.contributor-covenant.org/version/1/0/0/code-of-conduct/
Installation and start - stable version
Installation and start - development version
Robotstxt class documentation
Simple path access right checking (the functional way) …
library(robotstxt)
options(robotstxt_warn = FALSE)
paths_allowed(
paths = c("/api/rest_v1/?doc", "/w/"),
domain = "wikipedia.org",
bot = "*"
)
## wikipedia.org
## [1] TRUE FALSE
paths_allowed(
paths = c(
"https://wikipedia.org/api/rest_v1/?doc",
"https://wikipedia.org/w/"
)
)
## wikipedia.org wikipedia.org
## [1] TRUE FALSE
… or (the object oriented way) …
library(robotstxt)
options(robotstxt_warn = FALSE)
rtxt <-
robotstxt(domain = "wikipedia.org")
rtxt$check(
paths = c("/api/rest_v1/?doc", "/w/"),
bot = "*"
)
## [1] TRUE FALSE
Retrieving the robots.txt file for a domain:
# retrieval
rt <-
get_robotstxt("https://petermeissner.de")
# printing
rt
## [robots.txt]
## --------------------------------------
##
## # just do it - punk
Checking whether or not one is supposadly allowed to access some resource from a web server is - unfortunately - not just a matter of downloading and parsing a simple robots.txt file.
First there is no official specification for robots.txt files so every robots.txt file written and every robots.txt file read and used is an interpretation. Most of the time we all have a common understanding on how things are supposed to work but things get more complicated at the edges.
Some interpretation problems:
Because the interpretation of robots.txt rules not just depends on the rules specified within the file, the package implements an event handler system that allows to interpret and re-interpret events into rules.
Under the hood the rt_request_handler()
function is called within get_robotstxt()
. This function takes an {httr} request-response object and a set of event handlers. Processing the request and the handlers it checks for various events and states around getting the file and reading in its content. If an event/state happened the event handlers are passed on to the request_handler_handler()
along for problem resolution and collecting robots.txt file transformations:
Event handler rules can either consist of 4 items or can be functions - the former being the usual case and that used throughout the package itself. Functions like paths_allowed()
do have parameters that allow passing along handler rules or handler functions.
Handler rules are lists with the following items:
over_write_file_with
: if the rule is triggered and has higher priority than those rules applied beforehand (i.e. the new priority has an higher value than the old priority) than the robots.txt file retrieved will be overwritten by this character vectorsignal
: might be "message"
, "warning"
, or "error"
and will use the signal function to signal the event/state just handled. Signaling a warning or a message might be suppressed by setting the function paramter warn = FALSE
.cache
should the package be allowed to cache the results of the retrieval or notpriority
the priority of the rule specified as numeric value, rules with higher priority will be allowed to overwrite robots.txt file content changed by rules with lower priorityThe package knows the following rules with the following defaults:
on_server_error
:on_server_error_default
## $over_write_file_with
## [1] "User-agent: *\nDisallow: /"
##
## $signal
## [1] "error"
##
## $cache
## [1] FALSE
##
## $priority
## [1] 20
on_client_error
:on_client_error_default
## $over_write_file_with
## [1] "User-agent: *\nAllow: /"
##
## $signal
## [1] "warning"
##
## $cache
## [1] TRUE
##
## $priority
## [1] 19
on_not_found
:on_not_found_default
## $over_write_file_with
## [1] "User-agent: *\nAllow: /"
##
## $signal
## [1] "warning"
##
## $cache
## [1] TRUE
##
## $priority
## [1] 1
on_redirect
:on_domain_change
:on_domain_change_default
## $signal
## [1] "warning"
##
## $cache
## [1] TRUE
##
## $priority
## [1] 4
on_file_type_mismatch
:on_file_type_mismatch_default
## $over_write_file_with
## [1] "User-agent: *\nAllow: /"
##
## $signal
## [1] "warning"
##
## $cache
## [1] TRUE
##
## $priority
## [1] 6
on_suspect_content
:on_suspect_content_default
## $over_write_file_with
## [1] "User-agent: *\nAllow: /"
##
## $signal
## [1] "warning"
##
## $cache
## [1] TRUE
##
## $priority
## [1] 7
from version 0.7.x onwards
While previous releases were concerned with implementing parsing and permission checking and improving performance the 0.7.x release will be about robots.txt retrieval foremost. While retrieval was implemented there are corner cases in the retrieval stage that very well influence the interpretation of permissions granted.
Features and Problems handled:
Design Decisions
By default all functions retrieving robots.txt files will warn if there are
The warnings in the following example can be turned of in three ways:
(example)
(solution 1)
library(robotstxt)
suppressWarnings({
paths_allowed("petermeissner.de")
})
## petermeissner.de
## [1] TRUE
(solution 2)
(solution 3)
library(robotstxt)
options(robotstxt_warn = FALSE)
paths_allowed("petermeissner.de")
## petermeissner.de
## [1] TRUE
The robots.txt files retrieved are basically mere character vectors:
rt <-
get_robotstxt("petermeissner.de")
as.character(rt)
## [1] "# just do it - punk\n"
cat(rt)
## # just do it - punk
The last HTTP request is stored in an object
rt_last_http$request
## Response [https://petermeissner.de/robots.txt]
## Date: 2020-09-03 19:05
## Status: 200
## Content-Type: text/plain
## Size: 20 B
## # just do it - punk
But they also have some additional information stored as attributes.
Events that might change the interpretation of the rules found in the robots.txt file:
attr(rt, "problems")
## $on_redirect
## $on_redirect[[1]]
## $on_redirect[[1]]$status
## [1] 301
##
## $on_redirect[[1]]$location
## [1] "https://petermeissner.de/robots.txt"
##
##
## $on_redirect[[2]]
## $on_redirect[[2]]$status
## [1] 200
##
## $on_redirect[[2]]$location
## NULL
The {httr} request-response object that allwos to dig into what exactly was going on in the client-server exchange.
attr(rt, "request")
## Response [https://petermeissner.de/robots.txt]
## Date: 2020-09-03 19:05
## Status: 200
## Content-Type: text/plain
## Size: 20 B
## # just do it - punk
… or lets us retrieve the original content given back by the server:
httr::content(
x = attr(rt, "request"),
as = "text",
encoding = "UTF-8"
)
## [1] "# just do it - punk\n"
… or have a look at the actual HTTP request issued and all response headers given back by the server:
# extract request-response object
rt_req <-
attr(rt, "request")
# HTTP request
rt_req$request
## <request>
## GET http://petermeissner.de/robots.txt
## Output: write_memory
## Options:
## * useragent: libcurl/7.64.1 r-curl/4.3 httr/1.4.1
## * ssl_verifypeer: 1
## * httpget: TRUE
## Headers:
## * Accept: application/json, text/xml, application/xml, */*
## * user-agent: R version 3.6.3 (2020-02-29)
# response headers
rt_req$all_headers
## [[1]]
## [[1]]$status
## [1] 301
##
## [[1]]$version
## [1] "HTTP/1.1"
##
## [[1]]$headers
## $server
## [1] "nginx/1.10.3 (Ubuntu)"
##
## $date
## [1] "Thu, 03 Sep 2020 19:05:45 GMT"
##
## $`content-type`
## [1] "text/html"
##
## $`content-length`
## [1] "194"
##
## $connection
## [1] "keep-alive"
##
## $location
## [1] "https://petermeissner.de/robots.txt"
##
## attr(,"class")
## [1] "insensitive" "list"
##
##
## [[2]]
## [[2]]$status
## [1] 200
##
## [[2]]$version
## [1] "HTTP/1.1"
##
## [[2]]$headers
## $server
## [1] "nginx/1.10.3 (Ubuntu)"
##
## $date
## [1] "Thu, 03 Sep 2020 19:05:45 GMT"
##
## $`content-type`
## [1] "text/plain"
##
## $`content-length`
## [1] "20"
##
## $`last-modified`
## [1] "Thu, 03 Sep 2020 15:33:01 GMT"
##
## $connection
## [1] "keep-alive"
##
## $etag
## [1] "\"5f510cad-14\""
##
## $`accept-ranges`
## [1] "bytes"
##
## attr(,"class")
## [1] "insensitive" "list"
For convenience the package also includes a as.list()
method for robots.txt files.
as.list(rt)
## $content
## [1] "# just do it - punk\n"
##
## $robotstxt
## [1] "# just do it - punk\n"
##
## $problems
## $problems$on_redirect
## $problems$on_redirect[[1]]
## $problems$on_redirect[[1]]$status
## [1] 301
##
## $problems$on_redirect[[1]]$location
## [1] "https://petermeissner.de/robots.txt"
##
##
## $problems$on_redirect[[2]]
## $problems$on_redirect[[2]]$status
## [1] 200
##
## $problems$on_redirect[[2]]$location
## NULL
##
##
##
##
## $request
## Response [https://petermeissner.de/robots.txt]
## Date: 2020-09-03 19:05
## Status: 200
## Content-Type: text/plain
## Size: 20 B
## # just do it - punk
The retrieval of robots.txt files is cached on a per R-session basis. Restarting an R-session will invalidate the cache. Also using the the function parameter froce = TRUE
will force the package to re-retrieve the robots.txt file.
paths_allowed("petermeissner.de/I_want_to_scrape_this_now", force = TRUE, verbose = TRUE)
## petermeissner.de rt_robotstxt_http_getter: force http get
## [1] TRUE
paths_allowed("petermeissner.de/I_want_to_scrape_this_now",verbose = TRUE)
## petermeissner.de rt_robotstxt_http_getter: cached http get
## [1] TRUE