-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
223 lines (180 loc) · 8.25 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
import datetime
import json
import os
import discord
import random
from discord import Intents
from discord.ext import commands
from discord import Game
from discord import Status
import requests
from schoolDataUtility import *
#123
NEIS_KEY = os.environ["NEIS_KEY"]
APP_ID = "823346336190693407"
DISCORD_TOKEN = os.environ["DISCORD_TOKEN"]
intents = Intents.default()
intents.message_content = True
class MyBot(commands.Bot):
def __init__(self):
super().__init__(
command_prefix="", intents=intents, sync_command=True, application_id=APP_ID
)
self.initial_extension = ["Cogs.register", "Cogs.getLunchData"]
async def setup_hook(self):
for ext in self.initial_extension:
await self.load_extension(ext)
await bot.tree.sync()
async def on_command_error(
self, context: commands.context.Context, exception, /
) -> None:
# if '내모모모모모모모급' in context.message.content:
# print('명령어 오류')
if type(exception) != commands.errors.CommandNotFound:
return await super().on_command_error(context, exception)
async def on_ready(self):
print("login as")
if type(self.user) == discord.ClientUser:
print(self.user.name)
print(self.user.id)
print("===============")
game = Game("급식실 앞에서 손소독")
await self.change_presence(status=Status.online, activity=game)
async def findFoodData(ctx: commands.context.Context, dayAddAmount, msg):
if type(ctx.guild) != discord.Guild:
raise TypeError("ctx.guild is not Guild Type")
schoolData = getSchoolData(ctx.guild.id)
if schoolData == None:
embed = discord.Embed(
title="오류 발생!", description="학교 정보를 찾을 수 없어...", color=0xDC143C
)
embed.add_field(name="사용하시기 전에...", value="『/학교설정』 명령어로 설정해주세요!")
embed.set_footer(text="ppaka")
await ctx.send(embed=embed)
return
isToday = dayAddAmount == 0
if isToday:
nowDate = datetime.datetime.today()
else:
nowDate = datetime.datetime.today() + datetime.timedelta(days=dayAddAmount)
nowStr = str(nowDate)
year = nowStr[:4]
month = nowStr[5:7]
date = nowStr[8:10]
ymd = year + month + date
num = nowDate.weekday()
if num == 5 or num == 6:
embed = discord.Embed(title="오류 발생!", description=" ", color=0xDC143C)
dayString = "토"
if num == 6:
dayString = "일"
if random.randrange(0, 2) == 1:
embed.add_field(
name=f"{date}일 급식 정보를 가져오지 못했다구!",
value=f"{dayString}요일에 급식이 나온다고 생각하는거야?!",
)
else:
embed.add_field(
name=f"{date}일 급식 정보를 가져올 수 없습니다...", value=f"{dayString}요일에 급식이 나와..?"
)
embed.set_footer(text=f"{ymd} / ppaka")
await ctx.send(embed=embed)
return
url = f"https://open.neis.go.kr/hub/mealServiceDietInfo?KEY={NEIS_KEY}&Type=json&ATPT_OFCDC_SC_CODE={schoolData[0]}&SD_SCHUL_CODE={schoolData[1]}&MLSV_YMD={ymd}"
try:
response = requests.get(url)
except:
embed = discord.Embed(title="오류 발생!", description="", color=0xFFA500)
embed.add_field(
name=f"{date}일 급식 데이터를 조회하는 도중 오류가 발생했습니다.",
value="GET 요청을 보내는 도중 심각한 문제가 발생한 것 같아요...",
inline=False,
)
embed.set_footer(text=f"{ymd} / ppaka")
await ctx.send(embed=embed)
return
school_menu = json.loads(response.text)
if school_menu.get("mealServiceDietInfo") == None:
embed = discord.Embed(
title="오류 발생!",
description=f"{school_menu['RESULT']['MESSAGE']}",
color=0xFFA500,
)
embed.add_field(
name="오류코드", value=f"{school_menu['RESULT']['CODE']}", inline=False
)
if school_menu["RESULT"]["CODE"] == "INFO-200":
embed.add_field(
name="공지사항",
value=f"4세대 지능형 나이스 오픈(2023.6.21.) 이후 변경된 운영 정책에 따라\n영양(교)사가 작성중인 식단 또는 [식단공개확정] 처리가 되지 않은 식단은\n조회되지 않을 수 있습니다.",
inline=False,
)
embed.set_footer(text=f"{ymd} / ppaka")
await ctx.send(embed=embed)
return
if school_menu["mealServiceDietInfo"][0]["head"][1]["RESULT"]["CODE"] != "INFO-000":
embed = discord.Embed(title="오류 발생!", description="", color=0xFFA500)
embed.add_field(
name=f"{date}일 급식 데이터를 조회하는 도중 오류가 발생했습니다.",
value=f"하지만 오류코드({school_menu['mealServiceDietInfo'][1]['row'][0]['DDISH_NM']})는 남아있었다..!",
inline=False,
)
embed.set_footer(text=f"{ymd} / ppaka")
await ctx.send(embed=embed)
return
splitted_data = school_menu["mealServiceDietInfo"][1]["row"][0]["DDISH_NM"].split(
"<br/>"
)
data = ""
for i in splitted_data:
data = data + "\n" + i.strip()
data = data.strip()
cal_info = school_menu["mealServiceDietInfo"][1]["row"][0]["CAL_INFO"]
if data == "":
embed = discord.Embed(title="오류 발생!", description="", color=0xFFA500)
embed.add_field(
name=f"{date}일 급식 데이터를 조회하지 못했습니다...", value="에? 분명 문제는 없었는데!", inline=False
)
embed.set_footer(text=f"{ymd} / ppaka")
await ctx.send(embed=embed)
else:
if isToday:
color = 0xF2CB61
else:
if dayAddAmount > 0:
color = 0xFAEBD7
else:
color = 0xFFA7A7
embed = discord.Embed(title="급식 정보", description=f"{msg} 급식이야!", color=color)
embed.add_field(name="🍽", value=f"{data}", inline=False)
embed.set_footer(text=f"{cal_info} / {ymd} / ppaka")
await ctx.send(embed=embed)
bot = MyBot()
@bot.command(name="어제급식", pass_context=True, aliases=["어급"])
async def getInfoLastDay(ctx: commands.context.Context):
await findFoodData(ctx, -1, "어제")
@bot.command(name="오늘급식", pass_context=True, aliases=["오급"])
async def getInfo(ctx: commands.context.Context):
await findFoodData(ctx, 0, "오늘")
@bot.command(name="내일급식", pass_context=True, aliases=["내급"])
async def getInfoNextDay(ctx: commands.context.Context):
await findFoodData(ctx, 1, "내일")
@bot.command(name="내일모레급식", pass_context=True, aliases=["내모급"])
async def getInfoNextNextDay(ctx: commands.context.Context):
await findFoodData(ctx, 2, "내일 모레")
@bot.command(name="내일모레모레급식", pass_context=True, aliases=["내모모급"])
async def getInfoNextNextNextDay(ctx: commands.context.Context):
await findFoodData(ctx, 3, "내일 모레 모레")
@bot.command(name="내일모레모레모레급식", pass_context=True, aliases=["내모모모급"])
async def getInfoNextNextNextNextDay(ctx: commands.context.Context):
await findFoodData(ctx, 4, "내일 모레 모레 모레")
@bot.command(name="내일모레모레모레모레급식", pass_context=True, aliases=["내모모모모급"])
async def getInfoNextNextNextNextNextDay(ctx: commands.context.Context):
await findFoodData(ctx, 5, "내일 모레 모레 모레 모레")
@bot.command(name="내일모레모레모레모레모레급식", pass_context=True, aliases=["내모모모모모급"])
async def getInfoNextNextNextNextNextNextDay(ctx: commands.context.Context):
await findFoodData(ctx, 6, "내일 모레 모레 모레 모레 모레")
@bot.command(name="내일모레모레모레모레모레모레급식", pass_context=True, aliases=["내모모모모모모급"])
async def getInfoNextNextNextNextNextNextNextDay(ctx: commands.context.Context):
await findFoodData(ctx, 7, "내일 모레 모레 모레 모레 모레 모레")
bot.run(token=DISCORD_TOKEN)