prepare to encrypt db

This commit is contained in:
2025-04-25 11:36:28 +03:00
parent 40bce6d634
commit 8dfd85736b
2 changed files with 65 additions and 5 deletions

5
app.R
View File

@@ -14,6 +14,9 @@ suppressPackageStartupMessages({
source("helpers/functions.R") source("helpers/functions.R")
# box::purge_cache()
# box::use(./helpers/db)
# SOURCE FILES ============================ # SOURCE FILES ============================
config <- config::get(file = "configs/config.yml") config <- config::get(file = "configs/config.yml")
@@ -76,7 +79,7 @@ close_db_connection <- function(con, where = "") {
con <- make_db_connection() con <- make_db_connection()
# init DB (write dummy data to "main" table) # init DB (write dummy data to "main" table)
if (!"main" %in% dbListTables(con)) { if (!"main" %in% DBI::dbListTables(con)) {
dummy_df <- dplyr::mutate(get_dummy_df(), id = "dummy") dummy_df <- dplyr::mutate(get_dummy_df(), id = "dummy")
# write dummy df into base, then delete dummy row # write dummy df into base, then delete dummy row

57
helpers/db.R Normal file
View File

@@ -0,0 +1,57 @@
# based on https://github.com/datastorm-open/shinymanager/
#' @export
write_db_encrypt <- function(conn, value, name, passphrase = Sys.getenv("AUTH_DB_KEY")) {
if (is.character(conn)) {
conn <- DBI::dbConnect(RSQLite::SQLite(), dbname = conn)
on.exit(DBI::dbDisconnect(conn))
}
if (name == "credentials" && "password" %in% colnames(value)) {
if (!"is_hashed_password" %in% colnames(value)) {
value$is_hashed_password <- FALSE
}
to_hash <- which(!as.logical(value$is_hashed_password))
if (length(to_hash) > 0) {
# store hashed password
value$password[to_hash] <- sapply(value$password[to_hash], function(x) scrypt::hashPassword(x))
value$is_hashed_password[to_hash] <- TRUE
}
}
if (!is.null(passphrase)) {
passphrase <- as.character(passphrase)
passphrase <- charToRaw(passphrase)
key <- openssl::sha256(passphrase)
value_serialized <- serialize(value, NULL)
value_encrypted <- openssl::aes_cbc_encrypt(data = value_serialized, key = key)
value <- data.frame(value = I(list(value_encrypted)), iv = I(list(attr(value_encrypted, "iv"))))
}
DBI::dbWriteTable(conn = conn, name = name, value = value, overwrite = TRUE)
}
#' @export
read_db_encrypt <- function(conn, name, passphrase = Sys.getenv("AUTH_DB_KEY")) {
if (is.character(conn)) {
conn <- DBI::dbConnect(RSQLite::SQLite(), dbname = conn)
on.exit(DBI::dbDisconnect(conn))
}
out <- DBI::dbReadTable(conn = conn, name = name)
if (!is.null(passphrase)) {
passphrase <- as.character(passphrase)
passphrase <- charToRaw(passphrase)
key <- openssl::sha256(passphrase)
value <- out$value[[1]]
attr(value, "iv") <- out$iv[[1]]
out <- openssl::aes_cbc_decrypt(value, key = key)
out <- unserialize(out)
}
return(out)
}