151 lines
6.6 KiB
Python
151 lines
6.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import time
|
|
import urllib
|
|
|
|
from core import httptools
|
|
from core import scrapertools
|
|
from lib import jsunpack
|
|
from platformcode import config, logger
|
|
|
|
|
|
def test_video_exists(page_url):
|
|
logger.info("(page_url='%s')" % page_url)
|
|
|
|
return True, ""
|
|
|
|
|
|
def get_video_url(page_url, premium=False, user="", password="", video_password=""):
|
|
logger.info("url=" + page_url)
|
|
|
|
data = httptools.downloadpage(page_url).data
|
|
|
|
cgi_counter = scrapertools.find_single_match(data, """(?is)src=.(https://www.flashx.bz/counter.cgi.*?[^(?:'|")]+)""")
|
|
cgi_counter = cgi_counter.replace("%0A","").replace("%22","")
|
|
httptools.downloadpage(cgi_counter, cookies=False)
|
|
|
|
time.sleep(6)
|
|
|
|
url_playitnow = "https://www.flashx.bz/dl?playitnow"
|
|
fid = scrapertools.find_single_match(data, 'input type="hidden" name="id" value="([^"]*)"')
|
|
fname = scrapertools.find_single_match(data, 'input type="hidden" name="fname" value="([^"]*)"')
|
|
fhash = scrapertools.find_single_match(data, 'input type="hidden" name="hash" value="([^"]*)"')
|
|
|
|
headers = {'Content': 'application/x-www-form-urlencoded'}
|
|
post_parameters = {
|
|
"op": "download1",
|
|
"usr_login": "",
|
|
"id": fid,
|
|
"fname": fname,
|
|
"referer": "https://www.flashx.bz/",
|
|
"hash": fhash,
|
|
"imhuman": "Continue To Video"
|
|
}
|
|
data = httptools.downloadpage(url_playitnow, urllib.urlencode(post_parameters), headers=headers).data
|
|
|
|
video_urls = []
|
|
media_urls = scrapertools.find_multiple_matches(data, "{src: '([^']+)'.*?,label: '([^']+)'")
|
|
subtitle = ""
|
|
for media_url, label in media_urls:
|
|
if media_url.endswith(".srt") and label == "Spanish":
|
|
try:
|
|
from core import filetools
|
|
data = httptools.downloadpage(media_url)
|
|
subtitle = os.path.join(config.get_data_path(), 'sub_flashx.srt')
|
|
filetools.write(subtitle, data)
|
|
except:
|
|
import traceback
|
|
logger.info("Error al descargar el subtítulo: " + traceback.format_exc())
|
|
|
|
for media_url, label in media_urls:
|
|
if not media_url.endswith("png") and not media_url.endswith(".srt"):
|
|
video_urls.append(["." + media_url.rsplit('.', 1)[1] + " [flashx]", media_url, 0, subtitle])
|
|
|
|
for video_url in video_urls:
|
|
logger.info("%s - %s" % (video_url[0], video_url[1]))
|
|
|
|
return video_urls
|
|
|
|
|
|
def get_video_url_anterior(page_url, premium=False, user="", password="", video_password=""):
|
|
logger.info("url=" + page_url)
|
|
pfxfx = ""
|
|
data = httptools.downloadpage(page_url, cookies=False).data
|
|
data = data.replace("\n","")
|
|
cgi_counter = scrapertools.find_single_match(data, """(?is)src=.(https://www.flashx.ws/counter.cgi.*?[^(?:'|")]+)""")
|
|
cgi_counter = cgi_counter.replace("%0A","").replace("%22","")
|
|
playnow = scrapertools.find_single_match(data, 'https://www.flashx.ws/dl[^"]+')
|
|
# Para obtener el f y el fxfx
|
|
js_fxfx = "https://www." + scrapertools.find_single_match(data.replace("//","/"), """(?is)(flashx.ws/js\w+/c\w+.*?[^(?:'|")]+)""")
|
|
data_fxfx = httptools.downloadpage(js_fxfx).data
|
|
mfxfx = scrapertools.find_single_match(data_fxfx, 'get.*?({.*?})').replace("'","").replace(" ","")
|
|
matches = scrapertools.find_multiple_matches(mfxfx, '(\w+):(\w+)')
|
|
for f, v in matches:
|
|
pfxfx += f + "=" + v + "&"
|
|
logger.info("mfxfxfx1= %s" %js_fxfx)
|
|
logger.info("mfxfxfx2= %s" %pfxfx)
|
|
if pfxfx == "":
|
|
pfxfx = "ss=yes&f=fail&fxfx=6"
|
|
coding_url = 'https://www.flashx.ws/flashx.php?%s' %pfxfx
|
|
# {f: 'y', fxfx: '6'}
|
|
bloque = scrapertools.find_single_match(data, '(?s)Form method="POST" action(.*?)span')
|
|
flashx_id = scrapertools.find_single_match(bloque, 'name="id" value="([^"]+)"')
|
|
fname = scrapertools.find_single_match(bloque, 'name="fname" value="([^"]+)"')
|
|
hash_f = scrapertools.find_single_match(bloque, 'name="hash" value="([^"]+)"')
|
|
imhuman = scrapertools.find_single_match(bloque, "value='([^']+)' name='imhuman'")
|
|
post = 'op=download1&usr_login=&id=%s&fname=%s&referer=&hash=%s&imhuman=%s' % (
|
|
flashx_id, urllib.quote(fname), hash_f, imhuman)
|
|
wait_time = scrapertools.find_single_match(data, "<span id='xxc2'>(\d+)")
|
|
|
|
# Obligatorio descargar estos 2 archivos, porque si no, muestra error
|
|
httptools.downloadpage(coding_url, cookies=False)
|
|
httptools.downloadpage(cgi_counter, cookies=False)
|
|
|
|
try:
|
|
time.sleep(int(wait_time) + 1)
|
|
except:
|
|
time.sleep(6)
|
|
|
|
data = httptools.downloadpage(playnow, post).data
|
|
# Si salta aviso, se carga la pagina de comprobacion y luego la inicial
|
|
# LICENSE GPL3, de alfa-addon: https://github.com/alfa-addon/ ES OBLIGATORIO AÑADIR ESTAS LÍNEAS
|
|
if "You try to access this video with Kodi" in data:
|
|
url_reload = scrapertools.find_single_match(data, 'try to reload the page.*?href="([^"]+)"')
|
|
try:
|
|
data = httptools.downloadpage(url_reload, cookies=False).data
|
|
data = httptools.downloadpage(playnow, post, cookies=False).data
|
|
# LICENSE GPL3, de alfa-addon: https://github.com/alfa-addon/ ES OBLIGATORIO AÑADIR ESTAS LÍNEAS
|
|
except:
|
|
pass
|
|
|
|
matches = scrapertools.find_multiple_matches(data, "(eval\(function\(p,a,c,k.*?)\s+</script>")
|
|
video_urls = []
|
|
for match in matches:
|
|
try:
|
|
match = jsunpack.unpack(match)
|
|
match = match.replace("\\'", "'")
|
|
media_urls = scrapertools.find_multiple_matches(match, "{src:'([^']+)'.*?,label:'([^']+)'")
|
|
subtitle = ""
|
|
for media_url, label in media_urls:
|
|
if media_url.endswith(".srt") and label == "Spanish":
|
|
try:
|
|
from core import filetools
|
|
data = httptools.downloadpage(media_url)
|
|
subtitle = os.path.join(config.get_data_path(), 'sub_flashx.srt')
|
|
filetools.write(subtitle, data)
|
|
except:
|
|
import traceback
|
|
logger.info("Error al descargar el subtítulo: " + traceback.format_exc())
|
|
|
|
for media_url, label in media_urls:
|
|
if not media_url.endswith("png") and not media_url.endswith(".srt"):
|
|
video_urls.append(["." + media_url.rsplit('.', 1)[1] + " [flashx]", media_url, 0, subtitle])
|
|
|
|
for video_url in video_urls:
|
|
logger.info("%s - %s" % (video_url[0], video_url[1]))
|
|
except:
|
|
pass
|
|
|
|
return video_urls
|