mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 10:16:11 +00:00
create a empty sources.xml to work with if one does not exist
This commit is contained in:
parent
f5f1589aa6
commit
1971eb8655
1 changed files with 27 additions and 25 deletions
|
@ -86,30 +86,32 @@ def addKodiSource(name, path, type):
|
||||||
else:
|
else:
|
||||||
error = True
|
error = True
|
||||||
|
|
||||||
if error:
|
# add it to sources.xml
|
||||||
# if adding to the database failed, manually add it to sources.xml
|
sourcesFile = xbmc.translatePath( "special://profile/sources.xml" )
|
||||||
sourcesFile = xbmc.translatePath( "special://profile/sources.xml" )
|
|
||||||
if xbmcvfs.exists(sourcesFile):
|
|
||||||
tree = ET.ElementTree(file=sourcesFile)
|
|
||||||
root = tree.getroot()
|
|
||||||
videosources = root.find("video")
|
|
||||||
#remove any existing entries for this path
|
|
||||||
allsources = videosources.findall("source")
|
|
||||||
if allsources != None:
|
|
||||||
for source in allsources:
|
|
||||||
if source.find("name").text == name:
|
|
||||||
videosources.remove(source)
|
|
||||||
# add the new source
|
|
||||||
source = SubElement(videosources,'source')
|
|
||||||
SubElement(source, "name").text = name
|
|
||||||
SubElement(source, "path").text = path
|
|
||||||
tree.write(sourcesFile)
|
|
||||||
#return bool that reboot is needed and manual add of path to kodi
|
|
||||||
return True
|
|
||||||
else:
|
|
||||||
#return false that no reboot is needed
|
|
||||||
return False
|
|
||||||
|
|
||||||
|
# add an emply sources file to work with
|
||||||
|
if xbmcvfs.exists(sourcesFile) == False:
|
||||||
|
sources = Element("sources")
|
||||||
|
video = SubElement(sources, "video")
|
||||||
|
ET.ElementTree(sources).write(sourcesFile)
|
||||||
|
|
||||||
|
if xbmcvfs.exists(sourcesFile):
|
||||||
|
tree = ET.ElementTree(file=sourcesFile)
|
||||||
|
root = tree.getroot()
|
||||||
|
videosources = root.find("video")
|
||||||
|
#remove any existing entries for this path
|
||||||
|
allsources = videosources.findall("source")
|
||||||
|
if allsources != None:
|
||||||
|
for source in allsources:
|
||||||
|
if source.find("name").text == name:
|
||||||
|
videosources.remove(source)
|
||||||
|
# add the new source
|
||||||
|
source = SubElement(videosources,'source')
|
||||||
|
SubElement(source, "name").text = name
|
||||||
|
SubElement(source, "path").text = path
|
||||||
|
tree.write(sourcesFile)
|
||||||
|
#return bool that reboot is needed and manual add of path to kodi
|
||||||
|
#return True
|
||||||
|
|
||||||
|
|
||||||
def checkAuthentication():
|
def checkAuthentication():
|
||||||
|
|
Loading…
Reference in a new issue