Skip to content

Commit bef7479

Browse files
1Danish-00xdityabuddhhusppidyArnabXD
authored
Bug fixes V0.0.5
Co-authored-by: Aditya <me@xditya.me> Co-authored-by: Danish <danish@ultroid.tech> Co-authored-by: buddhhu <buddhuu@users.noreply.github.com> Co-authored-by: sppidy <sppidy@users.noreply.github.com> Co-authored-by: Arnab Paryali <Arnabxd@users.noreply.github.com> Co-authored-by: divkix <divkix@users.noreply.github.com> Co-authored-by: hellboi_atul <hellboi-atul@users.noreply.github.com> Co-authored-by: Programming Error <error@notavailable.live> Co-authored-by: New-dev0 <New-dev0@notavailable.live>
1 parent 4e8b054 commit bef7479

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+473
-251
lines changed

Dockerfile

+10-9
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,18 @@
44
# PLease read the GNU Affero General Public License in <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
55

66
FROM ultroidteam/ultroid:0.0.3
7-
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
8-
dpkg -i ./google-chrome-stable_current_amd64.deb; apt -fqqy install && \
9-
rm ./google-chrome-stable_current_amd64.deb
10-
RUN wget -O chromedriver.zip http://chromedriver.storage.googleapis.com/$(curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE)/chromedriver_linux64.zip && \
11-
unzip chromedriver.zip chromedriver -d /usr/bin/ && \
12-
rm chromedriver.zip
7+
#RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
8+
# dpkg -i ./google-chrome-stable_current_amd64.deb; apt -fqqy install && \
9+
# rm ./google-chrome-stable_current_amd64.deb
10+
#RUN wget -O chromedriver.zip http://chromedriver.storage.googleapis.com/$(curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE)/chromedriver_linux64.zip && \
11+
# unzip chromedriver.zip chromedriver -d /usr/bin/ && \
12+
# rm chromedriver.zip
1313
RUN curl --silent --location https://deb.nodesource.com/setup_15.x | bash -
14-
RUN apt-get install -y nodejs sudo
14+
RUN apt-get install -y nodejs
1515
RUN git clone https://github.com/TeamUltroid/Ultroid.git /root/TeamUltroid/
16-
WORKDIR /root/TeamUltroid/
1716
RUN git clone https://github.com/1Danish-00/glitch_me.git && pip install -e ./glitch_me
17+
WORKDIR /root/TeamUltroid/
1818
RUN pip install -r requirements.txt
19-
RUN npm install -g npm@7.7.0 && npm install
19+
RUN rm -rf /usr/local/lib/python3.9/site-packages/.wh*
20+
RUN npm install -g npm@7.9.0 && npm install
2021
RUN npm run build

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Get the [Necessary Variables](#Necessary-Variables) and then click the button be
4646
### Local Deploy - Easy Method
4747
- Linux - `bash -c "$(curl -fsSL https://git.io/JY9UM)"`
4848
- Windows - `cd desktop ; wget https://del.dog/raw/ultroid-termux -o locals.py ; python locals.py`
49-
- Termux - `sh -c "$(curl -fsSL https://del.dog/raw/ultroid-termux)"`
49+
- Termux - `sh -c "$(curl -fsSL https://del.dog/raw/ultroid-termux-deploy)"`
5050

5151
### Local Deploy - Traditional Method
5252
- Get your [Necessary Variables](#Necessary-Variables)

assistant/inlinestuff.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ async def _(e):
121121
text=f"**File:**\n{file_name}",
122122
buttons=bitton,
123123
)
124-
except:
124+
except BaseException:
125125
lnk = e.builder.article(
126126
title="fl2lnk",
127127
text="File not found",

assistant/othervars.py

+31
Original file line numberDiff line numberDiff line change
@@ -783,12 +783,43 @@ async def chbot(event):
783783
buttons=[
784784
[Button.inline("Cʜᴀᴛ Bᴏᴛ Oɴ", data="onchbot")],
785785
[Button.inline("Cʜᴀᴛ Bᴏᴛ Oғғ", data="ofchbot")],
786+
[Button.inline("Bᴏᴛ Wᴇʟᴄᴏɴᴇ", data="bwel")],
786787
[Button.inline("« Bᴀᴄᴋ", data="setter")],
787788
],
788789
link_preview=False,
789790
)
790791

791792

793+
@callback("bwel")
794+
@owner
795+
async def name(event):
796+
await event.delete()
797+
pru = event.sender_id
798+
var = "STARTMSG"
799+
name = "Bot Welcome Message:"
800+
async with event.client.conversation(pru) as conv:
801+
await conv.send_message(
802+
"**BOT WELCOME MSG**\nEnter the msg which u want to show when someone start your assistant Bot.\n\nUse /cancel to terminate the operation.",
803+
)
804+
response = conv.wait_event(events.NewMessage(chats=pru))
805+
response = await response
806+
themssg = response.message.message
807+
if themssg == "/cancel":
808+
return await conv.send_message(
809+
"Cancelled!!",
810+
buttons=get_back_button("chatbot"),
811+
)
812+
else:
813+
await setit(event, var, themssg)
814+
await conv.send_message(
815+
"{} changed to {}".format(
816+
name,
817+
themssg,
818+
),
819+
buttons=get_back_button("chatbot"),
820+
)
821+
822+
792823
@callback("onchbot")
793824
@owner
794825
async def chon(event):

assistant/start.py

+16-6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from pyUltroid.functions.asst_fns import *
1111
from pyUltroid.misc._decorators import sed
1212
from telethon import Button, events
13+
from telethon.utils import get_display_name
1314

1415
from plugins import *
1516

@@ -28,14 +29,23 @@ async def assistant(event):
2829
if not is_added(event.sender_id) and event.sender_id not in sed:
2930
add_user(event.sender_id)
3031
ok = ""
31-
if udB.get("PMBOT") == "True":
32-
ok = "You can contact my master using this bot!!\n\nSend your Message, I will Deliver it To Master."
3332
if event.is_private and event.sender_id in sed:
3433
return
35-
await event.reply(
36-
f"Hey there, this is Ultroid Assistant of {OWNER_NAME}!\n\n{ok}",
37-
buttons=[Button.url("Know More", url="https://t.me/TeamUltroid")],
38-
)
34+
if not udB.get("STARTMSG"):
35+
if udB.get("PMBOT") == "True":
36+
ok = "You can contact my master using this bot!!\n\nSend your Message, I will Deliver it To Master."
37+
await event.reply(
38+
f"Hey there, this is Ultroid Assistant of {OWNER_NAME}!\n\n{ok}",
39+
buttons=[Button.url("Know More", url="https://t.me/TeamUltroid")],
40+
)
41+
else:
42+
u = await event.client.get_entity(event.chat_id)
43+
me = f"[{ultroid_bot.me.first_name}](tg://user?id={ultroid_bot.uid})"
44+
mention = f"[{get_display_name(u)}](tg://user?id={u.id})"
45+
await event.reply(
46+
Redis("STARTMSG").format(me=me, mention=mention),
47+
buttons=[Button.url("Know More", url="https://t.me/TeamUltroid")],
48+
)
3949

4050

4151
@asst_cmd("start ?(.*)")

plugins/_help.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ async def ult(ult):
2626
output = f"**Plugin** - `{plug}`\n"
2727
for i in HELP[plug]:
2828
output += i
29-
output += "\n© @TheUltroid"
29+
output += "\n© @TeamUltroid"
3030
await eor(ult, output)
3131
elif plug in CMD_HELP:
3232
kk = f"Plugin Name-{plug}\n\n✘ Commands Available -\n\n"

plugins/_tagnotifs.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@
1818
),
1919
)
2020
async def all_messages_catcher(e):
21-
if udB.get("TAG_LOG") is not None:
22-
NEEDTOLOG = int(udB.get("TAG_LOG"))
21+
if udB.get("TAG_LOG"):
22+
try:
23+
NEEDTOLOG = int(udB.get("TAG_LOG"))
24+
except Exception:
25+
return LOGS.warning("you given Wrong Grp/Channel ID in TAG_LOG.")
2326
x = await ultroid_bot.get_entity(e.sender_id)
2427
if x.bot or x.verified:
2528
return

