129 lines
3.9 KiB
Python
129 lines
3.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# ------------------------------------------------------------
|
|
# Canale per animeuniverse
|
|
# ----------------------------------------------------------
|
|
|
|
from core import support
|
|
|
|
host = support.config.get_channel_url()
|
|
headers = {}
|
|
|
|
perpage_list = ['20','30','40','50','60','70','80','90','100']
|
|
perpage = perpage_list[support.config.get_setting('perpage' , 'animeuniverse')]
|
|
epPatron = r'<td>\s*(?P<title>[^<]+)[^>]+>[^>]+>\s*<a href="(?P<url>[^"]+)"'
|
|
|
|
|
|
@support.menu
|
|
def mainlist(item):
|
|
anime=['/anime/',
|
|
('Tipo',['', 'menu', 'Anime']),
|
|
('Anno',['', 'menu', 'Anno']),
|
|
('Genere', ['', 'menu','Genere']),
|
|
('Ultimi Episodi',['/2/', 'peliculas', 'last']),
|
|
('Hentai', ['/hentai/', 'peliculas'])]
|
|
return locals()
|
|
|
|
|
|
@support.scrape
|
|
def menu(item):
|
|
action = 'peliculas'
|
|
data = support.match(item, patron= item.args + r'</a><ul class="sub-menu">(.*?)</ul>').match
|
|
patronMenu = r'<a href="(?P<url>[^"]+)">(?P<title>[^<]+)<'
|
|
return locals()
|
|
|
|
|
|
def search(item, texto):
|
|
support.info(texto)
|
|
item.search = texto
|
|
try:
|
|
return peliculas(item)
|
|
# Continua la ricerca in caso di errore
|
|
except:
|
|
import sys
|
|
for line in sys.exc_info():
|
|
support.logger.error("%s" % line)
|
|
return []
|
|
|
|
|
|
def newest(categoria):
|
|
support.info(categoria)
|
|
item = support.Item()
|
|
try:
|
|
if categoria == "anime":
|
|
item.url = host
|
|
item.args = "last"
|
|
return peliculas(item)
|
|
# Continua la ricerca in caso di errore
|
|
except:
|
|
import sys
|
|
for line in sys.exc_info():
|
|
support.logger.error("{0}".format(line))
|
|
return []
|
|
|
|
|
|
@support.scrape
|
|
def peliculas(item):
|
|
query = ''
|
|
if '/mos/' in item.url:
|
|
item.contentType = 'movie'
|
|
action='findvideos'
|
|
elif item.args == 'last':
|
|
query='cat%5D=1¤tquery%5Bcategory__not_in%5D%5B'
|
|
searchtext=''
|
|
item.contentType = 'episode'
|
|
action='findvideos'
|
|
else:
|
|
item.contentType = 'tvshow'
|
|
action='episodios'
|
|
if item.search:
|
|
query = 's'
|
|
searchtext = item.search
|
|
if not query:
|
|
query='category_name'
|
|
searchtext = item.url.split('/')[-2] if item.url != host else ''
|
|
if not item.pag: item.pag = 1
|
|
|
|
anime=True
|
|
# blacklist=['Altri Hentai']
|
|
data = support.match(host + '/wp-content/themes/animeuniverse/functions/ajax.php', post='sorter=recent&location=&loop=main+loop&action=sort&numarticles='+perpage+'&paginated='+str(item.pag)+'¤tquery%5B'+query+'%5D='+searchtext+'&thumbnail=1').data.replace('\\','')
|
|
patron=r'<a href="(?P<url>[^"]+)"><img width="[^"]+" height="[^"]+" src="(?P<thumb>[^"]+)" class="[^"]+" alt="" title="(?P<title>.*?)\s*(?P<lang>Sub ITA|ITA)?(?:"| \[)'
|
|
|
|
def itemlistHook(itemlist):
|
|
if len(itemlist) == int(perpage):
|
|
item.pag += 1
|
|
itemlist.append(item.clone(title=support.typo(support.config.get_localized_string(30992), 'color kod bold'), action='peliculas'))
|
|
return itemlist
|
|
return locals()
|
|
|
|
|
|
|
|
|
|
@support.scrape
|
|
def episodios(item):
|
|
anime = True
|
|
pagination = int(perpage)
|
|
patron = epPatron
|
|
return locals()
|
|
|
|
|
|
def findvideos(item):
|
|
itemlist = []
|
|
if item.contentType == 'movie':
|
|
matches = support.match(item, patron=epPatron).matches
|
|
for title, url in matches:
|
|
get_video_list(url, title, itemlist)
|
|
else:
|
|
get_video_list(item.url, support.config.get_localized_string(30137), itemlist)
|
|
return support.server(item, itemlist=itemlist)
|
|
|
|
|
|
def get_video_list(url, title, itemlist):
|
|
from requests import get
|
|
if not url.startswith('http'): url = host + url
|
|
|
|
url = support.match(get(url).url, string=True, patron=r'file=([^$]+)').match
|
|
if 'http' not in url: url = 'http://' + url
|
|
itemlist.append(support.Item(title=title, url=url, server='directo', action='play'))
|
|
|
|
return itemlist
|