Skip to content

Commit 4e65f21

Browse files
New-dev0xditya1Danish-00buddhhusppidy
authored
Ultroid v0.0.8 | 17-6-21
Co-authored-by: Aditya <[email protected]> Co-authored-by: Danish <[email protected]> Co-authored-by: Amit Sharma <[email protected]> Co-authored-by: sppidy <[email protected]> Co-authored-by: Arnab Paryali <[email protected]> Co-authored-by: divkix <[email protected]> Co-authored-by: hellboi_atul <[email protected]> Co-authored-by: Programming Error <[email protected]> Co-authored-by: New-dev0 <[email protected]>
1 parent 4f0cb66 commit 4e65f21

Some content is hidden

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

119 files changed

+2730
-5508
lines changed

.gitignore

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
.env
2-
venv/
3-
__pycache__
4-
ultroid.session-journal
5-
ultroid.session
2+
*.session-journal
3+
*.session
4+
build
65
*.mp3
76
*.webm
87
*.webp
98
*.mp4
109
*.tgs
11-
.vscode/*
1210
/*.jpg
1311
/*.png
1412
/*.mp4
15-
addons/
16-
ultroid.log
13+
*.log
1714
target/npmlist.json
15+
package-lock.json
16+
# Directories
17+
addons/
18+
__pycache__/
19+
venv/
1820
node_modules/
1921
glitch_me/
20-
.idea
21-
venv/
22+
.idea/
23+
.vscode/
24+
temp/

Dockerfile

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2020 TeamUltroid
2+
# Copyright (C) 2021 TeamUltroid
33
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
44
# PLease read the GNU Affero General Public License in <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
55

6-
FROM programmingerror/ultroid:v0.0.2
6+
FROM programmingerror/ultroid:b0.1
77

88
ENV TZ=Asia/Kolkata
99
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
10-
RUN apt-get autoremove --purge
1110

1211
RUN git clone https://github.com/TeamUltroid/Ultroid.git /root/TeamUltroid/
1312

1413
WORKDIR /root/TeamUltroid/
1514

16-
RUN pip3 install -r requirements.txt
17-
RUN npm install -g npm@7.12.1 -g
15+
RUN pip3 install --no-cache-dir -r requirements.txt
16+
RUN npm install -g npm@7.16.0 -g
1817
RUN npm install
1918
RUN npm run build

app.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,9 @@
4848
}
4949
},
5050
"formation": {
51-
"worker": {
51+
"ultroid": {
5252
"quantity": 1,
5353
"size": "free"
54-
},
55-
"web": {
56-
"quantity": 0,
57-
"size": "free"
5854
}
5955
}
6056
}

assistant/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2020 TeamUltroid
2+
# Copyright (C) 2021 TeamUltroid
33
#
44
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
55
# PLease read the GNU Affero General Public License in

assistant/api_setter.py

+54-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2020 TeamUltroid
2+
# Copyright (C) 2021 TeamUltroid
33
#
44
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
55
# PLease read the GNU Affero General Public License in
@@ -16,15 +16,14 @@ async def apiset(event):
1616
await event.edit(
1717
get_string("ast_1"),
1818
buttons=[
19-
[Button.inline("Remove.bg", data="rmbg")],
19+
[Button.inline("Remove.bg API", data="rmbg")],
20+
[Button.inline("DEEP API", data="dapi")],
21+
[Button.inline("OCR API", data="oapi")],
2022
[Button.inline("« Back", data="setter")],
2123
],
2224
)
2325

2426

25-
# remove.bg api
26-
27-
2827
@callback("rmbg")
2928
@owner
3029
async def rmbgapi(event):
@@ -48,3 +47,53 @@ async def rmbgapi(event):
4847
f"{name} changed to {themssg}",
4948
buttons=get_back_button("apiset"),
5049
)
50+
51+
52+
@callback("dapi")
53+
@owner
54+
async def rmbgapi(event):
55+
await event.delete()
56+
pru = event.sender_id
57+
var = "DEEP_API"
58+
name = "DEEP AI API Key"
59+
async with event.client.conversation(pru) as conv:
60+
await conv.send_message("Get Your Deep Api from deepai.org and send here.")
61+
response = conv.wait_event(events.NewMessage(chats=pru))
62+
response = await response
63+
themssg = response.message.message
64+
if themssg == "/cancel":
65+
return await conv.send_message(
66+
"Cancelled!!",
67+
buttons=get_back_button("apiset"),
68+
)
69+
else:
70+
await setit(event, var, themssg)
71+
await conv.send_message(
72+
f"{name} changed to {themssg}",
73+
buttons=get_back_button("apiset"),
74+
)
75+
76+
77+
@callback("oapi")
78+
@owner
79+
async def rmbgapi(event):
80+
await event.delete()
81+
pru = event.sender_id
82+
var = "OCR_API"
83+
name = "OCR API Key"
84+
async with event.client.conversation(pru) as conv:
85+
await conv.send_message("Get Your OCR api from ocr.space Send Send Here.")
86+
response = conv.wait_event(events.NewMessage(chats=pru))
87+
response = await response
88+
themssg = response.message.message
89+
if themssg == "/cancel":
90+
return await conv.send_message(
91+
"Cancelled!!",
92+
buttons=get_back_button("apiset"),
93+
)
94+
else:
95+
await setit(event, var, themssg)
96+
await conv.send_message(
97+
f"{name} changed to {themssg}",
98+
buttons=get_back_button("apiset"),
99+
)

assistant/inlinestuff.py

+70-22
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2020 TeamUltroid
2+
# Copyright (C) 2021 TeamUltroid
33
#
44
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
55
# PLease read the GNU Affero General Public License in
66
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
77

88
import base64
9+
import os
10+
import urllib
911
from random import choice
1012
from re import compile as re_compile
1113
from re import findall
12-
from urllib.request import urlopen
1314

1415
import requests
1516
from bs4 import BeautifulSoup
@@ -19,6 +20,8 @@
1920
from telethon import Button
2021
from telethon.tl.types import InputWebDocument as wb
2122

23+
from plugins._inline import SUP_BUTTONS
24+
2225
from . import *
2326
from . import humanbytes as hb
2427

@@ -153,15 +156,7 @@ async def repo(e):
153156
description="Userbot | Telethon",
154157
thumb=wb(ultpic, 0, "image/jpeg", []),
155158
text="• **ULTROID USERBOT** •",
156-
buttons=[
157-
[
158-
Button.url("Repo", url="https://github.com/TeamUltroid/Ultroid"),
159-
Button.url(
160-
"Addons", url="https://github.com/TeamUltroid/UltroidAddons"
161-
),
162-
],
163-
[Button.url("Support", url="t.me/UltroidSupport")],
164-
],
159+
buttons=SUP_BUTTONS,
165160
),
166161
]
167162
await e.answer(res, switch_pm="Ultroid Repo.", switch_pm_param="start")
@@ -426,22 +421,75 @@ async def _(e):
426421
await e.answer(modss, switch_pm="Search Mod Applications.", switch_pm_param="start")
427422

428423

429-
@in_pattern("clipart")
424+
@in_pattern("ebooks")
430425
@in_owner
431426
async def clip(e):
432427
try:
433428
quer = e.text.split(" ", maxsplit=1)[1]
434429
except IndexError:
435-
await e.answer([], switch_pm="ClipArt Search.", switch_pm_param="start")
430+
await e.answer(
431+
[], switch_pm="Enter Query to Look for EBook", switch_pm_param="start"
432+
)
433+
return
436434
quer = quer.replace(" ", "+")
437-
sear = f"https://clipartix.com/search/{quer}"
438-
html = urlopen(sear)
439-
bs = BeautifulSoup(html, "html.parser", from_encoding="utf-8")
440-
resul = bs.find_all("img", "attachment-full size-full")
435+
sear = f"http://www.gutenberg.org/ebooks/search/?query={quer}&submit_search=Go%21"
436+
magma = requests.get(sear).content
437+
bs = BeautifulSoup(magma, "html.parser", from_encoding="utf-8")
438+
out = bs.find_all("img")
439+
Alink = bs.find_all("a", "link")
440+
if len(out) == 0:
441+
return await e.answer(
442+
[], switch_pm="No Results Found !", switch_pm_param="start"
443+
)
441444
buil = e.builder
445+
dont_take = [
446+
"Authors",
447+
"Did you mean",
448+
"Sort Alpha",
449+
"Sort by",
450+
"Subjects",
451+
"Bookshelves",
452+
]
442453
hm = []
443-
for res in resul:
444-
hm += [buil.photo(include_media=True, file=res["src"])]
445-
await e.answer(
446-
hm, gallery=True, switch_pm="Clipart Searcher.", switch_pm_param="start"
447-
)
454+
titles = []
455+
for num in Alink:
456+
try:
457+
rt = num.find("span", "title").text
458+
if not rt.startswith(tuple(dont_take)):
459+
titles.append(rt)
460+
except BaseException:
461+
pass
462+
for rs in range(len(out)):
463+
if "/cache/epub" in out[rs]["src"]:
464+
link = out[rs]["src"]
465+
num = link.split("/")[3]
466+
hm.append(
467+
buil.document(
468+
title=titles[rs],
469+
description="GutenBerg Search",
470+
file="https://gutenberg.org" + link.replace("small", "medium"),
471+
text=f"**• Ebook Search**\n\n->> `{titles[rs]}`",
472+
buttons=Button.inline("Get as Doc", data=f"ebk_{num}"),
473+
)
474+
)
475+
await e.answer(hm, switch_pm="Ebooks Search", switch_pm_param="start")
476+
477+
478+
@callback(re_compile("ebk_(.*)"))
479+
async def eupload(event):
480+
match = event.pattern_match.group(1).decode("utf-8")
481+
await event.answer("Uploading..")
482+
try:
483+
await event.edit(
484+
file=f"https://www.gutenberg.org/files/{match}/{match}-pdf.pdf"
485+
)
486+
except BaseException:
487+
book = "Ultroid-Book.epub"
488+
urllib.request.urlretrieve(
489+
"https://www.gutenberg.org/ebooks/132.epub.images", book
490+
)
491+
fn, media, _ = await asst._file_to_media(
492+
book, thumb="resources/extras/ultroid.jpg"
493+
)
494+
await event.edit(file=media)
495+
os.remove(book)

assistant/localization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2020 TeamUltroid
2+
# Copyright (C) 2021 TeamUltroid
33
#
44
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
55
# PLease read the GNU Affero General Public License in

0 commit comments

Comments
 (0)