Search code examples
rrcurlhtml-content-extractiongeturl

RCurl getURLContent detect content type through final redirect


This is a followup question to RCurl getURL with loop - link to a PDF kills looping :

I have the following getURL command:

require(RCurl)
#set a bunch of options for curl
options(RCurlOptions = list(cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl")))
agent="Firefox/23.0" 
curl = getCurlHandle()
curlSetOpt(
  cookiejar = 'cookies.txt' ,
  useragent = agent,
  followlocation = TRUE ,
  autoreferer = TRUE ,
  httpauth = 1L, # "basic" http authorization version -- this seems to make a difference for India servers
  curl = curl
)


x = getURLContent('http://timesofindia.indiatimes.com//articleshow/2933019.cms')
class(x)
#[1] "character"
attr(x, "Content-Type")
#"text/plain" 

In a browser, the link above ends up redirecting to:

x = getURLContent('http://timesofindia.indiatimes.com/photo.cms?msid=2933009')
class(x)
#[1] "raw"
attr(x, "Content-Type")
#"application/pdf" 

Assuming I know only the first link, how can I detect that the final location of the redirect (or redirects) is of a certain type (in this case PDF)?

Thanks!!


Solution

  • Maybe there's a better solution, but one way could be this:

    # ...
    h <- basicTextGatherer()
    x = getBinaryURL('http://timesofindia.indiatimes.com//articleshow/2933019.cms', 
                     headerfunction = h$update, curl = curl)
    r <- gregexpr("Content-Type:.*?\n", h$value())
    tail(regmatches(h$value(), r)[[1]], 1)
    # [1] "Content-Type: application/pdf\r\n"