plugins/admintools.py

+51-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@
3030
• `{i}unpin (all) <reply to message>`
3131
Unpin the message(s) in the chat.
3232
33+
• `{i}pinned`
34+
Get pinned message in the current chat.
35+
36+
• `{i}listpinned`
37+
Get all pinned messages in current chat.
38+
3339
• `{i}purge <reply to message>`
3440
Purge all messages from the replied message.
3541
@@ -51,7 +57,7 @@
5157
from telethon.errors import BadRequestError
5258
from telethon.errors.rpcerrorlist import UserIdInvalidError
5359
from telethon.tl.functions.channels import EditAdminRequest
54-
from telethon.tl.types import ChatAdminRights
60+
from telethon.tl.types import ChatAdminRights, InputMessagesFilterPinned
5561

5662
from . import *
5763

@@ -427,4 +433,48 @@ async def editer(edit):
427433
i = i + 1
428434

429435

436+
@ultroid_cmd(pattern="pinned")
437+
async def get_pinned(event):
438+
x = await eor(event, get_string("com_1"))
439+
chat_id = (str(event.chat_id)).replace("-100", "")
440+
chat_name = (await event.get_chat()).title
441+
tem = ""
442+
c = 0
443+
444+
async for i in ultroid.iter_messages(
445+
event.chat_id, filter=InputMessagesFilterPinned
446+
):
447+
c += 1
448+
tem += f"The pinned message in {chat_name} can be found <a href=https://t.me/c/{chat_id}/{i.id}>here.</a>"
449+
if c == 1:
450+
return await x.edit(tem, parse_mode="html")
451+
452+
if tem == "":
453+
return await eod(x, "There is no pinned message in chat!", time=5)
454+
455+
456+
@ultroid_cmd(pattern="listpinned")
457+
async def get_all_pinned(event):
458+
x = await eor(event, get_string("com_1"))
459+
chat_id = (str(event.chat_id)).replace("-100", "")
460+
chat_name = (await event.get_chat()).title
461+
a = ""
462+
c = 1
463+
async for i in ultroid.iter_messages(
464+
event.chat_id, filter=InputMessagesFilterPinned
465+
):
466+
a += f"{c}. <a href=https://t.me/c/{chat_id}/{i.id}>Go to message.</a>\n"
467+
c += 1
468+
469+
if c == 1:
470+
m = f"<b>The pinned message in {chat_name}:</b>\n\n"
471+
else:
472+
m = f"<b>List of pinned message(s) in {chat_name}:</b>\n\n"
473+
474+
if a == "":
475+
return await eod(x, "There is no message pinned in this group!", time=5)
476+
477+
await x.edit(m + a, parse_mode="html")
478+
479+
430480
HELP.update({f"{__name__.split('.')[1]}": f"{__doc__.format(i=HNDLR)}"})

