-
-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Yasir Aris <[email protected]>
- Loading branch information
1 parent
243d145
commit 0518df4
Showing
2 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Pyrofork - Telegram MTProto API Client Library for Python | ||
# Copyright (C) 2017-present Dan <https://github.com/delivrance> | ||
# Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan> | ||
# | ||
# This file is part of Pyrofork. | ||
# | ||
# Pyrofork 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. | ||
# | ||
# Pyrofork 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 Pyrofork. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
from typing import Union | ||
|
||
import pyrogram | ||
from pyrogram import raw | ||
from pyrogram import types | ||
|
||
|
||
class StartBot: | ||
async def start_bot( | ||
self: "pyrogram.Client", | ||
chat_id: Union[int, str], | ||
param: str = "" | ||
) -> "types.Message": | ||
"""Start bot | ||
.. include:: /_includes/usable-by/users.rst | ||
Parameters: | ||
chat_id (``int`` | ``str``): | ||
Unique identifier of the bot you want to be started. You can specify | ||
a @username (str) or a bot ID (int). | ||
param (``str``): | ||
Text of the deep linking parameter (up to 64 characters). | ||
Defaults to "" (empty string). | ||
Returns: | ||
:obj:`~pyrogram.types.Message`: On success, the sent message is returned. | ||
Example: | ||
.. code-block:: python | ||
# Start bot | ||
await app.start_bot("pyrogrambot") | ||
# Start bot with param | ||
await app.start_bot("pyrogrambot", "ref123456") | ||
""" | ||
if not param: | ||
return await self.send_message(chat_id, "/start") | ||
|
||
peer = await self.resolve_peer(chat_id) | ||
|
||
r = await self.invoke( | ||
raw.functions.messages.StartBot( | ||
bot=peer, | ||
peer=peer, | ||
random_id=self.rnd_id(), | ||
start_param=param | ||
) | ||
) | ||
|
||
for i in r.updates: | ||
if isinstance(i, raw.types.UpdateNewMessage): | ||
return await types.Message._parse( | ||
self, i.message, | ||
{i.id: i for i in r.users}, | ||
{i.id: i for i in r.chats} | ||
) |