An R6 client for managing deposits on external services, currently including Figshare and Zenodo. Use of a 'deposits' client is controlled by the methods listed below. Those looking for help with client usage are advised to head to that section.
Note
This method is generally intended to be used for private
deposits; that is, to edit deposits prior to publication. It is
nevertheless possible to edit published deposits on Zenodo, and this
method will do so if called on a public Zenodo deposit. The updated
data and/or metadata will not be publicly visible until the deposit
is again published with the deposit_publish()
method.
Public fields
service
(character) of deposits host service.
sandbox
(logical) Connect client with sandbox if
TRUE
(zenodo only)deposits
(data.frame) Current deposits hosted on service, one row per deposit.
frictionless
(logical) Default behaviour of
TRUE
assumes uploads are data files in rectangular form, able to be described by frictionless metadata. frictionless integration is by-passed when this parameter ifFALSE
.url_base
(character) Base URL of host service API
url_service
(character) URL of deposit service
id
(integer) Deposit identifier from host service.
headers
(list) list of named headers
hostdata
(list) Data as stored by host platform
metadata
holds list of DCMI-compliant metadata.
local_path
holds path to local directory (not file) containing current deposit.
Methods
Method new()
Create a new depositsClient
object, as an R6
client with methods listed via deposits_emthods()
.
Usage
depositsClient$new(service, metadata = NULL, sandbox = FALSE, headers = NULL)
Arguments
service
(character) Name of a deposits service (see deposits_services).
metadata
Either of one two possible ways of defining metadata:
The name (or full path) or a local file containing metadata constructed with deposits_metadata_template;
A names list of metadata with names matching values given by dcmi_terms, and values specified as individual character strings or lists for multiple entries.
sandbox
If
TRUE
, connect client to sandbox, rather than actual API endpoint (for "zenodo" only).headers
Any acceptable headers. See examples in httr2 package.
Examples
\dontrun{
cli <- depositsClient$new (service = "zenodo", sandbox = TRUE)
# List methods of client:
cli$deposits_methods ()
# List all current deposits associated with user token:
cli$deposits_list ()
# Once a deposit has locally-stored metadata associated with it, only
# that parameter is needed.
path <- tempfile (pattern = "data") # A directory for data storage
dir.create (path)
f <- file.path (path, "beaver1.csv")
write.csv (datasets::beaver1, f, row.names = FALSE)
metadata <- list (
creator = list (list (name = "P. S. Reynolds")),
created = list (publisherPublication = "1994-01-01"),
title = "Time-series analyses of beaver body temperatures",
description = "Original source of 'beaver' dataset."
)
cli <- depositsClient$new (service = "figshare", metadata = metadata)
cli$deposit_new ()
cli$deposit_upload_file (f)
# A new deposits client may then be constructed by passing the data
# directory as the 'metadata' parameter:
cli <- depositsClient$new (metadata = path)
}
Method print()
print
method for the depositsClient
class, providing
an on-screen overview of current contents and structure of client.
Method deposit_add_resource()
Generate a local "datapackage.json" file, and/or add
metadata from client. A "resource" must be readable by the
frictionless package, generally meaning either a
'datapackage.json' file, or a rectangular structure able to be read
and represented as a data.frame
. See
https://docs.ropensci.org/frictionless/ for details.
Method deposit_delete()
Deleted a specified deposit from the remote service. This removes the deposits from the associated service, along with all corresponding 'hostdata' in the local client.
Method deposit_delete_file()
Delete a single from a deposits service.
This does not modify the "datapackage.json" file, either locally or on a service.
Arguments
filename
Name of file to be deleted as recorded on service.
deposit_id
The 'id' number of deposit from which file is to be deleted. If not specified, the 'id' value of current deposits client is used.
Examples
\dontrun{
# Initiate deposit and fill with metadata:
metadata <- list (
title = "Time-series analyses of beaver body temperatures",
description = "Original source of 'beaver2' data",
creator = list (list (name = "P.S. Reynolds")),
created = "1994-01-01T00:00:00",
publisher = "Case Studies in Biometry"
)
cli <- depositsClient$new (
service = "zenodo",
sandbox = TRUE,
metadata = metadata
)
cli$deposit_new ()
# Create some local data and upload to deposit:
path <- fs::path (fs::path_temp (), "beaver.csv")
write.csv (datasets::beaver2, path)
cli$deposit_upload_file (path = path)
# Confirm that uploaded files include \pkg{frictionless}
# "datapackage.json" file, and also that local version has been
# created:
cli$hostdata$files
# Then delete one of those files:
cli$deposit_delete_file ("datapackage.json")
}
Method deposit_download_file()
Download a specified 'filename' from a deposit.
Usage
depositsClient$deposit_download_file(
filename,
deposit_id = NULL,
path = NULL,
overwrite = FALSE,
quiet = FALSE
)
Arguments
filename
The name of the file to be download as specified in the deposit.
deposit_id
The 'id' number of deposit which file is to be downloaded from. If not specified, the 'id' value of current deposits client is used.
path
The local directory where file is to be downloaded.
overwrite
Do not overwrite existing files unless set to
TRUE
.quiet
If
FALSE
, display download progress.
Method deposit_embargo()
Embargo a deposit prior to publication.
Usage
depositsClient$deposit_embargo(
embargo_date = NULL,
embargo_type = c("deposit", "file"),
embargo_reason = NULL
)
Arguments
embargo_date
Date of expiry of embargo. If the
deposit_publish()
method has been called, deposit will automatically be published after this date, and will not be published, nor publicly accessible, prior to this date.embargo_type
For Figshare service only, which allows embargoes for entire deposits or single files. Ignored for other services.
embargo_reason
For Figshare service only, an optional text string describing reasons for embargo.
Method deposit_fill_metadata()
Fill deposits client with metadata.
Arguments
metadata
Either one of two possible ways of defining metadata:
The name (or full path) or a local file containing metadata constructed with deposits_metadata_template;
A names list of metadata with names matching values given by dcmi_terms, and values specified as individual character strings or lists for multiple entries.
Method deposit_new()
Initiate a new deposit on the external deposits service.
Method deposit_prereserve_doi()
Prereserve a DOI. This is generally done when a deposit
is first initialised, via the prereserve_doi
parameter. This method
exists only to subsequently prereserve a DOI for deposits initiated
with prereserve_doi = FALSE
.
Method deposit_publish()
Publish a deposit. This is an irreversible action which should only be called if you are really sure that you want to publish the deposit. Some aspects of published deposits can be subsequently edited, but they can never be deleted.
Method deposit_retrieve()
Retrieve a specified deposit and store information in local client.
Method deposit_service()
Switch external services associated with a
depositsClient
object.
Arguments
service
(character) Name of a deposits service (see deposits_services).
sandbox
If
TRUE
, connect client to sandbox, rather than actual API endpoint (for "zenodo" only).headers
Any acceptable headers. See examples in httr2 package.
Method deposit_update()
Update a remote (online) deposit with local metadata.
Arguments
deposit_id
(Optional) The 'id' number of deposit to update. If not specified, the 'id' value of current deposits client is used.
path
(Optional) If given as path to single file, update that file on remote service. If given as a directory, update all files within that directory on remote service. If not given, path will be taken from client's "local_path" field. Only files for which local versions have been changed will be uploaded.
Method deposit_upload_file()
Upload a local file or folder to an specified deposit, or update an existing version of file with new local version.
Usage
depositsClient$deposit_upload_file(
path = NULL,
deposit_id = NULL,
overwrite = FALSE,
compress = c("no", "zip", "tar"),
quiet = FALSE
)
Arguments
path
Either single file name or full path to local file or folder to be uploaded. If a single file name, the path if taken from the client's "local_path" field. If the file to be uploaded is able to be read as a tabular data file, an associated frictionless "datapackage.json" file will also be uploaded if it exists, or created if it does not. The metadata within a client will also be used to fill or update any metadata within the "datapackage.json" file.
deposit_id
The 'id' number of deposit which file is to be uploaded to. If not specified, the 'id' value of current deposits client is used.
overwrite
Set to
TRUE
to update existing files by overwriting.compress
One of "no" (default), "zip", or "tar", where the latter two will compress data in the chosen binary format prior to uploading. All files are individually compressed; uploading binary archives of multiple files is not recommended, as it prevents people downloading selections of those files.
quiet
If
FALSE
(default), display diagnostic information on screen.
Examples
\dontrun{
# Initiate deposit and fill with metadata:
metadata <- list (
title = "Time-series analyses of beaver body temperatures",
description = "Original source of 'beaver2' data",
creator = list (list (name = "P.S. Reynolds")),
created = "1994-01-01T00:00:00",
publisher = "Case Studies in Biometry"
)
cli <- depositsClient$new (
service = "zenodo",
sandbox = TRUE,
metadata = metadata
)
cli$deposit_new ()
# Create some local data and upload to deposit:
path <- fs::path (fs::path_temp (), "beaver.csv")
write.csv (datasets::beaver2, path)
cli$deposit_upload_file (path = path)
# Confirm that uploaded files include \pkg{frictionless}
# "datapackage.json" file, and also that local version has been
# created:
cli$hostdata$files
fs::dir_ls (fs::path_temp (), regexp = "datapackage")
}
Method deposit_version()
Start a new version of a published deposit, based on current client metadata. This method is not available for Figshare.
Method deposits_list()
Update 'deposits' item of current deposits for given service. The list of deposits contained within the "deposits" item of a client may not be up-to-date; this method can be used for force synchronisation with the external service, so that "deposits" lists all current deposits.
Method deposits_search()
Search all public deposits.
Usage
depositsClient$deposits_search(
search_string = NULL,
page_size = 10L,
page_number = 1L,
...
)
Arguments
search_string
Single string to search for
page_size
Number of records to return in one page
page_number
Starting page for return results; used in combination with 'page_size' for pagination.
...
Named pairs of query parameters. Zenodo parameters are described at https://developers.zenodo.org/#list36, and currently include:
status: either "draft" or "published"
sort: either "bestmatch" (the default) or "mostrecent"
all_versions: Either "true" or "false"
communities: Search for deposits only within specified communities
type: Return deposits only of specified type
subtype: Return deposits only of specified subtype
bound: A geolocation bounding box
custom: Custom keywords
Figshare parameters are described at https://docs.figshare.com/#articles_search, and currently include:
resource_doi: Only return deposits matching this 'resource_doi'
item_type: Return deopsits of specified type (as integer).
doi: Only return deposits matching this DOI
handle: Only return deposits matching this handle
project_id: Only return deposits from within specified project
order: Order for sorting results; one of "published_date", "modified_date", "views", "shares", "downloads", or "cites"
search_for: Search term.
order_direction: "asc" or "desc"
institution: Only return deposits from specified institution (as integer)
group: Only return deposits from specified group (as integer)
published_since: Only return deposits published since specified date (as YYYY-MM-DD)
modified_since: Only return deposits modified since specified date (as YYYY-MM-DD)
Returns
A data.frame
of data on deposits matching search parameters
(with format depending on the deposits service.)
Examples
\dontrun{
cli <- depositsClient$new (service = "figshare")
search_results <- cli$deposits_search (
search_string = "Text string query",
page_size = 5L
)
# The 'search_string' can be used to specify precise searches:
cli <- depositsClient$new (service = "zenodo")
search_results <-
cli$deposits_search ("keywords='frictionlessdata'&type='dataset'")
}
Examples
if (FALSE) { # \dontrun{
# make a client
cli <- depositsClient$new ("zenodo") # or:
cli <- depositsClient$new ("figshare")
print (cli)
# methods
cli$deposits_list ()
# Fill depositsClient metadata
metadata <- list (
title = "New Title",
abstract = "This is the abstract",
creator = list (list (name = "A. Person"), list (name = "B. Person"))
)
cli$deposit_fill_metadata (metadata)
print (cli)
# or pass metadata directly at construction of new client
cli <- depositsClient$new ("figshare", metadata = metadata)
} # }
## ------------------------------------------------
## Method `depositsClient$new`
## ------------------------------------------------
if (FALSE) { # \dontrun{
cli <- depositsClient$new (service = "zenodo", sandbox = TRUE)
# List methods of client:
cli$deposits_methods ()
# List all current deposits associated with user token:
cli$deposits_list ()
# Once a deposit has locally-stored metadata associated with it, only
# that parameter is needed.
path <- tempfile (pattern = "data") # A directory for data storage
dir.create (path)
f <- file.path (path, "beaver1.csv")
write.csv (datasets::beaver1, f, row.names = FALSE)
metadata <- list (
creator = list (list (name = "P. S. Reynolds")),
created = list (publisherPublication = "1994-01-01"),
title = "Time-series analyses of beaver body temperatures",
description = "Original source of 'beaver' dataset."
)
cli <- depositsClient$new (service = "figshare", metadata = metadata)
cli$deposit_new ()
cli$deposit_upload_file (f)
# A new deposits client may then be constructed by passing the data
# directory as the 'metadata' parameter:
cli <- depositsClient$new (metadata = path)
} # }
## ------------------------------------------------
## Method `depositsClient$deposit_delete_file`
## ------------------------------------------------
if (FALSE) { # \dontrun{
# Initiate deposit and fill with metadata:
metadata <- list (
title = "Time-series analyses of beaver body temperatures",
description = "Original source of 'beaver2' data",
creator = list (list (name = "P.S. Reynolds")),
created = "1994-01-01T00:00:00",
publisher = "Case Studies in Biometry"
)
cli <- depositsClient$new (
service = "zenodo",
sandbox = TRUE,
metadata = metadata
)
cli$deposit_new ()
# Create some local data and upload to deposit:
path <- fs::path (fs::path_temp (), "beaver.csv")
write.csv (datasets::beaver2, path)
cli$deposit_upload_file (path = path)
# Confirm that uploaded files include \pkg{frictionless}
# "datapackage.json" file, and also that local version has been
# created:
cli$hostdata$files
# Then delete one of those files:
cli$deposit_delete_file ("datapackage.json")
} # }
## ------------------------------------------------
## Method `depositsClient$deposit_upload_file`
## ------------------------------------------------
if (FALSE) { # \dontrun{
# Initiate deposit and fill with metadata:
metadata <- list (
title = "Time-series analyses of beaver body temperatures",
description = "Original source of 'beaver2' data",
creator = list (list (name = "P.S. Reynolds")),
created = "1994-01-01T00:00:00",
publisher = "Case Studies in Biometry"
)
cli <- depositsClient$new (
service = "zenodo",
sandbox = TRUE,
metadata = metadata
)
cli$deposit_new ()
# Create some local data and upload to deposit:
path <- fs::path (fs::path_temp (), "beaver.csv")
write.csv (datasets::beaver2, path)
cli$deposit_upload_file (path = path)
# Confirm that uploaded files include \pkg{frictionless}
# "datapackage.json" file, and also that local version has been
# created:
cli$hostdata$files
fs::dir_ls (fs::path_temp (), regexp = "datapackage")
} # }
## ------------------------------------------------
## Method `depositsClient$deposits_list`
## ------------------------------------------------
if (FALSE) { # \dontrun{
cli <- depositsClient$new (service = "zenodo", sandbox = TRUE)
print (cli)
# ... then if "Current deposits" does not seem up-to-date:
cli$deposits_list ()
# That will ensure that all external deposits are then listed,
# and can be viewed with:
cli$deposits
} # }
## ------------------------------------------------
## Method `depositsClient$deposits_search`
## ------------------------------------------------
if (FALSE) { # \dontrun{
cli <- depositsClient$new (service = "figshare")
search_results <- cli$deposits_search (
search_string = "Text string query",
page_size = 5L
)
# The 'search_string' can be used to specify precise searches:
cli <- depositsClient$new (service = "zenodo")
search_results <-
cli$deposits_search ("keywords='frictionlessdata'&type='dataset'")
} # }