stranck-dev #5

Merged
drew merged 4 commits from stranck-dev into drew-dev 2024-01-07 20:31:00 +00:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit 6b70d91201 - Show all commits

2
app.py
View File

@ -47,6 +47,8 @@ async def clear_session(request, exception):
@app.before_server_start
async def main_start(*_):
print(">>>>>> main_start <<<<<<")
app.config.REQUEST_MAX_SIZE = 1024 * 1024 * 5 # 5 MB
app.ctx.om = OrderManager()
if FILL_CACHE:

View File

@ -45,6 +45,8 @@ async def upload_propic(request, order: Order):
try:
img = Image.open(BytesIO(body[0].body))
if(img.size[0] > 2048 or img.size[1] > 2048):
raise exceptions.BadRequest("Maximum allowed dimensions: 2048x2048")
with open(f"res/propic/{fn}_{order.code}_original", "wb") as f:
f.write(body[0].body)