This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 744
/
main.py
389 lines (346 loc) · 11.2 KB
/
main.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
from __future__ import unicode_literals
import asyncio
import os
import traceback
import pytgcalls
from pyrogram import filters, idle
from pyrogram.errors.exceptions.bad_request_400 import \
ChatAdminRequired
from pyrogram.raw.functions.phone import CreateGroupCall
from pyrogram.raw.types import InputPeerChannel
from pyrogram.types import Message
# Initialize db
import db
db.init()
from db import db
from functions import (CHAT_ID, app, get_default_service, play_song,
session, telegram, BITRATE)
from misc import HELP_TEXT, REPO_TEXT
running = False # Tells if the queue is running or not
CLIENT_TYPE = pytgcalls.GroupCallFactory.MTPROTO_CLIENT_TYPE.PYROGRAM
PLAYOUT_FILE = "input.raw"
PLAY_LOCK = asyncio.Lock()
OUTGOING_AUDIO_BITRATE_KBIT = BITRATE
@app.on_message(
filters.command("help")
& ~filters.private
& filters.chat(CHAT_ID)
)
async def help(_, message):
await message.reply_text(HELP_TEXT, quote=False)
@app.on_message(
filters.command("repo")
& ~filters.private
& filters.chat(CHAT_ID)
)
async def repo(_, message):
await message.reply_text(REPO_TEXT, quote=False)
@app.on_message(
filters.command("joinvc")
& ~filters.private
& filters.chat(CHAT_ID)
)
async def joinvc(_, message, manual=False):
if "call" in db:
return await message.reply_text(
"__**Bot Is Already In The VC**__"
)
os.popen(f"cp etc/sample_input.raw {PLAYOUT_FILE}")
vc = pytgcalls.GroupCallFactory(
app, CLIENT_TYPE, OUTGOING_AUDIO_BITRATE_KBIT
).get_file_group_call(PLAYOUT_FILE)
db["call"] = vc
try:
await vc.start(CHAT_ID)
except Exception:
peer = await app.resolve_peer(CHAT_ID)
startVC = CreateGroupCall(
peer=InputPeerChannel(
channel_id=peer.channel_id,
access_hash=peer.access_hash,
),
random_id=app.rnd_id() // 9000000000,
)
try:
await app.send(startVC)
await vc.start(CHAT_ID)
except ChatAdminRequired:
del db["call"]
return await message.reply_text(
"Make me admin with message delete and vc manage permission"
)
await message.reply_text(
"__**Joined The Voice Chat.**__ \n\n**Note:** __If you can't hear anything,"
+ " Send /leavevc and then /joinvc again.__"
)
await message.delete()
@app.on_message(
filters.command("leavevc")
& ~filters.private
& filters.chat(CHAT_ID)
)
async def leavevc(_, message):
if "call" in db:
await db["call"].leave_current_group_call()
await db["call"].stop()
del db["call"]
await message.reply_text("__**Left The Voice Chat**__")
await message.delete()
@app.on_message(
filters.command("volume")
& ~filters.private
& filters.chat(CHAT_ID)
)
async def volume_bot(_, message):
usage = "**Usage:**\n/volume [1-200]"
if len(message.command) != 2:
return await message.reply_text(usage)
if "call" not in db:
return await message.reply_text("VC isn't started")
vc = db["call"]
volume = int(message.text.split(None, 1)[1])
if (volume < 1) or (volume > 200):
return await message.reply_text(usage)
try:
await vc.set_my_volume(volume=volume)
except ValueError:
return await message.reply_text(usage)
await message.reply_text(f"**Volume Set To {volume}**")
@app.on_message(
filters.command("pause")
& ~filters.private
& filters.chat(CHAT_ID)
)
async def pause_song_func(_, message):
if "call" not in db:
return await message.reply_text("**VC isn't started**")
if "paused" in db:
if db.get("paused"):
return await message.reply_text("**Already paused**")
db["paused"] = True
db["call"].pause_playout()
await message.reply_text(
"**Paused The Music, Send `/resume` To Resume.**"
)
@app.on_message(
filters.command("resume")
& ~filters.private
& filters.chat(CHAT_ID)
)
async def resume_song(_, message):
if "call" not in db:
return await message.reply_text("**VC isn't started**")
if "paused" in db:
if not db.get("paused"):
return await message.reply_text("**Already playing**")
db["paused"] = False
db["call"].resume_playout()
await message.reply_text(
"**Resumed, Send `/pause` To Pause The Music.**"
)
@app.on_message(
filters.command("skip") & ~filters.private & filters.chat(CHAT_ID)
)
async def skip_func(_, message):
if "queue" not in db:
await message.reply_text("**VC isn't started**")
return await message.delete()
queue = db["queue"]
if queue.empty() and ("playlist" not in db or not db["playlist"]):
await message.reply_text(
"__**Queue Is Empty, Just Like Your Life.**__"
)
return await message.delete()
db["skipped"] = True
await message.reply_text("__**Skipped!**__")
await message.delete()
@app.on_message(
filters.command("play") & ~filters.private & filters.chat(CHAT_ID)
)
async def queuer(_, message):
global running
try:
usage = """
**Usage:**
__/play Song_Name__
__/play youtube/saavn Song_Name__
__/play Reply_On_Audio__"""
async with PLAY_LOCK:
if (
len(message.command) < 2
and not message.reply_to_message
):
return await message.reply_text(usage)
if "call" not in db:
return await message.reply_text(
"**Use /joinvc First!**"
)
if message.reply_to_message:
if message.reply_to_message.audio:
service = "telegram"
song_name = message.reply_to_message.audio.title
else:
return await message.reply_text(
"**Reply to a telegram audio file**"
)
else:
text = message.text.split("\n")[0]
text = text.split(None, 2)[1:]
service = text[0].lower()
services = ["youtube", "saavn"]
if service in services:
song_name = text[1]
else:
service = get_default_service()
song_name = " ".join(text)
if "http" in song_name or ".com" in song_name:
return await message.reply("Links aren't supported.")
requested_by = message.from_user.first_name
if "queue" not in db:
db["queue"] = asyncio.Queue()
if not db["queue"].empty() or db.get("running"):
await message.reply_text("__**Added To Queue.__**")
await db["queue"].put(
{
"service": service or telegram,
"requested_by": requested_by,
"query": song_name,
"message": message,
}
)
if not db.get("running"):
db["running"] = True
await start_queue()
except Exception as e:
await message.reply_text(str(e))
e = traceback.format_exc()
print(e)
@app.on_message(
filters.command("queue")
& ~filters.private
& filters.chat(CHAT_ID)
)
async def queue_list(_, message):
if "queue" not in db:
db["queue"] = asyncio.Queue()
queue = db["queue"]
if queue.empty():
return await message.reply_text(
"__**Queue Is Empty, Just Like Your Life.**__"
)
if (
len(message.text.split()) > 1
and message.text.split()[1].lower() == "plformat"
):
pl_format = True
else:
pl_format = False
text = ""
for count, song in enumerate(queue._queue, 1):
if not pl_format:
text += (
f"**{count}. {song['service']}** "
+ f"| __{song['query']}__ | {song['requested_by']}\n"
)
else:
text += song["query"] + "\n"
if len(text) > 4090:
return await message.reply_text(
f"**There are {queue.qsize()} songs in queue.**"
)
await message.reply_text(text)
# Queue handler
async def start_queue(message=None):
while db:
if "queue_breaker" in db and db.get("queue_breaker") != 0:
db["queue_breaker"] -= 1
if db["queue_breaker"] == 0:
del db["queue_breaker"]
break
if db["queue"].empty():
if "playlist" not in db or not db["playlist"]:
db["running"] = False
break
else:
await playlist(app, message, redirected=True)
data = await db["queue"].get()
service = data["service"]
if service == "telegram":
await telegram(data["message"])
else:
await play_song(
data["requested_by"],
data["query"],
data["message"],
service,
)
@app.on_message(
filters.command("delqueue")
& ~filters.private
& filters.chat(CHAT_ID)
)
async def clear_queue(_, message):
global db
if "call" not in db:
return await message.reply_text("**VC isn't started**")
if ("queue" not in db or db["queue"].empty()) and (
"playlist" not in db or not db["playlist"]
):
return await message.reply_text("**Queue Already is Empty**")
db["playlist"] = False
db["queue"] = asyncio.Queue()
await message.reply_text("**Successfully Cleared the Queue**")
@app.on_message(
filters.command("playlist")
& ~filters.private
& filters.chat(CHAT_ID)
)
async def playlist(_, message: Message, redirected=False):
if message.reply_to_message:
raw_playlist = message.reply_to_message.text
elif len(message.text) > 9:
raw_playlist = message.text[10:]
else:
usage = """
**Usage: Same as /play
Example:
__**/playlist song_name1
song_name2
youtube song_name3**__"""
return await message.reply_text(usage)
if "call" not in db:
return await message.reply_text("**Use /joinvc First!**")
if "playlist" not in db:
db["playlist"] = False
if "running" in db and db.get("running"):
db["queue_breaker"] = 1
db["playlist"] = True
db["queue"] = asyncio.Queue()
for line in raw_playlist.split("\n"):
services = ["youtube", "saavn"]
if line.split()[0].lower() in services:
service = line.split()[0].lower()
song_name = " ".join(line.split()[1:])
else:
service = "youtube"
song_name = line
requested_by = message.from_user.first_name
await db["queue"].put(
{
"service": service or telegram,
"requested_by": requested_by,
"query": song_name,
"message": message,
}
)
if not redirected:
db["running"] = True
await message.reply_text("**Playlist Started.**")
await start_queue(message)
async def main():
await app.start()
print("Bot started!")
await idle()
await session.close()
loop = asyncio.get_event_loop()
loop.run_until_complete(main())