Source code for hydrogram.raw.types.config

#  Hydrogram - Telegram MTProto API Client Library for Python
#  Copyright (C) 2023-present Hydrogram <https://hydrogram.org>
#
#  This file is part of Hydrogram.
#
#  Hydrogram is free software: you can redistribute it and/or modify
#  it under the terms of the GNU Lesser General Public License as published
#  by the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  Hydrogram 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 General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public License
#  along with Hydrogram.  If not, see <http://www.gnu.org/licenses/>.

from io import BytesIO

from hydrogram.raw.core.primitives import Int, Long, Int128, Int256, Bool, Bytes, String, Double, Vector
from hydrogram.raw.core import TLObject
from hydrogram import raw
from typing import List, Optional, Any

# # # # # # # # # # # # # # # # # # # # # # # #
#               !!! WARNING !!!               #
#          This is a generated file!          #
# All changes made in this file will be lost! #
# # # # # # # # # # # # # # # # # # # # # # # #


[docs] class Config(TLObject): # type: ignore """Current configuration Constructor of :obj:`~hydrogram.raw.base.Config`. Details: - Layer: ``181`` - ID: ``CC1A241E`` Parameters: date (``int`` ``32-bit``): Current date at the server expires (``int`` ``32-bit``): Expiration date of this config: when it expires it'll have to be refetched using help.getConfig test_mode (``bool``): Whether we're connected to the test DCs this_dc (``int`` ``32-bit``): ID of the DC that returned the reply dc_options (List of :obj:`DcOption <hydrogram.raw.base.DcOption>`): DC IP list dc_txt_domain_name (``str``): Domain name for fetching encrypted DC list from DNS TXT record chat_size_max (``int`` ``32-bit``): Maximum member count for normal groups megagroup_size_max (``int`` ``32-bit``): Maximum member count for supergroups forwarded_count_max (``int`` ``32-bit``): Maximum number of messages that can be forwarded at once using messages.forwardMessages. online_update_period_ms (``int`` ``32-bit``): The client should update its online status every N milliseconds offline_blur_timeout_ms (``int`` ``32-bit``): Delay before offline status needs to be sent to the server offline_idle_timeout_ms (``int`` ``32-bit``): Time without any user activity after which it should be treated offline online_cloud_timeout_ms (``int`` ``32-bit``): If we are offline, but were online from some other client in last online_cloud_timeout_ms milliseconds after we had gone offline, then delay offline notification for notify_cloud_delay_ms milliseconds. notify_cloud_delay_ms (``int`` ``32-bit``): If we are offline, but online from some other client then delay sending the offline notification for notify_cloud_delay_ms milliseconds. notify_default_delay_ms (``int`` ``32-bit``): If some other client is online, then delay notification for notification_default_delay_ms milliseconds push_chat_period_ms (``int`` ``32-bit``): Not for client use push_chat_limit (``int`` ``32-bit``): Not for client use edit_time_limit (``int`` ``32-bit``): Only messages with age smaller than the one specified can be edited revoke_time_limit (``int`` ``32-bit``): Only channel/supergroup messages with age smaller than the specified can be deleted revoke_pm_time_limit (``int`` ``32-bit``): Only private messages with age smaller than the specified can be deleted rating_e_decay (``int`` ``32-bit``): Exponential decay rate for computing top peer rating stickers_recent_limit (``int`` ``32-bit``): Maximum number of recent stickers channels_read_media_period (``int`` ``32-bit``): Indicates that round videos (video notes) and voice messages sent in channels and older than the specified period must be marked as read call_receive_timeout_ms (``int`` ``32-bit``): Maximum allowed outgoing ring time in VoIP calls: if the user we're calling doesn't reply within the specified time (in milliseconds), we should hang up the call call_ring_timeout_ms (``int`` ``32-bit``): Maximum allowed incoming ring time in VoIP calls: if the current user doesn't reply within the specified time (in milliseconds), the call will be automatically refused call_connect_timeout_ms (``int`` ``32-bit``): VoIP connection timeout: if the instance of libtgvoip on the other side of the call doesn't connect to our instance of libtgvoip within the specified time (in milliseconds), the call must be aborted call_packet_timeout_ms (``int`` ``32-bit``): If during a VoIP call a packet isn't received for the specified period of time, the call must be aborted me_url_prefix (``str``): The domain to use to parse deep links ». caption_length_max (``int`` ``32-bit``): Maximum length of caption (length in utf8 codepoints) message_length_max (``int`` ``32-bit``): Maximum length of messages (length in utf8 codepoints) webfile_dc_id (``int`` ``32-bit``): DC ID to use to download webfiles default_p2p_contacts (``bool``, *optional*): Whether the client should use P2P by default for phone calls with contacts preload_featured_stickers (``bool``, *optional*): Whether the client should preload featured stickers revoke_pm_inbox (``bool``, *optional*): Whether incoming private messages can be deleted for both participants blocked_mode (``bool``, *optional*): Indicates that telegram is probably censored by governments/ISPs in the current region force_try_ipv6 (``bool``, *optional*): Whether to forcefully connect using IPv6 dcOptions, even if the client knows that IPv4 is available. tmp_sessions (``int`` ``32-bit``, *optional*): Temporary passport sessions autoupdate_url_prefix (``str``, *optional*): URL to use to auto-update the current app gif_search_username (``str``, *optional*): Username of the bot to use to search for GIFs venue_search_username (``str``, *optional*): Username of the bot to use to search for venues img_search_username (``str``, *optional*): Username of the bot to use for image search static_maps_provider (``str``, *optional*): ID of the map provider to use for venues suggested_lang_code (``str``, *optional*): Suggested language code lang_pack_version (``int`` ``32-bit``, *optional*): Language pack version base_lang_pack_version (``int`` ``32-bit``, *optional*): Basic language pack version reactions_default (:obj:`Reaction <hydrogram.raw.base.Reaction>`, *optional*): Default message reaction autologin_token (``str``, *optional*): Autologin token, click here for more info on URL authorization ». Functions: This object can be returned by 1 function. .. currentmodule:: hydrogram.raw.functions .. autosummary:: :nosignatures: help.GetConfig """ __slots__: List[str] = ["date", "expires", "test_mode", "this_dc", "dc_options", "dc_txt_domain_name", "chat_size_max", "megagroup_size_max", "forwarded_count_max", "online_update_period_ms", "offline_blur_timeout_ms", "offline_idle_timeout_ms", "online_cloud_timeout_ms", "notify_cloud_delay_ms", "notify_default_delay_ms", "push_chat_period_ms", "push_chat_limit", "edit_time_limit", "revoke_time_limit", "revoke_pm_time_limit", "rating_e_decay", "stickers_recent_limit", "channels_read_media_period", "call_receive_timeout_ms", "call_ring_timeout_ms", "call_connect_timeout_ms", "call_packet_timeout_ms", "me_url_prefix", "caption_length_max", "message_length_max", "webfile_dc_id", "default_p2p_contacts", "preload_featured_stickers", "revoke_pm_inbox", "blocked_mode", "force_try_ipv6", "tmp_sessions", "autoupdate_url_prefix", "gif_search_username", "venue_search_username", "img_search_username", "static_maps_provider", "suggested_lang_code", "lang_pack_version", "base_lang_pack_version", "reactions_default", "autologin_token"] ID = 0xcc1a241e QUALNAME = "types.Config" def __init__(self, *, date: int, expires: int, test_mode: bool, this_dc: int, dc_options: List["raw.base.DcOption"], dc_txt_domain_name: str, chat_size_max: int, megagroup_size_max: int, forwarded_count_max: int, online_update_period_ms: int, offline_blur_timeout_ms: int, offline_idle_timeout_ms: int, online_cloud_timeout_ms: int, notify_cloud_delay_ms: int, notify_default_delay_ms: int, push_chat_period_ms: int, push_chat_limit: int, edit_time_limit: int, revoke_time_limit: int, revoke_pm_time_limit: int, rating_e_decay: int, stickers_recent_limit: int, channels_read_media_period: int, call_receive_timeout_ms: int, call_ring_timeout_ms: int, call_connect_timeout_ms: int, call_packet_timeout_ms: int, me_url_prefix: str, caption_length_max: int, message_length_max: int, webfile_dc_id: int, default_p2p_contacts: Optional[bool] = None, preload_featured_stickers: Optional[bool] = None, revoke_pm_inbox: Optional[bool] = None, blocked_mode: Optional[bool] = None, force_try_ipv6: Optional[bool] = None, tmp_sessions: Optional[int] = None, autoupdate_url_prefix: Optional[str] = None, gif_search_username: Optional[str] = None, venue_search_username: Optional[str] = None, img_search_username: Optional[str] = None, static_maps_provider: Optional[str] = None, suggested_lang_code: Optional[str] = None, lang_pack_version: Optional[int] = None, base_lang_pack_version: Optional[int] = None, reactions_default: "raw.base.Reaction" = None, autologin_token: Optional[str] = None) -> None: self.date = date # int self.expires = expires # int self.test_mode = test_mode # Bool self.this_dc = this_dc # int self.dc_options = dc_options # Vector<DcOption> self.dc_txt_domain_name = dc_txt_domain_name # string self.chat_size_max = chat_size_max # int self.megagroup_size_max = megagroup_size_max # int self.forwarded_count_max = forwarded_count_max # int self.online_update_period_ms = online_update_period_ms # int self.offline_blur_timeout_ms = offline_blur_timeout_ms # int self.offline_idle_timeout_ms = offline_idle_timeout_ms # int self.online_cloud_timeout_ms = online_cloud_timeout_ms # int self.notify_cloud_delay_ms = notify_cloud_delay_ms # int self.notify_default_delay_ms = notify_default_delay_ms # int self.push_chat_period_ms = push_chat_period_ms # int self.push_chat_limit = push_chat_limit # int self.edit_time_limit = edit_time_limit # int self.revoke_time_limit = revoke_time_limit # int self.revoke_pm_time_limit = revoke_pm_time_limit # int self.rating_e_decay = rating_e_decay # int self.stickers_recent_limit = stickers_recent_limit # int self.channels_read_media_period = channels_read_media_period # int self.call_receive_timeout_ms = call_receive_timeout_ms # int self.call_ring_timeout_ms = call_ring_timeout_ms # int self.call_connect_timeout_ms = call_connect_timeout_ms # int self.call_packet_timeout_ms = call_packet_timeout_ms # int self.me_url_prefix = me_url_prefix # string self.caption_length_max = caption_length_max # int self.message_length_max = message_length_max # int self.webfile_dc_id = webfile_dc_id # int self.default_p2p_contacts = default_p2p_contacts # flags.3?true self.preload_featured_stickers = preload_featured_stickers # flags.4?true self.revoke_pm_inbox = revoke_pm_inbox # flags.6?true self.blocked_mode = blocked_mode # flags.8?true self.force_try_ipv6 = force_try_ipv6 # flags.14?true self.tmp_sessions = tmp_sessions # flags.0?int self.autoupdate_url_prefix = autoupdate_url_prefix # flags.7?string self.gif_search_username = gif_search_username # flags.9?string self.venue_search_username = venue_search_username # flags.10?string self.img_search_username = img_search_username # flags.11?string self.static_maps_provider = static_maps_provider # flags.12?string self.suggested_lang_code = suggested_lang_code # flags.2?string self.lang_pack_version = lang_pack_version # flags.2?int self.base_lang_pack_version = base_lang_pack_version # flags.2?int self.reactions_default = reactions_default # flags.15?Reaction self.autologin_token = autologin_token # flags.16?string @staticmethod def read(b: BytesIO, *args: Any) -> "Config": flags = Int.read(b) default_p2p_contacts = True if flags & (1 << 3) else False preload_featured_stickers = True if flags & (1 << 4) else False revoke_pm_inbox = True if flags & (1 << 6) else False blocked_mode = True if flags & (1 << 8) else False force_try_ipv6 = True if flags & (1 << 14) else False date = Int.read(b) expires = Int.read(b) test_mode = Bool.read(b) this_dc = Int.read(b) dc_options = TLObject.read(b) dc_txt_domain_name = String.read(b) chat_size_max = Int.read(b) megagroup_size_max = Int.read(b) forwarded_count_max = Int.read(b) online_update_period_ms = Int.read(b) offline_blur_timeout_ms = Int.read(b) offline_idle_timeout_ms = Int.read(b) online_cloud_timeout_ms = Int.read(b) notify_cloud_delay_ms = Int.read(b) notify_default_delay_ms = Int.read(b) push_chat_period_ms = Int.read(b) push_chat_limit = Int.read(b) edit_time_limit = Int.read(b) revoke_time_limit = Int.read(b) revoke_pm_time_limit = Int.read(b) rating_e_decay = Int.read(b) stickers_recent_limit = Int.read(b) channels_read_media_period = Int.read(b) tmp_sessions = Int.read(b) if flags & (1 << 0) else None call_receive_timeout_ms = Int.read(b) call_ring_timeout_ms = Int.read(b) call_connect_timeout_ms = Int.read(b) call_packet_timeout_ms = Int.read(b) me_url_prefix = String.read(b) autoupdate_url_prefix = String.read(b) if flags & (1 << 7) else None gif_search_username = String.read(b) if flags & (1 << 9) else None venue_search_username = String.read(b) if flags & (1 << 10) else None img_search_username = String.read(b) if flags & (1 << 11) else None static_maps_provider = String.read(b) if flags & (1 << 12) else None caption_length_max = Int.read(b) message_length_max = Int.read(b) webfile_dc_id = Int.read(b) suggested_lang_code = String.read(b) if flags & (1 << 2) else None lang_pack_version = Int.read(b) if flags & (1 << 2) else None base_lang_pack_version = Int.read(b) if flags & (1 << 2) else None reactions_default = TLObject.read(b) if flags & (1 << 15) else None autologin_token = String.read(b) if flags & (1 << 16) else None return Config(date=date, expires=expires, test_mode=test_mode, this_dc=this_dc, dc_options=dc_options, dc_txt_domain_name=dc_txt_domain_name, chat_size_max=chat_size_max, megagroup_size_max=megagroup_size_max, forwarded_count_max=forwarded_count_max, online_update_period_ms=online_update_period_ms, offline_blur_timeout_ms=offline_blur_timeout_ms, offline_idle_timeout_ms=offline_idle_timeout_ms, online_cloud_timeout_ms=online_cloud_timeout_ms, notify_cloud_delay_ms=notify_cloud_delay_ms, notify_default_delay_ms=notify_default_delay_ms, push_chat_period_ms=push_chat_period_ms, push_chat_limit=push_chat_limit, edit_time_limit=edit_time_limit, revoke_time_limit=revoke_time_limit, revoke_pm_time_limit=revoke_pm_time_limit, rating_e_decay=rating_e_decay, stickers_recent_limit=stickers_recent_limit, channels_read_media_period=channels_read_media_period, call_receive_timeout_ms=call_receive_timeout_ms, call_ring_timeout_ms=call_ring_timeout_ms, call_connect_timeout_ms=call_connect_timeout_ms, call_packet_timeout_ms=call_packet_timeout_ms, me_url_prefix=me_url_prefix, caption_length_max=caption_length_max, message_length_max=message_length_max, webfile_dc_id=webfile_dc_id, default_p2p_contacts=default_p2p_contacts, preload_featured_stickers=preload_featured_stickers, revoke_pm_inbox=revoke_pm_inbox, blocked_mode=blocked_mode, force_try_ipv6=force_try_ipv6, tmp_sessions=tmp_sessions, autoupdate_url_prefix=autoupdate_url_prefix, gif_search_username=gif_search_username, venue_search_username=venue_search_username, img_search_username=img_search_username, static_maps_provider=static_maps_provider, suggested_lang_code=suggested_lang_code, lang_pack_version=lang_pack_version, base_lang_pack_version=base_lang_pack_version, reactions_default=reactions_default, autologin_token=autologin_token) def write(self, *args) -> bytes: b = BytesIO() b.write(Int(self.ID, False)) flags = 0 flags |= (1 << 3) if self.default_p2p_contacts else 0 flags |= (1 << 4) if self.preload_featured_stickers else 0 flags |= (1 << 6) if self.revoke_pm_inbox else 0 flags |= (1 << 8) if self.blocked_mode else 0 flags |= (1 << 14) if self.force_try_ipv6 else 0 flags |= (1 << 0) if self.tmp_sessions is not None else 0 flags |= (1 << 7) if self.autoupdate_url_prefix is not None else 0 flags |= (1 << 9) if self.gif_search_username is not None else 0 flags |= (1 << 10) if self.venue_search_username is not None else 0 flags |= (1 << 11) if self.img_search_username is not None else 0 flags |= (1 << 12) if self.static_maps_provider is not None else 0 flags |= (1 << 2) if self.suggested_lang_code is not None else 0 flags |= (1 << 2) if self.lang_pack_version is not None else 0 flags |= (1 << 2) if self.base_lang_pack_version is not None else 0 flags |= (1 << 15) if self.reactions_default is not None else 0 flags |= (1 << 16) if self.autologin_token is not None else 0 b.write(Int(flags)) b.write(Int(self.date)) b.write(Int(self.expires)) b.write(Bool(self.test_mode)) b.write(Int(self.this_dc)) b.write(Vector(self.dc_options)) b.write(String(self.dc_txt_domain_name)) b.write(Int(self.chat_size_max)) b.write(Int(self.megagroup_size_max)) b.write(Int(self.forwarded_count_max)) b.write(Int(self.online_update_period_ms)) b.write(Int(self.offline_blur_timeout_ms)) b.write(Int(self.offline_idle_timeout_ms)) b.write(Int(self.online_cloud_timeout_ms)) b.write(Int(self.notify_cloud_delay_ms)) b.write(Int(self.notify_default_delay_ms)) b.write(Int(self.push_chat_period_ms)) b.write(Int(self.push_chat_limit)) b.write(Int(self.edit_time_limit)) b.write(Int(self.revoke_time_limit)) b.write(Int(self.revoke_pm_time_limit)) b.write(Int(self.rating_e_decay)) b.write(Int(self.stickers_recent_limit)) b.write(Int(self.channels_read_media_period)) if self.tmp_sessions is not None: b.write(Int(self.tmp_sessions)) b.write(Int(self.call_receive_timeout_ms)) b.write(Int(self.call_ring_timeout_ms)) b.write(Int(self.call_connect_timeout_ms)) b.write(Int(self.call_packet_timeout_ms)) b.write(String(self.me_url_prefix)) if self.autoupdate_url_prefix is not None: b.write(String(self.autoupdate_url_prefix)) if self.gif_search_username is not None: b.write(String(self.gif_search_username)) if self.venue_search_username is not None: b.write(String(self.venue_search_username)) if self.img_search_username is not None: b.write(String(self.img_search_username)) if self.static_maps_provider is not None: b.write(String(self.static_maps_provider)) b.write(Int(self.caption_length_max)) b.write(Int(self.message_length_max)) b.write(Int(self.webfile_dc_id)) if self.suggested_lang_code is not None: b.write(String(self.suggested_lang_code)) if self.lang_pack_version is not None: b.write(Int(self.lang_pack_version)) if self.base_lang_pack_version is not None: b.write(Int(self.base_lang_pack_version)) if self.reactions_default is not None: b.write(self.reactions_default.write()) if self.autologin_token is not None: b.write(String(self.autologin_token)) return b.getvalue()