Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add mobile_client.get_top_songs() to "Liked Songs" #60

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions clay/gp.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ class Track(object):
SOURCE_STATION = 'station'
SOURCE_PLAYLIST = 'playlist'
SOURCE_SEARCH = 'search'
SOURCE_TOP = 'top'

def __init__(self, source, data):
# In playlist items and user uploaded songs the storeIds are missing so
Expand Down Expand Up @@ -478,6 +479,10 @@ def add_liked_song(self, song):
"""
Add a liked song to the list.
"""
for track in self._tracks:
if track.store_id == song.store_id:
return

self._tracks.insert(0, song)

def remove_liked_song(self, song):
Expand Down Expand Up @@ -601,6 +606,10 @@ def get_all_tracks(self):
"""
if self.cached_tracks:
return self.cached_tracks

for track in Track.from_data(self.mobile_client.get_top_songs(), Track.SOURCE_TOP, True):
pass

data = self.mobile_client.get_all_songs()
self.cached_tracks = Track.from_data(data, Track.SOURCE_LIBRARY, True)

Expand Down