66 lines
2.6 KiB
Python
66 lines
2.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import sys
|
|
PY3 = False
|
|
if sys.version_info[0] >= 3: PY3 = True; unicode = str; unichr = chr; long = int
|
|
|
|
if PY3:
|
|
#from future import standard_library
|
|
#standard_library.install_aliases()
|
|
import urllib.parse as urllib # Es muy lento en PY2. En PY3 es nativo
|
|
else:
|
|
import urllib # Usamos el nativo de PY2 que es más rápido
|
|
|
|
from core import httptools
|
|
from core import scrapertools
|
|
from platformcode import config, logger
|
|
|
|
|
|
def test_video_exists(page_url):
|
|
return True, ""
|
|
|
|
|
|
def get_video_url(page_url, premium=False, user="", password="", video_password=""):
|
|
logger.log("(page_url='%s')" % page_url)
|
|
if config.get_setting("premium", server="onefichier"):
|
|
user = config.get_setting("user", server="onefichier")
|
|
password = config.get_setting("password", server="onefichier")
|
|
url = "https://1fichier.com/login.pl"
|
|
logger.log("url=" + url)
|
|
post_parameters = {"mail": user, "pass": password, "lt": "on", "purge": "on", "valider": "Send"}
|
|
post = urllib.urlencode(post_parameters)
|
|
logger.log("post=" + post)
|
|
|
|
data = httptools.downloadpage(url, post=post).data
|
|
# logger.log("data="+data)
|
|
|
|
cookies = config.get_cookie_data()
|
|
logger.log("cookies=" + cookies)
|
|
|
|
# 1fichier.com TRUE / FALSE 1443553315 SID imC3q8MQ7cARw5tkXeWvKyrH493rR=1yvrjhxDAA0T0iEmqRfNF9GXwjrwPHssAQ
|
|
sid_cookie_value = scrapertools.find_single_match(cookies, "1fichier.com.*?SID\s+([A-Za-z0-9\+\=]+)")
|
|
logger.log("sid_cookie_value=" + sid_cookie_value)
|
|
|
|
# .1fichier.com TRUE / FALSE 1443553315 SID imC3q8MQ7cARw5tkXeWvKyrH493rR=1yvrjhxDAA0T0iEmqRfNF9GXwjrwPHssAQ
|
|
cookie = urllib.urlencode({"SID": sid_cookie_value})
|
|
|
|
# Averigua el nombre del fichero real
|
|
headers = []
|
|
headers.append(['User-Agent',
|
|
'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; es-ES; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12'])
|
|
headers.append(['Cookie', cookie])
|
|
filename = scrapertools.get_header_from_response(page_url, header_to_get="Content-Disposition")
|
|
logger.log("filename=" + filename)
|
|
|
|
# Construye la URL final para Kodi
|
|
location = page_url + "|Cookie=" + cookie
|
|
logger.log("location=" + location)
|
|
|
|
video_urls = []
|
|
video_urls.append([filename[-4:] + " (Premium) [1fichier]", location])
|
|
|
|
for video_url in video_urls:
|
|
logger.log("%s - %s" % (video_url[0], video_url[1]))
|
|
|
|
return video_urls
|