2016-04-12 06:12:35 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2022-01-03 08:15:18 +01:00
|
|
|
# Copyright (C) 2015-2022
|
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/].
|
2017-09-01 08:43:08 +02:00
|
|
|
"""This module contains the classes that represent Telegram InputLocationMessageContent."""
|
2016-04-14 01:01:36 +02:00
|
|
|
|
2022-11-22 11:07:42 +01:00
|
|
|
from typing import ClassVar
|
|
|
|
|
|
|
|
from telegram import constants
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram._inline.inputmessagecontent import InputMessageContent
|
2022-10-07 11:51:53 +02:00
|
|
|
from telegram._utils.types import JSONDict
|
2020-10-31 16:33:34 +01:00
|
|
|
|
2016-04-14 01:01:36 +02:00
|
|
|
|
|
|
|
class InputLocationMessageContent(InputMessageContent):
|
2020-10-09 17:22:07 +02:00
|
|
|
# fmt: off
|
2017-07-23 22:33:08 +02:00
|
|
|
"""
|
|
|
|
Represents the content of a location message to be sent as the result of an inline query.
|
|
|
|
|
2020-07-14 21:33:56 +02:00
|
|
|
Objects of this class are comparable in terms of equality. Two objects of this class are
|
|
|
|
considered equal, if their :attr:`latitude` and :attr:`longitude` are equal.
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
Args:
|
|
|
|
latitude (:obj:`float`): Latitude of the location in degrees.
|
|
|
|
longitude (:obj:`float`): Longitude of the location in degrees.
|
2020-11-29 16:20:46 +01:00
|
|
|
horizontal_accuracy (:obj:`float`, optional): The radius of uncertainty for the location,
|
2022-11-22 11:07:42 +01:00
|
|
|
measured in meters; 0-
|
|
|
|
:tg-const:`telegram.InputLocationMessageContent.HORIZONTAL_ACCURACY`.
|
|
|
|
live_period (:obj:`int`, optional): Period in seconds for which the location will be
|
|
|
|
updated, should be between
|
|
|
|
:tg-const:`telegram.InputLocationMessageContent.MIN_LIVE_PERIOD` and
|
|
|
|
:tg-const:`telegram.InputLocationMessageContent.MAX_LIVE_PERIOD`.
|
2020-11-29 16:20:46 +01:00
|
|
|
heading (:obj:`int`, optional): For live locations, a direction in which the user is
|
2022-11-22 11:07:42 +01:00
|
|
|
moving, in degrees. Must be between
|
|
|
|
:tg-const:`telegram.InputLocationMessageContent.MIN_HEADING` and
|
|
|
|
:tg-const:`telegram.InputLocationMessageContent.MAX_HEADING` if specified.
|
|
|
|
proximity_alert_radius (:obj:`int`, optional): For live locations, a maximum distance
|
|
|
|
for proximity alerts about approaching another chat member, in meters. Must be
|
|
|
|
between :tg-const:`telegram.InputLocationMessageContent.MIN_PROXIMITY_ALERT_RADIUS`
|
|
|
|
and :tg-const:`telegram.InputLocationMessageContent.MAX_PROXIMITY_ALERT_RADIUS`
|
|
|
|
if specified.
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
|
|
|
latitude (:obj:`float`): Latitude of the location in degrees.
|
|
|
|
longitude (:obj:`float`): Longitude of the location in degrees.
|
|
|
|
horizontal_accuracy (:obj:`float`): Optional. The radius of uncertainty for the location,
|
|
|
|
measured in meters.
|
|
|
|
live_period (:obj:`int`): Optional. Period in seconds for which the location can be
|
|
|
|
updated.
|
|
|
|
heading (:obj:`int`): Optional. For live locations, a direction in which the user is
|
|
|
|
moving, in degrees.
|
|
|
|
proximity_alert_radius (:obj:`int`): Optional. For live locations, a maximum distance for
|
|
|
|
proximity alerts about approaching another chat member, in meters.
|
|
|
|
|
2017-07-23 22:33:08 +02:00
|
|
|
"""
|
2021-05-27 09:38:17 +02:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = ('longitude', 'horizontal_accuracy', 'proximity_alert_radius', 'live_period',
|
2021-08-19 22:01:10 +02:00
|
|
|
'latitude', 'heading')
|
2020-10-09 17:22:07 +02:00
|
|
|
# fmt: on
|
2016-04-16 16:23:25 +02:00
|
|
|
|
2020-11-29 16:20:46 +01:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
latitude: float,
|
|
|
|
longitude: float,
|
|
|
|
live_period: int = None,
|
|
|
|
horizontal_accuracy: float = None,
|
|
|
|
heading: int = None,
|
|
|
|
proximity_alert_radius: int = None,
|
2022-10-07 11:51:53 +02:00
|
|
|
*,
|
|
|
|
api_kwargs: JSONDict = None,
|
2020-11-29 16:20:46 +01:00
|
|
|
):
|
2022-10-07 11:51:53 +02:00
|
|
|
super().__init__(api_kwargs=api_kwargs)
|
2016-04-16 16:23:25 +02:00
|
|
|
# Required
|
|
|
|
self.latitude = latitude
|
|
|
|
self.longitude = longitude
|
2020-11-29 16:20:46 +01:00
|
|
|
|
|
|
|
# Optionals
|
2022-05-26 19:16:30 +02:00
|
|
|
self.live_period = live_period
|
|
|
|
self.horizontal_accuracy = horizontal_accuracy
|
|
|
|
self.heading = heading
|
2020-11-29 16:20:46 +01:00
|
|
|
self.proximity_alert_radius = (
|
|
|
|
int(proximity_alert_radius) if proximity_alert_radius else None
|
|
|
|
)
|
2020-07-14 21:33:56 +02:00
|
|
|
|
|
|
|
self._id_attrs = (self.latitude, self.longitude)
|
2022-11-22 11:07:42 +01:00
|
|
|
|
2022-12-15 15:00:36 +01:00
|
|
|
self._freeze()
|
|
|
|
|
2022-11-22 11:07:42 +01:00
|
|
|
HORIZONTAL_ACCURACY: ClassVar[int] = constants.LocationLimit.HORIZONTAL_ACCURACY
|
|
|
|
""":const:`telegram.constants.LocationLimit.HORIZONTAL_ACCURACY`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
|
|
|
MIN_HEADING: ClassVar[int] = constants.LocationLimit.MIN_HEADING
|
|
|
|
""":const:`telegram.constants.LocationLimit.MIN_HEADING`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
|
|
|
MAX_HEADING: ClassVar[int] = constants.LocationLimit.MAX_HEADING
|
|
|
|
""":const:`telegram.constants.LocationLimit.MAX_HEADING`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
|
|
|
MIN_LIVE_PERIOD: ClassVar[int] = constants.LocationLimit.MIN_LIVE_PERIOD
|
|
|
|
""":const:`telegram.constants.LocationLimit.MIN_LIVE_PERIOD`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
|
|
|
MAX_LIVE_PERIOD: ClassVar[int] = constants.LocationLimit.MAX_LIVE_PERIOD
|
|
|
|
""":const:`telegram.constants.LocationLimit.MAX_LIVE_PERIOD`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
|
|
|
MIN_PROXIMITY_ALERT_RADIUS: ClassVar[int] = constants.LocationLimit.MIN_PROXIMITY_ALERT_RADIUS
|
|
|
|
""":const:`telegram.constants.LocationLimit.MIN_PROXIMITY_ALERT_RADIUS`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|
|
|
|
MAX_PROXIMITY_ALERT_RADIUS: ClassVar[int] = constants.LocationLimit.MAX_PROXIMITY_ALERT_RADIUS
|
|
|
|
""":const:`telegram.constants.LocationLimit.MAX_PROXIMITY_ALERT_RADIUS`
|
|
|
|
|
|
|
|
.. versionadded:: 20.0
|
|
|
|
"""
|