mirror of
https://github.com/kmein/niveum
synced 2026-03-19 19:41:08 +01:00
pls: download on like
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
gnused,
|
gnused,
|
||||||
curl,
|
curl,
|
||||||
nur,
|
nur,
|
||||||
|
downloadDirectory ? "~/mobile/audio/Musik/radiomitschnitt"
|
||||||
}: let
|
}: let
|
||||||
playlistAPI = "https://radio.lassul.us";
|
playlistAPI = "https://radio.lassul.us";
|
||||||
|
|
||||||
@@ -104,8 +105,19 @@ in
|
|||||||
writers.writeDashBin "pls" ''
|
writers.writeDashBin "pls" ''
|
||||||
case "$1" in
|
case "$1" in
|
||||||
good|like|cool|nice|noice|top|yup|yass|yes|+)
|
good|like|cool|nice|noice|top|yup|yass|yes|+)
|
||||||
${curl}/bin/curl -sS -XPOST "${playlistAPI}/good"
|
response=$(${curl}/bin/curl -sS -XPOST "${playlistAPI}/good")
|
||||||
echo ${lib.escapeShellArg (lib.concatStringsSep "\n" messages.good)} | shuf -n1 | ${sendIRC}
|
echo ${lib.escapeShellArg (lib.concatStringsSep "\n" messages.good)} | shuf -n1 | ${sendIRC}
|
||||||
|
|
||||||
|
# Download the song if a download URL is provided in the string (youtu.be)
|
||||||
|
downloadUrl=$(echo "$response" | grep -oE 'https?://(www\.)?(youtube\.com|youtu\.be)/[^\s]+')
|
||||||
|
if [ -n "$downloadUrl" ]; then
|
||||||
|
echo "Downloading song from URL: $downloadUrl"
|
||||||
|
mkdir -p ${lib.escapeShellArg downloadDirectory}
|
||||||
|
cd ${lib.escapeShellArg downloadDirectory}
|
||||||
|
${download} "$downloadUrl"
|
||||||
|
else
|
||||||
|
echo "No download URL found in the response: $response"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
skip|next|bad|sucks|no|nope|flop|-)
|
skip|next|bad|sucks|no|nope|flop|-)
|
||||||
${curl}/bin/curl -sS -XPOST "${playlistAPI}/skip"
|
${curl}/bin/curl -sS -XPOST "${playlistAPI}/skip"
|
||||||
|
|||||||
Reference in New Issue
Block a user