Skip to content

Commit affb8b6

Browse files
committed
Zensus api start
Implementing gen_zensus_auth stuff
1 parent a4e9f43 commit affb8b6

8 files changed

+183
-25
lines changed

R/gen_alternative_terms.R

+30-9
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,28 @@
44
#'
55
#' @param term Character string. Maximum length of 15 characters. Term or word for which you are searching for alternative or related terms. Use of '*' as a placeholder is possible to generate broader search areas.
66
#' @param similarity Logical. Indicator if the output of the function should be sorted based on a Levenshtein edit distance based on the \code{adist()} function.
7+
#' @param database Character string. Indicator if the Destatis or Zensus database is called.
78
#' @param ... Additional parameters for the Genesis API call. These parameters are only affecting the Genesis call itself, no further processing. For more details see `vignette("additional_parameter")`.
89
#'
910
#' @return A list with all recalled elements from Genesis. Attributes are added to the data.frame, describing the search configuration for the returned output.
1011
#' @export
1112
#'
1213
#' @examples
1314
#' \dontrun{
14-
#' # Find terms that are similar (in spelling) to search term "bus"
15+
#' # Find terms at Destatis that are similar (in spelling) to search term "bus"
1516
#' # and sort them by Levenshtein edit distance
16-
#' object <- gen_alternative_terms(term = "bus", similarity = TRUE)
17+
#' object <- gen_alternative_terms(term = "bus", similarity = TRUE, database = "destatis")
1718
#'
18-
#' # Find terms that are related (in spelling) to search term "bus"
19-
#' object <- gen_alternative_terms(term = "bus*", similarity = TRUE)
19+
#' # Find terms at Destatis that are related (in spelling) to search term "bus"
20+
#' object <- gen_alternative_terms(term = "bus*", similarity = TRUE, database = "destatis")
21+
#'
22+
#' # Find terms at Zensus that are related (in spelling) to search term "bus"
23+
#' object <- gen_alternative_terms(term = "bus*", similarity = TRUE, database = "zensus")
2024
#' }
2125
#'
2226
gen_alternative_terms <- function(term = NULL,
2327
similarity = TRUE,
28+
database = c("zensus", "destatis"),
2429
...) {
2530

2631
caller <- as.character(match.call()[1])
@@ -31,12 +36,28 @@ gen_alternative_terms <- function(term = NULL,
3136

3237
#-------------------------------------------------------------------------------
3338

34-
results_raw <- gen_api("catalogue/terms",
39+
if( length(database) == 1 & database == "zensus" ){
40+
41+
results_raw <- gen_zensus_api("catalogue/terms",
42+
username = gen_zensus_auth_get()$username,
43+
password = gen_zensus_auth_get()$password,
44+
selection = term,
45+
...)
46+
47+
} else if ( length(database) == 1 & database == "destatis" ){
48+
49+
results_raw <- gen_api("catalogue/terms",
50+
username = gen_auth_get()$username,
51+
password = gen_auth_get()$password,
52+
selection = term,
53+
...)
3554

36-
username = gen_auth_get()$username,
37-
password = gen_auth_get()$password,
38-
selection = term,
39-
...)
55+
} else {
56+
57+
stop("Parameter 'database' has to be 'zensus' or 'destatis'.",
58+
call. = FALSE)
59+
60+
}
4061

4162
results_json <- test_if_json(results_raw)
4263

R/gen_auth.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#' Save authentication
1+
#' Save authentication GENESIS
22
#'
33
#' See Details.
44
#'

R/gen_find.R

+28-6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#' @param detailed A logical. Indicator if the function should return the detailed output of the iteration including all object related information or only a shortened output including only code and object title. Default Option is FALSE.
1010
#' @param ordering A logical. Indicator if the function should return the output of the iteration ordered first based on the fact if the searched term is appearing in the title of the object and secondly on an estimator of the number of variables in this object. Default option is TRUE.
1111
#' @param error.ignore A logical. Indicator if the function should stop if an error occurs or no object for the request is found or if it should produce an artificial response (e.g., for complex processes not to fail).
12+
#' @param database Character string. Indicator if the Destatis or Zensus database is called.
1213
#' @param ... Additional parameters for the Genesis API call. These parameters are only affecting the Genesis call itself, no further processing. For more details see `vignette("additional_parameter")`.
1314
#'
1415
#' @return A list with all elements retrieved from Genesis. Attributes are added to the data.frame describing the search configuration for the returned output.
@@ -34,6 +35,7 @@ gen_find <- function(term = NULL,
3435
detailed = FALSE,
3536
ordering = TRUE,
3637
error.ignore = FALSE,
38+
database = c("zensus", "destatis"),
3739
...) {
3840

3941
caller <- as.character(match.call()[1])
@@ -43,18 +45,38 @@ gen_find <- function(term = NULL,
4345
detailed = detailed,
4446
ordering = ordering,
4547
error.ignore = error.ignore,
48+
database = databse,
4649
caller = caller)
4750

4851
category <- match.arg(category)
4952

5053
#-----------------------------------------------------------------------------
5154

52-
results_raw <- gen_api("find/find",
53-
username = gen_auth_get()$username,
54-
password = gen_auth_get()$password,
55-
term = term,
56-
category = category,
57-
...)
55+
if( database == "zensus"){
56+
57+
results_raw <- gen_zensus_api("find/find",
58+
username = gen_zensus_auth_get()$username,
59+
password = gen_zensus_auth_get()$password,
60+
term = term,
61+
category = category,
62+
...)
63+
64+
} else if (database == "destatis"){
65+
66+
results_raw <- gen_api("find/find",
67+
username = gen_auth_get()$username,
68+
password = gen_auth_get()$password,
69+
term = term,
70+
category = category,
71+
...)
72+
73+
} else {
74+
75+
stop("Parameter 'database' has to be 'zensus' or 'destatis'.",
76+
call. = FALSE)
77+
78+
}
79+
5880

5981
results_json <- test_if_json(results_raw)
6082

R/gen_list_jobs.R

+26-7
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,42 @@
44
#'
55
#' @param selection Filter the list of jobs for matching codes.
66
#' @param sortcriterion Allows to sort the resulting list of jobs by their Code ("content"), the time of completion ("time") or status ("status")
7+
#' @param database Character string. Indicator if the Destatis or Zensus database is called.
78
#' @param ... Additional parameters for the Genesis API call. These parameters are only affecting the Genesis call itself, no further processing. For more details see `vignette("additional_parameter")`.
89
#'
910
#' @return A list of all current jobs connected to the given user.
1011
#' @export
1112
#'
1213
gen_list_jobs <- function(selection = NULL,
1314
sortcriterion = c("content", "time", "status"),
15+
database = c("zensus", "destatis"),
1416
...
1517
) {
1618

17-
results_raw <- gen_api("catalogue/jobs",
18-
username = gen_auth_get()$username,
19-
password = gen_auth_get()$password,
20-
selection = selection,
21-
sortcriterion = sortcriterion,
22-
...
23-
)
19+
if( length(database) == 1 & database == "zensus" ){
20+
21+
results_raw <- gen_zensus_api("catalogue/jobs",
22+
username = gen_zensus_auth_get()$username,
23+
password = gen_zensus_auth_get()$password,
24+
selection = selection,
25+
sortcriterion = sortcriterion,
26+
...)
27+
28+
} else if ( length(database) == 1 & database == "destatis" ){
29+
30+
results_raw <- gen_api("catalogue/jobs",
31+
username = gen_auth_get()$username,
32+
password = gen_auth_get()$password,
33+
selection = selection,
34+
sortcriterion = sortcriterion,
35+
...)
36+
37+
} else {
38+
39+
stop("Parameter 'database' has to be 'zensus' or 'destatis'.",
40+
call. = FALSE)
41+
42+
}
2443

2544
results_json <- test_if_json(results_raw)
2645

R/gen_zensus_api.R

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#' Low-level function to interact with the Zensus 2022 GENESIS API
2+
#'
3+
#' @param endpoint Self-explanatory
4+
#'
5+
#' @importFrom httr2 `%>%`
6+
#'
7+
#' @noRd
8+
#'
9+
#' @examples
10+
#' gen_api("helloworld/logincheck") %>%
11+
#' httr2::resp_body_json()
12+
gen_zensus_api <- function(endpoint, ...) {
13+
httr2::request("https://ergebnisse2011.zensus2022.de/api/rest/2020") %>%
14+
httr2::req_user_agent("https://github.com/CorrelAid/restatis") %>%
15+
httr2::req_url_path_append(endpoint) %>%
16+
httr2::req_url_query(!!!gen_zensus_auth_get(), ...) %>%
17+
httr2::req_retry(max_tries = 3) %>%
18+
httr2::req_perform()
19+
}

R/gen_zensus_auth.R

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
#' Save authentication ZENSUS
2+
#'
3+
#' See Details.
4+
#'
5+
#' Zensus username and password are encrypted and saved as RDS in the
6+
#' package config directory.
7+
#'
8+
#' A random string is generated and stored in the session environment
9+
#' variable `ZENSUS_KEY`. This string is used as the key to encrypt and
10+
#' decrypt the entered Genesis credentials.
11+
#'
12+
#' To avoid having to save authentication in future sessions, `ZENSUS_KEY` can
13+
#' be added to .Renviron. The usethis package includes a helper function for
14+
#' editing .Renviron files from an R session with [usethis::edit_r_environ()].
15+
#'
16+
#' @export
17+
gen_zensus_auth_save <- function() {
18+
19+
username <- gen_auth_ask("username")
20+
password <- gen_auth_ask("password")
21+
22+
auth_path <- gen_auth_path("auth_ZENSUS.rds")
23+
24+
key <- httr2::secret_make_key()
25+
26+
Sys.setenv(ZENSUS_KEY = key)
27+
28+
message(
29+
"Saving credentials to ",
30+
auth_path,
31+
"\n\n",
32+
"Please add the following line to your .Renviron, ",
33+
"e.g. via `usethis::edit_r_environ()`, ",
34+
"to use the specified username and password across sessions:\n\n",
35+
"ZENSUS_KEY=",
36+
key,
37+
"\n\n"
38+
)
39+
40+
dir.create(gen_auth_path(), showWarnings = FALSE, recursive = TRUE)
41+
42+
httr2::secret_write_rds(
43+
list(username = username, password = password),
44+
path = auth_path,
45+
key = "ZENSUS_KEY"
46+
)
47+
}
48+
49+
gen_zensus_auth_get <- function() {
50+
51+
auth_path <- gen_auth_path("auth_ZENSUS.rds")
52+
53+
if (!(file.exists(auth_path) && nzchar(Sys.getenv("ZENSUS_KEY")))) {
54+
stop(
55+
"Zensus credentials not found.\n",
56+
"Please run `gen_auth_save()` to store Zensus username and password.\n",
57+
call. = FALSE
58+
)
59+
}
60+
61+
httr2::secret_read_rds(auth_path, "ZENSUS_KEY")
62+
}

R/utils.R

+11-2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ check_function_input <- function(code = NULL,
9494
similarity = NULL,
9595
error.ignore = NULL,
9696
ordering = NULL,
97+
database = NULL,
9798
caller = NULL) {
9899
# Code & Term ----
99100

@@ -222,10 +223,18 @@ check_function_input <- function(code = NULL,
222223
#----------------------------------------
223224

224225
if (caller %in% c("restatis::gen_find", "gen_find")) {
225-
if (!all(category %in% c("all", "tables", "statistics", "variables", "cubes"))) {
226+
if (database == "zensus"){
227+
if (!all(category %in% c("all", "tables", "statistics", "variables"))) {
228+
stop("Available categories are all, tables, statistics, and variables.",
229+
call. = FALSE
230+
)
231+
}
232+
} else if (database == "destatis"){
233+
if (!all(category %in% c("all", "tables", "statistics", "variables", "cubes"))) {
226234
stop("Available categories are all, tables, statistics, variables, and cubes.",
227235
call. = FALSE
228-
)
236+
)
237+
}
229238
}
230239
}
231240

R/zzz.R

+6
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,9 @@
33

44
if (!nzchar(Sys.getenv("GENESIS_LANG"))) Sys.setenv(GENESIS_LANG = "en")
55
}
6+
7+
.onLoad_zensus <- function(libname, pkgname) {
8+
gen_zensus_api <<- memoise::memoise(gen_zensus_api)
9+
10+
if (!nzchar(Sys.getenv("GENESIS_LANG"))) Sys.setenv(GENESIS_LANG = "en")
11+
}

0 commit comments

Comments
 (0)