Allow WTI viewing of Clars (always) and Problems (any time after contest has been started) #1029
Labels
good first issue
Good for newcomers
NEXT Contest
Consider fixing for next contet
Small LOE
Less than an hour to code, test and push a PR
WTI-API Server
WTI Backend change
Describe the issue:
Currently the WTI code (specifically, the
ContestController
class in the WTI-APIcontrollers
package) supports HTTP endpoints/clarifications
(which returns a list of current clarifications) and/problems
(which returns a list of the current contest problems). Both these endpoints have code at the beginning which requires two conditions to be met: the requesting user must be logged in, and the contest must be "running" (i.e., has been started and is not currently stopped (a.k.a. "paused"). If either of these conditions is false, the endpoint returns "401 - Not Authorized".There doesn't seem to be any logical reason for requiring that the contest be "running" in order for a user to see a list of clarifications -- for example, a contest admin might want to send a "clarification" (announcement) like "The start of the contest has been delayed; it will start at 9:20". The requirement of the
/clarifications
endpoint that the contest be "running" means that logged in users won't be able to see this if it is sent before the contest starts.Similarly, there doesn't seem to be any reason to prohibit viewing of the contest problems after the contest has been started (for example, during a "pause"); once the contest has been started then teams have already seen (or at least, had the opportunity to see) the contest problems -- but the current
/problems
endpoint implementation won't allow them to continue to see them if the contest is paused.To Reproduce:
Expected behavior:
Actual behavior:
The browser console will show multiple Errors ("401 - Not Authorized") from the "Clarifications" request; the team will not be able to see the problem list when the contest is paused (after it has been started).
Environment:
All.
Additional context:
Two suggested steps to fix this issue:
else
condition in the/clarifications
endpoint (just after the check foruserInformation == null
) that checksif (... isContestClockRunning())
. This will allow logged in users to see clarifications regardless of whether the contest is running or not./problems
endpoint (the test forif (... isContestClockRunning())
) with a test that checksif (contestHasBeenStarted())
. This will allow logged in users to see contest problems any time after the contest has been started.Note: there (probably) is not an existing method
contestHasBeenStarted()
. A simple equivalent test might be to test if the contest elapsed time is greater than zero.The text was updated successfully, but these errors were encountered: