-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
541 lines (459 loc) · 18.9 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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
import requests
import app
from discord.ext import commands
import discord
from discord import Option, option
from discord.commands import SlashCommandGroup
from datetime import datetime
import asyncio
import tracemalloc
from func import is_string_an_url, update_news_count, detect_and_resolve_duplicates, get_anc, load_file, save_file
from url_shortener import surl_cc, short_repl_it_url
from app import generate_unique_short_key
from fb_scraper import crawl_fb
import time
import threading
tracemalloc.start()
intents = discord.Intents().all()
bot = discord.Bot(intents=intents)
setting = load_file('settings.json')
TOKEN = setting['token']
SHORT_URL_KEY = setting['key']
URL_ROOT = setting['url_root']
@bot.event
async def on_ready():
print(f'機器人已上線({bot.user})')
t = threading.Thread(target=crawl_fb_post)
t.start()
await start_timer()
anc = SlashCommandGroup('公告', '關於公告的指令類別')
anc_find= anc.create_subgroup('尋找', '用id或標題尋找公告')
anc_notify= anc.create_subgroup('校網公告通知頻道', '機器人定期發送公告的頻道')
black_hchs = SlashCommandGroup('黑色麻中', '關於黑色麻中的指令類別')
black_hchs_find = black_hchs.create_subgroup('尋找', '尋找貼文及反應或留言的人')
async def get_id(ctx: discord.AutocompleteContext):
news = load_file('news.json')
result_list = []
# find all value
for key, value in news.items():
if value != 'None':
result_list.append(value[:100])
return result_list
@bot.command(name="縮網址", description="機器人的附加功能")
# 添加命令冷卻,限制該指令的觸發頻率
@commands.cooldown(1, 10, commands.BucketType.user)
@commands.max_concurrency(3, per=commands.BucketType.default, wait=False)
@option('服務',
description='想使用的縮網址服務',
choices=["surl.cc", "88nb.cc", "urlcc.cc", "機器人內建"])
@option('網址', description='想縮短的網址')
async def short_url(ctx, 服務, 網址):
async def shorting_url():
await ctx.defer()
if is_string_an_url(網址) is not False:
if 服務 == 'surl.cc':
shorted_url = surl_cc(網址)
if shorted_url == 'error':
await ctx.respond('無法連上api')
else:
print(shorted_url)
await ctx.respond(shorted_url)
elif 服務 == '機器人內建':
shorted_url = short_repl_it_url(網址, SHORT_URL_KEY)
if shorted_url == 'Invalid key' or shorted_url == 'Invalid URL':
await ctx.respond('無法連上api')
else:
await ctx.respond(shorted_url)
else:
await ctx.respond('無效的網址')
await shorting_url()
@short_url.error
async def short_url_error(ctx, error):
if isinstance(error, commands.CommandOnCooldown):
# 冷卻時間還未到達,顯示剩餘時間
remaining_time = round(error.retry_after, 2)
await ctx.respond(f"您目前的狀態為冷卻中,剩餘 {remaining_time} 秒後解除冷卻。")
elif isinstance(error, commands.MaxConcurrencyReached):
await ctx.respond("目前因多人同時使用此功能,請稍後再試")
async def get_post_id(ctx: discord.AutocompleteContext):
posts = load_file('black_hchs.json')
result_list = []
# find all value
for key, value in posts.items():
result_list.append(key)
return result_list
@black_hchs_find.command(name='貼文', description="尋找黑色麻中的貼文")
@option('貼文id',
description='貼文的id',
autocomplete=discord.utils.basic_autocomplete(get_post_id),
requried=True)
async def find_hchs(ctx, 貼文id, show_full_comments: Option(name='顯示完整留言', description='是否顯示完整的留言', choices=['是', '否'], required=False)):
def short_urll(url: str) -> None:
shorted_urls = load_file('short_urls.json')
existing_short_key = next(
(k for k, v in shorted_urls.items() if v == url), None)
if existing_short_key:
return f'{URL_ROOT}{existing_short_key}'
else:
# 生成唯一的短網址的key
short_key = generate_unique_short_key()
# 將短網址映射到原始URL
shorted_urls[short_key] = url
# 寫入短網址映射到JSON文件
save_file('short_urls.json', shorted_urls)
return f'{URL_ROOT}{short_key}'
all_posts = load_file('black_hchs.json')
post_id = 貼文id
reactions = all_posts[post_id]['reactions']
mapping = {
'like': '讚',
'love': '大心',
'haha': '哈',
'wow': '哇',
'sorry': '嗚',
'angry': '怒',
'讚': '讚',
'大心': '大心',
'哈': '哈',
'哇': '哇',
'嗚': '嗚',
'怒': '怒',
}
output_text = {}
for key, value in reactions.items():
if key in mapping:
output_text[mapping[key]] = value
def format_comment(comment):
time = comment["comment_time"]
commenter_name = comment["commenter_name"]
commenter_url = short_urll(comment["commenter_url"])
comment_text = comment["comment_text"]
comment_url = short_urll(comment["comment_url"])
if comment["comment_image"] is not None:
comment_image = short_urll(comment["comment_image"])
comment_reply = comment['replies']
reactions_mapping = {
'like': '讚',
'love': '大心',
'haha': '哈',
'wow': '哇',
'sorry': '嗚',
'sad': '嗚',
'angry': '怒',
'care': '加油'
}
formatted_comment = f"({time}) [{commenter_name}]({commenter_url}): [{comment_text}]({comment_url})"
if comment["comment_image"] is not None:
image_text = f' ([圖片]({comment_image}))'
formatted_comment += image_text
if comment["comment_reactions"]:
reactions = comment["comment_reactions"]
reaction_text = " ".join([f"{reactions_mapping.get(reaction, reaction)}: {count}" for reaction, count in reactions.items()])
formatted_comment += f"\n{reaction_text}"
if comment_reply != []:
for items in comment_reply:
time1 = items["comment_time"]
commenter_name1 = items["commenter_name"]
commenter_url1 = short_urll(items["commenter_url"])
comment_text1 = items["comment_text"]
comment_url1 = short_urll(items["comment_url"])
if items["comment_image"] is not None:
comment_image1 = short_urll(items["comment_image"])
image_text = f' ([圖片]({comment_image1}))'
reply_text = f'\n╚═ ({time1}) [{commenter_name1}]({commenter_url1}): [{comment_text1}]({comment_url1})'
if items["comment_image"] is not None:
reply_text += image_text
if items["comment_reactions"]:
reactions = items["comment_reactions"]
reaction_text = " ".join([f"{reactions_mapping.get(reaction, reaction)}: {count}" for reaction, count in reactions.items()])
reply_text += f"\n{reaction_text}"
formatted_comment += reply_text
return formatted_comment
if post_id in all_posts:
embed = discord.Embed(
title=f"黑色麻中#{post_id}",
colour=0xf57600,
timestamp=datetime.now()
)
embed.add_field(
name="貼文內容",
value=f"```{all_posts[post_id]['content']}```",
inline=False
)
embed.add_field(
name="留言數",
value=all_posts[post_id]['comments'],
inline=True
)
embed.add_field(
name="表情",
value='\n'.join(f'{n}: {output_text[n]}' for n in output_text),
inline=False
)
def add_quote(text):
lines = text.split('\n')
modified_lines = ['> ' + line for line in lines]
result = '\n'.join(modified_lines)
return result
if show_full_comments == '是':
embed.add_field(
name="所有留言(因字數限制,所以只能顯示最多六則)",
value=add_quote('\n'.join(format_comment(comment) for comment in all_posts[post_id]['comments_full'][:6])),
inline=False
)
embed.set_footer(
text="黑色麻中",
icon_url=
"https://cdn.discordapp.com/avatars/1146008422144290826/13051e7a68067c42c417f3aa04de2ffa.webp"
)
await ctx.respond(embed=embed)
else:
await ctx.respond('找不到貼文')
@bot.command(name="關於機器人", description="黑色麻中ㄐㄐ人")
async def about_me(ctx):
values='這個資訊比神奇的海螺還神奇所以你點到這裡幹嘛?'
embed = discord.Embed(title="關於我", colour=0x00b0f4, timestamp=datetime.now())
embed.add_field(name=f"我的名字", value='黑色麻中ㄐㄐ人', inline=False)
embed.add_field(name=f"我的作者", value='<@971730686685880322>', inline=False)
embed.add_field(name=f"版本", value='2.0', inline=False)
embed.add_field(
name=f"神奇的資訊",
value=''.join([f'||{char}||' for char in values]),
inline=False)
embed.add_field(name=f"如何取得免費Nitro(可能已失效)",
value='https://www.youtube.com/watch?v=dQw4w9WgXcQ',
inline=False)
embed.set_footer(
text="黑色麻中",
icon_url=
"https://cdn.discordapp.com/avatars/1146008422144290826/13051e7a68067c42c417f3aa04de2ffa.webp"
)
await ctx.respond(embed=embed)
# 添加命令冷卻,限制該指令的觸發頻率
@commands.cooldown(1, 10, commands.BucketType.user)
@commands.max_concurrency(3, per=commands.BucketType.default, wait=False)
@anc.command(name="新增點閱數", description="這是一個神奇的功能")
@option('公告id',
description='你要新增點閱數的公告',
autocomplete=discord.utils.basic_autocomplete(get_id))
async def add_news_clicks(ctx, 公告id, 點閱數: Option(int, '欲新增的點閱數')):
async def process_clicks():
await ctx.defer()
try:
embed = discord.Embed(title="發生錯誤",
colour=0x00b0f4,
timestamp=datetime.now())
embed.set_footer(
text="黑色麻中",
icon_url=
"https://cdn.discordapp.com/avatars/1146008422144290826/13051e7a68067c42c417f3aa04de2ffa.webp"
)
if 點閱數 > 10:
embed.add_field(name=f"原因",
value='為了不要讓<@971730686685880322>被抓去約談,所以超過十次請求須付費解鎖',
inline=False)
embed.add_field(name=f"付費管道",
value='https://www.youtube.com/watch?v=dQw4w9WgXcQ',
inline=False)
await ctx.respond(embed=embed)
elif 點閱數 <= 0:
embed.add_field(name=f"原因", value='點閱數<=0', inline=False)
await ctx.respond(embed=embed)
else:
news = load_file('news.json')
news_id = [
key for key, value in news.items() if value.startswith(公告id)
]
loop_times = 點閱數
message = await ctx.respond(f'預計至少{7.5 * 點閱數}秒後完成\n已新增0次點閱數')
now_times = 0
while now_times < loop_times:
if await update_news_count(str(news_id[0])) == 'error':
url = f"https://www.hchs.hc.edu.tw/ischool/widget/site_news/update_news_clicks.php?newsId={news_id[0]}"
response = requests.get(url, timeout=20)
response.raise_for_status()
now_times += 1
print(f'已新增{now_times}次點閱數')
await message.edit(f'預計至少{7.5 * 點閱數}秒後完成\n已新增{now_times}次點閱數')
await asyncio.sleep(0.5)
embed = discord.Embed(title="已新增公告點閱數",
colour=0x00b0f4,
timestamp=datetime.now())
embed.add_field(name="點閱數", value=點閱數, inline=False)
embed.add_field(
name="公告標題",
value=
f"在[這個網頁](https://www.hchs.hc.edu.tw/ischool/widget/site_news/main2.php?uid=WID_0_2_0516b5aba93b58b0547367faafb2f1dbe2ebba4c&maximize=1&allbtn=0)尋找**{公告id}**",
inline=False)
embed.set_footer(
text="黑色麻中",
icon_url=
"https://cdn.discordapp.com/avatars/1146008422144290826/13051e7a68067c42c417f3aa04de2ffa.webp"
)
await message.edit(content='', embed=embed)
except Exception as e:
print(e)
await ctx.respond(f'```{e}```')
await process_clicks()
@add_news_clicks.error
async def add_news_clicks_error(ctx, error):
if isinstance(error, commands.CommandOnCooldown):
# 冷卻時間還未到達,顯示剩餘時間
remaining_time = round(error.retry_after, 2)
await ctx.respond(f"您目前的狀態為冷卻中,剩餘 {remaining_time} 秒後解除冷卻。")
elif isinstance(error, commands.MaxConcurrencyReached):
await ctx.respond("目前因多人同時使用此功能,請稍後再試")
@anc_notify.command(name="設定頻道", description="設定新公告發送頻道")
@commands.has_permissions(administrator=True)
async def set_channel(ctx, 公告頻道: Option(discord.TextChannel, '你要公告定期發送的頻道')):
try:
setting = load_file('settings.json')
# not in channel_id list
if 公告頻道.id not in setting['channel_id']:
setting['channel_id'].append(公告頻道.id)
elif 公告頻道.id in setting['channel_id']:
raise ValueError('重複的ID')
save_file('settings.json', setting)
await ctx.respond(f'已將<#{公告頻道.id}>設為您的新聞公告頻道')
except Exception as e:
embed = discord.Embed(title="發生了錯誤",
description=f'```{e}```',
colour=0x00b0f4,
timestamp=datetime.now())
embed.set_footer(
text="黑色麻中",
icon_url=
"https://cdn.discordapp.com/avatars/1146008422144290826/13051e7a68067c42c417f3aa04de2ffa.webp"
)
await ctx.respond(embed=embed)
@anc_notify.command(name="移除頻道", description="移除新公告發送頻道")
@commands.has_permissions(administrator=True)
async def remove_channel(ctx, 公告頻道: Option(discord.TextChannel, '你要公告定期發送的頻道')):
try:
setting = load_file('settings.json')
# is digit and not in channel_id list
if 公告頻道.id in setting['channel_id']:
setting['channel_id'].remove(公告頻道.id)
elif 公告頻道.id not in setting['channel_id']:
raise ValueError('不存在的ID')
save_file('settings.json', setting)
await ctx.respond(f'已將<#{公告頻道.id}>移除從新聞公告頻道列表移除')
except Exception as e:
embed = discord.Embed(title="發生了錯誤",
description=f'```{e}```',
colour=0x00b0f4,
timestamp=datetime.now())
embed.set_footer(
text="黑色麻中",
icon_url=
"https://cdn.discordapp.com/avatars/1146008422144290826/13051e7a68067c42c417f3aa04de2ffa.webp"
)
await ctx.respond(embed=embed)
@anc_find.command(name='標題', description="取得指定公告標題的資訊")
@option('公告標題',
description='你要查詢的標題',
autocomplete=discord.utils.basic_autocomplete(get_id))
async def search_title(ctx, 公告標題):
await ctx.defer()
message = await ctx.respond('資料處理中,請稍後')
response = await get_anc(公告標題)
if type(response) == discord.embeds.Embed:
await message.edit(content="", embed=response)
elif response.startswith('error'):
embed = discord.Embed(title="發生了錯誤",
description=f'```{response[5:]}```',
colour=0x00b0f4,
timestamp=datetime.now())
embed.set_footer(
text="黑色麻中",
icon_url=
"https://cdn.discordapp.com/avatars/1146008422144290826/13051e7a68067c42c417f3aa04de2ffa.webp"
)
await message.edit(content="", embed=embed)
async def get_id2(ctx: discord.AutocompleteContext):
news = load_file('news.json')
result_list = []
# get values
for key, value in news.items():
if value != 'None':
result_list.append(key)
return result_list
@anc_find.command(name='id', description="取得指定公告ID的資訊")
@option('公告id',
description='你要查詢的公告ID',
autocomplete=discord.utils.basic_autocomplete(get_id2))
async def search(ctx, 公告id):
await ctx.defer()
message = await ctx.respond('資料處理中,請稍後')
response = await get_anc(公告id)
if type(response) == discord.embeds.Embed:
await message.edit(content="", embed=response)
elif response.startswith('error'):
embed = discord.Embed(title="發生了錯誤",
description=f'```{response[5:]}```',
colour=0x00b0f4,
timestamp=datetime.now())
embed.set_footer(
text="黑色麻中",
icon_url=
"https://cdn.discordapp.com/avatars/1146008422144290826/13051e7a68067c42c417f3aa04de2ffa.webp"
)
await message.edit(content="", embed=embed)
def crawl_fb_post():
while True:
asyncio.run(crawl_fb())
time.sleep(3600*6)
async def start_timer():
while True:
news = load_file('news.json')
setting = load_file('settings.json')
# 小到大排key
sorted_data = {int(key): value for key, value in news.items()}
sorted_data = dict(sorted(sorted_data.items()))
# 最後一個不為None的項目
last_non_none_item = None
for key, value in sorted_data.items():
if value != "None":
last_non_none_item = key
for key, value in news.items():
if value == 'None' and int(key) > int(last_non_none_item) and int(
key) < int(last_non_none_item) + 10:
response = await get_anc(key, 'auto')
if response != 'error公告ID錯誤: 找不到該ID' and type(response) != discord.embeds.Embed:
print(0)
print(response)
embed = discord.Embed(title="發生了錯誤",
description=f'```{response}```',
colour=0x00b0f4,
timestamp=datetime.now())
embed.set_footer(
text="黑色麻中",
icon_url=
"https://cdn.discordapp.com/avatars/1146008422144290826/13051e7a68067c42c417f3aa04de2ffa.webp"
)
for channel_id in setting['channel_id']:
try:
channel = bot.get_channel(int(channel_id))
await channel.send(embed=embed)
except Exception as e:
print(1)
print(e)
continue
elif response == 'error公告ID錯誤: 找不到該ID':
pass
else:
for channel_id in setting['channel_id']:
try:
channel = bot.get_channel(int(channel_id))
await channel.send(embed=response)
except Exception as e:
print(2)
print(e)
continue
detect_and_resolve_duplicates()
await asyncio.sleep(3600)
bot.add_application_command(anc)
bot.add_application_command(black_hchs)
if __name__ == '__main__':
app.keep_alive()
bot.run(TOKEN)