|
@ -1005,7 +1005,7 @@ class SyncWebhook(BaseWebhook): |
|
|
if thread_name is not MISSING and thread is not MISSING: |
|
|
if thread_name is not MISSING and thread is not MISSING: |
|
|
raise TypeError('Cannot mix thread_name and thread keyword arguments.') |
|
|
raise TypeError('Cannot mix thread_name and thread keyword arguments.') |
|
|
|
|
|
|
|
|
params = handle_message_parameters( |
|
|
with handle_message_parameters( |
|
|
content=content, |
|
|
content=content, |
|
|
username=username, |
|
|
username=username, |
|
|
avatar_url=avatar_url, |
|
|
avatar_url=avatar_url, |
|
@ -1018,22 +1018,23 @@ class SyncWebhook(BaseWebhook): |
|
|
allowed_mentions=allowed_mentions, |
|
|
allowed_mentions=allowed_mentions, |
|
|
previous_allowed_mentions=previous_mentions, |
|
|
previous_allowed_mentions=previous_mentions, |
|
|
flags=flags, |
|
|
flags=flags, |
|
|
) |
|
|
) as params: |
|
|
adapter: WebhookAdapter = _get_webhook_adapter() |
|
|
adapter: WebhookAdapter = _get_webhook_adapter() |
|
|
thread_id: Optional[int] = None |
|
|
thread_id: Optional[int] = None |
|
|
if thread is not MISSING: |
|
|
if thread is not MISSING: |
|
|
thread_id = thread.id |
|
|
thread_id = thread.id |
|
|
|
|
|
|
|
|
|
|
|
data = adapter.execute_webhook( |
|
|
|
|
|
self.id, |
|
|
|
|
|
self.token, |
|
|
|
|
|
session=self.session, |
|
|
|
|
|
payload=params.payload, |
|
|
|
|
|
multipart=params.multipart, |
|
|
|
|
|
files=params.files, |
|
|
|
|
|
thread_id=thread_id, |
|
|
|
|
|
wait=wait, |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
data = adapter.execute_webhook( |
|
|
|
|
|
self.id, |
|
|
|
|
|
self.token, |
|
|
|
|
|
session=self.session, |
|
|
|
|
|
payload=params.payload, |
|
|
|
|
|
multipart=params.multipart, |
|
|
|
|
|
files=params.files, |
|
|
|
|
|
thread_id=thread_id, |
|
|
|
|
|
wait=wait, |
|
|
|
|
|
) |
|
|
|
|
|
if wait: |
|
|
if wait: |
|
|
return self._create_message(data, thread=thread) |
|
|
return self._create_message(data, thread=thread) |
|
|
|
|
|
|
|
@ -1142,31 +1143,30 @@ class SyncWebhook(BaseWebhook): |
|
|
raise ValueError('This webhook does not have a token associated with it') |
|
|
raise ValueError('This webhook does not have a token associated with it') |
|
|
|
|
|
|
|
|
previous_mentions: Optional[AllowedMentions] = getattr(self._state, 'allowed_mentions', None) |
|
|
previous_mentions: Optional[AllowedMentions] = getattr(self._state, 'allowed_mentions', None) |
|
|
params = handle_message_parameters( |
|
|
with handle_message_parameters( |
|
|
content=content, |
|
|
content=content, |
|
|
attachments=attachments, |
|
|
attachments=attachments, |
|
|
embed=embed, |
|
|
embed=embed, |
|
|
embeds=embeds, |
|
|
embeds=embeds, |
|
|
allowed_mentions=allowed_mentions, |
|
|
allowed_mentions=allowed_mentions, |
|
|
previous_allowed_mentions=previous_mentions, |
|
|
previous_allowed_mentions=previous_mentions, |
|
|
) |
|
|
) as params: |
|
|
|
|
|
thread_id: Optional[int] = None |
|
|
thread_id: Optional[int] = None |
|
|
if thread is not MISSING: |
|
|
if thread is not MISSING: |
|
|
thread_id = thread.id |
|
|
thread_id = thread.id |
|
|
|
|
|
|
|
|
adapter: WebhookAdapter = _get_webhook_adapter() |
|
|
adapter: WebhookAdapter = _get_webhook_adapter() |
|
|
data = adapter.edit_webhook_message( |
|
|
data = adapter.edit_webhook_message( |
|
|
self.id, |
|
|
self.id, |
|
|
self.token, |
|
|
self.token, |
|
|
message_id, |
|
|
message_id, |
|
|
session=self.session, |
|
|
session=self.session, |
|
|
payload=params.payload, |
|
|
payload=params.payload, |
|
|
multipart=params.multipart, |
|
|
multipart=params.multipart, |
|
|
files=params.files, |
|
|
files=params.files, |
|
|
thread_id=thread_id, |
|
|
thread_id=thread_id, |
|
|
) |
|
|
) |
|
|
return self._create_message(data, thread=thread) |
|
|
return self._create_message(data, thread=thread) |
|
|
|
|
|
|
|
|
|
|
|
def delete_message(self, message_id: int, /, *, thread: Snowflake = MISSING) -> None: |
|
|
def delete_message(self, message_id: int, /, *, thread: Snowflake = MISSING) -> None: |
|
|
"""Deletes a message owned by this webhook. |
|
|
"""Deletes a message owned by this webhook. |
|
|