diff --git a/mediaserver/platformcode/controllers/html.py b/mediaserver/platformcode/controllers/html.py index bff17a80..885a9d0e 100644 --- a/mediaserver/platformcode/controllers/html.py +++ b/mediaserver/platformcode/controllers/html.py @@ -113,6 +113,7 @@ class platform(Platformtools): JsonData["data"]["viewmode"] = parent_item.viewmode JsonData["data"]["category"] = parent_item.category.capitalize() JsonData["data"]["host"] = self.controller.host + if parent_item.url: JsonData["data"]["url"] = parent_item.url # Recorremos el itemlist for item in itemlist: diff --git a/mediaserver/platformcode/template/js/protocol.js b/mediaserver/platformcode/template/js/protocol.js index 4ba41fed..089a0c3d 100644 --- a/mediaserver/platformcode/template/js/protocol.js +++ b/mediaserver/platformcode/template/js/protocol.js @@ -77,7 +77,9 @@ function get_response(data) { document.getElementById("itemlist").scrollTop = 0; show_images(); - nav_history.newResponse(item_list, data.category); + nav_history.newResponse(item_list, data.category, data.url); + + set_original_url(data.url) //console.debug(nav_history) send_data({ diff --git a/mediaserver/platformcode/template/js/ui.js b/mediaserver/platformcode/template/js/ui.js index 91fb6fd2..65fa15a7 100644 --- a/mediaserver/platformcode/template/js/ui.js +++ b/mediaserver/platformcode/template/js/ui.js @@ -94,7 +94,7 @@ function focus_element(element) { function image_error(thumbnail) { var src = thumbnail.src; if (thumbnail.src.indexOf(domain) == 0) { - thumbnail.src = "http://media.tvalacarta.info/pelisalacarta/thumb_folder2.png"; + thumbnail.src = "https://github.com/alfa-addon/addon/raw/master/plugin.video.alfa/resources/media/general/default/thumb_folder.png"; } else { thumbnail.src = domain + "/proxy/" + encodeURIComponent(btoa(thumbnail.src)); @@ -104,6 +104,19 @@ function image_error(thumbnail) { }; }; +function set_original_url(url){ + currentWebLink = document.getElementById("current_web_link") + if (currentWebLink) { + if (url) { + currentWebLink.style.display = "block"; + currentWebLink.href = url; + } + else { + currentWebLink.style.display = "none"; + } + } +} + function show_images(){ var container = document.getElementById("itemlist"); var images = container.getElementsByTagName("img"); @@ -222,4 +235,4 @@ function auto_scroll(element) { function center_window(el) { el.style.top = document.getElementById("window").offsetHeight / 2 - el.offsetHeight / 2 + "px"; -}; \ No newline at end of file +}; diff --git a/mediaserver/platformcode/template/js/vars.js b/mediaserver/platformcode/template/js/vars.js index 1bc1ace4..bb54ce7e 100644 --- a/mediaserver/platformcode/template/js/vars.js +++ b/mediaserver/platformcode/template/js/vars.js @@ -59,7 +59,7 @@ var nav_history = { } } }, - "newResponse": function (data, category) { + "newResponse": function (data, category, url) { if (!this.confirmed) { if (this.states[this.current].focus >= 0) { document.getElementById("itemlist").children[this.states[this.current].focus].children[0].focus(); @@ -68,6 +68,7 @@ var nav_history = { this.states[this.current].end = new Date().getTime(); this.states[this.current].data = data; this.states[this.current].category = category; + this.states[this.current].source_url = url; this.confirmed = true; if (settings.builtin_history && !this.from_nav) { if (this.current > 0) { @@ -86,6 +87,7 @@ var nav_history = { this.states[this.current].end = new Date().getTime(); this.states[this.current].data = data; this.states[this.current].category = category; + this.states[this.current].source_url = url; this.states = this.states.slice(0, this.current + 1); } this.from_nav = false; @@ -116,6 +118,7 @@ var nav_history = { if (this.states[this.current].end - this.states[this.current].start > this.cache) { document.getElementById("itemlist").innerHTML = this.states[this.current].data.join(""); set_category(this.states[this.current].category) + set_original_url(this.states[this.current].source_url) if (this.states[this.current].focus >= 0) { document.getElementById("itemlist").children[this.states[this.current].focus].children[0].focus(); } diff --git a/mediaserver/platformcode/template/page.html b/mediaserver/platformcode/template/page.html index 08fba442..50fe256a 100644 --- a/mediaserver/platformcode/template/page.html +++ b/mediaserver/platformcode/template/page.html @@ -129,7 +129,7 @@ - +
diff --git a/plugin.video.alfa/channels/allcalidad.py b/plugin.video.alfa/channels/allcalidad.py index 5153f289..ef3bfdef 100755 --- a/plugin.video.alfa/channels/allcalidad.py +++ b/plugin.video.alfa/channels/allcalidad.py @@ -8,19 +8,17 @@ from platformcode import config, logger host = "http://allcalidad.com/" - def mainlist(item): logger.info() itemlist = [] - itemlist.append(Item(channel=item.channel, title="Novedades", action="peliculas", url=host)) - itemlist.append(Item(channel=item.channel, title="Por género", action="generos_years", url=host, extra="Genero")) - itemlist.append(Item(channel=item.channel, title="Por año", action="generos_years", url=host, extra=">Año<")) - itemlist.append(Item(channel=item.channel, title="Favoritas", action="peliculas", url=host + "/favorites")) - itemlist.append(Item(channel=item.channel, title="")) - itemlist.append(Item(channel=item.channel, title="Buscar", action="search", url=host + "?s=")) + itemlist.append(Item(channel = item.channel, title = "Novedades", action = "peliculas", url = host)) + itemlist.append(Item(channel = item.channel, title = "Por género", action = "generos_years", url = host, extra = "Genero" )) + itemlist.append(Item(channel = item.channel, title = "Por año", action = "generos_years", url = host, extra = ">Año<")) + itemlist.append(Item(channel = item.channel, title = "Favoritas", action = "peliculas", url = host + "/favorites" )) + itemlist.append(Item(channel = item.channel, title = "")) + itemlist.append(Item(channel = item.channel, title = "Buscar", action = "search", url = host + "?s=")) return itemlist - def newest(categoria): logger.info() itemlist = [] @@ -57,16 +55,16 @@ def generos_years(item): logger.info() itemlist = [] data = httptools.downloadpage(item.url).data - patron = '(?s)%s(.*?)' % item.extra + patron = '(?s)%s(.*?)' %item.extra bloque = scrapertools.find_single_match(data, patron) - patron = 'href="([^"]+)' + patron = 'href="([^"]+)' patron += '">([^<]+)' matches = scrapertools.find_multiple_matches(bloque, patron) for url, titulo in matches: - itemlist.append(Item(channel=item.channel, - action="peliculas", - title=titulo, - url=url + itemlist.append(Item(channel = item.channel, + action = "peliculas", + title = titulo, + url = url )) return itemlist @@ -86,22 +84,22 @@ def peliculas(item): year = scrapertools.find_single_match(varios, 'Año.*?kinopoisk">([^<]+)') year = scrapertools.find_single_match(year, '[0-9]{4}') mtitulo = titulo + " (" + idioma + ") (" + year + ")" - new_item = Item(channel=item.channel, - action="findvideos", - title=mtitulo, - fulltitle=titulo, - thumbnail=thumbnail, - url=url, - contentTitle=titulo, - contentType="movie" - ) + new_item = Item(channel = item.channel, + action = "findvideos", + title = mtitulo, + fulltitle = titulo, + thumbnail = thumbnail, + url = url, + contentTitle = titulo, + contentType="movie" + ) if year: new_item.infoLabels['year'] = int(year) itemlist.append(new_item) url_pagina = scrapertools.find_single_match(data, 'next" href="([^"]+)') if url_pagina != "": pagina = "Pagina: " + scrapertools.find_single_match(url_pagina, "page/([0-9]+)") - itemlist.append(Item(channel=item.channel, action="peliculas", title=pagina, url=url_pagina)) + itemlist.append(Item(channel = item.channel, action = "peliculas", title = pagina, url = url_pagina)) return itemlist @@ -120,25 +118,24 @@ def findvideos(item): elif "vimeo" in url: url += "|" + "http://www.allcalidad.com" itemlist.append( - Item(channel=item.channel, - action="play", - title=titulo, - fulltitle=item.fulltitle, - thumbnail=item.thumbnail, - server=server, - url=url + Item(channel = item.channel, + action = "play", + title = titulo, + fulltitle = item.fulltitle, + thumbnail = item.thumbnail, + server = "", + url = url )) itemlist = servertools.get_servers_itemlist(itemlist, lambda i: i.title % i.server.capitalize()) if itemlist: - itemlist.append(Item(channel=item.channel)) + itemlist.append(Item(channel = item.channel)) itemlist.append(item.clone(channel="trailertools", title="Buscar Tráiler", action="buscartrailer", context="", text_color="magenta")) # Opción "Añadir esta película a la biblioteca de KODI" if item.extra != "library": if config.get_videolibrary_support(): itemlist.append(Item(channel=item.channel, title="Añadir a la videoteca", text_color="green", - filtro=True, action="add_pelicula_to_library", url=item.url, - thumbnail=item.thumbnail, + filtro=True, action="add_pelicula_to_library", url=item.url, thumbnail = item.thumbnail, infoLabels={'title': item.fulltitle}, fulltitle=item.fulltitle, extra="library")) return itemlist diff --git a/plugin.video.alfa/channels/mocosoftx.json b/plugin.video.alfa/channels/mocosoftx.json deleted file mode 100755 index c8d2a7a2..00000000 --- a/plugin.video.alfa/channels/mocosoftx.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "id": "mocosoftx", - "name": "MocosoftX", - "active": true, - "adult": true, - "language": "es", - "thumbnail": "mocosoftx.png", - "banner": "mocosoftx.png", - "version": 1, - "changes": [ - { - "date": "15/03/2017", - "description": "limpieza código" - }, - { - "date": "05/08/2016", - "description": "Eliminado de sección películas." - } - ], - "categories": [ - "adult" - ], - "settings": [ - { - "id": "mocosoftxuser", - "type": "text", - "label": "@30014", - "enabled": true, - "visible": true - }, - { - "id": "mocosoftxpassword", - "type": "text", - "label": "@30015", - "enabled": true, - "visible": true, - "hidden": true - } - ] -} \ No newline at end of file diff --git a/plugin.video.alfa/channels/mocosoftx.py b/plugin.video.alfa/channels/mocosoftx.py deleted file mode 100755 index 7ecbe71e..00000000 --- a/plugin.video.alfa/channels/mocosoftx.py +++ /dev/null @@ -1,207 +0,0 @@ -# -*- coding: utf-8 -*- - -import re -import urllib -import urlparse - -from core import scrapertools -from core import servertools -from core.item import Item -from platformcode import config, logger -from platformcode import platformtools - -MAIN_HEADERS = [] -MAIN_HEADERS.append(["Host", "mocosoftx.com"]) -MAIN_HEADERS.append(["User-Agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:8.0) Gecko/20100101 Firefox/8.0"]) -MAIN_HEADERS.append(["Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"]) -MAIN_HEADERS.append(["Accept-Language", "es-es,es;q=0.8,en-us;q=0.5,en;q=0.3"]) -MAIN_HEADERS.append(["Accept-Charset", "ISO-8859-1,utf-8;q=0.7,*;q=0.7"]) -MAIN_HEADERS.append(["Connection", "keep-alive"]) - - -# Login: -#