Refactor to read and write playlist to file

This commit is contained in:
Shahin Agha-Ghassem 2023-03-19 12:12:44 +01:00
parent 4cd68f1787
commit 67533b2ffb

29
iptv
View File

@ -6,9 +6,18 @@ fi
m3u=$1
tmp_playlist="/tmp/iptvtemp"
tmp_channels="/tmp/iptvchannels"
config_path="$HOME/.config/iptv/"
channels_file="$config_path/channels"
tmp_playlist="/tmp/iptvplaylist"
mkdir -p "$config_path"
if [ -z "$m3u" ] && [ ! -s "$channels_file" ]; then
echo "No M3U playlist has been configured. Run with: iptv http://domain/playlist.m3u"
exit 1
fi
if [ ! -z "$m3u" ]; then
printf "\nLoading channels... "
curl -s $m3u | grep EXTINF: -A 1 > $tmp_playlist
printf "Done!\n"
@ -27,10 +36,20 @@ for (( i=0; i<${#lines[@]}; i+=2 )); do
done
printf "Done!\n"
printf "%s\n" "${channels[@]}" > $tmp_channels
selected=$(cat "$tmp_channels" | sed 's/ [^ ]*$//' | fzf)
printf "%s\n" "${channels[@]}" > $channels_file
echo "Playlist saved. Now run iptv again without a M3U URL."
exit
fi
selected=$(cat "$channels_file" | sed 's/ [^ ]*$//' | fzf)
if [ ! -n "$selected" ]; then
exit 1
fi
selected_channel=$(echo "$selected" | sed 's/.*\(\[CH:[0-9]\+\]\).*/\1/')
selected_channel_line=$(cat "$tmp_channels" | grep -F "$selected_channel")
selected_channel_line=$(cat "$channels_file" | grep -F "$selected_channel")
selected_channel_url=$(echo "$selected_channel_line" | grep -oP 'url:\K.*' | tr -d '\r')
selected_channel_name=$(echo "$selected_channel_line" | sed 's/\(.*\) url:.*/\1/')