funkwlmpv/funkwhale-cli.sh

120 lines
3.7 KiB
Bash
Raw Normal View History

2022-03-29 23:47:33 +00:00
#!/bin/sh
instance=$(jj -i config.json instance)
2022-03-29 23:47:33 +00:00
ordering='title'
2022-03-31 16:23:14 +00:00
default_player_command='mpv --no-vid --no-ytdl'
2022-03-29 23:47:33 +00:00
funkwhale_api_check_api_limits()
{
2022-03-31 16:59:33 +00:00
curl -s --compressed "https://$instance/api/v1/rate-limit/" | jj -p
2022-03-29 23:47:33 +00:00
}
funkwhale_api_get_tracks()
{
2022-03-31 16:59:33 +00:00
get_json=$(curl -s --compressed "https://$instance/api/v1/tracks?ordering=$ordering&playable=true&page=$1" 2>&1 | tee preload)
jj -i preload -l 'results.#.uploads.0.listen_url' | sed 's/"//g'
2022-03-29 23:47:33 +00:00
}
2022-03-31 16:23:14 +00:00
funkwhale_api_get_tracks_from_channel()
2022-03-29 23:47:33 +00:00
{
2022-03-31 16:59:33 +00:00
track_list=$(curl -s --compressed "https://$instance/api/v1/tracks?channel=$1&playable=true&include_channels=true")
2022-03-31 16:23:14 +00:00
echo "Loaded $(echo $track_list | jj count) podcasts"
echo $track_list | jj -l results.#.title
listen_urls=$(echo $track_list | jj -l results.#.listen_url | sed 's/"//g')
echo > podcast.m3u8
for i in $listen_urls; do
echo "https://$instance$i\n" >> podcast.m3u8
done
$default_player_command podcast.m3u8
}
funkwhale_get_podcasts_artists()
{
echo 'Loading podcast artists...'
2022-03-31 16:59:33 +00:00
curl -s --compressed --output preload "https://$instance/api/v1/artists?ordering=-creation_date&playable=true&include_channels=true&content_category=podcast&page=$1"
2022-03-31 16:23:14 +00:00
counter=0
count_artists=$(jj -i preload count)
echo "$count_artists avalaible"
artist_channels=$(jj -i preload -l 'results.#.channel.uuid' | sed 's/"//g')
artist_names=$(mktemp)
temp_artists=$(mktemp)
for i in $artist_channels; do
jj -i preload results."$counter".name | sed 's/\./_/g' >> $artist_names
jj -i $temp_artists -v "$i" -o $temp_artists "$(jj -i preload results.$counter.name | sed 's/\./_/g')"
counter=$(expr $counter + 1)
done
menu_artist_choice=$(cat $artist_names | fzy)
channel_uuid=$(jj -i $temp_artists "$menu_artist_choice")
funkwhale_api_get_tracks_from_channel $channel_uuid
2022-03-29 23:47:33 +00:00
}
load_tracks_to_playlist()
{
2022-03-30 15:36:18 +00:00
echo "Loading page $1 ..."
echo '#EXTM3U\n' > playlist.m3u8
counter_titles=0
for i in $(funkwhale_api_get_tracks $1); do
title=$(jj -i preload results."$counter_titles".title)
echo "#EXTINF:-1, $counter_titles - $title" >> playlist.m3u8
2022-03-30 15:36:18 +00:00
counter_titles=$(expr $counter_titles + 1)
echo "https://$instance$i\n" >> playlist.m3u8
2022-03-29 23:47:33 +00:00
done
count_tracks_results=$(jj -i preload 'results.#')
if [ -z $count_tracks_results ]; then
echo 'Error: Page empty or 500 Internal Server Error'
else
echo "Loaded $count_tracks_results tracks"
fi
2022-03-29 23:47:33 +00:00
}
2022-03-30 16:58:30 +00:00
get_all_avalaible_count_tracks()
{
funkwhale_api_get_tracks 1 1>> /dev/null
count_all_tracks=$(jj -i preload -l count)
2022-03-30 16:58:30 +00:00
echo "Tracks avalaible on $instance: $count_all_tracks\n"
}
get_all_avalaible_count_tracks
2022-03-29 23:47:33 +00:00
downloadtrackspls='Download tracks in playlist'
startplayer='Start player'
2022-03-31 16:23:14 +00:00
podcasts='Podcasts'
2022-03-30 16:58:30 +00:00
changepod='Switch instance'
2022-03-29 23:47:33 +00:00
checkapilimits='Check API limits (debug)'
Exit='Exit'
while true; do
2022-03-31 16:23:14 +00:00
choice=$(echo "$downloadtrackspls\n$startplayer\n$podcasts\n$changepod\n$checkapilimits\n$Exit" | fzy)
2022-03-29 23:47:33 +00:00
if [ "$choice" = "$downloadtrackspls" ]; then
2022-03-30 18:13:25 +00:00
echo 'Order by (prefix - is DESC ordering):'
ordering=$(echo 'title\n-title\ncreation_date\n-creation_date\nrelease_date\n-release_date\nrandom' | fzy)
2022-03-30 18:13:25 +00:00
export ordering
2022-03-29 23:47:33 +00:00
echo 'Enter page number: '
read page
load_tracks_to_playlist $page
elif [ "$choice" = "$startplayer" ]; then
2022-03-31 16:23:14 +00:00
$default_player_command playlist.m3u8
elif [ "$choice" = "$podcasts" ]; then
echo 'Enter page number: '
read page
funkwhale_get_podcasts_artists $page
2022-03-30 16:58:30 +00:00
elif [ "$choice" = "$changepod" ]; then
echo "Type instance (ex. $instance):"
read instance
export instance
conf_instance_state=$(echo 'Permanent\nTemporaly' | fzy)
if [ "$conf_instance_state" = 'Permanent' ]; then
jj -i config.json instance -v $instance -o config.json
else
echo ''
fi
2022-03-30 16:58:30 +00:00
clear
get_all_avalaible_count_tracks
2022-03-29 23:47:33 +00:00
elif [ "$choice" = "$checkapilimits" ]; then
funkwhale_api_check_api_limits | more
elif [ "$choice" = "$Exit" ]; then
exit 0
fi
done