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-10-17 00:22:40 +02:00
|
|
|
"""This module contains an object that represents a Telegram MessageEntity."""
|
2016-04-16 16:33:58 +02:00
|
|
|
|
2016-05-24 01:31:36 +02:00
|
|
|
from telegram import User, TelegramObject
|
2016-04-16 16:33:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
class MessageEntity(TelegramObject):
|
|
|
|
"""
|
|
|
|
This object represents one special entity in a text message. For example,
|
|
|
|
hashtags, usernames, URLs, etc.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
type (str):
|
|
|
|
offset (int):
|
|
|
|
length (int):
|
|
|
|
url (Optional[str]):
|
2016-05-24 01:31:36 +02:00
|
|
|
user (Optional[:class:`telegram.User`]):
|
2016-04-16 16:33:58 +02:00
|
|
|
"""
|
|
|
|
|
2016-10-16 16:24:13 +02:00
|
|
|
def __init__(self, type, offset, length, url=None, user=None, **kwargs):
|
2016-04-16 16:33:58 +02:00
|
|
|
# Required
|
|
|
|
self.type = type
|
|
|
|
self.offset = offset
|
|
|
|
self.length = length
|
|
|
|
# Optionals
|
2016-10-16 16:24:13 +02:00
|
|
|
self.url = url
|
|
|
|
self.user = user
|
2016-04-16 16:33:58 +02:00
|
|
|
|
|
|
|
@staticmethod
|
2016-09-20 06:36:55 +02:00
|
|
|
def de_json(data, bot):
|
|
|
|
data = super(MessageEntity, MessageEntity).de_json(data, bot)
|
2016-04-16 16:33:58 +02:00
|
|
|
|
2016-09-20 06:36:55 +02:00
|
|
|
data['user'] = User.de_json(data.get('user'), bot)
|
2016-05-24 01:31:36 +02:00
|
|
|
|
2016-04-16 16:48:36 +02:00
|
|
|
return MessageEntity(**data)
|
2016-04-17 12:43:09 +02:00
|
|
|
|
|
|
|
@staticmethod
|
2016-09-20 06:36:55 +02:00
|
|
|
def de_list(data, bot):
|
2016-04-17 12:43:09 +02:00
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
data (list):
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
List<telegram.MessageEntity>:
|
|
|
|
"""
|
|
|
|
if not data:
|
|
|
|
return list()
|
|
|
|
|
|
|
|
entities = list()
|
|
|
|
for entity in data:
|
2016-09-20 06:36:55 +02:00
|
|
|
entities.append(MessageEntity.de_json(entity, bot))
|
2016-04-17 12:43:09 +02:00
|
|
|
|
|
|
|
return entities
|
2016-09-07 08:49:09 +02:00
|
|
|
|
|
|
|
MENTION = 'mention'
|
|
|
|
HASHTAG = 'hashtag'
|
|
|
|
BOT_COMMAND = 'bot_command'
|
|
|
|
URL = 'url'
|
|
|
|
EMAIL = 'email'
|
|
|
|
BOLD = 'bold'
|
|
|
|
ITALIC = 'italic'
|
|
|
|
CODE = 'code'
|
|
|
|
PRE = 'pre'
|
|
|
|
TEXT_LINK = 'text_link'
|
|
|
|
TEXT_MENTION = 'text_mention'
|
2016-10-12 22:56:57 +02:00
|
|
|
ALL_TYPES = [
|
|
|
|
MENTION, HASHTAG, BOT_COMMAND, URL, EMAIL, BOLD, ITALIC, CODE, PRE, TEXT_LINK, TEXT_MENTION
|
|
|
|
]
|