Skip to content
api_call.R 3.61 KiB
Newer Older
#' Get a codelist based on an identifier
#'
#' @param identifier the codelist's identifier
#' @param server server on which to query API
#' Available are 'i14y' and 'abn'.
#' @param language string for language(s) to return.
#' Available are 'all', 'fr', 'de', 'it', 'en'.
#' If 'all' (default), all languages are returned.
#' @param export_format the export's format
#' Available are CSV, XLSX, SDMX-ML or JSON.
#' @param version_format the export format's version
#' (2.0 or 2.1 when format is SDMX-ML).
#' @param annotations flag to include annotations
#'
#' @return response based on the export format
#' @export
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
get_codelist <- function(identifier,
                         server = 'I14Y',
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
                         export_format = "SDMX-ML",
                         version_format = 2.1,
                         annotations = FALSE) {
  api <- api_class(
    api_type = "codelist",
    server = server,
    id = identifier,
    language = language,
    export_format = export_format,
    parameters = glue::glue("annotations={tolower(annotations)}")
#' Get one level of a nomenclature
#'
#' @param identifier nomenclature's identifier
#' @param server server on which to query API
#' Available are 'i14y' and 'abn'.
#' @param filters additionnal filters
#' @param level_number level to export
#' @param language  the language of the response data
#' Available are 'fr', 'de', 'it', 'en'.
#' @param annotations flag to include annotations
#'
#' @return dataframe with 3 columns
#' (Code, Parent and Name in the selected language)
#' @export
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
get_nomenclature_one_level <- function(identifier,
                                       server = 'I14Y',
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
                                       level_number = 1,
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
                                       annotations = FALSE) {
  parameters <- glue::glue(
    "level={level_number}",
    "&annotations={tolower(annotations)}",
    "&{list_to_string(filters)}"
  api <- api_class(
    api_type = "nomenclature_one_level",
    server = server,
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
    id = identifier,
    language = language,
    parameters = parameters,
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
    export_format = "CSV"
  )
  api$get_response()
}
#' Get multiple levels of a nomenclature (from `level_from` to `level_to`)
#'
#' @param identifier nomenclature's identifier
#' @param server server on which to query API
#' Available are 'i14y' and 'abn'.
#' @param filters additionnal filters
#' @param level_from the 1st level to include
#' @param level_to the last level to include
#' @param language  the language of the response data
#' Available are 'fr', 'de', 'it', 'en'.
#' @param annotations flag to include annotations
#'
#' @return dataframe columns
#' from `level_from` to `level_to` codes
#' @export
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
get_nomenclature_multiple_levels <- function(identifier,
                                             server = 'I14Y',
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
                                             level_from = 1,
                                             level_to = 2,
                                             language = "fr",
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
                                             annotations = FALSE) {
  parameters <- glue::glue(
    "language={language}",
    "&levelFrom={level_from}",
    "&levelTo={level_to}",
    "&annotations={tolower(annotations)}",
    "&{list_to_string(filters)}"
  api <- api_class(
    api_type = "nomenclature_multiple_levels",
    server = server,
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
    id = identifier,
    parameters = parameters,
Pauline Maury Laribière's avatar
Pauline Maury Laribière committed
    export_format = "CSV"