Update main.py
Browse files
main.py
CHANGED
@@ -48,28 +48,31 @@ async def hello():
|
|
48 |
|
49 |
@fast_app.get("/user/get_story")
|
50 |
async def get_user_story(link=None):
|
51 |
-
username, random_id =
|
52 |
try:
|
53 |
stories = await user_client.get_stories(username, story_ids=[random_id])
|
54 |
except Exception as e:
|
55 |
return {"error": str(e)}
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
|
|
|
|
|
|
73 |
|
74 |
@fast_app.get("/user/get_user")
|
75 |
async def get_user(user_id=None):
|
|
|
48 |
|
49 |
@fast_app.get("/user/get_story")
|
50 |
async def get_user_story(link=None):
|
51 |
+
username, random_id = get_random_from_channel(link_story)
|
52 |
try:
|
53 |
stories = await user_client.get_stories(username, story_ids=[random_id])
|
54 |
except Exception as e:
|
55 |
return {"error": str(e)}
|
56 |
+
file_id = (
|
57 |
+
stories.photo.file_id if stories and stories.photo else None
|
58 |
+
or stories.video.file_id if stories and stories.video else None
|
59 |
+
)
|
60 |
+
caption = stories.caption or f"By {user_client.me.mention}"
|
61 |
+
return {
|
62 |
+
"id": stories.id,
|
63 |
+
"date": stories.date,
|
64 |
+
"expire_date": stories.expire_date,
|
65 |
+
"media": stories.media,
|
66 |
+
"has_protected_content": stories.has_protected_content,
|
67 |
+
"random_file_id": file_id,
|
68 |
+
"caption": caption,
|
69 |
+
"edited": stories.edited,
|
70 |
+
"pinned": stories.pinned,
|
71 |
+
"close_friends": stories.close_friends,
|
72 |
+
"contacts": stories.contacts,
|
73 |
+
"selected_contacts": stories.selected_contacts,
|
74 |
+
"outgoing": stories.outgoing
|
75 |
+
}
|
76 |
|
77 |
@fast_app.get("/user/get_user")
|
78 |
async def get_user(user_id=None):
|