Title: | Download Files over HTTP and HTTPS |
---|---|
Description: | Provides a wrapper for the download.file function, making it possible to download files over HTTPS on Windows, Mac OS X, and other Unix-like platforms. The 'RCurl' package provides this functionality (and much more) but can be difficult to install because it must be compiled with external dependencies. This package has no external dependencies, so it is much easier to install. |
Authors: | Winston Chang <[email protected]> |
Maintainer: | Winston Chang <[email protected]> |
License: | GPL-2 |
Version: | 0.4 |
Built: | 2024-11-17 03:09:02 UTC |
Source: | https://github.com/wch/downloader |
This is a wrapper for download.file
and takes all the same
arguments. The only difference is that, if the protocol is https, it changes
some settings to make it work. How exactly the settings are changed differs
among platforms.
download(url, ...)
download(url, ...)
url |
The URL to download. |
... |
Other arguments that are passed to |
This function also should follow http redirects on all platforms, which is
something that does not happen by default when curl
is used, as on Mac
OS X.
With Windows, it either uses the "wininet"
method (for R 3.2) or uses
the "internal"
method after first ensuring that setInternet2
,
is active (which tells R to use the internet2.dll
).
On other platforms, it will try to use libcurl
, wget
, then
curl
, and then lynx
to download the file. R 3.2 will typically
have the libcurl
method and for previous versions of R Linux platforms
will have wget
installed, and Mac OS X will have curl
.
Note that for many (perhaps most) types of files, you will want to use
mode="wb"
so that the file is downloaded in binary mode.
download.file
for more information on the arguments
that can be used with this function.
## Not run: # Download the downloader source, in binary mode download("https://github.com/wch/downloader/zipball/master", "downloader.zip", mode = "wb") ## End(Not run)
## Not run: # Download the downloader source, in binary mode download("https://github.com/wch/downloader/zipball/master", "downloader.zip", mode = "wb") ## End(Not run)
This package provides a wrapper for the download.file function, making it possible to download files over https on Windows, Mac OS X, and other Unix-like platforms. The RCurl package provides this functionality (and much more) but can be difficult to install because it must be compiled with external dependencies. This package has no external dependencies, so it is much easier to install.
This will download a file and find a SHA-1 hash of it, using
digest()
. The primary purpose of this function is to provide
an easy way to find the value of sha
which can be passed to
source_url()
.
sha_url(url, cmd = TRUE)
sha_url(url, cmd = TRUE)
url |
The URL of the file to find a hash of. |
cmd |
If |
## Not run: # Get the SHA hash of a file. It will print the text below and return # the hash as a string. This is a very long URL; break it up so it can be # seen more easily in the examples. test_url <- paste0("https://gist.github.com/wch/dae7c106ee99fe1fdfe7", "/raw/db0c9bfe0de85d15c60b0b9bf22403c0f5e1fb15/test.r") sha_url(test_url) # Command for sourcing the URL: # downloader::source_url("https://gist.github.com/wch/dae7c106ee99fe1fdfe7 # /raw/db0c9bfe0de85d15c60b0b9bf22403c0f5e1fb15/test.r", # sha="9b8ff5213e32a871d6cb95cce0bed35c53307f61") # [1] "9b8ff5213e32a871d6cb95cce0bed35c53307f61" ## End(Not run)
## Not run: # Get the SHA hash of a file. It will print the text below and return # the hash as a string. This is a very long URL; break it up so it can be # seen more easily in the examples. test_url <- paste0("https://gist.github.com/wch/dae7c106ee99fe1fdfe7", "/raw/db0c9bfe0de85d15c60b0b9bf22403c0f5e1fb15/test.r") sha_url(test_url) # Command for sourcing the URL: # downloader::source_url("https://gist.github.com/wch/dae7c106ee99fe1fdfe7 # /raw/db0c9bfe0de85d15c60b0b9bf22403c0f5e1fb15/test.r", # sha="9b8ff5213e32a871d6cb95cce0bed35c53307f61") # [1] "9b8ff5213e32a871d6cb95cce0bed35c53307f61" ## End(Not run)
This will download a file and source it. Because it uses the
download()
function, it can handle https URLs.
source_url(url, sha = NULL, ..., prompt = TRUE, quiet = FALSE)
source_url(url, sha = NULL, ..., prompt = TRUE, quiet = FALSE)
url |
The URL to download. |
sha |
A SHA-1 hash of the file at the URL. |
... |
Other arguments that are passed to |
prompt |
Prompt the user if no value for |
quiet |
If |
By default, source_url()
checks the SHA-1 hash of the file. If it
differs from the expected value, it will throw an error. The default
expectation is that a hash is provided; if not, source_url()
will
prompt the user, asking if they are sure they want to continue, unless
prompt=FALSE
is used. In other words, if you use prompt=FALSE
,
it will run the remote code without checking the hash, and without asking
the user.
The purpose of checking the hash is to ensure that the file has not changed.
If a source_url
command with a hash is posted in a public forum, then
others who source the URL (with the hash) are guaranteed to run the same
code every time. This means that the author doesn't need to worry about the
security of the server hosting the file. It also means that the users don't
have to worry about the file being replaced with a damaged or
maliciously-modified version.
To find the hash of a local file, use digest()
. For a simple
way to find the hash of a remote file, use sha_url()
.
source()
for more information on the arguments
that can be used with this function. The sha_url()
function
can be used to find the SHA-1 hash of a remote file.
## Not run: # Source the a sample file # This is a very long URL; break it up so it can be seen more easily in the # examples. test_url <- paste0("https://gist.github.com/wch/dae7c106ee99fe1fdfe7", "/raw/db0c9bfe0de85d15c60b0b9bf22403c0f5e1fb15/test.r") downloader::source_url(test_url, sha = "9b8ff5213e32a871d6cb95cce0bed35c53307f61") # Find the hash of a file downloader::sha_url(test_url) ## End(Not run)
## Not run: # Source the a sample file # This is a very long URL; break it up so it can be seen more easily in the # examples. test_url <- paste0("https://gist.github.com/wch/dae7c106ee99fe1fdfe7", "/raw/db0c9bfe0de85d15c60b0b9bf22403c0f5e1fb15/test.r") downloader::source_url(test_url, sha = "9b8ff5213e32a871d6cb95cce0bed35c53307f61") # Find the hash of a file downloader::sha_url(test_url) ## End(Not run)