Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions R/shiny.R
Original file line number Diff line number Diff line change
Expand Up @@ -1876,6 +1876,22 @@ ShinySession <- R6Class(
# Provides a mechanism for handling direct HTTP requests that are posted
# to the session (rather than going through the websocket)
handleRequest = function(req) {
if (!is.null(self$user)) {
if (is.null(req$HTTP_SHINY_SERVER_CREDENTIALS)) {
# Session owner is logged in, but this requester is not
return(NULL)
}

creds <- NULL
try({creds <- safeFromJSON(req$HTTP_SHINY_SERVER_CREDENTIALS)},
silent = TRUE
)
if (!identical(self$user, creds$user)) {
# This requester is not the same user as session owner
return(NULL)
}
}

# TODO: Turn off caching for the response
subpath <- req$PATH_INFO

Expand Down