
* fix scraping failure with wepb image (merge upstream/fix-webp-scrape) * add filetype to requirements * add proxycrawl.com as fallback for douban scraper * load 3p js/css from cdn * add fix-cover task * fix book/album cover tasks * scrapestack * bandcamp scrape and preview ; manage.py scrape <url> ; make ^C work when DEBUG * use scrapestack when fix cover * add user agent to improve compatibility * search BandCamp for music albums * add missing MovieGenre * fix search 500 when song has no parent album * adjust timeout * individual scrapers * fix tmdb parser * export marks via rq; pref to send public toot; move import to data page * fix spotify import * fix edge cases * export: fix dupe tags * use rq to manage doufen import * add django command to manage rq jobs * fix export edge case * tune rq admin * fix detail page 502 step 1: async pull mastodon follow/block/mute list * fix detail page 502 step 2: calculate relationship by local cached data * manual sync mastodon follow info * domain_blocks parsing fix * marks by who i follows * adjust label * use username in urls * add page to list a user\'s review * review widget on user home page * fix preview 500 * fix typo * minor fix * fix google books parsing * allow mark/review visible to oneself * fix auto sync masto for new user * fix search 500 * add command to restart a sync task * reset visibility * delete user data * fix tag search result pagination * not upgrade to django 4 yet * basic doc * wip: collection * wip * wip * collection use htmx * show in-collection section for entities * fix typo * add su for easier debug * fix some 500s * fix login using alternative domain * hide data from disabled user * add item to list from detail page * my tags * collection: inline comment edit * show number of ratings * fix collection delete * more detail in collection view * use item template in search result * fix 500 * write index to meilisearch * fix search * reindex in batch * fix 500 * show search result from meilisearch * more search commands * index less fields * index new items only * search highlights * fix 500 * auto set search category * classic search if no meili server * fix index stats error * support typesense backend * workaround typesense bug * make external search async * fix 500, typo * fix cover scripts * fix minor issue in douban parser * supports m.douban.com and customized bandcamp domain * move account * reword with gender-friendly and instance-neutral language * Friendica does not have vapid_key in api response * enable anonymous search * tweak book result template * API v0 API v0 * fix meilisearch reindex * fix search by url error * login via twitter.com * login via pixelfed * minor fix * no refresh on inactive users * support refresh access token * get rid of /users/number-id/ * refresh twitter handler automatically * paste image when review * support PixelFed (very long token) * fix django-markdownx version * ignore single quote for meilisearch for now * update logo * show book review/mark from same isbn * show movie review/mark from same imdb * fix login with older mastodon servers * import Goodreads book list and profile * add timestamp to Goodreads import * support new google books api * import goodreads list * minor goodreads fix * click corner action icon to add to wishlist * clean up duplicated code * fix anonymous search * fix 500 * minor fix search 500 * show rating only if votes > 5 * Entity.refresh_rating() * preference to append text when sharing; clean up duplicated code * fix missing data for user tagged view * fix page link for tag view * fix 500 when language field longer than 10 * fix 500 when sharing mark for song * fix error when reimport goodread profile * fix minor typo * fix a rare 500 * error log dump less * fix tags in marks export * fix missing param in pagination * import douban review * clarify text * fix missing sheet in review import * review: show in progress * scrape douban: ignore unknown genre * minor fix * improve review import by guess entity urls * clear guide text for review import * improve review import form text * workaround some 500 * fix mark import error * fix img in review import * load external results earlier * ignore search server errors * simplify user register flow to avoid inconsistent state * Add a learn more link on login page * Update login.html * show mark created timestamp as mark time * no 500 for api error * redirect for expired tokens * ensure preference object created. * mark collections * tag list * fix tag display * fix sorting etc * fix 500 * fix potential export 500; save shared links * fix share to twittwe * fix review url * fix 500 * fix 500 * add timeline, etc * missing status change in timeline * missing id in timeline * timeline view by default * workaround bug in markdownx... * fix typo * option to create new collection when add from detail page * add missing announcement and tags in timeline home * add missing announcement * add missing announcement * opensearch * show fediverse shared link * public review no longer requires login * fix markdownx bug * fix 500 * use cloudflare cdn * validate jquery load and domain input * fix 500 * tips for goodreads import * collaborative collection * show timeline and profile link on nav bar * minor tweak * share collection * fix Goodreads search * show wish mark in timeline * resync failed urls with local proxy * resync failed urls with local proxy: check proxy first * scraper minor fix * resync failed urls * fix fields limit * fix douban parsing error * resync * scraper minor fix * scraper minor fix * scraper minor fix * local proxy * local proxy * sync default config from neodb * configurable site name * fix 500 * fix 500 for anonymous user * add sentry * add git version in log * add git version in log * no longer rely on cdnjs.cloudflare.com * move jq/cash to _common_libs template partial * fix rare js error * fix 500 * avoid double submission error * import tag in lower case * catch some js network errors * catch some js network errors * support more goodread urls * fix unaired tv in tmdb * support more google book urls * fix related series * more goodreads urls * robust googlebooks search * robust search * Update settings.py * Update scraper.py * Update requirements.txt * make nicedb work * doc update * simplify permission check * update doc * update doc for bug report link * skip spotify tracks * fix 500 * improve search api * blind fix import compatibility * show years for movie in timeline * show years for movie in timeline; thinner font * export reviews * revert user home to use jquery https://github.com/fabiospampinato/cash/issues/246 * IGDB * use IGDB for Steam * use TMDB for IMDb * steam: igdb then fallback to steam * keep change history * keep change history: add django settings * Steam: keep localized title/brief while merging IGDB * basic Docker support * rescrape * Create codeql-analysis.yml * Create SECURITY.md * Create pysa.yml Co-authored-by: doubaniux <goodsir@vivaldi.net> Co-authored-by: Your Name <you@example.com> Co-authored-by: Their Name <they@example.com> Co-authored-by: Mt. Front <mfcndw@gmail.com>
263 lines
9.3 KiB
Python
263 lines
9.3 KiB
Python
import requests
|
|
import functools
|
|
import random
|
|
import logging
|
|
import re
|
|
import dateparser
|
|
import datetime
|
|
import time
|
|
import filetype
|
|
import dns.resolver
|
|
import urllib.parse
|
|
from lxml import html
|
|
from threading import Thread
|
|
from django.utils import timezone
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.core.exceptions import ObjectDoesNotExist, ValidationError
|
|
from django.core.files.uploadedfile import SimpleUploadedFile
|
|
from common.models import SourceSiteEnum
|
|
from django.conf import settings
|
|
from django.core.exceptions import ValidationError
|
|
|
|
|
|
RE_NUMBERS = re.compile(r"\d+\d*")
|
|
RE_WHITESPACES = re.compile(r"\s+")
|
|
|
|
|
|
DEFAULT_REQUEST_HEADERS = {
|
|
'Host': '',
|
|
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; rv:70.0) Gecko/20100101 Firefox/70.0',
|
|
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
|
|
'Accept-Language': 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
|
|
# well, since brotli lib is so bothering, remove `br`
|
|
'Accept-Encoding': 'gzip, deflate',
|
|
'Connection': 'keep-alive',
|
|
'DNT': '1',
|
|
'Upgrade-Insecure-Requests': '1',
|
|
'Cache-Control': 'no-cache',
|
|
}
|
|
|
|
|
|
# luminati account credentials
|
|
PORT = 22225
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
# register all implemented scraper in form of {host: scraper_class,}
|
|
scraper_registry = {}
|
|
|
|
|
|
def get_normalized_url(raw_url):
|
|
url = re.sub(r'//m.douban.com/(\w+)/', r'//\1.douban.com/', raw_url)
|
|
url = re.sub(r'//www.google.com/books/edition/_/([A-Za-z0-9_\-]+)[\?]*', r'//books.google.com/books?id=\1&', url)
|
|
return url
|
|
|
|
|
|
def log_url(func):
|
|
"""
|
|
Catch exceptions and log then pass the exceptions.
|
|
First postion argument (except cls/self) of decorated function must be the url.
|
|
"""
|
|
@functools.wraps(func)
|
|
def wrapper(*args, **kwargs):
|
|
try:
|
|
return func(*args, **kwargs)
|
|
except Exception as e:
|
|
# log the url and trace stack
|
|
logger.error(f"Scrape Failed URL: {args[1]}\n{e}")
|
|
if settings.DEBUG:
|
|
logger.error("Expections during scraping:", exc_info=e)
|
|
raise e
|
|
|
|
return wrapper
|
|
|
|
|
|
def parse_date(raw_str):
|
|
return dateparser.parse(
|
|
raw_str,
|
|
settings={
|
|
"RELATIVE_BASE": datetime.datetime(1900, 1, 1)
|
|
}
|
|
)
|
|
|
|
|
|
class AbstractScraper:
|
|
"""
|
|
Scrape entities. The entities means those defined in the models.py file,
|
|
like Book, Movie......
|
|
"""
|
|
|
|
# subclasses must specify those two variables
|
|
# site means general sites, like amazon/douban etc
|
|
site_name = None
|
|
# host means technically hostname
|
|
host = None
|
|
# corresponding data class
|
|
data_class = None
|
|
# corresponding form class
|
|
form_class = None
|
|
# used to extract effective url
|
|
regex = None
|
|
# scraped raw image
|
|
raw_img = None
|
|
# scraped raw data
|
|
raw_data = {}
|
|
|
|
def __init_subclass__(cls, **kwargs):
|
|
# this statement initialize the subclasses
|
|
super().__init_subclass__(**kwargs)
|
|
assert cls.site_name is not None, "class variable `site_name` must be specified"
|
|
assert bool(cls.host), "class variable `host` must be specified"
|
|
assert cls.data_class is not None, "class variable `data_class` must be specified"
|
|
assert cls.form_class is not None, "class variable `form_class` must be specified"
|
|
assert cls.regex is not None, "class variable `regex` must be specified"
|
|
assert isinstance(cls.host, str) or (isinstance(cls.host, list) and isinstance(
|
|
cls.host[0], str)), "`host` must be type str or list"
|
|
assert cls.site_name in SourceSiteEnum, "`site_name` must be one of `SourceSiteEnum` value"
|
|
assert hasattr(cls, 'scrape') and callable(
|
|
cls.scrape), "scaper must have method `.scrape()`"
|
|
|
|
# decorate the scrape method
|
|
cls.scrape = classmethod(log_url(cls.scrape))
|
|
|
|
# register scraper
|
|
if isinstance(cls.host, list):
|
|
for host in cls.host:
|
|
scraper_registry[host] = cls
|
|
else:
|
|
scraper_registry[cls.host] = cls
|
|
|
|
def scrape(self, url):
|
|
"""
|
|
Scrape/request model schema specified data from given url and return it.
|
|
Implementations of subclasses to this method would be decorated as class method.
|
|
return (data_dict, image)
|
|
Should set the `raw_data` and the `raw_img`
|
|
"""
|
|
raise NotImplementedError("Subclass should implement this method")
|
|
|
|
@classmethod
|
|
def get_effective_url(cls, raw_url):
|
|
"""
|
|
The return value should be identical with that saved in DB as `source_url`
|
|
"""
|
|
url = cls.regex.findall(raw_url.replace('http:', 'https:')) # force all http to be https
|
|
if not url:
|
|
raise ValueError(f"not valid url: {raw_url}")
|
|
return url[0]
|
|
|
|
@classmethod
|
|
def download_page(cls, url, headers):
|
|
url = cls.get_effective_url(url)
|
|
|
|
if settings.LUMINATI_USERNAME is None:
|
|
proxies = None
|
|
if settings.SCRAPESTACK_KEY is not None:
|
|
url = f'http://api.scrapestack.com/scrape?access_key={settings.SCRAPESTACK_KEY}&url={url}'
|
|
else:
|
|
session_id = random.random()
|
|
proxy_url = ('http://%s-country-cn-session-%s:%s@zproxy.lum-superproxy.io:%d' %
|
|
(settings.LUMINATI_USERNAME, session_id, settings.LUMINATI_PASSWORD, PORT))
|
|
proxies = {
|
|
'http': proxy_url,
|
|
'https': proxy_url,
|
|
}
|
|
|
|
r = requests.get(url, proxies=proxies,
|
|
headers=headers, timeout=settings.SCRAPING_TIMEOUT)
|
|
|
|
if r.status_code != 200:
|
|
raise RuntimeError(f"download page failed, status code {r.status_code}")
|
|
# with open('temp.html', 'w', encoding='utf-8') as fp:
|
|
# fp.write(r.content.decode('utf-8'))
|
|
return html.fromstring(r.content.decode('utf-8'))
|
|
|
|
@classmethod
|
|
def download_image(cls, url, item_url=None):
|
|
if url is None:
|
|
return None, None
|
|
raw_img = None
|
|
session_id = random.random()
|
|
proxy_url = ('http://%s-country-cn-session-%s:%s@zproxy.lum-superproxy.io:%d' %
|
|
(settings.LUMINATI_USERNAME, session_id, settings.LUMINATI_PASSWORD, PORT))
|
|
proxies = {
|
|
'http': proxy_url,
|
|
'https': proxy_url,
|
|
}
|
|
if settings.LUMINATI_USERNAME is None:
|
|
proxies = None
|
|
if url:
|
|
img_response = requests.get(
|
|
url,
|
|
headers={
|
|
'accept': 'image/webp,image/apng,image/*,*/*;q=0.8',
|
|
'accept-encoding': 'gzip, deflate',
|
|
'accept-language': 'en-US,en;q=0.9,zh-CN;q=0.8,zh;q=0.7,fr-FR;q=0.6,fr;q=0.5,zh-TW;q=0.4',
|
|
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 Edg/81.0.416.72',
|
|
'cache-control': 'no-cache',
|
|
'dnt': '1',
|
|
},
|
|
proxies=proxies,
|
|
timeout=settings.SCRAPING_TIMEOUT,
|
|
)
|
|
if img_response.status_code == 200:
|
|
raw_img = img_response.content
|
|
content_type = img_response.headers.get('Content-Type')
|
|
ext = filetype.get_type(mime=content_type.partition(';')[0].strip()).extension
|
|
else:
|
|
ext = None
|
|
return raw_img, ext
|
|
|
|
@classmethod
|
|
def save(cls, request_user, instance=None):
|
|
entity_cover = {
|
|
'cover': SimpleUploadedFile('temp.' + cls.img_ext, cls.raw_img)
|
|
} if cls.img_ext is not None else None
|
|
form = cls.form_class(data=cls.raw_data, files=entity_cover, instance=instance)
|
|
if form.is_valid():
|
|
form.instance.last_editor = request_user
|
|
form.instance._change_reason = 'scrape'
|
|
form.save()
|
|
cls.instance = form.instance
|
|
else:
|
|
logger.error(str(form.errors))
|
|
raise ValidationError("Form invalid.")
|
|
return form
|
|
|
|
|
|
from common.scrapers.bandcamp import BandcampAlbumScraper
|
|
from common.scrapers.goodreads import GoodreadsScraper
|
|
from common.scrapers.google import GoogleBooksScraper
|
|
from common.scrapers.tmdb import TmdbMovieScraper
|
|
from common.scrapers.steam import SteamGameScraper
|
|
from common.scrapers.imdb import ImdbMovieScraper
|
|
from common.scrapers.igdb import IgdbGameScraper
|
|
from common.scrapers.spotify import SpotifyAlbumScraper, SpotifyTrackScraper
|
|
from common.scrapers.douban import DoubanAlbumScraper, DoubanBookScraper, DoubanGameScraper, DoubanMovieScraper
|
|
from common.scrapers.bangumi import BangumiScraper
|
|
|
|
|
|
def get_scraper_by_url(url):
|
|
parsed_url = urllib.parse.urlparse(url)
|
|
hostname = parsed_url.netloc
|
|
for host in scraper_registry:
|
|
if host in url:
|
|
return scraper_registry[host]
|
|
# TODO move this logic to scraper class
|
|
try:
|
|
answers = dns.resolver.query(hostname, 'CNAME')
|
|
for rdata in answers:
|
|
if str(rdata.target) == 'dom.bandcamp.com.':
|
|
return BandcampAlbumScraper
|
|
except Exception as e:
|
|
pass
|
|
try:
|
|
answers = dns.resolver.query(hostname, 'A')
|
|
for rdata in answers:
|
|
if str(rdata.address) == '35.241.62.186':
|
|
return BandcampAlbumScraper
|
|
except Exception as e:
|
|
pass
|
|
return None
|