Browse Source

Create a non-authed client when using Webhook.from_url

feature/storage
Andrei 8 years ago
parent
commit
968745341b
  1. 4
      disco/api/http.py
  2. 9
      disco/types/webhook.py

4
disco/api/http.py

@ -189,13 +189,15 @@ class HTTPClient(LoggingClass):
self.limiter = RateLimiter()
self.headers = {
'Authorization': 'Bot ' + token,
'User-Agent': 'DiscordBot (https://github.com/b1naryth1ef/disco {}) Python/{} requests/{}'.format(
disco_version,
py_version,
requests_version),
}
if token:
self.headers['Authorization'] = 'Bot ' + token
def __call__(self, route, args=None, **kwargs):
return self.call(route, args, **kwargs)

9
disco/types/webhook.py

@ -19,7 +19,9 @@ class Webhook(SlottedModel):
@classmethod
def from_url(cls, url):
results = WEBHOOK_URL_RE.findall(url)
from disco.api.client import APIClient
results = WEBHOOK_URL_RE.findall(url, client=APIClient(None))
if len(results) != 1:
return Exception('Invalid Webhook URL')
@ -45,10 +47,11 @@ class Webhook(SlottedModel):
else:
return self.client.api.webhooks_modify(self.id, name, avatar)
def execute(self, content=None, username=None, avatar_url=None, tts=False, fobj=None, embeds=[], wait=False):
def execute(self, content=None, username=None, avatar_url=None, tts=False, fobj=None, embeds=[], wait=False, client=None):
# TODO: support file stuff properly
client = client or self.client.api
return self.client.api.webhooks_token_execute(self.id, self.token, {
return client.webhooks_token_execute(self.id, self.token, {
'content': content,
'username': username,
'avatar_url': avatar_url,

Loading…
Cancel
Save