
* 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>
199 lines
7.8 KiB
Python
199 lines
7.8 KiB
Python
import re
|
|
from common.models import SourceSiteEnum
|
|
from movies.models import Movie, MovieGenreEnum
|
|
from movies.forms import MovieForm
|
|
from books.models import Book
|
|
from books.forms import BookForm
|
|
from music.models import Album, Song
|
|
from music.forms import AlbumForm, SongForm
|
|
from games.models import Game
|
|
from games.forms import GameForm
|
|
from common.scraper import *
|
|
from django.core.exceptions import ObjectDoesNotExist
|
|
|
|
|
|
def find_entity(source_url):
|
|
"""
|
|
for bangumi
|
|
"""
|
|
# to be added when new scrape method is implemented
|
|
result = Game.objects.filter(source_url=source_url)
|
|
if result:
|
|
return result[0]
|
|
else:
|
|
raise ObjectDoesNotExist
|
|
|
|
|
|
class BangumiScraper(AbstractScraper):
|
|
site_name = SourceSiteEnum.BANGUMI.value
|
|
host = 'bgm.tv'
|
|
|
|
# for interface coherence
|
|
data_class = type("FakeDataClass", (object,), {})()
|
|
data_class.objects = type("FakeObjectsClass", (object,), {})()
|
|
data_class.objects.get = find_entity
|
|
# should be set at scrape_* method
|
|
form_class = ''
|
|
|
|
regex = re.compile(r"https{0,1}://bgm\.tv/subject/\d+")
|
|
|
|
def scrape(self, url):
|
|
"""
|
|
This is the scraping portal
|
|
"""
|
|
headers = DEFAULT_REQUEST_HEADERS.copy()
|
|
headers['Host'] = self.host
|
|
content = self.download_page(url, headers)
|
|
|
|
# download image
|
|
img_url = 'http:' + content.xpath("//div[@class='infobox']//img[1]/@src")[0]
|
|
raw_img, ext = self.download_image(img_url, url)
|
|
|
|
# Test category
|
|
category_code = content.xpath("//div[@id='headerSearch']//option[@selected]/@value")[0]
|
|
handler_map = {
|
|
'1': self.scrape_book,
|
|
'2': self.scrape_movie,
|
|
'3': self.scrape_album,
|
|
'4': self.scrape_game
|
|
}
|
|
data = handler_map[category_code](self, content)
|
|
data['source_url'] = self.get_effective_url(url)
|
|
|
|
self.raw_data, self.raw_img, self.img_ext = data, raw_img, ext
|
|
return data, raw_img
|
|
|
|
def scrape_game(self, content):
|
|
self.data_class = Game
|
|
self.form_class = GameForm
|
|
|
|
title_elem = content.xpath("//a[@property='v:itemreviewed']/text()")
|
|
if not title_elem:
|
|
raise ValueError("no game info found on this page")
|
|
title = None
|
|
else:
|
|
title = title_elem[0].strip()
|
|
|
|
other_title_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'别名')]]/text()")
|
|
if not other_title_elem:
|
|
other_title_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'别名')]]/a/text()")
|
|
other_title = other_title_elem if other_title_elem else []
|
|
|
|
chinese_name_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'中文')]]/text()")
|
|
if not chinese_name_elem:
|
|
chinese_name_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'中文')]]/a/text()")
|
|
if chinese_name_elem:
|
|
chinese_name = chinese_name_elem[0]
|
|
# switch chinese name with original name
|
|
title, chinese_name = chinese_name, title
|
|
# actually the name appended is original
|
|
other_title.append(chinese_name)
|
|
|
|
developer_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'开发')]]/text()")
|
|
if not developer_elem:
|
|
developer_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'开发')]]/a/text()")
|
|
developer = developer_elem if developer_elem else None
|
|
|
|
publisher_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'发行:')]]/text()")
|
|
if not publisher_elem:
|
|
publisher_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'发行:')]]/a/text()")
|
|
publisher = publisher_elem if publisher_elem else None
|
|
|
|
platform_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'平台')]]/text()")
|
|
if not platform_elem:
|
|
platform_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'平台')]]/a/text()")
|
|
platform = platform_elem if platform_elem else None
|
|
|
|
genre_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'类型')]]/text()")
|
|
if not genre_elem:
|
|
genre_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'类型')]]/a/text()")
|
|
genre = genre_elem if genre_elem else None
|
|
|
|
date_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'发行日期')]]/text()")
|
|
if not date_elem:
|
|
date_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'发行日期')]]/a/text()")
|
|
release_date = parse_date(date_elem[0]) if date_elem else None
|
|
|
|
brief = ''.join(content.xpath("//div[@property='v:summary']/text()"))
|
|
|
|
other_info = {}
|
|
other_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'人数')]]/text()")
|
|
if other_elem:
|
|
other_info['游玩人数'] = other_elem[0]
|
|
other_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'引擎')]]/text()")
|
|
if other_elem:
|
|
other_info['引擎'] = ' '.join(other_elem)
|
|
other_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'售价')]]/text()")
|
|
if other_elem:
|
|
other_info['售价'] = ' '.join(other_elem)
|
|
other_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'官方网站')]]/text()")
|
|
if other_elem:
|
|
other_info['网站'] = other_elem[0]
|
|
other_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'剧本')]]/a/text()") or content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'剧本')]]/text()")
|
|
if other_elem:
|
|
other_info['剧本'] = ' '.join(other_elem)
|
|
other_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'编剧')]]/a/text()") or content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'编剧')]]/text()")
|
|
if other_elem:
|
|
other_info['编剧'] = ' '.join(other_elem)
|
|
other_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'音乐')]]/a/text()") or content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'音乐')]]/text()")
|
|
if other_elem:
|
|
other_info['音乐'] = ' '.join(other_elem)
|
|
other_elem = content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'美术')]]/a/text()") or content.xpath(
|
|
"//ul[@id='infobox']/li[child::span[contains(text(),'美术')]]/text()")
|
|
if other_elem:
|
|
other_info['美术'] = ' '.join(other_elem)
|
|
|
|
data = {
|
|
'title': title,
|
|
'other_title': None,
|
|
'developer': developer,
|
|
'publisher': publisher,
|
|
'release_date': release_date,
|
|
'genre': genre,
|
|
'platform': platform,
|
|
'brief': brief,
|
|
'other_info': other_info,
|
|
'source_site': self.site_name,
|
|
}
|
|
|
|
return data
|
|
|
|
def scrape_movie(self, content):
|
|
self.data_class = Movie
|
|
self.form_class = MovieForm
|
|
raise NotImplementedError
|
|
|
|
def scrape_book(self, content):
|
|
self.data_class = Book
|
|
self.form_class = BookForm
|
|
raise NotImplementedError
|
|
|
|
def scrape_album(self, content):
|
|
self.data_class = Album
|
|
self.form_class = AlbumForm
|
|
raise NotImplementedError
|