randydev commited on
Commit
dcef69d
·
verified ·
1 Parent(s): f7bc7c5

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +21 -18
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 = utils.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
- if stories:
57
- for story in stories:
58
- file_id = (
59
- story.photo.file_id if story and story.photo else None
60
- or story.video.file_id if story and story.video else None
61
- )
62
- caption = story.caption or f"By {user_client.me.mention}"
63
- if file_id:
64
- return {
65
- "uploaded_file_id": file_id,
66
- "caption": caption
67
- }
68
- else:
69
- return {
70
- "uploaded_file_id": None,
71
- "caption": None
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):