plugins/afk.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@
4242
@ultroid_bot.on(events.NewMessage(outgoing=True))
4343
@ultroid_bot.on(events.MessageEdited(outgoing=True))
4444
async def set_not_afk(event):
45+
if event.is_private:
46+
if Redis("PMSETTING") == "True":
47+
if not is_approved(event.chat_id):
48+
return
4549
global USER_AFK
4650
global afk_time
4751
global last_afk_message
@@ -106,11 +110,10 @@ async def set_not_afk(event):
106110
events.NewMessage(incoming=True, func=lambda e: bool(e.mentioned or e.is_private)),
107111
)
108112
async def on_afk(event):
109-
if event.fwd_from:
110-
return
111113
if event.is_private:
112-
if not is_approved(event.chat_id):
113-
return
114+
if Redis("PMSETTING") == "True":
115+
if not is_approved(event.chat_id):
116+
return
114117
global USER_AFK
115118
global afk_time
116119
global last_afk_message
@@ -156,8 +159,6 @@ async def on_afk(event):
156159

157160
@ultroid_cmd(pattern=r"afk ?(.*)")
158161
async def _(event):
159-
if event.fwd_from:
160-
return
161162
reply = await event.get_reply_message()
162163
global USER_AFK
163164
global afk_time

plugins/blacklist.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async def af(e):
3434
if e.is_group:
3535
if not e._chat.admin_rights:
3636
return await eod(e, "`You are Not Admin Here`")
37-
wrd = e.pattern_match.group(1)
37+
wrd = (e.pattern_match.group(1)).lower()
3838
chat = e.chat_id
3939
if not (wrd):
4040
return await eod(e, "`Give the word to blacklist..`")
@@ -48,7 +48,7 @@ async def rf(e):
4848
if e.is_group:
4949
if not e._chat.admin_rights:
5050
return await eod(e, "`You are Not Admin Here`")
51-
wrd = e.pattern_match.group(1)
51+
wrd = (e.pattern_match.group(1)).lower()
5252
chat = e.chat_id
5353
if not wrd:
5454
return await eod(e, "`Give the word to remove from blacklist..`")
@@ -71,12 +71,9 @@ async def lsnote(e):
7171

