added a makefile and made shellcheck happy for 'shelltube'
This commit is contained in:
parent
d0585eef1f
commit
507886fafe
|
@ -0,0 +1,3 @@
|
||||||
|
install:
|
||||||
|
mkdir -p $(PREFIX)/bin
|
||||||
|
cp shellcheck lib/* $(PREFIX)/bin/
|
236
shelltube
236
shelltube
|
@ -21,148 +21,118 @@
|
||||||
# [ ] Overall better interface
|
# [ ] Overall better interface
|
||||||
# [ ] Cli args as commands
|
# [ ] Cli args as commands
|
||||||
|
|
||||||
function search() {
|
search() {
|
||||||
output="/tmp/yt-search-$RANDOM"
|
output="$(mktemp /tmp/yt-XXXXXX)"
|
||||||
yt-search -i "$1" $output
|
yt-search -i "$1" "$output"
|
||||||
selected_video=$(cat $output)
|
selected_video="$(cat "$output")"
|
||||||
metadata
|
|
||||||
}
|
|
||||||
|
|
||||||
function channel() {
|
|
||||||
output="/tmp/yt-channel-$RANDOM"
|
|
||||||
if echo "$1" | grep "^UC" > /dev/null
|
|
||||||
then
|
|
||||||
yt-channel -ic "$1" $output
|
|
||||||
else
|
|
||||||
yt-channel -iu "$1" $output
|
|
||||||
fi
|
|
||||||
selected_video=$(cat $output)
|
|
||||||
metadata
|
|
||||||
}
|
|
||||||
|
|
||||||
function interactive() {
|
|
||||||
get_input
|
|
||||||
}
|
|
||||||
|
|
||||||
function about() {
|
|
||||||
echo -e "\033[0;35mShelltube v0.4"
|
|
||||||
echo -e "\033[0;32mDesc: \033[0;34mYT client written in shell."
|
|
||||||
echo -e "\033[0;32mMain: \033[0;34mjadedml@openmailbox.org"
|
|
||||||
echo -e "\033[0;32mLisc: \033[0;34mISC; yt-down GPLv2\033[0m"
|
|
||||||
}
|
|
||||||
|
|
||||||
function metadata() {
|
|
||||||
yt-meta "$selected_video"
|
yt-meta "$selected_video"
|
||||||
}
|
}
|
||||||
|
|
||||||
function download() {
|
channel() {
|
||||||
yt-down "$selected_video"
|
output="$(mktemp -u /tmp/yt-channel-XXXXXXX)"
|
||||||
|
case "$1" in
|
||||||
|
UC* )
|
||||||
|
yt-channel -ic "$1" "$output"
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
yt-channel -iu "$1" "$output"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
selected_video="$(cat "$output")"
|
||||||
|
yt-meta "$selected_video"
|
||||||
}
|
}
|
||||||
|
|
||||||
function stream() {
|
about() {
|
||||||
yt-down -s "$selected_video"
|
printf '\033[35mShelltube v0.4\033[m\n'
|
||||||
|
printf '\033[32mDesc: \033[0;34mYT client written in shell.\033[m\n'
|
||||||
|
printf '\033[32mMain: \033[0;34mjadedml@openmailbox.org\033[m\n'
|
||||||
|
printf '\033[32mLisc: \033[0;34mISC; yt-down GPLv2\033[m\n'
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_input() {
|
help() {
|
||||||
printf "\033[0;34m$selected_video \033[0;32m>>\033[0m "
|
printf "\
|
||||||
read -r n
|
about | ! View the about page.
|
||||||
if [ "$n" == "help" ] || [ "$n" == "?" ]
|
clear | cls Clear the screen.
|
||||||
then
|
download | dl Download the selected video.
|
||||||
|
exit | ctrl+c Exit Shelltube.
|
||||||
|
help | ? Display this message.
|
||||||
|
metadata | md Display selected video's metadata.
|
||||||
|
search | / Perform a search.
|
||||||
|
channel | chan Show newest videos of a channel.
|
||||||
|
stream | str Stream the selected video.
|
||||||
|
video | sel | url Select video based on URL or ID.
|
||||||
|
Note about usage:
|
||||||
|
Both 'video ID; download' and 'download ID' are valid. You don't need to
|
||||||
|
select a video to run commands on it, but if you use metadata, download, or
|
||||||
|
stream on an unselected video you must specify the ID or URL after the command.
|
||||||
|
"
|
||||||
|
}
|
||||||
|
|
||||||
|
parse() {
|
||||||
|
command="$1" argument="$2"
|
||||||
|
|
||||||
|
case "$command" in
|
||||||
|
help | '?' )
|
||||||
help
|
help
|
||||||
interactive
|
;;
|
||||||
elif echo "$n" | grep "^search " > /dev/null
|
search )
|
||||||
then
|
search "$argument"
|
||||||
search "$(echo "$n" | sed 's/search //')"
|
;;
|
||||||
interactive
|
/* )
|
||||||
elif echo "$n" | grep "^/" > /dev/null
|
search "${command#/}"
|
||||||
then
|
;;
|
||||||
search "$(echo "$n" | sed 's^/^^')"
|
channel )
|
||||||
interactive
|
channel "$argument"
|
||||||
elif echo "$n" | grep "^channel " > /dev/null
|
;;
|
||||||
then
|
chan )
|
||||||
channel "$(echo "$n" | sed 's/channel //')"
|
channel "$argument"
|
||||||
interactive
|
;;
|
||||||
elif echo "$n" | grep "^chan " > /dev/null
|
video | sel | url | metadata | md )
|
||||||
then
|
case "$argument" in
|
||||||
channel "$(echo "$n" | sed 's/chan //')"
|
*youtube.com* )
|
||||||
interactive
|
selected_video="$argument"
|
||||||
elif echo "$n" | grep "^video " > /dev/null
|
;;
|
||||||
then
|
*)
|
||||||
if echo "$n" | grep "youtube.com"
|
selected_video="$argument"
|
||||||
then
|
;;
|
||||||
selected_video="$(echo "$n" | sed 's/.*watch?v=//')"
|
esac
|
||||||
else
|
yt-meta "$selected_video"
|
||||||
selected_video="$(echo "$n" | sed 's/video //')"
|
;;
|
||||||
fi
|
download | dl )
|
||||||
metadata
|
yt-down "$selected_video"
|
||||||
interactive
|
;;
|
||||||
elif echo "$n" | grep "^sel " > /dev/null
|
stream | str )
|
||||||
then
|
yt-down -s "$selected_video"
|
||||||
if echo "$n" | grep "youtube.com"
|
;;
|
||||||
then
|
about | ! )
|
||||||
selected_video="$(echo "$n" | sed 's/.*watch?v=//')"
|
|
||||||
else
|
|
||||||
selected_video="$(echo "$n" | sed 's/sel //')"
|
|
||||||
fi
|
|
||||||
metadata
|
|
||||||
interactive
|
|
||||||
elif echo "$n" | grep "^url " > /dev/null
|
|
||||||
then
|
|
||||||
if echo "$n" | grep "youtube.com"
|
|
||||||
then
|
|
||||||
selected_video="$(echo "$n" | sed 's/.*watch?v=//')"
|
|
||||||
else
|
|
||||||
selected_video="$(echo "$n" | sed 's/url //')"
|
|
||||||
fi
|
|
||||||
metadata
|
|
||||||
interactive
|
|
||||||
elif [ "$n" == "download" ] || [ "$n" == "dl" ]
|
|
||||||
then
|
|
||||||
download
|
|
||||||
interactive
|
|
||||||
elif [ "$n" == "metadata" ] || [ "$n" == "md" ]
|
|
||||||
then
|
|
||||||
metadata
|
|
||||||
interactive
|
|
||||||
elif [ "$n" == "stream" ] || [ "$n" == "str" ]
|
|
||||||
then
|
|
||||||
stream
|
|
||||||
interactive
|
|
||||||
elif [ "$n" == "about" ] || [ "$n" == "!" ]
|
|
||||||
then
|
|
||||||
about
|
about
|
||||||
interactive
|
;;
|
||||||
elif [ "$n" == "clear" ] || [ "$n" == "cls" ]
|
clear | cls )
|
||||||
then
|
printf '\033[H\033[J'
|
||||||
clear
|
;;
|
||||||
interactive
|
exit )
|
||||||
elif [ "$n" == "exit" ]
|
rm -f "/tmp/yt-$$"
|
||||||
then
|
|
||||||
rm /tmp/yt-*
|
|
||||||
exit
|
exit
|
||||||
else
|
;;
|
||||||
get_input
|
'' ) ;;
|
||||||
fi
|
* )
|
||||||
|
printf 'unknown command: "%s"\ntry "help"\n' "$command"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
function help() {
|
printf '\033[35mShelltube v%s\033[m\n' 0.3
|
||||||
echo "about | ! View the about page."
|
|
||||||
echo "clear | cls Clear the screen."
|
if [ "$#" -gt 0 ]
|
||||||
echo "download | dl Download the selected video."
|
then
|
||||||
echo "exit | ctrl+c Exit Shelltube."
|
for arg in "$@"
|
||||||
echo "help | ? Display this message."
|
do
|
||||||
echo "metadata | md Display selected video's metadata."
|
parse "${arg%% *}" "${arg#* }"
|
||||||
echo "search | / Perform a search."
|
done
|
||||||
echo "channel | chan Show newest videos of a channel."
|
else
|
||||||
echo "stream | str Stream the selected video."
|
while printf '\033[0;34m%s \033[0;32m>>\033[m ' "$selected_video"
|
||||||
echo "video | sel | url Select video based on URL or ID."
|
do
|
||||||
echo "Note about usage:"
|
read -r command argument
|
||||||
echo "Both 'video ID; download' and 'download ID' are valid."
|
parse "$command" "$argument"
|
||||||
echo "You don't need to select a video to run commands on it,"
|
done
|
||||||
echo "but if you use metadata, download, or stream on an"
|
fi
|
||||||
echo "unselected video you must specify the ID or URL after the"
|
|
||||||
echo "command."
|
|
||||||
}
|
|
||||||
|
|
||||||
echo -e "\033[0;35mShelltube v0.3"
|
|
||||||
interactive
|
|
||||||
|
|
Reference in New Issue