2023-04-08 03:05:36 +00:00
|
|
|
|
import re
|
2023-04-08 23:17:09 +00:00
|
|
|
|
from datetime import datetime, date
|
|
|
|
|
from bs4 import BeautifulSoup
|
2023-04-08 03:05:36 +00:00
|
|
|
|
|
2023-05-01 22:31:28 +00:00
|
|
|
|
from bot.entries.entry import Entry
|
2023-04-23 02:01:52 +00:00
|
|
|
|
import bot.expressions as Expressions
|
2023-04-08 03:05:36 +00:00
|
|
|
|
|
|
|
|
|
|
2023-05-01 22:31:28 +00:00
|
|
|
|
class _JitenonEntry(Entry):
|
2023-04-23 01:26:54 +00:00
|
|
|
|
def __init__(self, entry_id):
|
2023-05-01 22:31:28 +00:00
|
|
|
|
super().__init__(entry_id)
|
2023-04-08 23:17:09 +00:00
|
|
|
|
self.modified_date = date(1970, 1, 1)
|
|
|
|
|
self.attribution = ""
|
2023-04-23 17:33:42 +00:00
|
|
|
|
for column in self._COLUMNS.values():
|
2023-04-08 03:05:36 +00:00
|
|
|
|
setattr(self, column[0], column[1])
|
|
|
|
|
|
2023-05-01 22:31:28 +00:00
|
|
|
|
def set_page(self, page):
|
|
|
|
|
soup = BeautifulSoup(page, features="html5lib")
|
|
|
|
|
self.__set_modified_date(page)
|
2023-04-23 01:26:54 +00:00
|
|
|
|
self.attribution = soup.find(class_="copyright").text
|
|
|
|
|
table = soup.find(class_="kanjirighttb")
|
2023-04-08 03:05:36 +00:00
|
|
|
|
rows = table.find("tbody").find_all("tr")
|
|
|
|
|
colname = ""
|
|
|
|
|
for row in rows:
|
|
|
|
|
colname = row.th.text if row.th is not None else colname
|
2023-04-23 01:26:54 +00:00
|
|
|
|
colval = self.__clean_text(row.td.text)
|
2023-04-08 03:05:36 +00:00
|
|
|
|
self.__set_column(colname, colval)
|
2023-05-01 22:31:28 +00:00
|
|
|
|
self._page = table.decode()
|
|
|
|
|
|
|
|
|
|
def get_page_soup(self):
|
|
|
|
|
soup = BeautifulSoup(self._page, "html5lib")
|
|
|
|
|
return soup
|
2023-04-23 01:26:54 +00:00
|
|
|
|
|
|
|
|
|
def get_headwords(self):
|
|
|
|
|
if self._headwords is not None:
|
|
|
|
|
return self._headwords
|
|
|
|
|
self._set_headwords()
|
2023-04-23 16:46:27 +00:00
|
|
|
|
self._set_variant_headwords()
|
2023-04-23 01:26:54 +00:00
|
|
|
|
return self._headwords
|
|
|
|
|
|
2023-05-01 22:31:28 +00:00
|
|
|
|
def get_part_of_speech_tags(self):
|
|
|
|
|
# Jitenon doesn't have any
|
|
|
|
|
return []
|
2023-04-23 05:17:42 +00:00
|
|
|
|
|
2023-04-23 01:26:54 +00:00
|
|
|
|
def _set_headwords(self):
|
|
|
|
|
headwords = {}
|
|
|
|
|
for yomikata in self.__yomikatas():
|
|
|
|
|
headwords[yomikata] = [self.expression]
|
|
|
|
|
ikei_headwords = self.__ikei_headwords()
|
|
|
|
|
for reading, expressions in ikei_headwords.items():
|
|
|
|
|
if reading not in headwords:
|
|
|
|
|
headwords[reading] = []
|
|
|
|
|
for expression in expressions:
|
|
|
|
|
if expression not in headwords[reading]:
|
|
|
|
|
headwords[reading].append(expression)
|
|
|
|
|
self._headwords = headwords
|
2023-04-08 03:05:36 +00:00
|
|
|
|
|
2023-05-01 22:31:28 +00:00
|
|
|
|
def __set_modified_date(self, page):
|
|
|
|
|
m = re.search(r"\"dateModified\": \"(\d{4}-\d{2}-\d{2})", page)
|
2023-04-08 23:17:09 +00:00
|
|
|
|
if not m:
|
|
|
|
|
return
|
|
|
|
|
date = datetime.strptime(m.group(1), '%Y-%m-%d').date()
|
|
|
|
|
self.modified_date = date
|
|
|
|
|
|
2023-04-08 03:05:36 +00:00
|
|
|
|
def __set_column(self, colname, colval):
|
2023-04-23 17:33:42 +00:00
|
|
|
|
attr_name = self._COLUMNS[colname][0]
|
2023-04-08 03:05:36 +00:00
|
|
|
|
attr_value = getattr(self, attr_name)
|
|
|
|
|
if isinstance(attr_value, str):
|
|
|
|
|
setattr(self, attr_name, colval)
|
|
|
|
|
elif isinstance(attr_value, list):
|
|
|
|
|
if len(attr_value) == 0:
|
|
|
|
|
setattr(self, attr_name, [colval])
|
|
|
|
|
else:
|
|
|
|
|
attr_value.append(colval)
|
2023-04-10 22:33:10 +00:00
|
|
|
|
|
2023-04-08 03:05:36 +00:00
|
|
|
|
def __yomikatas(self):
|
2023-04-10 22:33:10 +00:00
|
|
|
|
yomikata = self.yomikata
|
2023-04-10 20:20:33 +00:00
|
|
|
|
m = re.search(r"^[ぁ-ヿ、]+$", yomikata)
|
2023-04-08 03:05:36 +00:00
|
|
|
|
if m:
|
2023-04-10 16:14:52 +00:00
|
|
|
|
return [yomikata]
|
2023-04-10 20:20:33 +00:00
|
|
|
|
m = re.search(r"^([ぁ-ヿ、]+)※", yomikata)
|
2023-04-08 03:05:36 +00:00
|
|
|
|
if m:
|
|
|
|
|
return [m.group(1)]
|
2023-04-10 20:20:33 +00:00
|
|
|
|
m = re.search(r"^[ぁ-ヿ、]+([ぁ-ヿ、])[ぁ-ヿ、]+$", yomikata)
|
2023-04-08 03:05:36 +00:00
|
|
|
|
if m:
|
2023-05-01 22:31:28 +00:00
|
|
|
|
return Expressions.expand_abbreviation(yomikata)
|
2023-04-10 20:20:33 +00:00
|
|
|
|
m = re.search(r"^([ぁ-ヿ、]+)(([ぁ-ヿ/\s、]+))$", yomikata)
|
2023-04-08 03:05:36 +00:00
|
|
|
|
if m:
|
|
|
|
|
yomikatas = [m.group(1)]
|
|
|
|
|
alts = m.group(2).split("/")
|
|
|
|
|
for alt in alts:
|
|
|
|
|
yomikatas.append(alt.strip())
|
|
|
|
|
return yomikatas
|
2023-04-10 20:20:33 +00:00
|
|
|
|
print(f"Invalid 読み方 format: {self.yomikata}\n{self}\n")
|
2023-04-10 22:33:10 +00:00
|
|
|
|
return [""]
|
2023-04-08 03:05:36 +00:00
|
|
|
|
|
|
|
|
|
def __ikei_headwords(self):
|
2023-04-23 01:26:54 +00:00
|
|
|
|
ikei_headwords = {}
|
2023-04-08 03:05:36 +00:00
|
|
|
|
for val in self.ikei:
|
2023-04-10 20:20:33 +00:00
|
|
|
|
m = re.search(r"^([^(]+)(([ぁ-ヿ、]+))$", val)
|
2023-04-23 01:26:54 +00:00
|
|
|
|
if not m:
|
2023-04-10 20:20:33 +00:00
|
|
|
|
print(f"Invalid 異形 format: {val}\n{self}\n")
|
2023-04-23 01:26:54 +00:00
|
|
|
|
continue
|
|
|
|
|
expression = m.group(1)
|
|
|
|
|
reading = m.group(2)
|
|
|
|
|
if reading not in ikei_headwords:
|
|
|
|
|
ikei_headwords[reading] = []
|
|
|
|
|
if expression not in ikei_headwords[reading]:
|
|
|
|
|
ikei_headwords[reading].append(expression)
|
2023-04-08 03:05:36 +00:00
|
|
|
|
return ikei_headwords
|
|
|
|
|
|
2023-04-23 01:26:54 +00:00
|
|
|
|
@staticmethod
|
|
|
|
|
def __clean_text(text):
|
|
|
|
|
text = text.replace("\n", "")
|
|
|
|
|
text = text.replace(",", "、")
|
|
|
|
|
text = text.replace(" ", "")
|
|
|
|
|
text = text.strip()
|
|
|
|
|
return text
|
|
|
|
|
|
2023-04-08 03:05:36 +00:00
|
|
|
|
def __str__(self):
|
2023-04-23 01:26:54 +00:00
|
|
|
|
colvals = [str(self.entry_id)]
|
2023-04-23 17:33:42 +00:00
|
|
|
|
for attr in self._COLUMNS.values():
|
2023-04-08 03:05:36 +00:00
|
|
|
|
attr_val = getattr(self, attr[0])
|
|
|
|
|
if isinstance(attr_val, str):
|
|
|
|
|
colvals.append(attr_val)
|
|
|
|
|
elif isinstance(attr_val, list):
|
|
|
|
|
colvals.append(";".join(attr_val))
|
|
|
|
|
return ",".join(colvals)
|
2023-04-23 01:26:54 +00:00
|
|
|
|
|
|
|
|
|
|
2023-05-01 22:31:28 +00:00
|
|
|
|
class JitenonYojiEntry(_JitenonEntry):
|
2023-04-23 17:33:42 +00:00
|
|
|
|
_COLUMNS = {
|
2023-04-23 01:26:54 +00:00
|
|
|
|
"四字熟語": ["expression", ""],
|
|
|
|
|
"読み方": ["yomikata", ""],
|
|
|
|
|
"意味": ["imi", ""],
|
|
|
|
|
"出典": ["shutten", ""],
|
|
|
|
|
"漢検級": ["kankenkyuu", ""],
|
|
|
|
|
"場面用途": ["bamenyouto", ""],
|
|
|
|
|
"異形": ["ikei", []],
|
|
|
|
|
"類義語": ["ruigigo", []],
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-01 22:31:28 +00:00
|
|
|
|
def __init__(self, entry_id):
|
|
|
|
|
super().__init__(entry_id)
|
2023-04-23 01:26:54 +00:00
|
|
|
|
|
2023-04-23 16:46:27 +00:00
|
|
|
|
def _set_variant_headwords(self):
|
|
|
|
|
for expressions in self._headwords.values():
|
2023-05-01 22:31:28 +00:00
|
|
|
|
Expressions.add_variant_kanji(expressions, self._variant_kanji)
|
2023-04-23 16:46:27 +00:00
|
|
|
|
|
2023-04-23 01:26:54 +00:00
|
|
|
|
|
2023-05-01 22:31:28 +00:00
|
|
|
|
class JitenonKotowazaEntry(_JitenonEntry):
|
2023-04-23 17:33:42 +00:00
|
|
|
|
_COLUMNS = {
|
2023-04-23 01:26:54 +00:00
|
|
|
|
"言葉": ["expression", ""],
|
|
|
|
|
"読み方": ["yomikata", ""],
|
|
|
|
|
"意味": ["imi", ""],
|
|
|
|
|
"出典": ["shutten", ""],
|
|
|
|
|
"例文": ["reibun", ""],
|
|
|
|
|
"異形": ["ikei", []],
|
|
|
|
|
"類句": ["ruiku", []],
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-01 22:31:28 +00:00
|
|
|
|
def __init__(self, entry_id):
|
|
|
|
|
super().__init__(entry_id)
|
2023-04-23 01:26:54 +00:00
|
|
|
|
|
|
|
|
|
def _set_headwords(self):
|
|
|
|
|
if self.expression == "金棒引き・鉄棒引き":
|
|
|
|
|
self._headwords = {
|
|
|
|
|
"かなぼうひき": ["金棒引き", "鉄棒引き"]
|
|
|
|
|
}
|
|
|
|
|
else:
|
|
|
|
|
super()._set_headwords()
|
2023-04-23 16:46:27 +00:00
|
|
|
|
|
|
|
|
|
def _set_variant_headwords(self):
|
|
|
|
|
for expressions in self._headwords.values():
|
2023-05-01 22:31:28 +00:00
|
|
|
|
Expressions.add_variant_kanji(expressions, self._variant_kanji)
|
2023-04-23 16:46:27 +00:00
|
|
|
|
Expressions.add_fullwidth(expressions)
|