R/query_event_subscriptions.R

Defines functions query_event_subscriptions

Documented in query_event_subscriptions

#' Query event subscriptions
#'
#' @param query (character) Query (see details below)
#' @param as (character) Format of the returned object. Can be: "data.frame" 
#' or "xml".
#' @param env (character) Repository environment. Can be: "production",
#' "staging", or "development".
#'
#' @return (data.frame or xml_document) A list of the subscriptions whose 
#' attributes match those specified in the query string (see details below). 
#' If a query string is omitted, all subscriptions in the subscription database 
#' will be returned for which the requesting user is authorized to read. If 
#' query parameters are included, they are used to filter that set of 
#' subscriptions based on their attributes.
#'
#' @details Query parameters are specified as key=value pairs, multiple pairs
#' must be delimited with ampersands (&), and only a single value should be
#' specified for a particular key. The following query parameter keys are
#' allowed:
#'
#' \itemize{
#'   \item creator
#'   \item scope
#'   \item identifier
#'   \item revision
#'   \item url
#' }
#'
#' If a query parameter is specified, and a subscription's respective attribute
#' does not match it, that subscription will not be included in the group of
#' subscriptions returned. If scope, identifier, or revision are used, their
#' values must together constitute a syntactically and semantically correct EML
#' packageId (i.e. "scope.identifier.revision") - either partial or complete.
#' If url is used, its value must not contain ampersands. Therefore, if a
#' subscription's URL contains ampersands, it cannot be filtered based on its
#' URL.
#'
#' @note User authentication is required (see \code{login()})
#' 
#' @family Event Notifications
#'
#' @export
#'
#' @examples
#' \dontrun{
#'
#' login()
#'
#' # Query subscriptions
#' query <- "scope=edi"
#' subscriptions <- query_event_subscriptions(query, env = "staging")
#'
#' logout()
#' }
#'
query_event_subscriptions <- function(query = NULL, 
                                      as = "data.frame", 
                                      env = "production") {
  url <- paste0(base_url(env), "/package/event/eml?")
  if (!is.null(query)) {
    url <- paste0(url, query)
  }
  cookie <- bake_cookie()
  resp <- httr::GET(url, set_user_agent(), cookie, handle = httr::handle(""))
  res <- httr::content(resp, as = "text", encoding = "UTF-8")
  httr::stop_for_status(resp, res)
  res <- xml2::read_xml(res)
  ifelse(as == "data.frame", return(xml2df(res)), return(res))
}

Try the EDIutils package in your browser

Any scripts or data that you put into this service are public.

EDIutils documentation built on Oct. 11, 2023, 1:08 a.m.