mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-31 21:36:13 +00:00
Begin restructing, fixed some issues related to movement
This commit is contained in:
parent
6be8213b34
commit
84b8093171
72 changed files with 16 additions and 34 deletions
133
jellyfin_kodi/helper/xmls.py
Normal file
133
jellyfin_kodi/helper/xmls.py
Normal file
|
@ -0,0 +1,133 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
#################################################################################################
|
||||
|
||||
import logging
|
||||
import os
|
||||
import xml.etree.ElementTree as etree
|
||||
|
||||
import xbmc
|
||||
|
||||
from . import _, indent, write_xml, dialog, settings
|
||||
|
||||
#################################################################################################
|
||||
|
||||
LOG = logging.getLogger("JELLYFIN." + __name__)
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
||||
def sources():
|
||||
|
||||
''' Create master lock compatible sources.
|
||||
Also add the kodi.jellyfin.media source.
|
||||
'''
|
||||
path = xbmc.translatePath("special://profile/").decode('utf-8')
|
||||
file = os.path.join(path, 'sources.xml')
|
||||
|
||||
try:
|
||||
xml = etree.parse(file).getroot()
|
||||
except Exception:
|
||||
|
||||
xml = etree.Element('sources')
|
||||
video = etree.SubElement(xml, 'video')
|
||||
files = etree.SubElement(xml, 'files')
|
||||
etree.SubElement(video, 'default', attrib={'pathversion': "1"})
|
||||
etree.SubElement(files, 'default', attrib={'pathversion': "1"})
|
||||
|
||||
video = xml.find('video')
|
||||
count_http = 1
|
||||
count_smb = 1
|
||||
|
||||
for source in xml.findall('.//path'):
|
||||
if source.text == 'smb://':
|
||||
count_smb -= 1
|
||||
elif source.text == 'http://':
|
||||
count_http -= 1
|
||||
|
||||
if not count_http and not count_smb:
|
||||
break
|
||||
else:
|
||||
for protocol in ('smb://', 'http://'):
|
||||
if (protocol == 'smb://' and count_smb > 0) or (protocol == 'http://' and count_http > 0):
|
||||
|
||||
source = etree.SubElement(video, 'source')
|
||||
etree.SubElement(source, 'name').text = "Jellyfin"
|
||||
etree.SubElement(source, 'path', attrib={'pathversion': "1"}).text = protocol
|
||||
etree.SubElement(source, 'allowsharing').text = "true"
|
||||
|
||||
try:
|
||||
files = xml.find('files')
|
||||
|
||||
if files is None:
|
||||
files = etree.SubElement(xml, 'files')
|
||||
|
||||
for source in xml.findall('.//path'):
|
||||
# TODO get a repo url
|
||||
if source.text == 'http://kodi.jellyfin.media':
|
||||
break
|
||||
else:
|
||||
source = etree.SubElement(files, 'source')
|
||||
etree.SubElement(source, 'name').text = "kodi.jellyfin.media"
|
||||
etree.SubElement(source, 'path', attrib={'pathversion': "1"}).text = "http://kodi.jellyfin.media"
|
||||
etree.SubElement(source, 'allowsharing').text = "true"
|
||||
except Exception as error:
|
||||
LOG.exception(error)
|
||||
|
||||
indent(xml)
|
||||
write_xml(etree.tostring(xml, 'UTF-8'), file)
|
||||
|
||||
|
||||
def tvtunes_nfo(path, urls):
|
||||
|
||||
''' Create tvtunes.nfo
|
||||
'''
|
||||
try:
|
||||
xml = etree.parse(path).getroot()
|
||||
except Exception:
|
||||
xml = etree.Element('tvtunes')
|
||||
|
||||
for elem in xml.getiterator('tvtunes'):
|
||||
for file in list(elem):
|
||||
elem.remove(file)
|
||||
|
||||
for url in urls:
|
||||
etree.SubElement(xml, 'file').text = url
|
||||
|
||||
indent(xml)
|
||||
write_xml(etree.tostring(xml, 'UTF-8'), path)
|
||||
|
||||
|
||||
def advanced_settings():
|
||||
|
||||
''' Track the existence of <cleanonupdate>true</cleanonupdate>
|
||||
It is incompatible with plugin paths.
|
||||
'''
|
||||
if settings('useDirectPaths') != "0":
|
||||
return
|
||||
|
||||
path = xbmc.translatePath("special://profile/").decode('utf-8')
|
||||
file = os.path.join(path, 'advancedsettings.xml')
|
||||
|
||||
try:
|
||||
xml = etree.parse(file).getroot()
|
||||
except Exception:
|
||||
return
|
||||
|
||||
video = xml.find('videolibrary')
|
||||
|
||||
if video is not None:
|
||||
cleanonupdate = video.find('cleanonupdate')
|
||||
|
||||
if cleanonupdate is not None and cleanonupdate.text == "true":
|
||||
|
||||
LOG.warning("cleanonupdate disabled")
|
||||
video.remove(cleanonupdate)
|
||||
|
||||
indent(xml)
|
||||
write_xml(etree.tostring(xml, 'UTF-8'), path)
|
||||
|
||||
dialog("ok", heading="{jellyfin}", line1=_(33097))
|
||||
xbmc.executebuiltin('RestartApp')
|
||||
|
||||
return True
|
Loading…
Add table
Add a link
Reference in a new issue