Actualizados

- Actualización de código
This commit is contained in:
Intel1
2019-03-22 14:58:19 -05:00
parent c1571914b7
commit 5048c9f0a1
18 changed files with 4986 additions and 5074 deletions
+5 -20
View File
@@ -2,32 +2,17 @@
import re
from core import httptools
from core import scrapertools
from platformcode import logger
def test_video_exists(page_url):
logger.info("(page_url='%s')" % page_url)
# Existe: http://bitshare.com/files/v1ehsvu3/Nikita.S02E15.HDTV.XviD-ASAP.avi.html
# No existe: http://bitshare.com/files/tn74w9tm/Rio.2011.DVDRip.LATiNO.XviD.by.Glad31.avi.html
data = scrapertools.cache_page(page_url)
patron = '<h1>Descargando([^<]+)</h1>'
matches = re.compile(patron, re.DOTALL).findall(data)
if len(matches) > 0:
return True, ""
patron = '<h1>(Error - Archivo no disponible)</h1>'
matches = re.compile(patron, re.DOTALL).findall(data)
if len(matches) > 0:
return False, "File not found"
patron = '<b>(Por favor seleccione el archivo a cargar)'
matches = re.compile(patron, re.DOTALL).findall(data)
if len(matches) > 0:
return False, "Enlace no válido"
data = httptools.downloadpage(page_url).data
if "Error - Archivo no disponible" in data or "Por favor seleccione el archivo a cargar" in data:
return False, "Archivo no encontrado"
patron = '<b>()'
return True, ""