Python module (submodule repositary), which provides content (video streams) from various online stream sources to corresponding Enigma2, Kodi, Plex plugins

filmix.py 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. #!/usr/bin/env python
  2. # coding=utf8
  3. #
  4. # This file is part of PlayStream - enigma2 plugin to play video streams from various sources
  5. # Copyright (c) 2016 ivars777 (ivars777@gmail.com)
  6. # Distributed under the GNU GPL v3. For full terms see http://www.gnu.org/licenses/gpl-3.0.en.html
  7. #
  8. try:
  9. import json
  10. except:
  11. import simplejson as json
  12. import urllib2, urllib
  13. import datetime, re, sys,os
  14. import ConfigParser
  15. from SourceBase import SourceBase
  16. import base64
  17. from collections import OrderedDict
  18. import sys
  19. import ssl
  20. if "_create_unverified_context" in dir(ssl):
  21. ssl._create_default_https_context = ssl._create_unverified_context
  22. try:
  23. import util
  24. except:
  25. sys.path.insert(0,'..')
  26. import util
  27. headers2dict = lambda h: dict([l.strip().split(": ") for l in h.strip().splitlines()])
  28. class Source(SourceBase):
  29. def __init__(self,country="",cfg_path=None):
  30. self.name = "filmix"
  31. self.title = "filmix.co"
  32. self.img = "filmix.png"
  33. self.desc = "filmix.co satura skatīšanās"
  34. self.country=country
  35. self.headers = headers2dict("""
  36. Host: filmix.co
  37. User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
  38. Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
  39. Accept-Language: en-US,en;q=0.5
  40. """)
  41. self.headers2 = headers2dict("""
  42. User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0
  43. X-Requested-With: XMLHttpRequest
  44. Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
  45. """)
  46. self.url = "https://filmix.co/"
  47. #self.login()
  48. def login(self,user="",password=""):
  49. return True
  50. def get_content(self, data):
  51. print "[filmix] get_content:", data
  52. source, data, path, plist, clist, params, qs = self.parse_data(data)
  53. content=[]
  54. content.append(("..return", "back","back.png","Return back"))
  55. if clist=="home":
  56. content.extend([
  57. ("Search", "filmix::search/{0}","","Search"),
  58. ("Movies", "filmix::movies","","Movies"),
  59. ("Series", "filmix::series","","TV Series"),
  60. ("Cartoons", "filmix::cartoons","","Cartoons"),
  61. ])
  62. return content
  63. elif clist=="search":
  64. if len(plist) < 2:
  65. return content
  66. import requests
  67. #ses = requests.session()
  68. r = requests.get(self.url+data)
  69. cookie = r.cookies["FILMIXNET"]
  70. url = "https://filmix.co/engine/ajax/sphinx_search.php"
  71. headers = headers2dict("""
  72. User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0
  73. Content-Type: application/x-www-form-urlencoded; charset=UTF-8
  74. X-Requested-With: XMLHttpRequest
  75. Cookie: FILMIXNET=%s;
  76. """% cookie)
  77. #data = "scf=fx&story=%s&search_start=0&do=search&subaction=search" % (plist[1].replace(" ", "+"))
  78. #data = "sdc=fx&story=%s&do=search&subaction=search"% (plist[1].replace(" ", "+"))
  79. data = "scf=fx&story=%s&subaction=search" % (plist[1].replace(" ", "+"))
  80. r = requests.post(url, data, headers=headers)
  81. #r = r.content.decode("cp1251").encode("utf8")
  82. content = self.process_list(r.content, content)
  83. return content
  84. elif data in ("movies","series","cartoons"):
  85. r = self.call("")
  86. if not r:
  87. raise Exception("Can not read content")
  88. r = r.decode("cp1251").encode("utf8")
  89. if data == "movies":
  90. sname = "Фильмы"
  91. elif data=="series":
  92. sname = "Сериалы"
  93. else:
  94. sname = "Мультфильмы"
  95. # <span class="menu-title">Фильмы</span>
  96. m = re.search('<span class="menu-title">%s</span>(.+?)<li>\s+?<span'%sname, r, re.DOTALL|re.UNICODE)
  97. if not m: return content
  98. r2 = m.group(1)
  99. result = re.findall(r'<a .*?href="https://filmix\.co/([^"]+)".*?>([^<]+)</', r2, re.DOTALL)
  100. for item in result:
  101. if "catalog" in item[0]: continue
  102. title = item[1]
  103. data2 = item[0]
  104. img = self.img
  105. desc = title
  106. content.append((title,self.name+"::"+data2,img,desc))
  107. return content
  108. ## Seriāls
  109. elif clist=="play":
  110. r = self.call(path)
  111. r = r.decode("cp1251").encode("utf8")
  112. title = title0 = util.unescape(re.search("titlePlayer = '([^']+)'", r, re.DOTALL).group(1))
  113. m = re.search('<meta itemprop="thumbnailUrl" content="([^"]+)',r,re.DOTALL)
  114. img = m.group(1) if m else self.img
  115. m = re.search('<meta itemprop="duration" content="([^"]+)" />', r, re.DOTALL)
  116. duration = "(%s)"%m.group(1) if m else ""
  117. m = re.search('<p itemprop="description"[^>]+>([^<]+)<', r, re.DOTALL)
  118. desc = desc0 = util.unescape(m.group(1).strip()) if m else ""
  119. vid = plist[-1]
  120. m = re.search(r"meta_key = \['(\w+)', '(\w+)', '(\w+)'\]", r, re.IGNORECASE)
  121. key = m.group(3) if m else ""
  122. js = self.get_movie_info(vid,key)
  123. translations = js["message"]["translations"]["html5"]
  124. items = []
  125. for pl in translations:
  126. if translations[pl].startswith("http"):
  127. continue
  128. pl_link = translations[pl]
  129. lang = pl.encode("utf8")
  130. pl_link = self.decode_direct_media_url(pl_link)
  131. js = self._http_request(pl_link)
  132. js = self.decode_direct_media_url(js)
  133. js = json.loads(js)
  134. if "s" in qs:
  135. s = int(qs["s"])
  136. if s > len(js["playlist"]): continue
  137. for i,ep in enumerate(js["playlist"][s-1]["playlist"]):
  138. title = title0+" - "+js["playlist"][s-1]["playlist"][i]["comment"].encode("utf8")
  139. serie = js["playlist"][s-1]["playlist"][i]["comment"].encode("utf8")
  140. data2 = data+"&e=%s"%(i+1)
  141. desc = serie +"\n"+desc0
  142. if data2 not in items:
  143. items.append(data2)
  144. content.append((title,self.name+"::"+data2,img,desc))
  145. else:
  146. for i,ep in enumerate(js["playlist"]):
  147. title = title0 +" - "+js["playlist"][i]["comment"].encode("utf8")
  148. serie = js["playlist"][i]["comment"].encode("utf8")
  149. if "file" in ep and ep["file"]:
  150. data2 = data+"?e=%s"%(i+1)
  151. else:
  152. data2 = data+"?s=%s"%(i+1)
  153. desc = serie +"\n"+desc0
  154. if data2 not in items:
  155. items.append(data2)
  156. content.append((title,self.name+"::"+data2,img,desc))
  157. return content
  158. #r = self._http_request(url)
  159. ### saraksts ###
  160. else:
  161. r = self.call(data)
  162. r = r.decode("cp1251").encode("utf8")
  163. content = self.process_list(r, content)
  164. if '<div class="navigation">' in r:
  165. m = re.search(r'href="https://filmix\.co/([^"]+)" class="next icon-arowRight btn-tooltip"', r, re.DOTALL)
  166. if m:
  167. data2 = m.group(1)
  168. else:
  169. m = re.search("/page/(\d)+",data)
  170. if m:
  171. page = int(m.group(1))+1
  172. data2 = re.sub("/page/(\d)+", "/page/%s"%page, data)
  173. else:
  174. data2 = data + "/page/2"
  175. content.append(("Next page",self.name+"::"+data2,"next.png","Next page"))
  176. return content
  177. def process_list(self, r, content):
  178. for r2 in re.findall('<article class="shortstory line".+?</article>', r, re.DOTALL):
  179. #m2 = re.search(r'<a class="watch icon-play" itemprop="url" href="([^"]+)"', r2, re.DOTALL)
  180. #<a class="watch icon-play" itemprop="url" href="https://filmix.co/dramy/110957-stolik-19-2017.html"
  181. #m = re.search(r'<a href="https://filmix\.co/play/(\d+)" class="watch icon-play">', r2, re.DOTALL)
  182. m = re.search(r'<a class="watch icon-play" itemprop="url" href="https://filmix.co/\w+/(\d+)-', r2, re.DOTALL)
  183. if not m: continue
  184. vid = m.group(1)
  185. data2 = "play/%s"%vid
  186. #title = re.search('itemprop="name">([^<]+)</div>', r2, re.DOTALL).group(1)
  187. title = re.search('itemprop="name" content="([^"]+)"', r2, re.DOTALL).group(1)
  188. m = re.search('itemprop="alternativeHeadline" content="([^"]+)"', r2, re.DOTALL)
  189. if m:
  190. title = title + "/"+m.group(1)
  191. m = re.search(r'img src="(https://filmix\.co/uploads/posters/thumbs/[^"]+)"', r2)
  192. img = m.group(1) if m else self.img
  193. m = re.search(r'<a itemprop="copyrightYear".+?>(\d+)<', r2, re.DOTALL)
  194. if m:
  195. title = "%s (%s)"%(title,m.group(1))
  196. title = util.unescape(title)
  197. m = re.search('<p itemprop="description">([^<]+)</p>', r2, re.DOTALL)
  198. desc0 = util.unescape(m.group(1)) if m else ""
  199. props = []
  200. genre = re.findall('<a itemprop="genre"[^>]+?">([^<]+)</a>', r2, re.DOTALL)
  201. genre = ",".join(genre)
  202. if genre: props.append(genre)
  203. m = re.search('<div class="quality">([^<]+)</div>', r2, re.DOTALL)
  204. if m: props.append(m.group(1))
  205. m = re.search('<div class="item translate".+?class="item-content">([^<]+)<', r2)
  206. if m: props.append(m.group(1))
  207. m = re.search('itemprop="director">([^<]+)</span></div>', r2)
  208. if m: props.append(m.group(1))
  209. m = re.search('<div class="item actors">(.+?)</div>', r2)
  210. if m:
  211. result = re.findall("<span>(.+?)(&nbsp;)*</span>", m.group(1))
  212. if result:
  213. actors = []
  214. for a in zip(*result)[0]:
  215. actors.append(re.sub("<.+?>", "", a))
  216. props.append(" ".join(actors))
  217. else:
  218. x = 1
  219. pass
  220. desc="%s\n%s\n\n%s"%(title, desc0, "\n".join(props))
  221. content.append((title,self.name+"::"+data2,img,desc))
  222. return content
  223. def is_video(self,data):
  224. source,data,path,plist,clist,params,qs = self.parse_data(data)
  225. if clist == "play" and "e=" in data:
  226. return True
  227. elif clist == "play" and "s=" in data:
  228. return False
  229. elif clist=="play":
  230. vid = path.split("/")[1]
  231. js = self.get_movie_info(vid)
  232. pl = js["message"]["translations"]["pl"]
  233. if pl == "no":
  234. return True
  235. else:
  236. return False
  237. else:
  238. return False
  239. def get_streams(self, data):
  240. print "[filmix] get_streams:", data
  241. source,data,path,plist,clist,params,qs = self.parse_data(data)
  242. r = self.call(path)
  243. if not r:
  244. return []
  245. streams = []
  246. r = r.decode("cp1251").encode("utf8")
  247. title = title0 = util.unescape(re.search("titlePlayer = '([^']+)'", r, re.DOTALL).group(1))
  248. m = re.search('<meta itemprop="thumbnailUrl" content="([^"]+)',r,re.DOTALL)
  249. img = m.group(1) if m else self.img
  250. m = re.search('<meta itemprop="duration" content="([^"]+)" />', r, re.DOTALL)
  251. duration = "(%s)"%m.group(1) if m else ""
  252. m = re.search('<p itemprop="description"[^>]+>([^<]+)<', r, re.DOTALL)
  253. desc = desc0 = util.unescape(m.group(1).strip()) if m else ""
  254. #m = re.search('itemprop="contentUrl" content="(.+?)"', r, re.IGNORECASE | re.DOTALL)
  255. #if not m:
  256. # raise Exception("Can not find video link")
  257. # #return []
  258. #video_link = m.group(1)
  259. vid = plist[1]
  260. m = re.search(r"meta_key = \['(\w+)', '(\w+)', '(\w+)'\]", r, re.IGNORECASE)
  261. key = m.group(3) if m else ""
  262. js = self.get_movie_info(vid, key)
  263. series = True if js["message"]["translations"]["pl"] == "yes" else False
  264. translations = js["message"]["translations"]["html5"]
  265. if not series : # Filma
  266. for pl in translations:
  267. if translations[pl].startswith("http"):
  268. continue
  269. pl_link = translations[pl]
  270. lang = pl.encode("utf8")
  271. pl_link = self.decode_direct_media_url(pl_link)
  272. streams2 = self.get_streams2(pl_link)
  273. for st in streams2:
  274. stream = util.item()
  275. stream["url"]=st[1]
  276. stream["lang"]=lang
  277. stream["quality"]=st[0]
  278. stream["name"]= title
  279. stream["desc"]=desc
  280. streams.append(stream)
  281. return streams
  282. else: # Seriāls
  283. for pl in translations:
  284. if translations[pl].startswith("http"):
  285. continue
  286. pl_link = translations[pl]
  287. lang = pl.encode("utf8")
  288. pl_link = self.decode_direct_media_url(pl_link)
  289. #pl_link = video_link
  290. js = self._http_request(pl_link)
  291. js = self.decode_direct_media_url(js)
  292. js = json.loads(js)
  293. playlist = js["playlist"]
  294. if "e" in qs:
  295. if "s" in qs:
  296. s = int(qs["s"])
  297. else:
  298. s = None
  299. e = int(qs["e"])
  300. if s: # sezona + epizode
  301. if s > len(js["playlist"]) or e > len(js["playlist"][s-1]["playlist"]): continue
  302. serie = js["playlist"][s-1]["playlist"][e-1]["comment"].encode("utf8")
  303. title = title0+" - "+ serie
  304. url0 = js["playlist"][s-1]["playlist"][e-1]["file"].encode("utf8")
  305. else: # tikai epizode, nav sezonas
  306. if e > len(js["playlist"]): continue
  307. title = title0 +" - "+js["playlist"][e-1]["comment"].encode("utf8")
  308. serie = js["playlist"][e-1]["comment"].encode("utf8")
  309. url0 = js["playlist"][e-1]["file"].encode("utf8")
  310. streams2 = self.get_streams2(url0)
  311. for st in streams2:
  312. stream = util.item()
  313. stream["url"]=st[1]
  314. stream["lang"]=lang
  315. stream["quality"]=st[0]
  316. stream["name"]= title
  317. stream["desc"]=desc
  318. streams.append(stream)
  319. return streams
  320. def call(self, data,params=None,headers=None,lang=""):
  321. if not headers: headers = self.headers
  322. url = self.url+data
  323. result = self._http_request(url,params,headers=headers)
  324. return result
  325. def get_movie_info(self,vid,key=""):
  326. headers = headers2dict("""
  327. User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0
  328. Accept: application/json, text/javascript, */*; q=0.01
  329. Accept-Language: en-US,en;q=0.5
  330. Content-Type: application/x-www-form-urlencoded; charset=UTF-8
  331. X-Requested-With: XMLHttpRequest
  332. Referer: https://filmix.co/play/%s
  333. Cookie: ad_win12=1;
  334. """%vid )
  335. post_data = {"post_id":vid,"key=":key}
  336. r = util.post("https://filmix.co/api/movies/player_data", data=post_data, headers = headers)
  337. if not r:
  338. raise Exception("Can not get movie info")
  339. #return []
  340. js = json.loads(r)
  341. return js
  342. def decode_base64(self, encoded_url):
  343. codec_a = ("l", "u", "T", "D", "Q", "H", "0", "3", "G", "1", "f", "M", "p", "U", "a", "I", "6", "k", "d", "s", "b", "W", "5", "e", "y", "=")
  344. codec_b = ("w", "g", "i", "Z", "c", "R", "z", "v", "x", "n", "N", "2", "8", "J", "X", "t", "9", "V", "7", "4", "B", "m", "Y", "o", "L", "h")
  345. i = 0
  346. for a in codec_a:
  347. b = codec_b[i]
  348. i += 1
  349. encoded_url = encoded_url.replace(a, '___')
  350. encoded_url = encoded_url.replace(b, a)
  351. encoded_url = encoded_url.replace('___', b)
  352. return base64.b64decode(encoded_url)
  353. def decode_unicode(self, encoded_url):
  354. from itertools import izip_longest
  355. def grouper(n, iterable, fillvalue=None):
  356. "grouper(3, 'ABCDEFG', 'x') --> ABC DEF Gxx"
  357. args = [iter(iterable)] * n
  358. return izip_longest(fillvalue=fillvalue, *args)
  359. _ = (encoded_url[1:] if encoded_url.find('#') != -1 else encoded_url)
  360. tokens = map(lambda items: '\u0'+''.join(items), grouper(3, _))
  361. return ''.join(tokens).decode('unicode_escape')
  362. def decode_direct_media_url(self, encoded_url, checkhttp=False):
  363. if(checkhttp == True and (encoded_url.find('http://') != -1 or encoded_url.find('https://') != -1)):
  364. return False
  365. try:
  366. if encoded_url.find('#') != -1:
  367. return self.decode_unicode(encoded_url)
  368. else:
  369. return self.decode_base64(encoded_url)
  370. except:
  371. return False
  372. def decode_uppod_text(self, text):
  373. Client_codec_a = ["l", "u", "T", "D", "Q", "H", "0", "3", "G", "1", "f", "M", "p", "U", "a", "I", "6", "k", "d", "s", "b", "W", "5", "e", "y", "="]
  374. Client_codec_b = ["w", "g", "i", "Z", "c", "R", "z", "v", "x", "n", "N", "2", "8", "J", "X", "t", "9", "V", "7", "4", "B", "m", "Y", "o", "L", "h"]
  375. text = text.replace("\n", "").strip()
  376. for i in range(len(Client_codec_a)):
  377. char1 = Client_codec_b[i]
  378. char2 = Client_codec_a[i]
  379. text = text.replace(char1, "___")
  380. text = text.replace(char2, char1)
  381. text = text.replace("___", char2)
  382. result = base64.b64decode(text)
  383. print result
  384. return result
  385. def get_streams2(self,url0):
  386. m = re.search("\[([\d\w,]+)\]",url0)
  387. if not m:
  388. return [("?",url0)]
  389. res = m.group(1)
  390. streams=[]
  391. for res in res.split(","):
  392. if not res: continue
  393. if res in ["1080p"]: continue #TODO fullhd only in PRO+ version
  394. url=re.sub("\[[\d\w,]+\]",res,url0)
  395. streams.append((res,url))
  396. return streams
  397. if __name__ == "__main__":
  398. sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
  399. import run
  400. source = Source()
  401. data= sys.argv[1] if len(sys.argv)>1 else source.name+"::home"
  402. run.run(source, data)
  403. sys.exit()