summaryrefslogtreecommitdiff
path: root/plugin.video.newsmaxtv/resources/lib
diff options
context:
space:
mode:
authorLunatixz <Lunatixz@users.noreply.github.com>2017-09-06 22:13:27 -0400
committerlearningit <scottyroscoe13@gmail.com>2017-09-06 22:13:27 -0400
commit5a1845689c66678f39a3192295b505ca674ca796 (patch)
treedbbdc4277cf687c033a3a49d725101d9f5f8033d /plugin.video.newsmaxtv/resources/lib
parentab64a4f38367cdd29fd63a3a38bc02072729c2dc (diff)
[plugin.video.newsmaxtv] 1.0.0 (#1396)
Diffstat (limited to 'plugin.video.newsmaxtv/resources/lib')
-rw-r--r--plugin.video.newsmaxtv/resources/lib/__init__.py0
-rw-r--r--plugin.video.newsmaxtv/resources/lib/newsmaxtv.py166
2 files changed, 166 insertions, 0 deletions
diff --git a/plugin.video.newsmaxtv/resources/lib/__init__.py b/plugin.video.newsmaxtv/resources/lib/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/plugin.video.newsmaxtv/resources/lib/__init__.py
diff --git a/plugin.video.newsmaxtv/resources/lib/newsmaxtv.py b/plugin.video.newsmaxtv/resources/lib/newsmaxtv.py
new file mode 100644
index 0000000..2846685
--- /dev/null
+++ b/plugin.video.newsmaxtv/resources/lib/newsmaxtv.py
@@ -0,0 +1,166 @@
+# Copyright (C) 2017 Lunatixz
+#
+#
+# This file is part of NewsmaxTV.
+#
+# NewsmaxTV is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# NewsmaxTV is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with NewsmaxTV. If not, see <http://www.gnu.org/licenses/>.
+
+# -*- coding: utf-8 -*-
+import os, sys, time, datetime, re, traceback
+import urllib, urllib2, socket, json
+import xbmc, xbmcgui, xbmcplugin, xbmcaddon
+
+from simplecache import SimpleCache
+
+# Plugin Info
+ADDON_ID = 'plugin.video.newsmaxtv'
+REAL_SETTINGS = xbmcaddon.Addon(id=ADDON_ID)
+ADDON_NAME = REAL_SETTINGS.getAddonInfo('name')
+SETTINGS_LOC = REAL_SETTINGS.getAddonInfo('profile')
+ADDON_PATH = REAL_SETTINGS.getAddonInfo('path').decode('utf-8')
+ADDON_VERSION = REAL_SETTINGS.getAddonInfo('version')
+ICON = REAL_SETTINGS.getAddonInfo('icon')
+FANART = REAL_SETTINGS.getAddonInfo('fanart')
+LANGUAGE = REAL_SETTINGS.getLocalizedString
+
+## GLOBALS ##
+TIMEOUT = 30
+DEBUG = REAL_SETTINGS.getSetting('Enable_Debugging') == 'true'
+BASE_URL = 'http://www.newsmaxtv.com'
+YT_URL = 'plugin://plugin.video.youtube/user/NewsmaxTV/'
+YT_LIVE = 'plugin://plugin.video.youtube/play/?video_id=q6HJt7Ki6ng'
+
+def log(msg, level=xbmc.LOGDEBUG):
+ if DEBUG == True:
+ if level == xbmc.LOGERROR:
+ msg += ' ,' + traceback.format_exc()
+ xbmc.log(ADDON_ID + '-' + ADDON_VERSION + '-' + (msg), level)
+
+def getParams():
+ param=[]
+ if len(sys.argv[2])>=2:
+ params=sys.argv[2]
+ cleanedparams=params.replace('?','')
+ if (params[len(params)-1]=='/'):
+ params=params[0:len(params)-2]
+ pairsofparams=cleanedparams.split('&')
+ param={}
+ for i in range(len(pairsofparams)):
+ splitparams={}
+ splitparams=pairsofparams[i].split('=')
+ if (len(splitparams))==2:
+ param[splitparams[0]]=splitparams[1]
+ return param
+
+socket.setdefaulttimeout(TIMEOUT)
+class Newsmax(object):
+ def __init__(self):
+ log('__init__')
+ self.cache = SimpleCache()
+
+
+ def openURL(self, url):
+ log('openURL, url = ' + str(url))
+ try:
+ cacheResponse = self.cache.get(ADDON_NAME + '.openURL, url = %s'%url)
+ if not cacheResponse:
+ request = urllib2.Request(url)
+ request.add_header('User-Agent','Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)')
+ response = urllib2.urlopen(request, timeout=TIMEOUT).read()
+ self.cache.set(ADDON_NAME + '.openURL, url = %s'%url, response, expiration=datetime.timedelta(hours=6))
+ return self.cache.get(ADDON_NAME + '.openURL, url = %s'%url)
+ except urllib2.URLError, e:
+ log("openURL Failed! " + str(e), xbmc.LOGERROR)
+ except socket.timeout, e:
+ log("openURL Failed! " + str(e), xbmc.LOGERROR)
+ except Exception, e:
+ log("openURL Failed! " + str(e), xbmc.LOGERROR)
+ xbmcgui.Dialog().notification(ADDON_NAME, LANGUAGE(30001), ICON, 4000)
+ return ''
+
+
+ def buildMainMenu(self):
+ self.addLink('Live' ,'',0)
+ self.addYoutube('Browse',YT_URL)
+
+
+ def buildLiveLink(self):
+ log('buildLiveLink')
+ try:
+ #parse for youtube live feed, may not be necessary. However its useful if the site changes feeds, fallback live youtube feed.
+ site = json.loads(self.openURL(BASE_URL).split('<script type="application/ld+json">')[1].split('</script>')[0])['embedUrl']
+ data = ((self.openURL(site).replace('\n','').replace('\r','').replace('\t','').replace('\\','')).split('"entryResult":')[1]).split(',"recordedEntryId"')[0]+'}}'
+ url = 'https://'+((re.compile('https://(.+?)m3u8', re.DOTALL).search(data)).group(1))+'m3u8'
+ except:
+ url = YT_LIVE
+ self.playVideo('NewsmaxTV Live',url)
+
+
+ def playVideo(self, name, url, liz=None):
+ log('playVideo')
+ if not liz:
+ liz = xbmcgui.ListItem(name, path=url)
+ xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, liz)
+
+
+ def addLink(self, name, u, mode, infoList=False, infoArt=False, total=0):
+ name = name.encode("utf-8")
+ log('addLink, name = ' + name)
+ liz=xbmcgui.ListItem(name)
+ liz.setProperty('IsPlayable', 'true')
+ if infoList == False:
+ liz.setInfo(type="Video", infoLabels={"mediatype":"video","label":name,"title":name,"genre":"News"})
+ else:
+ liz.setInfo(type="Video", infoLabels=infoList)
+
+ if infoArt == False:
+ liz.setArt({'thumb':ICON,'fanart':FANART})
+ else:
+ liz.setArt(infoArt)
+ u=sys.argv[0]+"?url="+urllib.quote_plus(u)+"&mode="+str(mode)+"&name="+urllib.quote_plus(name)
+ xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=u,listitem=liz,totalItems=total)
+
+
+ def addYoutube(self, title, url):
+ liz=xbmcgui.ListItem(title)
+ liz.setProperty('IsPlayable', 'false')
+ liz.setInfo(type="Video", infoLabels={"label":title,"title":title} )
+ liz.setArt({'thumb':ICON,'fanart':FANART})
+ xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=url,listitem=liz,isFolder=True)
+
+params=getParams()
+try:
+ url=urllib.unquote_plus(params["url"])
+except:
+ url=None
+try:
+ name=urllib.unquote_plus(params["name"])
+except:
+ name=None
+try:
+ mode=int(params["mode"])
+except:
+ mode=None
+
+log("Mode: "+str(mode))
+log("URL : "+str(url))
+log("Name: "+str(name))
+
+if mode==None: Newsmax().buildMainMenu()
+if mode == 0: Newsmax().buildLiveLink()
+elif mode == 9: Newsmax().playVideo(name, url)
+
+xbmcplugin.addSortMethod(int(sys.argv[1]) , xbmcplugin.SORT_METHOD_NONE )
+xbmcplugin.addSortMethod(int(sys.argv[1]) , xbmcplugin.SORT_METHOD_LABEL )
+xbmcplugin.endOfDirectory(int(sys.argv[1]),cacheToDisc=True) \ No newline at end of file