Skip to content

Commit a644d2d

Browse files
schloerkegadenbuieinternaut
authored
feat: Slow down successive (same) exercise execution via throttle (#818)
Co-authored-by: Garrick Aden-Buie <[email protected]> Co-authored-by: Markus Konrad <[email protected]>
1 parent abe4b4e commit a644d2d

File tree

5 files changed

+31
-11
lines changed

5 files changed

+31
-11
lines changed

.github/workflows/R-CMD-check.yaml

+8-9
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,14 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
config:
28-
- {os: macOS-latest, r: 'release'}
29-
- {os: windows-latest, r: 'release'}
30-
- {os: windows-latest, r: '3.6'}
31-
- {os: ubuntu-20.04, r: 'devel', http-user-agent: 'release'}
32-
- {os: ubuntu-20.04, r: 'release'}
33-
- {os: ubuntu-20.04, r: 'oldrel-1'}
34-
- {os: ubuntu-20.04, r: 'oldrel-2'}
35-
- {os: ubuntu-20.04, r: 'oldrel-3'}
36-
- {os: ubuntu-20.04, r: 'oldrel-4'}
28+
- { os: macOS-latest, r: "release" }
29+
- { os: windows-latest, r: "release" }
30+
- { os: ubuntu-20.04, r: "devel", http-user-agent: "release" }
31+
- { os: ubuntu-20.04, r: "release" }
32+
- { os: ubuntu-20.04, r: "oldrel-1" }
33+
- { os: ubuntu-20.04, r: "oldrel-2" }
34+
- { os: ubuntu-20.04, r: "oldrel-3" }
35+
- { os: ubuntu-20.04, r: "oldrel-4" }
3736

3837
env:
3938
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ Config/Needs/coverage: covr
7373
Config/Needs/website: pkgdown, tidyverse/tidytemplate
7474
Encoding: UTF-8
7575
Roxygen: list(markdown = TRUE)
76-
RoxygenNote: 7.3.1
76+
RoxygenNote: 7.3.2
7777
SystemRequirements: pandoc (>= 1.14) - http://pandoc.org

NEWS.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# learnr (development version)
22

3+
- Added a new option, `tutorial.exercise.throttle`, to slow down successive exercise execution. This option should be set to the number of seconds a user will have to wait between performing code executions. The option defaults to 1 second to deter rapid code executions. To disable submission throttling, call `options(tutorial.exercise.throttle = 0)` within your setup chunk. (@internaut, #818)
4+
35
- Removed dependency on ellipsis (@olivroy, #809)
6+
47
- Added Norwegian translation contributed by @jonovik. (#806)
58

69
# learnr 0.11.5

R/exercise.R

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,13 @@ setup_exercise_handler <- function(exercise_rx, session) {
3333
# setup reactive values for return
3434
rv <- reactiveValues(triggered = 0, result = NULL)
3535

36+
# throttle option to slow down successive exercise execution requests
37+
throttle_s <- getOption("tutorial.exercise.throttle", 1) # in seconds
38+
if (is.numeric(throttle_s) && throttle_s > 0) {
39+
exercise_rx <- throttle(exercise_rx, throttle_s * 1000) # in milliseconds
40+
}
3641
# observe input
3742
observeEvent(exercise_rx(), {
38-
3943
# get exercise from app
4044
exercise <- exercise_rx()
4145
# Add tutorial information

vignettes/articles/exercises.Rmd

+14
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,20 @@ This option can also be set either globally or per-chunk:
8080
insert_snippet("exerciseeval")
8181
```
8282

83+
To prevent server overload caused by users rapidly clicking the "Run Code" button, you can set a delay between exercise code submissions using the `tutorial.exercise.throttle` option (in seconds). This will ensure that the same user can only start the evaluation of the same exercise per `tutorial.exercise.throttle` seconds. This option is set globally and the default is a throttle of of 1 second.
84+
85+
```{r snippet-exercisethrottle, eval = FALSE}
86+
# Set exercise submission throttle time to 5 seconds
87+
options("tutorial.exercise.throttle" = 5)
88+
```
89+
90+
To disable of this behavior, you can set the option to 0:
91+
92+
```{r snippet-exercisethrottleoff, eval = FALSE}
93+
# Disable exercise submission throttle
94+
options("tutorial.exercise.throttle" = 0)
95+
```
96+
8397
## Exercise Setup {#exercise-setup}
8498

8599
Code chunks with `exercise=TRUE` are evaluated within standalone environments.

0 commit comments

Comments
 (0)