7272
@ultroid_bot.on(events.NewMessage(incoming=True))
7373
async def bl(e):
74-
if e.is_group:
75-
if not e._chat.admin_rights:
76-
return
77-
xx = e.text
7874
chat = e.chat_id
7975
x = get_blacklist(int(chat))
76+
xx = (e.text).lower()
8077
if x and xx:
8178
if " " in xx:
8279
xx = xx.split(" ")

plugins/bot.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,11 @@ async def cmds(event):
124124
pattern="restart$",
125125
)
126126
async def restartbt(ult):
127-
await restart(ult)
127+
if not Var.HEROKU_API:
128+
await eor(ult, "`Restarting..`")
129+
await bash("pkill python3 && python3 -m pyUltroid")
130+
else:
131+
await restart(ult)
128132

129133

130134
@ultroid_cmd(
@@ -144,6 +148,7 @@ async def _(ult):
144148
await ultroid.send_file(
145149
ult.chat_id,
146150
file="ultroid.log",
151+
thumb="resources/extras/logo_rdm.png",
147152
caption=f"**Ultroid Logs.**\nPasted [here](https://nekobin.com/{key}) too!",
148153
)
149154
await xx.edit("Done")

plugins/broadcast.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@
3232

3333
@ultroid_cmd(pattern="add ?(.*)", allow_sudo=False)
3434
async def broadcast_adder(event):
35-
if not event.text[4] == " ": # weird fix
36-
return
35+
if len(event.text) > 4:
36+
if not event.text[4] == " ": # weird fix
37+
return
3738
msgg = event.pattern_match.group(1)
3839
x = await eor(event, get_string("bd_1"))
3940
aldone = new = crsh = 0
@@ -93,8 +94,9 @@ async def broadcast_adder(event):
9394

9495
@ultroid_cmd(pattern="rem ?(.*)", allow_sudo=False)
9596
async def broadcast_remover(event):
96-
if not event.text[4] == " ": # weird fix
97-
return
97+
if len(event.text) > 4:
98+
if not event.text[4] == " ": # weird fix
99+
return
98100
chat_id = event.pattern_match.group(1)
99101
x = await eor(event, get_string("com_1"))
100102
if chat_id == "all":
@@ -130,7 +132,7 @@ async def list_all(event):
130132
name = ""
131133
try:
132134
name = (await ultroid.get_entity(int(channel))).title
133-
except:
135+
except BaseException:
134136
name = ""
135137
msg += f"=> **{name}** [`{channel}`]\n"
136138
msg += f"\nTotal {get_no_channels()} channels."

plugins/channelhacks.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ async def _(e):
8888
return
8989
async for msg in ultroid_bot.iter_messages(int(c), reverse=True):
9090
try:
91-
await asyncio.sleep(0.5)
91+
await asyncio.sleep(0.7)
9292
await ultroid_bot.send_message(int(d), msg)
93-
except:
93+
except BaseException:
9494
pass
9595
await z.edit("Done")
9696

@@ -158,7 +158,7 @@ async def list_all(event):
158158
name = ""
159159
try:
160160
name = (await ultroid.get_entity(int(channel))).title
161-
except:
161+
except BaseException:
162162
name = ""
163163
msg += f"=> **{name}** [`{channel}`]\n"
164164
msg += f"\nTotal {get_no_source_channels()} channels."
@@ -242,7 +242,7 @@ async def list_all(event):
242242
name = ""
243243
try:
244244
name = (await ultroid.get_entity(int(channel))).title
245-
except:
245+
except BaseException:
246246
name = ""
247247
msg += f"=> **{name}** [`{channel}`]\n"
248248
msg += f"\nTotal {get_no_destinations()} channels."

plugins/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ async def inline_handler(event):
4242
input_str = event.pattern_match.group(1)
4343
plug = [*PLUGINS]
4444
plugs = []
45-
if input_str == None or input_str == "":
45+
if input_str is None or input_str == "":
4646
for i in plug:
4747
try:
4848
plugs.append(

plugins/dm.py

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616

1717
@ultroid_cmd(pattern="dm ?(.*)")
1818
async def dm(e):
19+
if len(e.text) > 3:
20+
if not e.text[3] == " ": # weird fix
21+
return
1922
d = e.pattern_match.group(1)
2023
c = d.split(" ")
2124
try:

0 commit comments

Comments
 (0)