mirror of
https://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-22 21:49:19 +02:00
Add view artists and their albums
This commit is contained in:
parent
a1765500ed
commit
a654768958
|
@ -1,5 +1,6 @@
|
||||||
from src.fw_api import s, select_instance, instance
|
from src.fw_api import s, select_instance, instance
|
||||||
from src.fw_radios import list_radios
|
from src.fw_radios import list_radios
|
||||||
|
from src.fw_artists import list_artists
|
||||||
import json, sys
|
import json, sys
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
from pyfzf.pyfzf import FzfPrompt
|
from pyfzf.pyfzf import FzfPrompt
|
||||||
|
@ -10,8 +11,11 @@ def main():
|
||||||
logger.remove()
|
logger.remove()
|
||||||
logger.add(sys.stderr, filter='src.fw_api')
|
logger.add(sys.stderr, filter='src.fw_api')
|
||||||
logger.add(sys.stderr, filter='src.fw_radios')
|
logger.add(sys.stderr, filter='src.fw_radios')
|
||||||
|
logger.add(sys.stderr, filter='src.fw_artists')
|
||||||
while True:
|
while True:
|
||||||
menu =['Radios', 'Switch instance']
|
menu = ['Radios',
|
||||||
|
'Artists',
|
||||||
|
'Switch instance']
|
||||||
if not s.headers.get('Authorization'):
|
if not s.headers.get('Authorization'):
|
||||||
menu.append('Sign in')
|
menu.append('Sign in')
|
||||||
ids = fzf.prompt(menu)
|
ids = fzf.prompt(menu)
|
||||||
|
@ -19,6 +23,8 @@ def main():
|
||||||
selected = ids[0]
|
selected = ids[0]
|
||||||
if selected == 'Radios':
|
if selected == 'Radios':
|
||||||
list_radios()
|
list_radios()
|
||||||
|
if selected == 'Artists':
|
||||||
|
list_artists()
|
||||||
if selected == 'Switch instance':
|
if selected == 'Switch instance':
|
||||||
with open('config.json', 'rt') as f:
|
with open('config.json', 'rt') as f:
|
||||||
conf = json.loads(f.read())
|
conf = json.loads(f.read())
|
||||||
|
|
|
@ -0,0 +1,49 @@
|
||||||
|
from src.fw_api import get_artists, get_tracks, get_albums, concatinate_endpoint
|
||||||
|
import src.fw_artists
|
||||||
|
from src.mpv_control import player, player_menu
|
||||||
|
from pyfzf.pyfzf import FzfPrompt
|
||||||
|
from loguru import logger
|
||||||
|
|
||||||
|
fzf = FzfPrompt()
|
||||||
|
|
||||||
|
@logger.catch
|
||||||
|
def list_albums(albums=None, pg=None):
|
||||||
|
albums_next = None
|
||||||
|
albums_prev = None
|
||||||
|
if not albums:
|
||||||
|
albums = get_albums(pg=pg)
|
||||||
|
albums_next = albums.get('next')
|
||||||
|
albums_prev = albums.get('previous')
|
||||||
|
albums_results = albums.get('results')
|
||||||
|
else:
|
||||||
|
albums_results = albums
|
||||||
|
view = ['Play all']
|
||||||
|
if albums_next:
|
||||||
|
view.append('Next page')
|
||||||
|
if albums_prev:
|
||||||
|
view.append('Prev page')
|
||||||
|
|
||||||
|
for i in albums_results:
|
||||||
|
index = albums_results.index(i)
|
||||||
|
album_name = i.get('title')
|
||||||
|
view.append(f'{index}.{album_name}')
|
||||||
|
select = fzf.prompt(view)[0].split('.', 1)[0]
|
||||||
|
if select == 'Next page':
|
||||||
|
list_albums(pg=albums_next)
|
||||||
|
elif select == 'Prev page':
|
||||||
|
list_albums(pg=albums_prev)
|
||||||
|
elif select == 'Play all':
|
||||||
|
src.fw_artists.play_artist(albums_results[0].get('artist'))
|
||||||
|
else:
|
||||||
|
play_album(album_id=albums_results[int(select)].get('id'))
|
||||||
|
|
||||||
|
|
||||||
|
def play_album(album_id):
|
||||||
|
tracks = get_tracks(album=album_id)
|
||||||
|
tracks_results = tracks.get('results')
|
||||||
|
storage = {}
|
||||||
|
for i in tracks_results:
|
||||||
|
listen_url = concatinate_endpoint(i.get('listen_url'))
|
||||||
|
storage[listen_url] = i
|
||||||
|
player.loadfile(listen_url, 'append-play')
|
||||||
|
player_menu("Album playing...", storage)
|
|
@ -1,4 +1,4 @@
|
||||||
from src.mpv_control import player
|
from src.mpv_control import set_http_header
|
||||||
import requests, json, time
|
import requests, json, time
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
|
|
||||||
|
@ -13,10 +13,10 @@ if token:
|
||||||
s.headers.update({
|
s.headers.update({
|
||||||
"Authorization": "Bearer " + token
|
"Authorization": "Bearer " + token
|
||||||
})
|
})
|
||||||
player.http_header_fields = ['Authorization: ' + 'Bearer ' + token]
|
set_http_header(['Authorization: ' + 'Bearer ' + token])
|
||||||
else:
|
else:
|
||||||
s.get(f'https://{instance}/') # Get cookies from unauthorized instance for working some functionality (radios)
|
s.get(f'https://{instance}/') # Get cookies from unauthorized instance for working some functionality (radios)
|
||||||
player.http_header_fields = []
|
set_http_header()
|
||||||
|
|
||||||
|
|
||||||
def select_instance(new_instance=None):
|
def select_instance(new_instance=None):
|
||||||
|
@ -26,20 +26,22 @@ def select_instance(new_instance=None):
|
||||||
auth = json.loads(f.read())
|
auth = json.loads(f.read())
|
||||||
new_token = auth.get(instance)
|
new_token = auth.get(instance)
|
||||||
s.headers.update({"Authorization": None})
|
s.headers.update({"Authorization": None})
|
||||||
player.http_header_fields = []
|
set_http_header()
|
||||||
if new_token:
|
if new_token:
|
||||||
s.get(f'https://{instance}')
|
s.get(f'https://{instance}')
|
||||||
s.headers.update({
|
s.headers.update({
|
||||||
"Authorization": "Bearer " + new_token
|
"Authorization": "Bearer " + new_token
|
||||||
})
|
})
|
||||||
player.http_header_fields = ['Authorization: ' + 'Bearer ' + new_token]
|
player.http_header_fields = ['Authorization: ' + 'Bearer ' + new_token]
|
||||||
|
set_http_header(['Authorization: ' + 'Bearer ' + token])
|
||||||
|
|
||||||
|
|
||||||
def concatinate_endpoint(endpoint):
|
def concatinate_endpoint(endpoint):
|
||||||
return 'https://' + instance + endpoint
|
return 'https://' + instance + endpoint
|
||||||
|
|
||||||
|
|
||||||
def list_tracks(page=None, q=None, artist=None, album=None, favourites=None):
|
@logger.catch
|
||||||
|
def get_tracks(page=None, q=None, artist=None, album=None, favourites=None, pg=None):
|
||||||
'''This function get tracks by params'''
|
'''This function get tracks by params'''
|
||||||
params = {
|
params = {
|
||||||
'page': page,
|
'page': page,
|
||||||
|
@ -48,11 +50,46 @@ def list_tracks(page=None, q=None, artist=None, album=None, favourites=None):
|
||||||
'album': album,
|
'album': album,
|
||||||
'favourites': favourites
|
'favourites': favourites
|
||||||
}
|
}
|
||||||
|
if pg:
|
||||||
r = requests.get(f'https://{instance}/api/v1/tracks', params)
|
r = s.get(pg)
|
||||||
|
else:
|
||||||
|
r = s.get(f'https://{instance}/api/v1/tracks', params=params)
|
||||||
return r.json()
|
return r.json()
|
||||||
|
|
||||||
|
|
||||||
|
@logger.catch
|
||||||
|
def get_artists(page=None, q=None, artist=None, album=None, favourites=None, pg=None):
|
||||||
|
'''This function get artists by params'''
|
||||||
|
params = {
|
||||||
|
'page': page,
|
||||||
|
'q': q,
|
||||||
|
'artist': artist,
|
||||||
|
'album': album,
|
||||||
|
'favourites': favourites
|
||||||
|
}
|
||||||
|
if pg:
|
||||||
|
r = s.get(pg)
|
||||||
|
else:
|
||||||
|
r = s.get(f'https://{instance}/api/v1/artists', params=params)
|
||||||
|
return r.json()
|
||||||
|
|
||||||
|
|
||||||
|
@logger.catch
|
||||||
|
def get_albums(page=None, q=None, artist=None, pg=None):
|
||||||
|
'''This function get artists by params'''
|
||||||
|
params = {
|
||||||
|
'page': page,
|
||||||
|
'q': q,
|
||||||
|
'artist': artist
|
||||||
|
}
|
||||||
|
if pg:
|
||||||
|
r = s.get(pg)
|
||||||
|
else:
|
||||||
|
r = s.get(f'https://{instance}/api/v1/albums', params=params)
|
||||||
|
return r.json()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def list_libraries(page=None, page_size=None, q=None, scope='all'):
|
def list_libraries(page=None, page_size=None, q=None, scope='all'):
|
||||||
params = {
|
params = {
|
||||||
'page': page,
|
'page': page,
|
||||||
|
@ -60,7 +97,7 @@ def list_libraries(page=None, page_size=None, q=None, scope='all'):
|
||||||
'q': q,
|
'q': q,
|
||||||
'scope': scope,
|
'scope': scope,
|
||||||
}
|
}
|
||||||
r = requests.get(f'https://{instance}/api/v1/libraries', params)
|
r = s.get(f'https://{instance}/api/v1/libraries', params)
|
||||||
return r.json()
|
return r.json()
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
from src.fw_api import get_artists, get_tracks, concatinate_endpoint
|
||||||
|
from src.fw_albums import list_albums
|
||||||
|
from src.mpv_control import player, player_menu
|
||||||
|
from pyfzf.pyfzf import FzfPrompt
|
||||||
|
from loguru import logger
|
||||||
|
|
||||||
|
fzf = FzfPrompt()
|
||||||
|
|
||||||
|
@logger.catch
|
||||||
|
def list_artists(pg=None):
|
||||||
|
artists = get_artists(pg=pg)
|
||||||
|
artists_next = artists.get('next')
|
||||||
|
artists_prev = artists.get('previous')
|
||||||
|
artists_results = artists.get('results')
|
||||||
|
view = []
|
||||||
|
if artists_next:
|
||||||
|
view.append('Next page')
|
||||||
|
if artists_prev:
|
||||||
|
view.append('Prev page')
|
||||||
|
|
||||||
|
for i in artists_results:
|
||||||
|
index = artists_results.index(i)
|
||||||
|
artist_name = i.get('name')
|
||||||
|
view.append(f'{index}.{artist_name}')
|
||||||
|
select = fzf.prompt(view)[0].split('.', 1)[0]
|
||||||
|
if select == 'Next page':
|
||||||
|
list_artists(pg=artists_next)
|
||||||
|
elif select == 'Prev page':
|
||||||
|
list_artists(pg=artists_prev)
|
||||||
|
else:
|
||||||
|
list_albums(albums=artists_results[int(select)].get('albums'))
|
||||||
|
|
||||||
|
|
||||||
|
def play_artist(artist_id):
|
||||||
|
tracks = get_tracks(artist=artist_id)
|
||||||
|
tracks_results = tracks.get('results')
|
||||||
|
storage = {}
|
||||||
|
for i in tracks_results:
|
||||||
|
listen_url = concatinate_endpoint(i.get('listen_url'))
|
||||||
|
storage[listen_url] = i
|
||||||
|
player.loadfile(listen_url, 'append-play')
|
||||||
|
player_menu("Artist playing...", storage)
|
Loading…
Reference in New Issue