mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
PyroFork: Add CreateStickerSet Methods
Signed-off-by: wulan17 <wulan17@nusantararom.org>
This commit is contained in:
parent
9966bd92a5
commit
7a58c865b5
2 changed files with 125 additions and 1 deletions
|
|
@ -16,9 +16,11 @@
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
from .create_sticker_set import CreateStickerSet
|
||||||
from .get_sticker_set import GetStickerSet
|
from .get_sticker_set import GetStickerSet
|
||||||
|
|
||||||
class Stickers(
|
class Stickers(
|
||||||
GetStickerSet,
|
CreateStickerSet,
|
||||||
|
GetStickerSet
|
||||||
):
|
):
|
||||||
pass
|
pass
|
||||||
|
|
|
||||||
122
pyrogram/methods/stickers/create_sticker_set.py
Normal file
122
pyrogram/methods/stickers/create_sticker_set.py
Normal file
|
|
@ -0,0 +1,122 @@
|
||||||
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
||||||
|
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
||||||
|
#
|
||||||
|
# This file is part of Pyrogram.
|
||||||
|
#
|
||||||
|
# Pyrogram 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.
|
||||||
|
#
|
||||||
|
# Pyrogram 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 Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
from typing import Union, Optional
|
||||||
|
|
||||||
|
import pyrogram
|
||||||
|
from pyrogram import raw
|
||||||
|
from pyrogram import types
|
||||||
|
from pyrogram.file_id import FileId
|
||||||
|
|
||||||
|
|
||||||
|
class CreateStickerSet:
|
||||||
|
async def create_sticker_set(
|
||||||
|
self: "pyrogram.Client",
|
||||||
|
user_id: Union[int, str],
|
||||||
|
title: str,
|
||||||
|
short_name: str,
|
||||||
|
sticker: str,
|
||||||
|
emoji: str = "🤔",
|
||||||
|
masks: bool = None,
|
||||||
|
animated: bool = None,
|
||||||
|
videos: bool = None,
|
||||||
|
emojis: bool = None
|
||||||
|
) -> Optional["types.Message"]:
|
||||||
|
"""Send generic files.
|
||||||
|
|
||||||
|
.. include:: /_includes/usable-by/users-bots.rst
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
user_id (``int`` | ``str``):
|
||||||
|
Unique identifier (int) or username (str) of the Stickerset owner.
|
||||||
|
For you yourself you can simply use "me" or "self" (users only).
|
||||||
|
|
||||||
|
title (``str``):
|
||||||
|
Stickerset name, 1-64 chars
|
||||||
|
|
||||||
|
short_name (``str``, *optional*):
|
||||||
|
Short name of sticker set, to be used in sticker deep links.
|
||||||
|
Can contain only english letters, digits and underscores.
|
||||||
|
Must begin with a letter, can't contain consecutive underscores and, if called by a bot, must end in "_by_<bot_username>".
|
||||||
|
<bot_username> is case insensitive. 1-64 characters.
|
||||||
|
|
||||||
|
sticker (``str``):
|
||||||
|
sticker to add.
|
||||||
|
Pass a file_id as string to send a file that exists on the Telegram servers.
|
||||||
|
|
||||||
|
emoji (``str``, *optional*):
|
||||||
|
Associated emoji.
|
||||||
|
default to "🤔"
|
||||||
|
|
||||||
|
masks (``bool``, *optional*):
|
||||||
|
Whether this is a mask stickerset.
|
||||||
|
|
||||||
|
animated (``bool``, *optional*):
|
||||||
|
Whether this is a animated stickerset.
|
||||||
|
|
||||||
|
videos (``bool``, *optional*):
|
||||||
|
Whether this is a videos stickerset.
|
||||||
|
|
||||||
|
emojis (``bool``, *optional*):
|
||||||
|
Whether this is a emojis stickerset.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
:obj:`~pyrogram.types.StickerSet` | ``None``: On success, the StickerSet is returned.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
# Send document by uploading from local file
|
||||||
|
await app.create_sticker_set("me", "My First Pack", "myfirstpack", "AAjjHjk")
|
||||||
|
"""
|
||||||
|
file = None
|
||||||
|
|
||||||
|
if isinstance(sticker, str):
|
||||||
|
if os.path.isfile(sticker) or re.match("^https?://", sticker):
|
||||||
|
raise ValueError(f"file_id is invalid!")
|
||||||
|
else:
|
||||||
|
decoded = FileId.decode(sticker)
|
||||||
|
media = raw.types.InputDocument(
|
||||||
|
id=decoded.media_id,
|
||||||
|
access_hash=decoded.access_hash,
|
||||||
|
file_reference=decoded.file_reference
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
raise ValueError(f"file_id is invalid!")
|
||||||
|
|
||||||
|
r = await self.invoke(
|
||||||
|
raw.functions.stickers.CreateStickerSet(
|
||||||
|
user_id=await self.resolve_peer(user_id),
|
||||||
|
title=title,
|
||||||
|
short_name=short_name,
|
||||||
|
stickers=[
|
||||||
|
raw.types.InputStickerSetItem(
|
||||||
|
document=media,
|
||||||
|
emoji=emoji
|
||||||
|
)
|
||||||
|
],
|
||||||
|
masks=masks,
|
||||||
|
animated=animated,
|
||||||
|
videos=videos,
|
||||||
|
emojis=emojis
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
return types.StickerSet._parse(r.set)
|
||||||
Loading…
Reference in a new issue