Compare commits

..

No commits in common. "9f37a52a642d7d20e3259e61d521f1ec259e49e1" and "88d619f304122d2f256273bfbe284924aaf6a9e4" have entirely different histories.

3 changed files with 7 additions and 8 deletions

View file

@ -45,9 +45,8 @@ def main():
instance_title = i.get('value') instance_title = i.get('value')
instance_stats = [] instance_stats = []
for k, v in ins_nodeinfo['metadata']['library'].items(): for k, v in ins_nodeinfo['metadata']['library'].items():
if k == 'anonymousCanListen' and v == False and not current_instance.s.headers.get('Authorization'): if k == 'anonymousCanListen' and v == False:
instance_stats.append(f'!!! {k}: {v} !!!') instance_stats.append(f'!!! {k}: {v} !!!')
menu = ['Switch instance', 'About instance']
continue continue
instance_stats.append(f'{k}: {v}') instance_stats.append(f'{k}: {v}')
instance_stats.append(ins_nodeinfo['software']['version']) instance_stats.append(ins_nodeinfo['software']['version'])
@ -55,8 +54,8 @@ def main():
main_menu_header = quote(f'''{instance_title}\n{instance_stats}'''.strip()) main_menu_header = quote(f'''{instance_title}\n{instance_stats}'''.strip())
except Exception as E: except Exception as E:
splitted = ':\n'.join(str(E).split(':')) time.sleep(1)
main_menu_header = quote(f'''Connection failed:\n{splitted}'''.strip()) main_menu_header = quote(f'''Connection failed: {E}'''.strip())
menu = ['Switch instance'] menu = ['Switch instance']
if not current_instance.s.headers.get('Authorization'): if not current_instance.s.headers.get('Authorization'):

View file

@ -37,14 +37,13 @@ def list_albums(albums=None, pg=None, search=None, artist=None, library=None, in
for i in albums_results: for i in albums_results:
index = albums_results.index(i) index = albums_results.index(i)
album_name = i.get('title') album_name = i.get('title')
album_tracks_count = i.get('tracks_count') option_str = f'{index}.{album_name}'
option_str = f'{index}.{album_name} | {album_tracks_count}'
artist_name = i.get('artist') artist_name = i.get('artist')
if show_artist_name_in_albums and isinstance(artist_name, dict): if show_artist_name_in_albums and isinstance(artist_name, dict):
artist_name = artist_name.get('name') artist_name = artist_name.get('name')
option_str += f' | {artist_name}' option_str += f' | Artist: {artist_name}'
view.append(f'{option_str}') view.append(f'{option_str}')
select = fzf.prompt(view, '--header=\'map: album | tracks count | opt. artist\'')[0].split('.', 1)[0] select = fzf.prompt(view)[0].split('.', 1)[0]
if select == 'Next page': if select == 'Next page':
list_albums(pg=albums_next) list_albums(pg=albums_next)
elif select == 'Prev page': elif select == 'Prev page':

View file

@ -68,6 +68,7 @@ def get_me():
return resp return resp
@logger.catch
def get_instance_settings(): def get_instance_settings():
r = current_instance.s.get( r = current_instance.s.get(
f'https://{current_instance.instance}/api/v1/instance/settings') f'https://{current_instance.instance}/api/v1/instance/settings')