-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.py
467 lines (429 loc) · 23.3 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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
import discord
import asyncio
import gspread
from oauth2client.service_account import ServiceAccountCredentials
from functions import *
from values import *
# gspread authentication
scope = ['https://spreadsheets.google.com/feeds', 'https://www.googleapis.com/auth/spreadsheets',
'https://www.googleapis.com/auth/drive.file', 'https://www.googleapis.com/auth/drive']
creds = ServiceAccountCredentials.from_json_keyfile_name('Sandbox/creds.json', scope)
client = gspread.authorize(creds)
secret_sheet = client.open('Progress Report').worksheet('Don\'t Touch')
# intents & bot
intents = discord.Intents.default()
intents.message_content = True
bot = discord.Client(intents=intents)
@bot.event
async def on_ready():
print('Started')
async def called_once_a_day():
await bot.wait_until_ready()
# hindu
vals = hindu()
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
embedparam.add_field(name='Alternative Link', value='[Download]({})'.format(vals[2]))
sent = []
failed = []
for i in THE_HINDU_CHANNELS:
try:
await bot.get_channel(i).send(embed=embedparam)
sent.append(str(i))
except:
failed.append(str(i))
continue
embedparam2 = discord.Embed(title='Hindu sent to :white_check_mark:', description=' '.join(sent), color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
# vision
vals = vision_ca()
if vals[0] != secret_sheet.cell(1, 1).value:
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
sent = []
failed = []
for i in VISION_IAS_CHANNELS:
try:
await bot.get_channel(i).send(embed=embedparam)
sent.append(str(i))
except:
failed.append(str(i))
continue
embedparam2 = discord.Embed(title='Vision IAS sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
secret_sheet.delete_rows(1)
secret_sheet.insert_row([vals[0]], 1)
# next
vals = next_mcq()
if vals[0] != secret_sheet.cell(2, 1).value:
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
sent = []
failed = []
for i in NEXT_IAS_CHANNELS:
try:
await bot.get_channel(i).send(embed=embedparam)
sent.append(str(i))
except:
failed.append(str(i))
continue
embedparam2 = discord.Embed(title='Next IAS sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
secret_sheet.delete_rows(2)
secret_sheet.insert_row([vals[0]], 2)
# insights
vals = insights_ca()
if vals[0] != secret_sheet.cell(3, 1).value:
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
sent = []
failed = []
for i in INSIGHTS_IAS_CHANNELS:
try:
await bot.get_channel(i).send(embed=embedparam)
sent.append(str(i))
except:
failed.append(str(i))
continue
embedparam2 = discord.Embed(title='Insights IAS sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
secret_sheet.delete_rows(3)
secret_sheet.insert_row([vals[0]], 3)
# countdown
prelims = datetime(2023, 5, 28)
today = datetime.today()
await bot.get_channel(COUNTDOWN_CHANNEL).edit(name=str((prelims - today).days) + ' days to prelims!')
async def background_task():
now = datetime.utcnow()
if now.time() > WHEN:
tomorrow = datetime.combine(now.date() + timedelta(days=1), time(0))
seconds = (tomorrow - now).total_seconds()
await asyncio.sleep(seconds)
while True:
now = datetime.utcnow()
target_time = datetime.combine(now.date(), WHEN)
seconds_until_target = (target_time - now).total_seconds()
await asyncio.sleep(seconds_until_target)
await called_once_a_day()
tomorrow = datetime.combine(now.date() + timedelta(days=1), time(0))
seconds = (tomorrow - now).total_seconds()
await asyncio.sleep(seconds)
@bot.event
async def on_message(message):
if message.content.lower() == '--help':
embedparam = discord.Embed(title='--help', description='Get help', color=0x0addd7)
embedparam.add_field(name='--hindu', value='Get latest The Hindu newspaper PDF', inline=False)
embedparam.add_field(name='--vision', value='Get latest Vision IAS Current Affairs PDF', inline=False)
embedparam.add_field(name='--next', value='Get latest Next IAS Monthly MCQ PDF', inline=False)
embedparam.add_field(name='--insights', value='Get latest Insight IAS Current Affairs PDF', inline=False)
embedparam.add_field(name='--add_hindu', value='Add the channel to get daily The Hindu', inline=False)
embedparam.add_field(name='--add_vision', value='Add the channel to get monthly Vision IAS Magazine',
inline=False)
embedparam.add_field(name='--add_next', value='Add the channel to get monthly Next IAS MCQ PDF', inline=False)
embedparam.add_field(name='--add_insights', value='Add the channel to get monthly Insights IAS Magazine',
inline=False)
if message.author.id == DEVELOPER_ID and message.channel.id == DEVELOPER_PRIVATE_CHANNEL:
embedparam.add_field(name='---------------Extras---------------', value='Extra commands for DEVELOPER ONLY',
inline=False)
embedparam.add_field(name='--ping', value='Check connection', inline=False)
embedparam.add_field(name='--servers', value='Get all servers list', inline=False)
embedparam.add_field(name='--send_hindu <Channel ID(s)>', value='Send The Hindu to channels immediately',
inline=False)
embedparam.add_field(name='--send_vision <Channel ID(s)>',
value='Send Vision IAS magazine to channels immediately',
inline=False)
embedparam.add_field(name='--send_next <Channel ID(s)>',
value='Send Next IAS MCQ to channels immediately',
inline=False)
embedparam.add_field(name='--send_insights <Channel ID(s)>',
value='Send Insights IAS magazine to channels immediately',
inline=False)
embedparam.add_field(name='--resend',
value='Resend all to all channels immediately',
inline=False)
embedparam.add_field(name='--send_msg [<Channel ID(s)>] <message>',
value='Send message to channels immediately', inline=False)
await message.channel.send(embed=embedparam)
elif message.content.lower() == '--hindu':
# hindu
vals = hindu()
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
embedparam.add_field(name='Alternative Link', value='[Download]({})'.format(vals[2]))
embedparam2 = discord.Embed(title='The Hindu Request :white_check_mark:', description=str(message.channel.id),
color=0x0addd7)
embedparam2.add_field(name='Requested By',
value=str(message.author.name) + '#' + str(message.author.discriminator))
embedparam2.add_field(name='Server name', value=str(message.author.guild.name))
await message.channel.send(embed=embedparam)
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
await message.delete()
elif message.content.lower() == '--vision':
# vision
vals = vision_ca()
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
embedparam2 = discord.Embed(title='Vision IAS Request :white_check_mark:', description=str(message.channel.id),
color=0x0addd7)
embedparam2.add_field(name='Requested By',
value=str(message.author.name) + '#' + str(message.author.discriminator))
embedparam2.add_field(name='Server Name', value=str(message.author.guild.name))
await message.channel.send(embed=embedparam)
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
await message.delete()
elif message.content.lower() == '--next':
# next
vals = next_mcq()
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
embedparam2 = discord.Embed(title='Next IAS Request :white_check_mark:', description=str(message.channel.id),
color=0x0addd7)
embedparam2.add_field(name='Requested By',
value=str(message.author.name) + '#' + str(message.author.discriminator))
embedparam2.add_field(name='Server Name', value=str(message.author.guild.name))
await message.channel.send(embed=embedparam)
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
await message.delete()
elif message.content.lower() == '--insights':
# insights
vals = insights_ca()
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
embedparam2 = discord.Embed(title='Insights IAS Request :white_check_mark:',
description=str(message.channel.id),
color=0x0addd7)
embedparam2.add_field(name='Requested By',
value=str(message.author.name) + '#' + str(message.author.discriminator))
embedparam2.add_field(name='Server Name', value=str(message.author.guild.name))
await message.channel.send(embed=embedparam)
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
await message.delete()
elif message.content.lower() == '--add_hindu':
embedparam = discord.Embed(title='The Hindu Add Request', description=str(message.channel.id), color=0x0addd7)
embedparam.add_field(name='Requested By',
value=str(message.author.name) + '#' + str(message.author.discriminator))
embedparam.add_field(name='Server name', value=str(message.author.guild.name))
await bot.get_channel(REQUEST_CHANNEL).send(embed=embedparam)
embedparam = discord.Embed(title='Channel Added',
description='This Hindu will be sent daily in this channel as soon as developer '
'approves',
color=0x0addd7)
await message.channel.send(embed=embedparam)
elif message.content.lower() == '--add_vision':
embedparam = discord.Embed(title='Vision IAS Add Request', description=str(message.channel.id), color=0x0addd7)
embedparam.add_field(name='Requested By',
value=str(message.author.name) + '#' + str(message.author.discriminator))
embedparam.add_field(name='Server name', value=str(message.author.guild.name))
await bot.get_channel(REQUEST_CHANNEL).send(embed=embedparam)
embedparam = discord.Embed(title='Channel Added',
description='Vision IAS Magazine will be sent monthly in this channel as soon as '
'developer approves',
color=0x0addd7)
await message.channel.send(embed=embedparam)
elif message.content.lower() == '--add_next':
embedparam = discord.Embed(title='Next IAS Add Request', description=str(message.channel.id), color=0x0addd7)
embedparam.add_field(name='Requested By',
value=str(message.author.name) + '#' + str(message.author.discriminator))
embedparam.add_field(name='Server name', value=str(message.author.guild.name))
await bot.get_channel(REQUEST_CHANNEL).send(embed=embedparam)
embedparam = discord.Embed(title='Channel Added',
description='Next IAS MCQ will be sent monthly in this channel as soon as '
'developer approves',
color=0x0addd7)
await message.channel.send(embed=embedparam)
elif message.content.lower() == '--add_insights':
embedparam = discord.Embed(title='Insights IAS Add Request', description=str(message.channel.id),
color=0x0addd7)
embedparam.add_field(name='Requested By',
value=str(message.author.name) + '#' + str(message.author.discriminator))
embedparam.add_field(name='Server name', value=str(message.author.guild.name))
await bot.get_channel(REQUEST_CHANNEL).send(embed=embedparam)
embedparam = discord.Embed(title='Channel Added',
description='Insights IAS MCQ will be sent monthly in this channel as soon as '
'developer approves',
color=0x0addd7)
await message.channel.send(embed=embedparam)
elif message.content.lower() == '--ping' and message.author.id == DEVELOPER_ID and message.channel.id == DEVELOPER_PRIVATE_CHANNEL:
await message.channel.send('--pong')
elif message.content.lower() == '--servers' and message.author.id == DEVELOPER_ID and message.channel.id == DEVELOPER_PRIVATE_CHANNEL:
i = 1
async for guild in bot.fetch_guilds(limit=150):
embedparam = discord.Embed(title=str(i) + '. ' + repr(guild.name), description='Id: ' + repr(guild.id),
color=0x0addd7)
await message.channel.send(embed=embedparam)
i += 1
embedparam = discord.Embed(title='Complete', description='Total Servers: ' + str(i - 1), color=0x0addd7)
await message.channel.send(embed=embedparam)
elif message.content.startswith(
'--send_hindu') and message.author.id == DEVELOPER_ID and message.channel.id == DEVELOPER_SEND_CHANNEL:
# hindu
vals = hindu()
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
embedparam.add_field(name='Alternative Link', value='[Download]({})'.format(vals[2]))
sent = []
failed = []
for i in message.content.split()[1:]:
try:
await bot.get_channel(int(i)).send(embed=embedparam)
sent.append(i)
except:
failed.append(i)
continue
embedparam2 = discord.Embed(title='Hindu sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
elif message.content.startswith(
'--send_vision') and message.author.id == DEVELOPER_ID and message.channel.id == DEVELOPER_SEND_CHANNEL:
# vision
vals = vision_ca()
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
sent = []
failed = []
for i in message.content.split()[1:]:
try:
await bot.get_channel(int(i)).send(embed=embedparam)
sent.append(i)
except:
failed.append(i)
continue
embedparam2 = discord.Embed(title='Vision IAS sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
elif message.content.startswith(
'--send_next') and message.author.id == DEVELOPER_ID and message.channel.id == DEVELOPER_SEND_CHANNEL:
# next
vals = next_mcq()
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
sent = []
failed = []
for i in message.content.split()[1:]:
try:
await bot.get_channel(int(i)).send(embed=embedparam)
sent.append(i)
except:
failed.append(i)
continue
embedparam2 = discord.Embed(title='Next IAS sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
elif message.content.startswith(
'--send_insights') and message.author.id == DEVELOPER_ID and message.channel.id == DEVELOPER_SEND_CHANNEL:
# insights
vals = insights_ca()
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
sent = []
failed = []
for i in message.content.split()[1:]:
try:
await bot.get_channel(int(i)).send(embed=embedparam)
sent.append(i)
except:
failed.append(i)
continue
embedparam2 = discord.Embed(title='Insights IAS sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
elif message.content.startswith(
'--resend') and message.author.id == DEVELOPER_ID and message.channel.id == DEVELOPER_SEND_CHANNEL:
# resend all
# hindu
vals = hindu()
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
embedparam.add_field(name='Alternative Link', value='[Download]({})'.format(vals[2]))
sent = []
failed = []
for i in THE_HINDU_CHANNELS:
try:
await bot.get_channel(i).send(embed=embedparam)
sent.append(str(i))
except:
failed.append(str(i))
continue
embedparam2 = discord.Embed(title='Hindu sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
# vision
vals = vision_ca()
if vals[0] != secret_sheet.cell(1, 1).value:
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
sent = []
failed = []
for i in VISION_IAS_CHANNELS:
try:
await bot.get_channel(i).send(embed=embedparam)
sent.append(str(i))
except:
failed.append(str(i))
continue
embedparam2 = discord.Embed(title='Vision IAS sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
secret_sheet.delete_rows(1)
secret_sheet.insert_row([vals[0]], 1)
# next
vals = next_mcq()
if vals[0] != secret_sheet.cell(2, 1).value:
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
sent = []
failed = []
for i in NEXT_IAS_CHANNELS:
try:
await bot.get_channel(i).send(embed=embedparam)
sent.append(str(i))
except:
failed.append(str(i))
continue
embedparam2 = discord.Embed(title='Next IAS sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
secret_sheet.delete_rows(2)
secret_sheet.insert_row([vals[0]], 2)
# insights
vals = insights_ca()
if vals[0] != secret_sheet.cell(3, 1).value:
embedparam = discord.Embed(title=vals[0], description='[Download]({})'.format(vals[1]), color=0x0addd7)
sent = []
failed = []
for i in INSIGHTS_IAS_CHANNELS:
try:
await bot.get_channel(i).send(embed=embedparam)
sent.append(str(i))
except:
failed.append(str(i))
continue
embedparam2 = discord.Embed(title='Insights IAS sent to :white_check_mark:', description=' '.join(sent),
color=0x0addd7)
if len(failed) != 0:
embedparam2.add_field(name='Failed :no_entry_sign:', value=' '.join(failed))
await bot.get_channel(DEVELOPER_PRIVATE_CHANNEL).send(embed=embedparam2)
secret_sheet.delete_rows(3)
secret_sheet.insert_row([vals[0]], 3)
elif message.content.startswith(
'--send_msg') and message.author.id == DEVELOPER_ID and message.channel.id == DEVELOPER_SEND_CHANNEL:
msg = message.content[message.content.find(']') + 2:]
channels = message.content[message.content.find('[') + 1: message.content.find(']')].split(', ')
for i in channels:
await bot.get_channel(int(i)).send(msg)
async def main():
async with bot:
bot.loop.create_task(background_task())
await bot.start(TOKEN)
asyncio.run(main())
bot.run(TOKEN)