2015-07-10 18:43:35 +02:00
|
|
|
#!/usr/bin/env python
|
2015-08-22 04:15:29 +02:00
|
|
|
# pylint: disable=W0622,E0611
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2016-01-05 14:12:03 +01:00
|
|
|
# Copyright (C) 2015-2016
|
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# 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/].
|
2016-01-13 17:09:35 +01:00
|
|
|
"""This module contains a object that represents a Telegram InputFile."""
|
2015-08-10 18:57:31 +02:00
|
|
|
|
2015-07-15 15:05:31 +02:00
|
|
|
try:
|
2016-04-25 17:25:10 +02:00
|
|
|
# python 3
|
2015-07-15 15:05:31 +02:00
|
|
|
from email.generator import _make_boundary as choose_boundary
|
|
|
|
except ImportError:
|
2016-04-25 17:25:10 +02:00
|
|
|
# python 2
|
2015-07-15 15:05:31 +02:00
|
|
|
from mimetools import choose_boundary
|
2016-01-10 15:11:17 +01:00
|
|
|
|
2016-04-25 17:25:10 +02:00
|
|
|
import imghdr
|
2015-07-10 18:43:35 +02:00
|
|
|
import mimetypes
|
|
|
|
import os
|
2015-07-15 15:05:31 +02:00
|
|
|
import sys
|
2016-04-25 17:25:10 +02:00
|
|
|
|
|
|
|
from future.moves.urllib.request import urlopen
|
2015-07-10 18:43:35 +02:00
|
|
|
|
2015-08-22 04:15:29 +02:00
|
|
|
from telegram import TelegramError
|
2015-07-14 10:24:08 +02:00
|
|
|
|
|
|
|
DEFAULT_MIME_TYPE = 'application/octet-stream'
|
2016-05-15 04:26:56 +02:00
|
|
|
USER_AGENT = 'Python Telegram Bot (https://github.com/python-telegram-bot/python-telegram-bot)'
|
2015-07-14 10:24:08 +02:00
|
|
|
|
2015-07-10 18:43:35 +02:00
|
|
|
|
|
|
|
class InputFile(object):
|
2015-08-22 04:15:29 +02:00
|
|
|
"""This object represents a Telegram InputFile."""
|
|
|
|
|
2016-05-15 03:24:35 +02:00
|
|
|
def __init__(self, data):
|
2015-07-10 18:43:35 +02:00
|
|
|
self.data = data
|
2015-07-15 15:05:31 +02:00
|
|
|
self.boundary = choose_boundary()
|
2015-07-10 18:43:35 +02:00
|
|
|
|
2015-07-11 00:46:15 +02:00
|
|
|
if 'audio' in data:
|
2015-07-10 18:43:35 +02:00
|
|
|
self.input_name = 'audio'
|
|
|
|
self.input_file = data.pop('audio')
|
2015-07-11 00:46:15 +02:00
|
|
|
if 'document' in data:
|
2015-07-10 18:43:35 +02:00
|
|
|
self.input_name = 'document'
|
|
|
|
self.input_file = data.pop('document')
|
2015-07-11 00:46:15 +02:00
|
|
|
if 'photo' in data:
|
2015-07-10 18:43:35 +02:00
|
|
|
self.input_name = 'photo'
|
|
|
|
self.input_file = data.pop('photo')
|
2015-09-09 14:28:58 +02:00
|
|
|
if 'sticker' in data:
|
|
|
|
self.input_name = 'sticker'
|
|
|
|
self.input_file = data.pop('sticker')
|
2015-07-11 00:46:15 +02:00
|
|
|
if 'video' in data:
|
2015-07-10 18:43:35 +02:00
|
|
|
self.input_name = 'video'
|
|
|
|
self.input_file = data.pop('video')
|
2015-08-17 16:34:42 +02:00
|
|
|
if 'voice' in data:
|
|
|
|
self.input_name = 'voice'
|
|
|
|
self.input_file = data.pop('voice')
|
2015-09-04 22:53:39 +02:00
|
|
|
if 'certificate' in data:
|
|
|
|
self.input_name = 'certificate'
|
|
|
|
self.input_file = data.pop('certificate')
|
2015-07-10 18:43:35 +02:00
|
|
|
|
2016-01-10 15:11:17 +01:00
|
|
|
if str(self.input_file).startswith('http'):
|
|
|
|
from_url = True
|
|
|
|
self.input_file = urlopen(self.input_file)
|
|
|
|
else:
|
|
|
|
from_url = False
|
|
|
|
|
2016-04-23 02:51:00 +02:00
|
|
|
if hasattr(self.input_file, 'read') or from_url:
|
2016-01-12 12:42:07 +01:00
|
|
|
self.filename = None
|
2015-07-11 00:46:15 +02:00
|
|
|
self.input_file_content = self.input_file.read()
|
2015-09-08 20:52:10 +02:00
|
|
|
if 'filename' in data:
|
2015-09-08 20:17:54 +02:00
|
|
|
self.filename = self.data.pop('filename')
|
2016-04-23 02:51:00 +02:00
|
|
|
elif hasattr(self.input_file, 'name'):
|
2016-04-25 17:25:10 +02:00
|
|
|
# on py2.7, pylint fails to understand this properly
|
|
|
|
# pylint: disable=E1101
|
2015-09-08 19:43:28 +02:00
|
|
|
self.filename = os.path.basename(self.input_file.name)
|
2016-01-10 15:11:17 +01:00
|
|
|
elif from_url:
|
2016-05-15 03:24:35 +02:00
|
|
|
self.filename = os.path.basename(self.input_file.url).split('?')[0].split('&')[0]
|
2016-01-10 15:11:17 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
self.mimetype = InputFile.is_image(self.input_file_content)
|
2016-01-12 12:42:07 +01:00
|
|
|
if not self.filename or '.' not in self.filename:
|
2016-01-10 15:11:17 +01:00
|
|
|
self.filename = self.mimetype.replace('/', '.')
|
|
|
|
except TelegramError:
|
2016-05-15 03:24:35 +02:00
|
|
|
self.mimetype = mimetypes.guess_type(self.filename)[0] or DEFAULT_MIME_TYPE
|
2015-07-14 10:24:08 +02:00
|
|
|
|
2015-07-10 18:43:35 +02:00
|
|
|
@property
|
|
|
|
def headers(self):
|
2015-08-22 04:15:29 +02:00
|
|
|
"""
|
|
|
|
Returns:
|
|
|
|
str:
|
|
|
|
"""
|
2016-05-15 03:24:35 +02:00
|
|
|
return {'User-agent': USER_AGENT, 'Content-type': self.content_type}
|
2015-07-10 18:43:35 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def content_type(self):
|
2015-08-22 04:15:29 +02:00
|
|
|
"""
|
|
|
|
Returns:
|
|
|
|
str:
|
|
|
|
"""
|
2015-07-10 18:43:35 +02:00
|
|
|
return 'multipart/form-data; boundary=%s' % self.boundary
|
|
|
|
|
|
|
|
def to_form(self):
|
2015-08-22 04:15:29 +02:00
|
|
|
"""
|
|
|
|
Returns:
|
|
|
|
str:
|
|
|
|
"""
|
2015-07-10 18:43:35 +02:00
|
|
|
form = []
|
|
|
|
form_boundary = '--' + self.boundary
|
|
|
|
|
|
|
|
# Add data fields
|
2015-07-15 15:05:31 +02:00
|
|
|
for name, value in self.data.items():
|
2015-07-10 18:43:35 +02:00
|
|
|
form.extend([
|
2016-05-15 03:24:35 +02:00
|
|
|
form_boundary, 'Content-Disposition: form-data; name="%s"' % name, '', str(value)
|
2015-07-10 18:43:35 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
# Add input_file to upload
|
|
|
|
form.extend([
|
2016-05-15 03:24:35 +02:00
|
|
|
form_boundary, 'Content-Disposition: form-data; name="%s"; filename="%s"' % (
|
2015-07-10 18:43:35 +02:00
|
|
|
self.input_name, self.filename
|
2016-05-15 03:24:35 +02:00
|
|
|
), 'Content-Type: %s' % self.mimetype, '', self.input_file_content
|
2015-07-10 18:43:35 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
form.append('--' + self.boundary + '--')
|
|
|
|
form.append('')
|
|
|
|
|
2015-08-22 04:15:29 +02:00
|
|
|
return InputFile._parse(form)
|
2015-07-15 15:05:31 +02:00
|
|
|
|
2015-08-22 04:15:29 +02:00
|
|
|
@staticmethod
|
|
|
|
def _parse(form):
|
|
|
|
"""
|
|
|
|
Returns:
|
|
|
|
str:
|
|
|
|
"""
|
2015-07-15 15:05:31 +02:00
|
|
|
if sys.version_info > (3,):
|
|
|
|
# on Python 3 form needs to be byte encoded
|
|
|
|
encoded_form = []
|
|
|
|
for item in form:
|
|
|
|
try:
|
|
|
|
encoded_form.append(item.encode())
|
|
|
|
except AttributeError:
|
|
|
|
encoded_form.append(item)
|
|
|
|
|
|
|
|
return b'\r\n'.join(encoded_form)
|
2015-07-10 18:43:35 +02:00
|
|
|
return '\r\n'.join(form)
|
2015-07-13 23:53:30 +02:00
|
|
|
|
|
|
|
@staticmethod
|
2015-07-14 10:24:08 +02:00
|
|
|
def is_image(stream):
|
|
|
|
"""Check if the content file is an image by analyzing its headers.
|
|
|
|
|
|
|
|
Args:
|
2015-08-22 04:15:29 +02:00
|
|
|
stream (str): A str representing the content of a file.
|
2015-07-14 10:24:08 +02:00
|
|
|
|
|
|
|
Returns:
|
2015-08-22 04:15:29 +02:00
|
|
|
str: The str mimetype of an image.
|
2015-07-14 10:24:08 +02:00
|
|
|
"""
|
2015-08-15 20:00:28 +02:00
|
|
|
image = imghdr.what(None, stream)
|
|
|
|
if image:
|
|
|
|
return 'image/%s' % image
|
2015-07-14 10:24:08 +02:00
|
|
|
|
2015-09-11 01:08:24 +02:00
|
|
|
raise TelegramError('Could not parse file content')
|
2015-07-14 10:24:08 +02:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def is_inputfile(data):
|
2015-08-17 16:40:21 +02:00
|
|
|
"""Check if the request is a file request.
|
|
|
|
|
2015-07-14 10:24:08 +02:00
|
|
|
Args:
|
2015-08-22 04:15:29 +02:00
|
|
|
data (str): A dict of (str, unicode) key/value pairs
|
2015-07-14 10:24:08 +02:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
bool
|
|
|
|
"""
|
|
|
|
if data:
|
2016-05-15 03:24:35 +02:00
|
|
|
file_types = ['audio', 'document', 'photo', 'sticker', 'video', 'voice', 'certificate']
|
2015-07-15 15:05:31 +02:00
|
|
|
file_type = [i for i in list(data.keys()) if i in file_types]
|
2015-07-14 10:24:08 +02:00
|
|
|
|
|
|
|
if file_type:
|
|
|
|
file_content = data[file_type[0]]
|
2015-07-13 23:53:30 +02:00
|
|
|
|
2016-05-15 03:24:35 +02:00
|
|
|
return hasattr(file_content, 'read') or str(file_content).startswith('http')
|
2015-07-13 23:53:30 +02:00
|
|
|
|
2015-07-14 10:24:08 +02:00
|
|
|
return False
|