forked from Ay2416/YT-Alarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
task.py
358 lines (281 loc) · 21 KB
/
task.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
# Discord bot import
import discord
import ndjson
import glob
import time
import os
import re
import requests
import datetime
import dateutil.parser
import asyncio
import scrapetube
import feedparser
from bs4 import BeautifulSoup
# My program import
from webhook import webhook_sender
# 変数
# 文字列にした時間を計算できる形式に変換する時に使用
time_format = '%Y-%m-%d %H:%M:%S.%f'
class Task:
async def send_discord(self, bot):
# webhookを使う準備
webhook_send = webhook_sender()
# guild_jsonのファイル一覧を取得
files = glob.glob('./data/guild_json/*.ndjson')
#print(files)
# 1つのギルドごとに処理を開始
for i in range(0, len(files)):
# guildごとのndjsonファイルの読み込み
with open(files[i]) as f:
guild_data = ndjson.load(f)
for j in range(0, len(guild_data)):
# もし前回の更新から3分経っていたら
update_time = datetime.datetime.strptime(guild_data[j]["latest_time"], time_format)
if (datetime.datetime.now() - update_time).total_seconds() >= 180:
#print(os.path.split(files[i])[0])
#print(guild_data[j])
# 現在のdata_jsonの読込
with open('./data/data_json/' + os.path.splitext(os.path.basename(files[i]))[0] + '/' + guild_data[j]["type"] + '/' + guild_data[j]["add_id"] + ".ndjson") as f:
old_data = ndjson.load(f)
# streamsの場合
if guild_data[j]["type"] == 'streams':
# 最新のデータを取ってくる
try:
channel_content = scrapetube.get_channel(channel_url='https://youtube.com/channel/' + guild_data[j]['add_id'], limit=10, sort_by="newest", content_type="streams")
except Exception as e:
print('scrapetubeデータ取得でエラーが発生しました。')
continue
# データをjson形式で変数に入れる
now_data = []
for stream in channel_content:
try:
StartTime = stream['upcomingEventData']['startTime']
except Exception as e:
StartTime = "no"
content = {
"videoId" : stream['videoId'],
"style" : stream['thumbnailOverlays'][0]['thumbnailOverlayTimeStatusRenderer']['style'],
"StartTime" : StartTime,
"wait_nofication" : "no",
"premium_nofication" : "no"
}
now_data.append(content)
# nofication が yes の場合の引木継ぎ
for k in range(0, len(now_data)):
for l in range(0, len(old_data)):
if now_data[k]["videoId"] == old_data[l]["videoId"] and old_data[l]["wait_nofication"] == "yes":
now_data[k]["wait_nofication"] = "yes"
if now_data[k]["videoId"] == old_data[l]["videoId"] and old_data[l]["premium_nofication"] == "yes":
now_data[k]["premium_nofication"] = "yes"
for m in range(0, len(now_data)):
# upcomingのものがある場合は1時間前になった場合に通知を出す
if now_data[m]["style"] == "UPCOMING" and now_data[m]["StartTime"] != 'no' and now_data[m]["wait_nofication"] != "yes":
now = time.time()
if now - int(now_data[m]["StartTime"]) <= 3600:
# メンションの設定はあるかの確認
send_message = ""
if guild_data[j]["mention"] != "Off":
send_message = '<@&' + str(guild_data[j]["mention"]) + '>\n'
# 通知の送信
send_message += '\n' + guild_data[j]["wait_message"] + '\nhttps://youtu.be/' + now_data[m]['videoId']
await webhook_send.webhook_send(guild_data[j]["webhook_url"], guild_data[j]["name"], guild_data[j]["picture_url"],send_message)
# 通知を出したものはdata_jsonの「nofication」をyesに変更する
now_data[m]["wait_nofication"] = "yes"
# liveのものがある場合は通知を出す
elif now_data[m]["style"] == "LIVE" and now_data[m]["premium_nofication"] != "yes":
# メンションの設定はあるかの確認
send_message = ""
if guild_data[j]["mention"] != "Off":
send_message = '<@&' + str(guild_data[j]["mention"]) + '>\n'
# 通知の送信
send_message += '\n' + guild_data[j]["normal_message"] + '\nhttps://youtu.be/' + now_data[m]['videoId']
await webhook_send.webhook_send(guild_data[j]["webhook_url"], guild_data[j]["name"], guild_data[j]["picture_url"],send_message)
# 通知を出したものはdata_jsonの「nofication」をyesに変更する
now_data[m]["premium_nofication"] = "yes"
# 更新されたデータをdata_jsonに保存していく
os.remove('./data/data_json/' + os.path.splitext(os.path.basename(files[i]))[0] + '/' + guild_data[j]["type"] + '/' + guild_data[j]["add_id"] + ".ndjson")
for n in range(0, len(now_data)):
with open('./data/data_json/' + os.path.splitext(os.path.basename(files[i]))[0] + '/' + guild_data[j]["type"] + '/' + guild_data[j]["add_id"] + ".ndjson", 'a') as f:
writer = ndjson.writer(f)
writer.writerow(now_data[n])
# videoの場合
elif guild_data[j]["type"] == 'videos':
# 最新のデータを取ってくる
try:
channel_content = scrapetube.get_channel(channel_url='https://youtube.com/channel/' + guild_data[j]['add_id'], limit=10, sort_by="newest", content_type="videos")
except Exception as e:
print('scrapetubeデータ取得でエラーが発生しました。')
continue
# データをjson形式で変数に入れる
now_data = []
for video in channel_content:
try:
StartTime = video['upcomingEventData']['startTime']
except Exception as e:
StartTime = "no"
content = {
"videoId" : video['videoId'],
"style" : video['thumbnailOverlays'][0]['thumbnailOverlayTimeStatusRenderer']['style'],
"StartTime" : StartTime,
"normal_nofication" : "no",
"wait_nofication" : "no",
"premium_nofication" : "no"
}
now_data.append(content)
# nofication が yes の場合の引木継ぎ
for k in range(0, len(now_data)):
for l in range(0, len(old_data)):
if now_data[k]["videoId"] == old_data[l]["videoId"] and old_data[l]["normal_nofication"] == "yes":
now_data[k]["normal_nofication"] = "yes"
if now_data[k]["videoId"] == old_data[l]["videoId"] and old_data[l]["wait_nofication"] == "yes":
now_data[k]["wait_nofication"] = "yes"
if now_data[k]["videoId"] == old_data[l]["videoId"] and old_data[l]["premium_nofication"] == "yes":
now_data[k]["premium_nofication"] = "yes"
for m in range(0, len(now_data)):
# upcomingのものがある場合は1時間前になった場合に通知を出す
if now_data[m]["style"] == "UPCOMING" and now_data[m]["StartTime"] != 'no' and now_data[m]["wait_nofication"] != "yes":
now = time.time()
if now - int(now_data[m]["StartTime"]) <= 3600:
# メンションの設定はあるかの確認
send_message = ""
if guild_data[j]["mention"] != "Off":
send_message = '<@&' + str(guild_data[j]["mention"]) + '>\n'
# 通知の送信
send_message += '\n' + guild_data[j]["wait_message"] + '\nhttps://youtu.be/' + now_data[m]['videoId']
await webhook_send.webhook_send(guild_data[j]["webhook_url"], guild_data[j]["name"], guild_data[j]["picture_url"],send_message)
# 通知を出したものはdata_jsonの「nofication」をyesに変更する
now_data[m]["wait_nofication"] = "yes"
# liveのものがある場合は通知を出す
elif now_data[m]["style"] == "LIVE" and now_data[m]["premium_nofication"] != "yes":
# メンションの設定はあるかの確認
send_message = ""
if guild_data[j]["mention"] != "Off":
send_message = '<@&' + str(guild_data[j]["mention"]) + '>\n'
# 通知の送信
send_message += '\n' + guild_data[j]["premium_message"] + '\nhttps://youtu.be/' + now_data[m]['videoId']
await webhook_send.webhook_send(guild_data[j]["webhook_url"], guild_data[j]["name"], guild_data[j]["picture_url"],send_message)
# 通知を出したものはdata_jsonの「nofication」をyesに変更する
now_data[m]["premium_nofication"] = "yes"
# defaultの者がある場合は通知を出す
elif now_data[m]["style"] == "DEFAULT":
# old_dataの中でdefalutの一番新しい情報を探す
for l in range(0, len(old_data)):
if old_data[l]["style"] == "DEFAULT":
hozon_videoId = old_data[l]["videoId"]
break
# new_dataとold_dataの1番上に来てるものよりも上にあるものを投稿されたものとして扱う
for n in range(0, len(now_data)):
if now_data[n]["style"] == "DEFAULT" and now_data[n]["videoId"] == hozon_videoId:
hozon_num = n
# 更新を行う
for o in range(hozon_num,-1,-1):
if now_data[o]["style"] == "DEFAULT" and now_data[o]["normal_nofication"] != "yes":
# メンションの設定はあるかの確認
send_message = ""
if guild_data[j]["mention"] != "Off":
send_message = '<@&' + str(guild_data[j]["mention"]) + '>\n'
# 通知の送信
send_message += '\n' + guild_data[j]["normal_message"] + '\nhttps://youtu.be/' + now_data[m]['videoId']
await webhook_send.webhook_send(guild_data[j]["webhook_url"], guild_data[j]["name"], guild_data[j]["picture_url"],send_message)
# 通知を出したものはdata_jsonの「nofication」をyesに変更する
now_data[o]["normal_nofication"] = "yes"
# 更新されたデータをdata_jsonに保存していく
os.remove('./data/data_json/' + os.path.splitext(os.path.basename(files[i]))[0] + '/' + guild_data[j]["type"] + '/' + guild_data[j]["add_id"] + ".ndjson")
for n in range(0, len(now_data)):
with open('./data/data_json/' + os.path.splitext(os.path.basename(files[i]))[0] + '/' + guild_data[j]["type"] + '/' + guild_data[j]["add_id"] + ".ndjson", 'a') as f:
writer = ndjson.writer(f)
writer.writerow(now_data[n])
# shortsの場合
elif guild_data[j]["type"] == 'shorts':
# 最新のデータを取ってくる
try:
channel_content = scrapetube.get_channel(channel_url='https://youtube.com/channel/' + guild_data[j]['add_id'], limit=10, sort_by="newest", content_type="shorts")
except Exception as e:
print('scrapetubeデータ取得でエラーが発生しました。')
continue
# データをjson形式で変数に入れる
now_data = []
for video in channel_content:
try:
StartTime = video['upcomingEventData']['startTime']
except Exception as e:
StartTime = "no"
content = {
"videoId" : video['videoId'],
"StartTime" : StartTime,
"normal_nofication" : "no"
}
now_data.append(content)
# nofication が yes の場合の引木継ぎ
for k in range(0, len(now_data)):
for l in range(0, len(old_data)):
if now_data[k]["videoId"] == old_data[l]["videoId"] and old_data[l]["normal_nofication"] == "yes":
now_data[k]["normal_nofication"] = "yes"
for m in range(0, len(now_data)):
if now_data[m]["normal_nofication"] != "yes":
# old_dataの中でdefalutの一番新しい情報を探す
hozon_videoId = old_data[0]["videoId"]
# new_dataとold_dataの1番上に来てるものよりも上にあるものを投稿されたものとして扱う
for n in range(0, len(now_data)):
if now_data[n]["videoId"] == hozon_videoId:
hozon_num = n
# 更新を行う
for o in range(hozon_num,-1,-1):
# メンションの設定はあるかの確認
send_message = ""
if now_data[o]["normal_nofication"] != "yes":
if guild_data[j]["mention"] != "Off":
send_message = '<@&' + str(guild_data[j]["mention"]) + '>\n'
# 通知の送信
send_message += '\n' + guild_data[j]["normal_message"] + '\nhttps://youtu.be/' + now_data[m]['videoId']
await webhook_send.webhook_send(guild_data[j]["webhook_url"], guild_data[j]["name"], guild_data[j]["picture_url"],send_message)
# 通知を出したものはdata_jsonの「nofication」をyesに変更する
now_data[o]["normal_nofication"] = "yes"
# 更新されたデータをdata_jsonに保存していく
os.remove('./data/data_json/' + os.path.splitext(os.path.basename(files[i]))[0] + '/' + guild_data[j]["type"] + '/' + guild_data[j]["add_id"] + ".ndjson")
for n in range(0, len(now_data)):
with open('./data/data_json/' + os.path.splitext(os.path.basename(files[i]))[0] + '/' + guild_data[j]["type"] + '/' + guild_data[j]["add_id"] + ".ndjson", 'a') as f:
writer = ndjson.writer(f)
writer.writerow(now_data[n])
# searchの場合
else:
print('未実装領域')
# チャンネル名に更新を入れる
# チャンネル名を取得する
try:
feed_url = feedparser.parse('https://www.youtube.com/feeds/videos.xml?channel_id=' + guild_data[j]["add_id"])
for entry in feed_url.entries:
yt_channel_name = entry.author
break
guild_data[j]["name"] = yt_channel_name
except Exception as e:
print("チャンネル名取得でエラーが発生しました。")
pass
# チャンネルアイコンを更新する
try:
url = 'https://youtube.com/channel/' + guild_data[j]["add_id"]
res = requests.get(url)
soup = BeautifulSoup(res.text, "html.parser")
elems = soup.find_all(rel=re.compile("image_src"))
yt_picture_url = elems[0].attrs['href']
guild_data[j]["picture_url"] = yt_picture_url
except Exception as e:
print("チャンネルアイコン取得でエラーが発生しました。")
pass
# 時間も更新する
guild_data[j]["latest_time"] = str(datetime.datetime.now())
# 処理が終わったことをprint
print(guild_data[j]["type"] + ":" + guild_data[j]["add_id"] + "の処理が終了しました。")
# エラー防止のための処理を止める時間
await asyncio.sleep(5)
# guild_jsonの更新
os.remove(files[i])
for k in range(0, len(guild_data)):
with open(files[i], 'a') as f:
writer = ndjson.writer(f)
writer.writerow(guild_data[k])
# 処理が終了したprint
print("* " + os.path.splitext(os.path.basename(files[i]))[0] + "の処理が終わりました。")
#channel_sent = bot.get_channel(1090113806174273606)
#await channel_sent.send('test')