-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.R
66 lines (53 loc) · 1.61 KB
/
server.R
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
library(shiny)
function(input, output, session) {
loginForm <- reactive({
showModal(modalDialog(
size="s",
title="Bitte einloggen",
textInput("username", "Benutzername"),
passwordInput("password", "Passwort"),
p(textOutput("login_errors")),
footer = tagList(
actionButton("login", "login", class="success")
)
))
return(T)
})
userID <- reactive({
return("nanu")
req(loginForm())
req(input$login)
shiny::isolate({
if(!isTruthy(input$username)){
output$login_errors <- renderText("Bitte Benutzernamen angeben.")
req(F)
}
if(!isTruthy(input$password)){
output$login_errors <- renderText("Bitte Passwort angeben.")
req(F)
}
# Retrieve the stored hashed password from the database
userinfo <- dbGetQuery(userdb, "SELECT password_hash, id FROM users WHERE username = ?",
list(input$username), stringsAsFactors = FALSE)
valid = checkpw(input$password, userinfo$password_hash)
if(valid){
removeModal()
return(input$username)
}else{
output$login_errors <- renderText("Die Kombination aus Benutzername und Passwort ist ungültig.")
message("failed login attempt for user ", input$username)
req(F)
}
})
})
output$userIDtext <- renderText({
userID()
})
add_location_server("location_form", userID)
show_locations_server("show_locations", userID)
onStop(function(){
cat(sprintf("Session %s was closed\n", session$token))
dbDisconnect(users)
dbDisconnect(content)
})
}