2016-04-12 06:12:35 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2017-05-14 12:18:29 +02:00
|
|
|
# Copyright (C) 2015-2017
|
2016-04-12 06:12:35 +02:00
|
|
|
# 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/].
|
2016-04-14 01:01:36 +02:00
|
|
|
"""This module contains the classes that represent Telegram
|
|
|
|
InputMessageContent"""
|
|
|
|
|
|
|
|
from telegram import TelegramObject
|
|
|
|
|
|
|
|
|
|
|
|
class InputMessageContent(TelegramObject):
|
|
|
|
"""Base class for Telegram InputMessageContent Objects"""
|
|
|
|
|
|
|
|
@staticmethod
|
2016-09-20 06:36:55 +02:00
|
|
|
def de_json(data, bot):
|
|
|
|
data = super(InputMessageContent, InputMessageContent).de_json(data, bot)
|
2016-04-24 01:19:51 +02:00
|
|
|
|
|
|
|
if not data:
|
|
|
|
return None
|
|
|
|
|
|
|
|
try:
|
|
|
|
from telegram import InputTextMessageContent
|
2016-09-20 06:36:55 +02:00
|
|
|
return InputTextMessageContent.de_json(data, bot)
|
2016-04-24 01:19:51 +02:00
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
2016-05-24 02:09:07 +02:00
|
|
|
from telegram import InputVenueMessageContent
|
2016-09-20 06:36:55 +02:00
|
|
|
return InputVenueMessageContent.de_json(data, bot)
|
2016-04-24 01:19:51 +02:00
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
2016-05-24 02:09:07 +02:00
|
|
|
from telegram import InputLocationMessageContent
|
2016-09-20 06:36:55 +02:00
|
|
|
return InputLocationMessageContent.de_json(data, bot)
|
2016-04-24 01:19:51 +02:00
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
from telegram import InputContactMessageContent
|
2016-09-20 06:36:55 +02:00
|
|
|
return InputContactMessageContent.de_json(data, bot)
|
2016-04-24 01:19:51 +02:00
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return None
|