mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-04 23:34:31 +00:00
feat/admin: add auto season tag
This commit is contained in:
parent
200b03ba92
commit
17d41b32d5
2 changed files with 18 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -4,4 +4,5 @@
|
|||
node_modules
|
||||
__pycache__
|
||||
*firebase-adminsdk*.json
|
||||
temp
|
||||
temp
|
||||
data
|
|
@ -152,6 +152,22 @@ def ApiUpload():
|
|||
|
||||
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 == "":
|
||||
return Response(
|
||||
'{"status": "error", "message": "FLASK ERR: GET FILE ERROR"}', 500
|
||||
|
|
Loading…
Add table
Reference in a new issue