-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReadme.Rmd
118 lines (93 loc) · 2.72 KB
/
Readme.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
title: "shinyuser"
output: github_document
---
```{r, echo = FALSE, results='asis', eval = T, eval = T, message=F, warning=F}
library(badger)
# git_repo <- "systats/shinyuser"
# cat(
# #badge_travis(git_repo),
# #"[](https://codecov.io/gh/favstats/peRspective?branch=master)",
# badge_code_size(git_repo),
# badge_last_commit(git_repo),
# badge_lifecycle("experimental", "blue")
# )
```
This is a demonstration of how to implement user authentication directly in a shiny app. The core idea is to provide a simple, secure and modularized solution.
Features:
1. User's credentials are saved wherever you want.
2. Clean landing page that overlays any arbitrary layout
3. Basic security features
+ delayed login trialing (5 sec)
<!-- + `openssl` for daily session cookies -->
+ `bcrypt` for password encrypton
<!-- 3. Stay logged in after refresh ([taken from calligross](https://gist.github.com/calligross/e779281b500eb93ee9e42e4d72448189)). -->
4. Build with [shiny.semantic](https://github.com/Appsilon/shiny.semantic) for clean design patterns
5. Tested with shinyapps.io
Minimal example of `shinyuser`
```{r, eval = F}
library(tidyverse)
library(shiny)
library(shinyjs)
library(shiny.semantic)
library(semantic.dashboard)
library(shinyuser)
library(openssl)
library(bcrypt)
ui <- function(){
dashboardPage(
dashboardHeader(
inverted = T,
login_ui("user"),
div(class = "ui circular icon button action-button", id = "user-logout",
icon("power off")
)
),
dashboardSidebar(
side = "left", size = "", inverted = T,
sidebarMenu(
div(class = "item",
h4(class = "ui inverted header", "Something")
)
)
),
dashboardBody(
div(class = "sixteen wide column",
"Something great content"
)
)
)
}
server <- function(input, output) {
users <- reactive({
dplyr::tibble(name = "admin", pw = bcrypt::hashpw("test"))
})
user <- callModule(login_server, "user", users)
observeEvent(user(), {
observe(print(user()))
})
}
shinyApp(ui, server)
```
<!-- <img src = "demo.gif"> <!-- width = "80%" -->
```{r}
devtools::document()
devtools::install()
```
```{r}
users <- dplyr::tibble(name = c("admin", "admin2"), email = name, pw = bcrypt::hashpw("test")) %>% glimpse
.name = "admin"
.email = ""
.pw = "test"
bcrypt::checkpw(password = .pw, hash = users$pw[2])
known <- users %>%
#glimpse %>%
dplyr::filter(name == .name | email == .email) %>%
# glimpse %>%
dplyr::filter(bcrypt::checkpw(password = .pw, hash = pw)) %>%
glimpse
# & #(),
#
)
glimpse(known)
```