Learn R Programming

⚠️There's a newer version (1.0.410) of this package.Take me there.

shinymanager

Simple and secure authentification mechanism for single 'Shiny' applications. Credentials are stored in an encrypted 'SQLite' database. Source code of main application is protected until authentication is successful.

Live demo: http://shinyapps.dreamrs.fr/shinymanager-demo/

You can authenticate with:

  • user: shiny / password: shiny
  • user: shinymanager / password: shinymanager (Admin)

Installation

remotes::install_github("datastorm-open/shinymanager")

Usage

Secure your Shiny app to control who can access it :

# define some credentials
credentials <- data.frame(
  user = c("shiny", "shinymanager"),
  password = c("azerty", "12345"),
  stringsAsFactors = FALSE
)

library(shiny)
library(shinymanager)

ui <- fluidPage(
  tags$h2("My secure application"),
  verbatimTextOutput("auth_output")
)

# Wrap your UI with secure_app
ui <- secure_app(ui)


server <- function(input, output, session) {
  
  # call the server part
  # check_credentials returns a function to authenticate users
  res_auth <- secure_server(
    check_credentials = check_credentials(credentials)
  )
  
  output$auth_output <- renderPrint({
    reactiveValuesToList(res_auth)
  })
  
  # your classic server logic
  
}

shinyApp(ui, server)

Starting page of the application will be :

Once logged, the application will be launched and a button added to navigate between the app and the admin panel (if user is authorized to access it), and to logout from the application :

Admin mode

An admin mode is available to manage access to the application, features included are

  • manage users account : add, modify and delete users
  • ask the user to change his password
  • see logs about application usage

HTTP request

shinymanager use http request and sha256 tokens to grant access to the application, like this the source code is protected without having the need to change your UI or server code.

Secure database

Store your credentials data in SQL database protected with a symmetric AES encryption from openssl :

# Credentials data
credentials <- data.frame(
  user = c("shiny", "shinymanager"),
  password = c("azerty", "12345"),
  stringsAsFactors = FALSE
)

# you can use keyring package to set database key
library(keyring)
key_set("R-shinymanager-key", "obiwankenobi")

# Create the database
create_db(
  credentials_data = credentials,
  sqlite_path = "path/to/database.sqlite", # will be created
  passphrase = key_get("R-shinymanager-key", "obiwankenobi")
)

About security

The credentials database is secured with a pass phrase and the openssl package. If you have concern about method we use, please fill an issue.

Related work

Package shinyauthr provides a nice shiny module to add an authentication layer to your shiny apps.

Copy Link

Version

Install

install.packages('shinymanager')

Monthly Downloads

1,688

Version

1.0

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Benoit Thieurmel

Last Published

June 19th, 2019

Functions in shinymanager (1.0)

generate_pwd

Simple password generation
check_credentials

Check credentials
create_db

Create credentials database
db-crypted

Read / Write crypted table from / to a SQLite database
fab_button

Create a FAB button
module-password

New password module
secure-app

Secure a Shiny application and manage authentication
module-authentication

Authentication module