-
Notifications
You must be signed in to change notification settings - Fork 1
/
amanda.py
133 lines (112 loc) · 3.26 KB
/
amanda.py
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
print("[INFO]: INITIALIZING ...")
import re
from os import path
from asyncio import (gather, get_event_loop, sleep)
from aiohttp import ClientSession
from pyrogram import (Client, filters, idle)
from Python_ARQ import ARQ
is_config = path.exists("config.py")
if is_config:
from config import *
else:
from sample_config import *
bot_token = str(bot_token)
ARQ_API_KEY = str(ARQ_API_KEY)
api_id = int(ID)
api_hash = str(HASH)
LANGUAGE = str(LANGUAGE)
ARQ_API_BASE_URL = str(ARQ_API_BASE_URL)
print("[INFO]: INITIALIZING BOT CLIENT ...")
luna = Client(":memory:",
bot_token=bot_token,
api_id=api_id,
api_hash=api_hash,
)
bot_id = int(bot_token.split(":")[0])
arq = None
bot_id = int(bot_token.split(":")[0])
async def lunaQuery(query: str, user_id: int):
query = (
query
if LANGUAGE == "en"
else (await arq.translate(query, "en")).result.translatedText
)
resp = (await arq.luna(query, user_id)).result
return (
resp
if LANGUAGE == "en"
else (
await arq.translate(resp, LANGUAGE)
).result.translatedText
)
async def type_and_send(message):
chat_id = message.chat.id
user_id = message.from_user.id if message.from_user else 0
query = message.text.strip()
await message._client.send_chat_action(chat_id, "typing")
response, _ = await gather(lunaQuery(query, user_id), sleep(2))
if "Luna" in response:
responsee = response.replace("Luna", "Amanda")
else:
responsee = response
if "Aco" in responsee:
responsess = responsee.replace("Aco", "Amanda")
else:
responsess = responsee
if "Who is Amanda?" in responsess:
responsess2 = responsess.replace("Who is Amanda?", "Amanda?👀")
else:
responsess2 = responsess
await message.reply_text(responsess2)
await message._client.send_chat_action(chat_id, "cancel")
@luna.on_message(
~filters.private
& filters.text
& ~filters.command(["start", "start@TheAmandaBot"])
& ~filters.edited,
group=69,
)
async def chat(_, message):
if message.reply_to_message:
if not message.reply_to_message.from_user:
return
from_user_id = message.reply_to_message.from_user.id
if from_user_id != bot_id:
return
else:
match = re.search(
"[.|\n]{0,}Amanda[.|\n]{0,}",
message.text.strip(),
flags=re.IGNORECASE,
)
if not match:
return
await type_and_send(message)
@luna.on_message(
filters.private
& ~filters.command(["start", "start@TheAmandaBot"])
& ~filters.edited
)
async def chatpm(_, message):
if not message.text:
await message.reply_text("Ufff... ignoring ....")
return
await type_and_send(message)
@luna.on_message(filters.command(["start", "start@TheAmandaBot"]) & ~filters.edited)
async def startt(_, message):
await message.reply_text("Hi, i'm alive :)")
async def main():
global arq
session = ClientSession()
arq = ARQ(ARQ_API_BASE_URL, ARQ_API_KEY, session)
await luna.start()
print(
"""
-----------------
| Chatbot Started! |
-----------------
"""
)
await idle()
loop = get_event_loop()
loop.run_until_complete(main())