Add Plex type to sync progress bar
This commit is contained in:
parent
4fca9b56c4
commit
da7d871af8
2 changed files with 15 additions and 2 deletions
|
@ -8,7 +8,7 @@ from pstats import Stats
|
||||||
from StringIO import StringIO
|
from StringIO import StringIO
|
||||||
|
|
||||||
from . import common
|
from . import common
|
||||||
from .. import backgroundthread, utils
|
from .. import backgroundthread, utils, variables as v
|
||||||
|
|
||||||
LOG = getLogger('PLEX.sync.process_metadata')
|
LOG = getLogger('PLEX.sync.process_metadata')
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ class ProcessMetadata(backgroundthread.KillableThread, common.libsync_mixin):
|
||||||
except ZeroDivisionError:
|
except ZeroDivisionError:
|
||||||
progress = 0
|
progress = 0
|
||||||
self.dialog.update(progress,
|
self.dialog.update(progress,
|
||||||
self.section_name,
|
'%s: %s' % (self.section_type_text, self.section_name),
|
||||||
'%s/%s: %s'
|
'%s/%s: %s'
|
||||||
% (self.current, self.total, self.title))
|
% (self.current, self.total, self.title))
|
||||||
|
|
||||||
|
@ -93,6 +93,8 @@ class ProcessMetadata(backgroundthread.KillableThread, common.libsync_mixin):
|
||||||
self.processed = 0
|
self.processed = 0
|
||||||
self.total = section.total
|
self.total = section.total
|
||||||
self.section_name = section.name
|
self.section_name = section.name
|
||||||
|
self.section_type_text = utils.lang(
|
||||||
|
v.TRANSLATION_FROM_PLEXTYPE[section.plex_type])
|
||||||
profile = Profile()
|
profile = Profile()
|
||||||
profile.enable()
|
profile.enable()
|
||||||
with section.context(self.last_sync) as context:
|
with section.context(self.last_sync) as context:
|
||||||
|
|
|
@ -332,6 +332,17 @@ REMAP_TYPE_FROM_PLEXTYPE = {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
TRANSLATION_FROM_PLEXTYPE = {
|
||||||
|
PLEX_TYPE_MOVIE: 342,
|
||||||
|
PLEX_TYPE_EPISODE: 20360,
|
||||||
|
PLEX_TYPE_SEASON: 20373,
|
||||||
|
PLEX_TYPE_SHOW: 20343,
|
||||||
|
PLEX_TYPE_SONG: 134,
|
||||||
|
PLEX_TYPE_ARTIST: 133,
|
||||||
|
PLEX_TYPE_ALBUM: 132,
|
||||||
|
PLEX_TYPE_PHOTO: 1,
|
||||||
|
}
|
||||||
|
|
||||||
REMAP_TYPE_FROM_PLEXTYPE = {
|
REMAP_TYPE_FROM_PLEXTYPE = {
|
||||||
'movie': 'movie',
|
'movie': 'movie',
|
||||||
'show': 'tv',
|
'show': 'tv',
|
||||||
|
|
Loading…
Reference in a new issue