R/update_dataset.R

Defines functions update_dataset

Documented in update_dataset

"dwapi-r
Copyright 2017 data.world, Inc.

Licensed under the Apache License, Version 2.0 (the \"License\");
you may not use this file except in compliance with the License.

You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an \"AS IS\" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied. See the License for the specific language governing
permissions and limitations under the License.

This product includes software developed at data.world, Inc.
https://data.world"

#' Update an existing dataset.
#' @param owner_id User name and unique identifier of the creator of a
#' dataset or project
#' @param dataset_id Dataset unique identifier
#' @param dataset_update_req Request object of
#' type \code{\link{dataset_update_request}}.
#' @return Object of type \code{\link{success_message}}.
#' @examples
#' request <- dwapi::dataset_update_request(visibility = 'OPEN',
#'   description = 'UPDATED DESCRIPTION !')
#'
#' \dontrun{
#'   dwapi::update_dataset('user', 'dataset', dataset_update_req = request)
#' }
#' @export
update_dataset <-
  function(owner_id, dataset_id,
    dataset_update_req) {
    url <- sprintf(
      "%s/datasets/%s/%s",
      getOption("dwapi.api_url"),
      owner_id, dataset_id)
    message(url)
    auth <- sprintf("Bearer %s", auth_token())
    response <-
      httr::PATCH(
        url,
        body = rjson::toJSON(dataset_update_req),
        httr::add_headers(`Content-Type` = "application/json",
          Authorization = auth),
        httr::user_agent(user_agent())
      )
    ret <- parse_success_or_error(response)
    ret
  }
datadotworld/dwapi-r documentation built on July 3, 2021, 3:40 a.m.