python-telegram-bot/telegram/utils/request.py

176 lines
4.6 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# pylint: disable=no-name-in-module,unused-import
#
# A library that provides a Python interface to the Telegram Bot API
# Copyright (C) 2015-2016
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser Public License for more details.
#
# You should have received a copy of the GNU Lesser Public License
# along with this program. If not, see [http://www.gnu.org/licenses/].
"""This module contains methods to make POST and GET requests"""
import functools
import json
2015-11-11 14:05:57 +01:00
import socket
from ssl import SSLError
try:
# python2
from httplib import HTTPException
except ImportError:
# python3
from http.client import HTTPException
try:
# python3
2015-09-20 17:28:10 +02:00
from urllib.request import urlopen, urlretrieve, Request
from urllib.error import HTTPError, URLError
except ImportError:
# python2
2015-11-10 15:10:50 +01:00
from urllib import urlretrieve
from urllib2 import urlopen, Request, URLError
2015-11-10 15:10:50 +01:00
from urllib2 import HTTPError
from telegram import (InputFile, TelegramError)
def _parse(json_data):
"""Try and parse the JSON returned from Telegram and return an empty
dictionary if there is any error.
Args:
2015-09-07 20:54:12 +02:00
url:
urllib.urlopen object
Returns:
A JSON parsed as Python dict with results.
"""
decoded_s = json_data.decode('utf-8')
try:
data = json.loads(decoded_s)
except ValueError:
raise TelegramError('Invalid server response')
2015-09-07 20:54:12 +02:00
if not data.get('ok') and data.get('description'):
return data['description']
return data['result']
2015-09-16 05:21:45 +02:00
def _try_except_req(func):
"""Decorator for requests to handle known exceptions"""
@functools.wraps(func)
def decorator(*args, **kwargs):
try:
return func(*args, **kwargs)
except HTTPError as error:
# `HTTPError` inherits from `URLError` so `HTTPError` handling must
# come first.
if error.getcode() == 403:
raise TelegramError('Unauthorized')
if error.getcode() == 502:
raise TelegramError('Bad Gateway')
try:
message = _parse(error.read())
except ValueError:
message = 'Unknown HTTPError {0}'.format(error.getcode())
raise TelegramError(message)
except URLError as error:
raise TelegramError('URLError: {0!r}'.format(error))
except (SSLError, socket.timeout) as error:
if "operation timed out" in str(error):
raise TelegramError("Timed out")
raise TelegramError(str(error))
except HTTPException as error:
raise TelegramError('HTTPException: {0!r}'.format(error))
return decorator
@_try_except_req
2015-09-16 05:21:45 +02:00
def get(url):
"""Request an URL.
Args:
url:
The web location we want to retrieve.
2015-09-07 20:54:12 +02:00
Returns:
A JSON object.
"""
2015-09-16 05:21:45 +02:00
result = urlopen(url).read()
2015-09-07 20:54:12 +02:00
return _parse(result)
@_try_except_req
def post(url,
data,
network_delay=2.):
"""Request an URL.
Args:
url:
The web location we want to retrieve.
data:
A dict of (str, unicode) key/value pairs.
network_delay:
Additional timeout in seconds to allow the response from Telegram to
take some time.
2015-09-07 20:54:12 +02:00
Returns:
A JSON object.
"""
2015-11-10 05:16:16 +01:00
# Add time to the timeout of urlopen to allow data to be transferred over
# the network.
2015-11-10 15:10:50 +01:00
if 'timeout' in data:
2015-11-10 23:12:20 +01:00
timeout = data['timeout'] + network_delay
else:
timeout = None
if InputFile.is_inputfile(data):
data = InputFile(data)
request = Request(url,
data=data.to_form(),
headers=data.headers)
else:
data = json.dumps(data)
request = Request(url,
data=data.encode(),
headers={'Content-Type': 'application/json'})
2015-09-07 20:54:12 +02:00
result = urlopen(request, timeout=timeout).read()
2015-09-07 20:54:12 +02:00
return _parse(result)
2015-09-20 17:28:10 +02:00
@_try_except_req
2015-09-20 17:28:10 +02:00
def download(url,
filename):
"""Download a file by its URL.
Args:
url:
The web location we want to retrieve.
filename:
The filename wihtin the path to download the file.
"""
urlretrieve(url, filename)