73 lines
3 KiB
Python
73 lines
3 KiB
Python
import urllib.request
|
|
|
|
class kodi():
|
|
def __init__(self,url="10.0.1.102"):
|
|
self.kodiurl="http://"+url+"/jsonrpc?request=%7B%22jsonrpc%22:%20%222.0%22,%20%22method%22:%20%22Player.GetItem%22,%20%22params%22:%20%7B%20%22properties%22:%20%5B%22title%22,%20%22album%22,%20%22artist%22,%20%22season%22,%20%22episode%22,%20%22duration%22,%20%22showtitle%22,%20%22tvshowid%22,%20%22thumbnail%22,%20%22file%22,%20%22fanart%22,%20%22streamdetails%22%5D,%20%22playerid%22:%201%20%7D,%20%22id%22:%20%22VideoGetItem%22%7D"
|
|
self.jsonString = self.JSON_holen
|
|
|
|
@property
|
|
def JSON_holen(self):
|
|
try:
|
|
antwort = urllib.request.urlopen(self.kodiurl)
|
|
b = (antwort.read())
|
|
self.jsonString = b.decode("utf-8")
|
|
return self.jsonString
|
|
except:
|
|
return None
|
|
|
|
def Suchen_nach(self, suchstring, json=""):
|
|
if json=="":
|
|
self.jsonString=self.JSON_holen
|
|
else:
|
|
self.jsonString=json
|
|
start = len(suchstring) + 3
|
|
ende = len(self.jsonString)
|
|
position = self.jsonString.find("\"" + suchstring, 46,ende)
|
|
if position > 0:
|
|
position2 = self.jsonString.find(",\"", position,ende)
|
|
wert = (self.jsonString[position + start:position2])
|
|
x = 0
|
|
while wert.isalnum() is False and x < 2:
|
|
wert = wert.strip("\"}][{")
|
|
x = x + 1
|
|
return wert
|
|
return None
|
|
|
|
def kodiitem(self, koditems=None):
|
|
if koditems is None:
|
|
koditems = {'episode': "", 'label': "", 'season': "", 'showtitle': "", 'type': "", 'title': ""}
|
|
a = self.JSON_holen
|
|
if a != None:
|
|
for i in koditems:
|
|
string = self.Suchen_nach(i, a)
|
|
if type(string)==str:
|
|
string = string.replace("ä", "ae").replace("Ä", "Ae").replace("ö", "oe").replace("Ö", "oe").replace(
|
|
"ü", "ue").replace("Ü", "Ue").replace(" ", "_").replace("-1","").replace("_"," ")
|
|
elif string == None:
|
|
string =""
|
|
koditems[i] = string
|
|
if "type" in koditems == "episode":
|
|
if len("season" in koditems) == 1:
|
|
koditems["season"] = "S0" + koditems["season"]
|
|
else:
|
|
koditems["season"] = "S" + koditems["season"]
|
|
if len(koditems["episode"]) == 1:
|
|
koditems["episode"] = "E0" + koditems["episode"]
|
|
else:
|
|
koditems["episode"] = "E" + koditems["episode"]
|
|
if "type" in koditems:
|
|
test = self.Suchen_nach("label", a)
|
|
if koditems["type"] =="unknown" and test !="":
|
|
koditems["type"]="Stream"
|
|
return koditems
|
|
|
|
items = {"episode": "","width": "","duration":"","type":""}
|
|
|
|
sz = kodi("10.0.1.101")
|
|
wz = kodi("10.0.1.102")
|
|
|
|
print((sz.kodiitem()))
|
|
print((sz.JSON_holen))
|
|
print((wz.kodiitem()))
|
|
print((wz.JSON_holen))
|
|
|