feat/admin: add auto season tag

This commit is contained in:
Kentai Radiquum 2025-02-21 18:47:06 +05:00
parent 200b03ba92
commit 17d41b32d5
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 18 additions and 1 deletions

3
.gitignore vendored
View file

@ -4,4 +4,5 @@
node_modules node_modules
__pycache__ __pycache__
*firebase-adminsdk*.json *firebase-adminsdk*.json
temp temp
data

View file

@ -152,6 +152,22 @@ def ApiUpload():
file = request.files.get("file") file = request.files.get("file")
month = datetime.fromtimestamp(float(str(request.form.get("date"))[:10])).month
winter = [12, 1, 2]
spring = [3, 4, 5]
summer = [6, 7, 8]
autumn = [9, 10, 11]
if month in winter and not "winter" in tags:
tags.append("winter")
elif month in spring and not "spring" in tags:
tags.append("spring")
elif month in summer and not "summer" in tags:
tags.append("summer")
elif month in autumn and not "autumn" in tags:
tags.append("autumn")
if file.filename == "": if file.filename == "":
return Response( return Response(
'{"status": "error", "message": "FLASK ERR: GET FILE ERROR"}', 500 '{"status": "error", "message": "FLASK ERR: GET FILE ERROR"}', 500