Update main.py
Browse files
main.py
CHANGED
@@ -55,25 +55,23 @@ async def get_user_story(link=None):
|
|
55 |
# return {"done": "nothing"}
|
56 |
except Exception as e:
|
57 |
return {"error": str(e)}
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
"outgoing": stories.outgoing
|
76 |
-
}
|
77 |
|
78 |
@fast_app.get("/user/get_user")
|
79 |
async def get_user(user_id=None):
|
|
|
55 |
# return {"done": "nothing"}
|
56 |
except Exception as e:
|
57 |
return {"error": str(e)}
|
58 |
+
if stories:
|
59 |
+
for story in stories:
|
60 |
+
file_id = (
|
61 |
+
story.photo.file_id if story and story.photo else None
|
62 |
+
or story.video.file_id if story and story.video else None
|
63 |
+
)
|
64 |
+
caption = story.caption or f"By {user_client.me.mention}"
|
65 |
+
if file_id:
|
66 |
+
return {
|
67 |
+
"random_file_id": file_id,
|
68 |
+
"caption": caption
|
69 |
+
}
|
70 |
+
else:
|
71 |
+
return {
|
72 |
+
"random_file_id": None,
|
73 |
+
"caption": None
|
74 |
+
}
|
|
|
|
|
75 |
|
76 |
@fast_app.get("/user/get_user")
|
77 |
async def get_user(user_id=None):
|