Spaces:
Paused
Paused
File size: 3,744 Bytes
2f67506 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | #
# Copyright (C) 2021-2022 by TeamYukki@Github, < https://github.com/TeamYukki >.
#
# This file is part of < https://github.com/TeamYukki/YukkiMusicBot > project,
# and is released under the "GNU v3.0 License Agreement".
# Please see < https://github.com/TeamYukki/YukkiMusicBot/blob/master/LICENSE >
#
# All rights reserved.
from typing import Union
from pyrogram.types import InlineKeyboardButton
from config import GITHUB_REPO, SUPPORT_CHANNEL, SUPPORT_GROUP
from YukkiMusic import app
def start_pannel(_):
buttons = [
[
InlineKeyboardButton(
text=_["S_B_1"],
url=f"https://t.me/{app.username}?start=help",
),
InlineKeyboardButton(
text=_["S_B_2"], callback_data="settings_helper"
),
],
]
if SUPPORT_CHANNEL and SUPPORT_GROUP:
buttons.append(
[
InlineKeyboardButton(
text=_["S_B_4"], url=f"{SUPPORT_CHANNEL}"
),
InlineKeyboardButton(
text=_["S_B_3"], url=f"{SUPPORT_GROUP}"
),
]
)
else:
if SUPPORT_CHANNEL:
buttons.append(
[
InlineKeyboardButton(
text=_["S_B_4"], url=f"{SUPPORT_CHANNEL}"
)
]
)
if SUPPORT_GROUP:
buttons.append(
[
InlineKeyboardButton(
text=_["S_B_3"], url=f"{SUPPORT_GROUP}"
)
]
)
return buttons
def private_panel(_, BOT_USERNAME, OWNER: Union[bool, int] = None):
buttons = [
[
InlineKeyboardButton(
text=_["S_B_8"], callback_data="settings_back_helper"
)
]
]
if SUPPORT_CHANNEL and SUPPORT_GROUP:
buttons.append(
[
InlineKeyboardButton(
text=_["S_B_4"], url=f"{SUPPORT_CHANNEL}"
),
InlineKeyboardButton(
text=_["S_B_3"], url=f"{SUPPORT_GROUP}"
),
]
)
else:
if SUPPORT_CHANNEL:
buttons.append(
[
InlineKeyboardButton(
text=_["S_B_4"], url=f"{SUPPORT_CHANNEL}"
)
]
)
if SUPPORT_GROUP:
buttons.append(
[
InlineKeyboardButton(
text=_["S_B_3"], url=f"{SUPPORT_GROUP}"
)
]
)
buttons.append(
[
InlineKeyboardButton(
text=_["S_B_5"],
url=f"https://t.me/{BOT_USERNAME}?startgroup=true",
)
]
)
if GITHUB_REPO and OWNER:
buttons.append(
[
InlineKeyboardButton(text=_["S_B_7"], user_id=OWNER),
InlineKeyboardButton(
text=_["S_B_6"], url=f"{GITHUB_REPO}"
),
]
)
else:
if GITHUB_REPO:
buttons.append(
[
InlineKeyboardButton(
text=_["S_B_6"], url=f"{GITHUB_REPO}"
),
]
)
if OWNER:
buttons.append(
[
InlineKeyboardButton(
text=_["S_B_7"], user_id=OWNER
),
]
)
buttons.append(
[InlineKeyboardButton(text=_["ST_B_6"], callback_data="LG")]
)
return buttons
|