# -*- coding: utf-8 -*- from core import httptools from core import scrapertools from lib import jsunpack from platformcode import logger, config def test_video_exists(page_url): logger.debug("(page_url='%s')" % page_url) global data data = httptools.downloadpage(page_url).data if "Not Found" in data or "File was deleted" in data: return False, config.get_localized_string(70449) % "Watchvideo" return True, "" def get_video_url(page_url, premium=False, user="", password="", video_password=""): logger.debug("url=" + page_url) video_urls = [] media_urls = scrapertools.find_multiple_matches(data, 'file:"([^"]+)"') if not media_urls: packed = scrapertools.find_single_match(data, "text/javascript'>(.*?)\s*") unpacked = jsunpack.unpack(packed) media_urls = scrapertools.find_multiple_matches(unpacked, 'file:\s*"([^"]+)"') for media_url in media_urls: media_url += "|Referer=%s" %page_url if ".png" in media_url: continue ext = "mp4" if "m3u8" in media_url: ext = "m3u8" video_urls.append(["%s [watchvideo]" % (ext), media_url]) video_urls.reverse() for video_url in video_urls: logger.debug("%s - %s" % (video_url[0], video_url[1])) return video_urls