mirror of
https://github.com/kemayo/leech
synced 2025-12-06 08:22:56 +01:00
96 lines
2.8 KiB
Python
96 lines
2.8 KiB
Python
|
|
import argparse
|
|
from bs4 import BeautifulSoup
|
|
|
|
_sites = []
|
|
|
|
|
|
class Site:
|
|
"""A Site handles checking whether a URL might represent a site, and then
|
|
extracting the content of a story from said site.
|
|
"""
|
|
def __init__(self, fetch, cache=True, args=None):
|
|
super().__init__()
|
|
self.fetch = fetch
|
|
self.cache = cache
|
|
self.footnotes = []
|
|
self.options = self._parse_args(args)
|
|
|
|
@staticmethod
|
|
def matches(url):
|
|
raise NotImplementedError()
|
|
|
|
def extract(self, url):
|
|
raise NotImplementedError()
|
|
|
|
def login(self, login_details):
|
|
raise NotImplementedError()
|
|
|
|
def _parse_args(self, args):
|
|
parser = argparse.ArgumentParser()
|
|
self._add_arguments(parser)
|
|
return parser.parse_args(args)
|
|
|
|
def _add_arguments(self, parser):
|
|
pass
|
|
|
|
def _soup(self, url, method='html5lib', **kw):
|
|
page = self.fetch(url, cached=self.cache, **kw)
|
|
if not page:
|
|
raise SiteException("Couldn't fetch", url)
|
|
return BeautifulSoup(page, method)
|
|
|
|
def _new_tag(self, *args, **kw):
|
|
soup = BeautifulSoup("", 'html5lib')
|
|
return soup.new_tag(*args, **kw)
|
|
|
|
def _footnote(self, contents, backlink_href=''):
|
|
"""Register a footnote and return a link to that footnote"""
|
|
|
|
idx = len(self.footnotes) + 1
|
|
|
|
# epub spec footnotes are all about epub:type on the footnote and the link
|
|
# http://www.idpf.org/accessibility/guidelines/content/semantics/epub-type.php
|
|
contents.name = 'div'
|
|
contents.attrs['id'] = "footnote%d" % idx
|
|
contents.attrs['epub:type'] = 'rearnote'
|
|
|
|
# a backlink is essential for Kindle to think of this as a footnote
|
|
# otherwise it doesn't get the inline-popup treatment
|
|
# http://kindlegen.s3.amazonaws.com/AmazonKindlePublishingGuidelines.pdf
|
|
# section 3.9.10
|
|
backlink = self._new_tag('a', href="%s#noteback%d" % (backlink_href, idx))
|
|
backlink.string = '^'
|
|
contents.insert(0, backlink)
|
|
|
|
self.footnotes.append(contents.prettify())
|
|
|
|
# now build the link to the footnote to return, with appropriate
|
|
# epub annotations.
|
|
spoiler_link = self._new_tag('a')
|
|
spoiler_link.attrs = {
|
|
'id': 'noteback%d' % idx,
|
|
'href': "footnotes.html#footnote%d" % idx,
|
|
'epub:type': 'noteref',
|
|
}
|
|
spoiler_link.string = str(idx)
|
|
|
|
return spoiler_link
|
|
|
|
|
|
class SiteException(Exception):
|
|
pass
|
|
|
|
|
|
def register(site_class):
|
|
_sites.append(site_class)
|
|
return site_class
|
|
|
|
|
|
def get(url):
|
|
for site_class in _sites:
|
|
if site_class.matches(url):
|
|
return site_class
|
|
|
|
# And now, the things that will use this:
|
|
from . import xenforo, fanfictionnet, deviantart, stash, ao3 # noqa
|