more succinct processing function
This commit is contained in:
parent
7119fa481e
commit
e498e97cc0
@ -53,7 +53,11 @@ class PlaylistEngine:
|
|||||||
|
|
||||||
for param in params:
|
for param in params:
|
||||||
source = next((i for i in self.sources if isinstance(i, param.source_type)), None)
|
source = next((i for i in self.sources if isinstance(i, param.source_type)), None)
|
||||||
if source:
|
if source is None:
|
||||||
|
source = param.source_type(net=self.net)
|
||||||
|
self.sources.append(source)
|
||||||
|
logger.info(f'adding {param.source_type.__name__} source')
|
||||||
|
|
||||||
if source.loaded is False:
|
if source.loaded is False:
|
||||||
source.load()
|
source.load()
|
||||||
|
|
||||||
@ -61,17 +65,6 @@ class PlaylistEngine:
|
|||||||
tracks += source.process(params=param, uris=[i.uri for i in tracks])
|
tracks += source.process(params=param, uris=[i.uri for i in tracks])
|
||||||
else:
|
else:
|
||||||
tracks += source.process(params=param)
|
tracks += source.process(params=param)
|
||||||
else:
|
|
||||||
new_source = param.source_type(net=self.net)
|
|
||||||
new_source.load()
|
|
||||||
self.sources.append(new_source)
|
|
||||||
|
|
||||||
if isinstance(new_source, RecommendationSource) and isinstance(param, RecommendationSource.Params):
|
|
||||||
tracks += new_source.process(params=param, uris=[i.uri for i in tracks])
|
|
||||||
else:
|
|
||||||
tracks += new_source.process(params=param)
|
|
||||||
|
|
||||||
logger.info(f'adding {param.source_type.__name__} source')
|
|
||||||
|
|
||||||
if processors:
|
if processors:
|
||||||
for processor in processors:
|
for processor in processors:
|
||||||
|
Loading…
Reference in New Issue
Block a user