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

filmix.py 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  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.me"
  32. self.img = "filmix.png"
  33. self.desc = "filmix.me satura skatīšanās"
  34. self.country=country
  35. self.headers = headers2dict("""
  36. Host: filmix.me
  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.me/"
  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.me/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\.me/([^"]+)".*?>([^<]+)</', 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. for pl in translations:
  125. if translations[pl].startswith("http"):
  126. continue
  127. pl_link = translations[pl]
  128. lang = pl.encode("utf8")
  129. break
  130. else:
  131. raise Exception("No episodes list found!")
  132. #pl_link = js["message"]["translations"]["flash"].values()[0]
  133. # TODO process several players, currently taking the first
  134. #TODO - kļuda, vairs nesradā
  135. if not pl_link.startswith("http"):
  136. pl_link = self.decode_direct_media_url(pl_link)
  137. js = self._http_request(pl_link)
  138. js = self.decode_direct_media_url(js)
  139. js = json.loads(js)
  140. if "s" in qs:
  141. s = int(qs["s"])
  142. for i,ep in enumerate(js["playlist"][s-1]["playlist"]):
  143. title = title0+" - "+js["playlist"][s-1]["playlist"][i]["comment"].encode("utf8")
  144. serie = js["playlist"][s-1]["playlist"][i]["comment"].encode("utf8")
  145. data2 = data+"&e=%s"%(i+1)
  146. desc = serie +"\n"+desc0
  147. content.append((title,self.name+"::"+data2,img,desc))
  148. else:
  149. for i,ep in enumerate(js["playlist"]):
  150. title = title0 +" - "+js["playlist"][i]["comment"].encode("utf8")
  151. serie = js["playlist"][i]["comment"].encode("utf8")
  152. if "file" in ep and ep["file"]:
  153. data2 = data+"?e=%s"%(i+1)
  154. else:
  155. data2 = data+"?s=%s"%(i+1)
  156. desc = serie +"\n"+desc0
  157. content.append((title,self.name+"::"+data2,img,desc))
  158. return content
  159. #r = self._http_request(url)
  160. ### saraksts ###
  161. else:
  162. r = self.call(data)
  163. r = r.decode("cp1251").encode("utf8")
  164. content = self.process_list(r, content)
  165. if '<div class="navigation">' in r:
  166. m = re.search(r'href="https://filmix\.me/([^"]+)" class="next icon-arowRight btn-tooltip"', r, re.DOTALL)
  167. if m:
  168. data2 = m.group(1)
  169. else:
  170. m = re.search("/page/(\d)+",data)
  171. if m:
  172. page = int(m.group(1))+1
  173. data2 = re.sub("/page/(\d)+", "/page/%s"%page, data)
  174. else:
  175. data2 = data + "/page/2"
  176. content.append(("Next page",self.name+"::"+data2,"next.png","Next page"))
  177. return content
  178. def process_list(self, r, content):
  179. for r2 in re.findall('<article class="shortstory line".+?</article>', r, re.DOTALL):
  180. #m2 = re.search(r'<a class="watch icon-play" itemprop="url" href="([^"]+)"', r2, re.DOTALL)
  181. #<a class="watch icon-play" itemprop="url" href="https://filmix.me/dramy/110957-stolik-19-2017.html"
  182. #m = re.search(r'<a href="https://filmix\.me/play/(\d+)" class="watch icon-play">', r2, re.DOTALL)
  183. m = re.search(r'<a class="watch icon-play" itemprop="url" href="https://filmix.me/\w+/(\d+)-', r2, re.DOTALL)
  184. if not m: continue
  185. vid = m.group(1)
  186. data2 = "play/%s"%vid
  187. #title = re.search('itemprop="name">([^<]+)</div>', r2, re.DOTALL).group(1)
  188. title = re.search('itemprop="name" content="([^"]+)"', r2, re.DOTALL).group(1)
  189. m = re.search('itemprop="alternativeHeadline" content="([^"]+)"', r2, re.DOTALL)
  190. if m:
  191. title = title + "/"+m.group(1)
  192. m = re.search(r'img src="(https://filmix\.me/uploads/posters/thumbs/[^"]+)"', r2)
  193. img = m.group(1) if m else self.img
  194. m = re.search(r'<a itemprop="copyrightYear".+?>(\d+)<', r2, re.DOTALL)
  195. if m:
  196. title = "%s (%s)"%(title,m.group(1))
  197. title = util.unescape(title)
  198. m = re.search('<p itemprop="description">([^<]+)</p>', r2, re.DOTALL)
  199. desc0 = util.unescape(m.group(1)) if m else ""
  200. props = []
  201. genre = re.findall('<a itemprop="genre"[^>]+?">([^<]+)</a>', r2, re.DOTALL)
  202. genre = ",".join(genre)
  203. if genre: props.append(genre)
  204. m = re.search('<div class="quality">([^<]+)</div>', r2, re.DOTALL)
  205. if m: props.append(m.group(1))
  206. m = re.search('<div class="item translate".+?class="item-content">([^<]+)<', r2)
  207. if m: props.append(m.group(1))
  208. m = re.search('itemprop="director">([^<]+)</span></div>', r2)
  209. if m: props.append(m.group(1))
  210. m = re.search('<div class="item actors">(.+?)</div>', r2)
  211. if m:
  212. result = re.findall("<span>(.+?)(&nbsp;)*</span>", m.group(1))
  213. if result:
  214. actors = []
  215. for a in zip(*result)[0]:
  216. actors.append(re.sub("<.+?>", "", a))
  217. props.append(" ".join(actors))
  218. else:
  219. x = 1
  220. pass
  221. desc="%s\n%s\n\n%s"%(title, desc0, "\n".join(props))
  222. content.append((title,self.name+"::"+data2,img,desc))
  223. return content
  224. def is_video(self,data):
  225. source,data,path,plist,clist,params,qs = self.parse_data(data)
  226. if clist == "play" and "e=" in data:
  227. return True
  228. elif clist=="play" and not params:
  229. r = self.call(path)
  230. #r = r.decode("cp1251").encode("utf8")
  231. #m = re.search('itemprop="contentUrl" content="(.+?)"', r, re.IGNORECASE | re.DOTALL)
  232. #if not m:
  233. if u"Фильм <a href=" in r.decode("cp1251"):
  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. series = False if u"Фильм <a href=" in r.decode("utf8") else True
  260. vid = plist[1]
  261. m = re.search(r"meta_key = \['(\w+)', '(\w+)', '(\w+)'\]", r, re.IGNORECASE)
  262. key = m.group(3) if m else ""
  263. js = self.get_movie_info(vid,key)
  264. translations = js["message"]["translations"]["html5"]
  265. for pl in translations:
  266. if translations[pl].startswith("http"):
  267. continue
  268. pl_link = translations[pl]
  269. lang = pl.encode("utf8")
  270. break
  271. else:
  272. raise Exception("No episodes list found!")
  273. if not pl_link.startswith("http"):
  274. pl_link = self.decode_direct_media_url(pl_link)
  275. if not series : # Filma
  276. url0 = pl_link
  277. streams2 = self.get_streams2(url0)
  278. for st in streams2:
  279. stream = util.item()
  280. stream["url"]=st[1]
  281. stream["lang"]=lang
  282. stream["quality"]=st[0]
  283. stream["name"]= title
  284. stream["desc"]=desc
  285. streams.append(stream)
  286. return streams
  287. else: # Seriāls
  288. #pl_link = video_link
  289. js = self._http_request(pl_link)
  290. js = self.decode_direct_media_url(js)
  291. js = json.loads(js)
  292. if "e" in qs:
  293. if "s" in qs:
  294. s = int(qs["s"])
  295. else:
  296. s = None
  297. e = int(qs["e"])
  298. if s: # sezona + epizode
  299. serie = js["playlist"][s-1]["playlist"][e-1]["comment"].encode("utf8")
  300. title = title0+" - "+ serie
  301. url0 = js["playlist"][s-1]["playlist"][e-1]["file"].encode("utf8")
  302. else: # tikai epizode, nav sezonas
  303. title = title0 +" - "+js["playlist"][e-1]["comment"].encode("utf8")
  304. serie = js["playlist"][e-1]["comment"].encode("utf8")
  305. url0 = js["playlist"][e-1]["file"].encode("utf8")
  306. streams2 = self.get_streams2(url0)
  307. for st in streams2:
  308. stream = util.item()
  309. stream["url"]=st[1]
  310. stream["lang"]=lang
  311. stream["quality"]=st[0]
  312. stream["name"]= title
  313. stream["desc"]=desc
  314. streams.append(stream)
  315. return streams
  316. def call(self, data,params=None,headers=None,lang=""):
  317. if not headers: headers = self.headers
  318. url = self.url+data
  319. result = self._http_request(url,params,headers=headers)
  320. return result
  321. def get_movie_info(self,vid,key=""):
  322. headers = headers2dict("""
  323. User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0
  324. Accept: application/json, text/javascript, */*; q=0.01
  325. Accept-Language: en-US,en;q=0.5
  326. Content-Type: application/x-www-form-urlencoded; charset=UTF-8
  327. X-Requested-With: XMLHttpRequest
  328. Referer: https://filmix.me/play/%s
  329. Cookie: ad_win12=1;
  330. """%vid )
  331. post_data = {"post_id":vid,"key=":key}
  332. r = util.post("https://filmix.me/api/movies/player_data", data=post_data, headers = headers)
  333. if not r:
  334. raise Exception("Can not get movie info")
  335. #return []
  336. js = json.loads(r)
  337. return js
  338. def decode_base64(self, encoded_url):
  339. 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", "=")
  340. 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")
  341. i = 0
  342. for a in codec_a:
  343. b = codec_b[i]
  344. i += 1
  345. encoded_url = encoded_url.replace(a, '___')
  346. encoded_url = encoded_url.replace(b, a)
  347. encoded_url = encoded_url.replace('___', b)
  348. return base64.b64decode(encoded_url)
  349. def decode_unicode(self, encoded_url):
  350. from itertools import izip_longest
  351. def grouper(n, iterable, fillvalue=None):
  352. "grouper(3, 'ABCDEFG', 'x') --> ABC DEF Gxx"
  353. args = [iter(iterable)] * n
  354. return izip_longest(fillvalue=fillvalue, *args)
  355. _ = (encoded_url[1:] if encoded_url.find('#') != -1 else encoded_url)
  356. tokens = map(lambda items: '\u0'+''.join(items), grouper(3, _))
  357. return ''.join(tokens).decode('unicode_escape')
  358. def decode_direct_media_url(self, encoded_url, checkhttp=False):
  359. if(checkhttp == True and (encoded_url.find('http://') != -1 or encoded_url.find('https://') != -1)):
  360. return False
  361. try:
  362. if encoded_url.find('#') != -1:
  363. return self.decode_unicode(encoded_url)
  364. else:
  365. return self.decode_base64(encoded_url)
  366. except:
  367. return False
  368. def decode_uppod_text(self, text):
  369. 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", "="]
  370. 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"]
  371. text = text.replace("\n", "").strip()
  372. for i in range(len(Client_codec_a)):
  373. char1 = Client_codec_b[i]
  374. char2 = Client_codec_a[i]
  375. text = text.replace(char1, "___")
  376. text = text.replace(char2, char1)
  377. text = text.replace("___", char2)
  378. result = base64.b64decode(text)
  379. print result
  380. return result
  381. def get_streams2(self,url0):
  382. m = re.search("\[([\d\w,]+)\]",url0)
  383. if not m:
  384. return [("?",url0)]
  385. res = m.group(1)
  386. streams=[]
  387. for res in res.split(","):
  388. if not res: continue
  389. if res in ["1080p"]: continue #TODO fullhd only in PRO+ version
  390. url=re.sub("\[[\d\w,]+\]",res,url0)
  391. streams.append((res,url))
  392. return streams
  393. if __name__ == "__main__":
  394. sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
  395. import run
  396. source = Source()
  397. data= sys.argv[1] if len(sys.argv)>1 else source.name+"::home"
  398. run.run(source, data)
  399. sys.exit()