Skip to content

Commit

Permalink
Merge pull request #65 from openzim/fix_limits
Browse files Browse the repository at this point in the history
Do not allow to set negativ or null time/size limits
  • Loading branch information
benoit74 committed Jul 24, 2024
2 parents 08d9ee4 + 3b4fa4b commit e666d02
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions api/src/routes/requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,23 @@ def post(self, *args, **kwargs):
del document["flags"][flag]

# make sure we cap requests to ZIMIT_LIMIT at most
def _cap_limit(user_limit: int, zimit_limit: int) -> int:
if user_limit <= 0: # case where someone is trying to trick the limit
return zimit_limit
if user_limit < zimit_limit:
return user_limit
return zimit_limit # case where someone is trying to trick as well

try:
size_limit = int(document["flags"].get("sizeLimit", ZIMIT_SIZE_LIMIT))
except Exception:
size_limit = ZIMIT_SIZE_LIMIT
document["flags"]["sizeLimit"] = str(min([size_limit, ZIMIT_SIZE_LIMIT]))
document["flags"]["sizeLimit"] = str(_cap_limit(size_limit, ZIMIT_SIZE_LIMIT))
try:
time_limit = int(document["flags"].get("timeLimit", ZIMIT_TIME_LIMIT))
except Exception:
time_limit = ZIMIT_TIME_LIMIT
document["flags"]["timeLimit"] = min([time_limit, ZIMIT_TIME_LIMIT])
document["flags"]["timeLimit"] = _cap_limit(time_limit, ZIMIT_TIME_LIMIT)

config = {
"task_name": "zimit",
Expand Down

0 comments on commit e666d02

Please sign in to comment.