2018-06-23 04:24:34 +02:00
|
|
|
process_user_input <- function (x) {
|
|
|
|
UseMethod("process_user_input", x)
|
|
|
|
}
|
|
|
|
|
|
|
|
process_user_input.default <- function(x, ...) {
|
|
|
|
stop(
|
|
|
|
deparse(substitute(x)),
|
|
|
|
" must be a 'data.frame',",
|
|
|
|
" a 'response',",
|
|
|
|
" or a 'character' vector containing JSON.",
|
|
|
|
call. = FALSE
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
process_user_input.data.frame <- function(x, ...) {
|
2019-07-29 18:30:52 +02:00
|
|
|
x
|
2018-06-23 04:24:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
process_user_input.character <- function(x, ...) {
|
|
|
|
if (!requireNamespace("jsonlite", quietly = TRUE)) {
|
|
|
|
stop(
|
|
|
|
"The package 'jsonlite' is needed to convert ",
|
|
|
|
deparse(substitute(x)),
|
|
|
|
" into a data frame.",
|
|
|
|
"\n Either install 'jsonlite' or pass ",
|
|
|
|
deparse(substitute(x)),
|
|
|
|
" as a 'data.frame'.",
|
|
|
|
call. = FALSE
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonlite::fromJSON(x)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
process_user_input.response <- function(x, ...) {
|
2018-06-23 04:34:35 +02:00
|
|
|
process_user_input(rawToChar(x$content))
|
2018-06-23 04:24:34 +02:00
|
|
|
|
|
|
|
}
|