Nothing
#handle_dictionary_dbi
handle_dictionary_dbi <- function(handler, source, config, handle = TRUE){
dbi <- config$software$input$dbi
if(is.null(dbi)){
stop("There is no database input software configured to handle dictionary from DB")
}
#db source
is_query <- startsWith(tolower(source), "select ")
if(is_query){
source <- try(DBI::dbGetQuery(dbi, source))
if(is(source,"try-error")){
errMsg <- sprintf("Error while trying to execute DB query '%s'.", source)
config$logger$ERROR(errMsg)
stop(errMsg)
}
}else{
source <- try(DBI::dbGetQuery(dbi, sprintf("select * from %s", source)))
if(is(source,"try-error")){
errMsg <- sprintf("Error while trying to read DB table/view '%s'. Check if it exists in DB.", source)
config$logger$ERROR(errMsg)
stop(errMsg)
}
}
if(!handle) return(source)
#apply generic handler
handle_dictionary_df <- source(system.file("metadata/dictionary", "dictionary_handler_df.R", package = "geoflow"))$value
dictionary <- handle_dictionary_df(handler, source, config)
return(dictionary)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.