Skip to content

Commit 17d60c0

Browse files
committed
Use user id from spotify session instead of config file
Fixes #80
1 parent 7148053 commit 17d60c0

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

src/spotify_to_tidal/sync.py

+12-7
Original file line numberDiff line numberDiff line change
@@ -365,20 +365,25 @@ def get_user_playlist_mappings(spotify_session: spotipy.Spotify, tidal_session:
365365
return results
366366

367367
async def get_playlists_from_spotify(spotify_session: spotipy.Spotify, config):
368-
# get all the user playlists from the Spotify account
368+
# get all the playlists from the Spotify account
369369
playlists = []
370370
print("Loading Spotify playlists")
371-
results = spotify_session.current_user_playlists()
371+
first_results = spotify_session.current_user_playlists()
372372
exclude_list = set([x.split(':')[-1] for x in config.get('excluded_playlists', [])])
373-
playlists.extend([p for p in results['items'] if p['owner']['id'] == config['spotify']['username'] and not p['id'] in exclude_list])
373+
playlists.extend([p for p in first_results['items']])
374+
user_id = spotify_session.current_user()['id']
374375

375376
# get all the remaining playlists in parallel
376-
if results['next']:
377-
offsets = [ results['limit'] * n for n in range(1, math.ceil(results['total']/results['limit'])) ]
377+
if first_results['next']:
378+
offsets = [ first_results['limit'] * n for n in range(1, math.ceil(first_results['total']/first_results['limit'])) ]
378379
extra_results = await atqdm.gather( *[asyncio.to_thread(spotify_session.current_user_playlists, offset=offset) for offset in offsets ] )
379380
for extra_result in extra_results:
380-
playlists.extend([p for p in extra_result['items'] if p['owner']['id'] == config['spotify']['username'] and not p['id'] in exclude_list])
381-
return playlists
381+
playlists.extend([p for p in extra_result['items']])
382+
383+
# filter out playlists that don't belong to us or are on the exclude list
384+
my_playlist_filter = lambda p: p['owner']['id'] == user_id
385+
exclude_filter = lambda p: not p['id'] in exclude_list
386+
return list(filter( exclude_filter, filter( my_playlist_filter, playlists )))
382387

383388
def get_playlists_from_config(spotify_session: spotipy.Spotify, tidal_session: tidalapi.Session, config):
384389
# get the list of playlist sync mappings from the configuration file

0 commit comments

Comments
 (0)