1
0
Fork 0
mirror of https://github.com/kemayo/leech synced 2026-01-15 03:52:38 +01:00

Support two RR author notes in one chapter

This commit is contained in:
Alex Raubach 2018-09-17 20:03:01 -04:00
parent 94900cb126
commit cf62faf5dd

View file

@ -52,14 +52,16 @@ class RoyalRoad(Site):
soup = self._soup(url)
content = soup.find('div', class_='chapter-content').prettify()
author_note = soup.find('div', class_='author-note-portlet')
author_note = soup.find_all('div', class_='author-note-portlet')
if author_note:
# Find the portlet-body and check if the first child div is the author note.
if len(author_note) is 1:
# The first child div is either the chapter content or an author note
if 'author-note-portlet' in soup.find('div', class_='portlet-body').find('div', recursive=False)['class']:
content = author_note.prettify() + '<hr/>' + content
else: # Post-chapter note goes on the end
content = content + '<hr/>' + author_note.prettify()
content = author_note[0].prettify() + '<hr/>' + content
else: # The author note must be after the chapter content
content = content + '<hr/>' + author_note[0].prettify()
elif len(author_note) is 2:
content = author_note[0].prettify() + '<hr/>' + content + '<hr/>' + author_note[1].prettify()
updated = datetime.datetime.fromtimestamp(
int(soup.find(class_="profile-info").find('time').get('unixtime'))