mirror of https://github.com/morpheus65535/bazarr
70 lines
2.1 KiB
Python
70 lines
2.1 KiB
Python
from plex.core.idict import idict
|
|
from plex.interfaces.core.base import Interface
|
|
|
|
|
|
class SectionInterface(Interface):
|
|
path = 'library/sections'
|
|
|
|
def all(self, key):
|
|
response = self.http.get(key, 'all')
|
|
|
|
return self.parse(response, idict({
|
|
'MediaContainer': ('MediaContainer', idict({
|
|
'Directory': {
|
|
'artist': 'Artist',
|
|
'show': 'Show'
|
|
},
|
|
'Video': {
|
|
'movie': 'Movie'
|
|
}
|
|
}))
|
|
}))
|
|
|
|
def recently_added(self, key):
|
|
response = self.http.get(key, 'recentlyAdded')
|
|
|
|
return self.parse(response, idict({
|
|
'MediaContainer': ('MediaContainer', idict({
|
|
'Directory': {
|
|
'artist': 'Artist',
|
|
'show': 'Show'
|
|
},
|
|
'Video': {
|
|
'movie': 'Movie',
|
|
'episode': 'Episode',
|
|
'clip': 'Clip',
|
|
}
|
|
}))
|
|
}))
|
|
|
|
def first_character(self, key, character=None):
|
|
if character:
|
|
response = self.http.get(key, ['firstCharacter', character])
|
|
|
|
# somehow plex wrongly returns items of other libraries when character is #
|
|
return self.parse(response, idict({
|
|
'MediaContainer': ('MediaContainer', idict({
|
|
'Directory': {
|
|
'album': 'Album',
|
|
'artist': 'Artist',
|
|
|
|
'season': 'Season',
|
|
'show': 'Show'
|
|
},
|
|
'Video': {
|
|
'episode': 'Episode',
|
|
'clip': 'Clip',
|
|
'movie': 'Movie'
|
|
},
|
|
'Track': 'Track'
|
|
}))
|
|
}))
|
|
|
|
response = self.http.get(key, 'firstCharacter')
|
|
|
|
return self.parse(response, idict({
|
|
'MediaContainer': ('MediaContainer', idict({
|
|
'Directory': 'Directory'
|
|
}))
|
|
}))
|