Update main.py
Browse files
main.py
CHANGED
@@ -80,34 +80,34 @@ async def get_user_story(link: str = None):
|
|
80 |
async def get_chat_raw(username: str = None):
|
81 |
try:
|
82 |
chat_raw = (await client.get_chat(username)).raw
|
83 |
-
|
84 |
except Exception:
|
85 |
return {"error": "Error try again invalid"}
|
86 |
return {
|
87 |
"id": chat_raw.id,
|
88 |
"about": chat_raw.about,
|
89 |
-
"title":
|
90 |
-
"username":
|
91 |
"photo": {
|
92 |
"id": chat_raw.chat_photo.id,
|
93 |
-
"small_file_id":
|
94 |
-
"small_photo_unique_id":
|
95 |
-
"big_file_id":
|
96 |
-
"big_photo_unique_id":
|
97 |
"date": chat_raw.chat_photo.date,
|
98 |
"dc_id": chat_raw.chat_photo.dc_id,
|
99 |
-
"has_animation":
|
100 |
-
"is_personal":
|
101 |
},
|
102 |
"from_user": {
|
103 |
-
"id":
|
104 |
-
"first_name":
|
105 |
-
"last_name":
|
106 |
-
"status":
|
107 |
-
"last_online_date": chat_.pinned_message.from_user.last_online_date,
|
108 |
-
"username":
|
109 |
-
"is_premium":
|
110 |
-
"is_scam":
|
111 |
},
|
112 |
"can_view_participants": chat_raw.can_view_participants,
|
113 |
"can_set_username": chat_raw.can_set_username,
|
|
|
80 |
async def get_chat_raw(username: str = None):
|
81 |
try:
|
82 |
chat_raw = (await client.get_chat(username)).raw
|
83 |
+
ok = await user_client.get_chat(username)
|
84 |
except Exception:
|
85 |
return {"error": "Error try again invalid"}
|
86 |
return {
|
87 |
"id": chat_raw.id,
|
88 |
"about": chat_raw.about,
|
89 |
+
"title": ok.title,
|
90 |
+
"username": ok.username if ok else None,
|
91 |
"photo": {
|
92 |
"id": chat_raw.chat_photo.id,
|
93 |
+
"small_file_id": ok.photo.small_file_id,
|
94 |
+
"small_photo_unique_id": ok.photo.small_photo_unique_id,
|
95 |
+
"big_file_id": ok.photo.big_file_id,
|
96 |
+
"big_photo_unique_id": ok.photo.big_photo_unique_id,
|
97 |
"date": chat_raw.chat_photo.date,
|
98 |
"dc_id": chat_raw.chat_photo.dc_id,
|
99 |
+
"has_animation": ok.photo.has_animation,
|
100 |
+
"is_personal": ok.photo.is_personal
|
101 |
},
|
102 |
"from_user": {
|
103 |
+
"id": ok.pinned_message.from_user.id if ok.pinned_message.from_user else None,
|
104 |
+
"first_name": ok.pinned_message.from_user.first_name if ok.pinned_message.from_user else None,
|
105 |
+
"last_name": ok.pinned_message.from_user.last_name if ok.pinned_message.from_user else None,
|
106 |
+
"status": ok.pinned_message.from_user.status.name if ok.pinned_message.from_user else None,
|
107 |
+
"last_online_date": chat_.pinned_message.from_user.last_online_date if ok.pinned_message.from_user else None,
|
108 |
+
"username": ok.pinned_message.from_user.username if ok.pinned_message.from_user else None,
|
109 |
+
"is_premium": ok.pinned_message.from_user.is_premium if ok.pinned_message.from_user else None,
|
110 |
+
"is_scam": ok.pinned_message.from_user.is_scam if ok.pinned_message.from_user else None
|
111 |
},
|
112 |
"can_view_participants": chat_raw.can_view_participants,
|
113 |
"can_set_username": chat_raw.can_set_username,
|