|
|
@ -1,4 +1,4 @@
|
|
|
|
import logging, requests,time
|
|
|
|
import logging, requests, time
|
|
|
|
from lxml import html
|
|
|
|
from lxml import html
|
|
|
|
from modules import util
|
|
|
|
from modules import util
|
|
|
|
from modules.util import Failed
|
|
|
|
from modules.util import Failed
|
|
|
@ -6,15 +6,12 @@ from retrying import retry
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger("Plex Meta Manager")
|
|
|
|
logger = logging.getLogger("Plex Meta Manager")
|
|
|
|
|
|
|
|
|
|
|
|
builders = ["anidb_id", "anidb_relation", "anidb_popular", 'anidb_tag']
|
|
|
|
builders = ["anidb_id", "anidb_relation", "anidb_popular", "anidb_tag"]
|
|
|
|
|
|
|
|
|
|
|
|
class AniDB:
|
|
|
|
class AniDB:
|
|
|
|
def __init__(self, params, config):
|
|
|
|
def __init__(self, params, config):
|
|
|
|
self.config = config
|
|
|
|
self.config = config
|
|
|
|
|
|
|
|
|
|
|
|
# Create a session so if we login we can continue to use the same session
|
|
|
|
|
|
|
|
self.anidb_session = requests.Session()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self.urls = {
|
|
|
|
self.urls = {
|
|
|
|
"anime": "https://anidb.net/anime",
|
|
|
|
"anime": "https://anidb.net/anime",
|
|
|
|
"popular": "https://anidb.net/latest/anime/popular/?h=1",
|
|
|
|
"popular": "https://anidb.net/latest/anime/popular/?h=1",
|
|
|
@ -22,18 +19,15 @@ class AniDB:
|
|
|
|
"anidb_tag": "https://anidb.net/tag",
|
|
|
|
"anidb_tag": "https://anidb.net/tag",
|
|
|
|
"login": "https://anidb.net/perl-bin/animedb.pl"
|
|
|
|
"login": "https://anidb.net/perl-bin/animedb.pl"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if params:
|
|
|
|
if params and "username" in params and "password" in params:
|
|
|
|
if not self._login(params["username"], params["password"]).xpath("//li[@class='sub-menu my']/@title"):
|
|
|
|
result = str(self._login(params["username"], params["password"]).content)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Login response does not use proper status codes so we have to check the content of the document
|
|
|
|
|
|
|
|
if "Wrong username/password" in result:
|
|
|
|
|
|
|
|
raise Failed("AniDB Error: Login failed")
|
|
|
|
raise Failed("AniDB Error: Login failed")
|
|
|
|
|
|
|
|
|
|
|
|
@retry(stop_max_attempt_number=6, wait_fixed=10000)
|
|
|
|
@retry(stop_max_attempt_number=6, wait_fixed=10000)
|
|
|
|
def _request(self, url, language):
|
|
|
|
def _request(self, url, language):
|
|
|
|
return html.fromstring(self.anidb_session.get(url, headers={"Accept-Language": language, "User-Agent": "Mozilla/5.0 x64"}).content)
|
|
|
|
return html.fromstring(self.config.session.get(url, headers={"Accept-Language": language, "User-Agent": "Mozilla/5.0 x64"}).content)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@retry(stop_max_attempt_number=6, wait_fixed=10000)
|
|
|
|
def _login(self, username, password):
|
|
|
|
def _login(self, username, password):
|
|
|
|
data = {
|
|
|
|
data = {
|
|
|
|
"show": "main",
|
|
|
|
"show": "main",
|
|
|
@ -41,7 +35,7 @@ class AniDB:
|
|
|
|
"xpass": password,
|
|
|
|
"xpass": password,
|
|
|
|
"xdoautologin": "on"
|
|
|
|
"xdoautologin": "on"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return self.anidb_session.post(self.urls["login"], data, headers={"Accept-Language": "en-US,en;q=0.5", "User-Agent": "Mozilla/5.0 x64"})
|
|
|
|
return html.fromstring(self.config.session.post(self.urls["login"], data, headers={"Accept-Language": "en-US,en;q=0.5", "User-Agent": "Mozilla/5.0 x64"}).content)
|
|
|
|
|
|
|
|
|
|
|
|
def _popular(self, language):
|
|
|
|
def _popular(self, language):
|
|
|
|
response = self._request(self.urls["popular"], language)
|
|
|
|
response = self._request(self.urls["popular"], language)
|
|
|
@ -71,24 +65,17 @@ class AniDB:
|
|
|
|
|
|
|
|
|
|
|
|
def _tag(self, tag, limit, language):
|
|
|
|
def _tag(self, tag, limit, language):
|
|
|
|
anidb_ids = []
|
|
|
|
anidb_ids = []
|
|
|
|
next_page = True
|
|
|
|
current_url = f"{self.urls['anidb_tag']}/{tag}"
|
|
|
|
current_url = self.urls["anidb_tag"] + "/" + str(tag)
|
|
|
|
while True:
|
|
|
|
while next_page:
|
|
|
|
|
|
|
|
logger.debug(f"Sending request to {current_url}")
|
|
|
|
|
|
|
|
response = self._request(current_url, language)
|
|
|
|
response = self._request(current_url, language)
|
|
|
|
int_list = util.get_int_list(response.xpath("//td[@class='name main anime']/a/@href"), "AniDB ID")
|
|
|
|
int_list = util.get_int_list(response.xpath("//td[@class='name main anime']/a/@href"), "AniDB ID")
|
|
|
|
anidb_ids.extend(int_list)
|
|
|
|
anidb_ids.extend(int_list)
|
|
|
|
next_page_list = response.xpath("//li[@class='next']/a/@href")
|
|
|
|
next_page_list = response.xpath("//li[@class='next']/a/@href")
|
|
|
|
logger.debug(f"next page list {next_page_list}")
|
|
|
|
if len(anidb_ids) >= limit or len(next_page_list) == 0:
|
|
|
|
if len(next_page_list) != 0 and len(anidb_ids) <= limit:
|
|
|
|
break
|
|
|
|
logger.debug(f"Loading next anidb page")
|
|
|
|
time.sleep(2)
|
|
|
|
time.sleep(2)# Sleep as we are paging through anidb and don't want the ban hammer
|
|
|
|
current_url = f"https://anidb.net{next_page_list[0]}"
|
|
|
|
current_url = "https://anidb.net" + next_page_list[0]
|
|
|
|
return anidb_ids[:limit]
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.debug(f"Got to last page")
|
|
|
|
|
|
|
|
next_page = False
|
|
|
|
|
|
|
|
anidb_ids = anidb_ids[:limit]
|
|
|
|
|
|
|
|
return anidb_ids
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_items(self, method, data, language):
|
|
|
|
def get_items(self, method, data, language):
|
|
|
|
pretty = util.pretty_names[method] if method in util.pretty_names else method
|
|
|
|
pretty = util.pretty_names[method] if method in util.pretty_names else method
|
|
|
@ -109,4 +96,4 @@ class AniDB:
|
|
|
|
logger.debug(f"{len(anidb_ids)} AniDB IDs Found: {anidb_ids}")
|
|
|
|
logger.debug(f"{len(anidb_ids)} AniDB IDs Found: {anidb_ids}")
|
|
|
|
logger.debug(f"{len(movie_ids)} TMDb IDs Found: {movie_ids}")
|
|
|
|
logger.debug(f"{len(movie_ids)} TMDb IDs Found: {movie_ids}")
|
|
|
|
logger.debug(f"{len(show_ids)} TVDb IDs Found: {show_ids}")
|
|
|
|
logger.debug(f"{len(show_ids)} TVDb IDs Found: {show_ids}")
|
|
|
|
return movie_ids, show_ids
|
|
|
|
return movie_ids, show_ids
|
|
|
|