2015-06-02 02:27:43 +00:00
|
|
|
"""
|
|
|
|
PlexConfig
|
|
|
|
"""
|
|
|
|
from collections import defaultdict
|
2015-06-15 02:45:22 +00:00
|
|
|
try:
|
|
|
|
from ConfigParser import ConfigParser # Python2
|
|
|
|
except ImportError:
|
|
|
|
from configparser import ConfigParser # Python3
|
2015-06-02 02:27:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PlexConfig(ConfigParser):
|
|
|
|
|
|
|
|
def __init__(self, path):
|
|
|
|
ConfigParser.__init__(self)
|
|
|
|
self.read(path)
|
|
|
|
self.data = self._as_dict()
|
|
|
|
|
|
|
|
def get(self, key, default=None, cast=None):
|
|
|
|
try:
|
|
|
|
section, name = key.split('.')
|
|
|
|
value = self.data.get(section.lower(), {}).get(name.lower(), default)
|
|
|
|
return cast(value) if cast else value
|
|
|
|
except:
|
|
|
|
return default
|
|
|
|
|
|
|
|
def _as_dict(self):
|
|
|
|
config = defaultdict(dict)
|
|
|
|
for section in self._sections:
|
|
|
|
for name, value in self._sections[section].items():
|
|
|
|
if name != '__name__':
|
|
|
|
config[section.lower()][name.lower()] = value
|
|
|
|
return dict(config)
|
2016-03-16 03:47:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
def reset_base_headers():
|
|
|
|
import plexapi
|
|
|
|
return {
|
|
|
|
'X-Plex-Platform': plexapi.X_PLEX_PLATFORM,
|
|
|
|
'X-Plex-Platform-Version': plexapi.X_PLEX_PLATFORM_VERSION,
|
|
|
|
'X-Plex-Provides': plexapi.X_PLEX_PROVIDES,
|
|
|
|
'X-Plex-Product': plexapi.X_PLEX_PRODUCT,
|
|
|
|
'X-Plex-Version': plexapi.X_PLEX_VERSION,
|
|
|
|
'X-Plex-Device': plexapi.X_PLEX_DEVICE,
|
|
|
|
'X-Plex-Client-Identifier': plexapi.X_PLEX_IDENTIFIER,
|
|
|
|
}
|