stockholm/lass/2configs/radio.nix

360 lines
11 KiB
Nix
Raw Normal View History

2016-05-21 11:47:09 +00:00
{ config, pkgs, ... }:
2016-05-25 14:22:48 +00:00
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2016-05-25 14:22:48 +00:00
2016-05-21 11:47:09 +00:00
let
name = "radio";
mainUser = config.users.extraUsers.mainUser;
2020-04-05 09:46:38 +00:00
music_dir = "/home/radio/music";
2016-05-25 14:22:48 +00:00
add_random = pkgs.writeDashBin "add_random" ''
${pkgs.mpc_cli}/bin/mpc add "$(${pkgs.findutils}/bin/find "${music_dir}/the_playlist" \
| grep -Ev '/other/|/.graveyard/' \
| grep '\.ogg$' \
| shuf -n1 \
| sed 's,${music_dir}/,,' \
)"
'';
get_current_track_position = pkgs.writeDash "get_current_track_position" ''
${pkgs.mpc_cli}/bin/mpc status | ${pkgs.gawk}/bin/awk '/^\[playing\]/ { sub(/\/.+/,"",$3); split($3,a,/:/); print a[1]*60+a[2] }'
2016-05-25 14:22:48 +00:00
'';
2020-04-15 15:21:54 +00:00
skip_track = pkgs.writeBashBin "skip_track" ''
2020-04-05 10:24:12 +00:00
set -eu
2016-05-25 14:22:48 +00:00
${add_random}/bin/add_random
2020-04-05 10:24:12 +00:00
music_dir=${escapeShellArg music_dir}
2020-04-05 09:46:38 +00:00
current_track=$(${pkgs.mpc_cli}/bin/mpc current -f %file%)
track_infos=$(${print_current}/bin/print_current)
skip_count=$(${pkgs.attr}/bin/getfattr -n user.skip_count --only-values "$music_dir"/"$current_track" || echo 0)
2020-04-15 15:21:54 +00:00
if [[ "$current_track" =~ ^the_playlist/music/.* ]] && [ "$skip_count" -le 2 ]; then
2020-04-05 09:46:38 +00:00
skip_count=$((skip_count+1))
${pkgs.attr}/bin/setfattr -n user.skip_count -v "$skip_count" "$music_dir"/"$current_track"
echo skipping: "$track_infos" skip_count: "$skip_count"
2020-04-15 15:21:54 +00:00
else
mkdir -p "$music_dir"/the_playlist/.graveyard/
mv "$music_dir"/"$current_track" "$music_dir"/the_playlist/.graveyard/
2020-04-15 15:21:54 +00:00
echo killing: "$track_infos"
2020-04-05 09:46:38 +00:00
fi
2016-05-25 14:22:48 +00:00
${pkgs.mpc_cli}/bin/mpc -q next
'';
2020-04-15 15:21:54 +00:00
good_track = pkgs.writeBashBin "good_track" ''
set -eu
music_dir=${escapeShellArg music_dir}
current_track=$(${pkgs.mpc_cli}/bin/mpc current -f %file%)
track_infos=$(${print_current}/bin/print_current)
if [[ "$current_track" =~ ^the_playlist/music/.* ]]; then
${pkgs.attr}/bin/setfattr -n user.skip_count -v 0 "$music_dir"/"$current_track"
else
2020-04-19 11:21:58 +00:00
mv "$music_dir"/"$current_track" "$music_dir"/the_playlist/music/ || :
2020-04-15 15:21:54 +00:00
fi
2020-04-19 11:21:58 +00:00
echo good: "$track_infos"
2020-04-15 15:21:54 +00:00
'';
2020-04-19 18:35:55 +00:00
track_youtube_link = pkgs.writeDash "track_youtube_link" ''
${pkgs.mpc_cli}/bin/mpc current -f %file% \
| ${pkgs.gnused}/bin/sed 's@.*\(.\{11\}\)\.ogg@https://www.youtube.com/watch?v=\1@'
'';
2016-05-25 14:22:48 +00:00
print_current = pkgs.writeDashBin "print_current" ''
echo "$(${pkgs.mpc_cli}/bin/mpc current -f %file%) \
2020-04-19 18:35:55 +00:00
$(${track_youtube_link})"
'';
print_current_json = pkgs.writeDashBin "print_current_json" ''
${pkgs.jq}/bin/jq -n -c \
--arg name "$(${pkgs.mpc_cli}/bin/mpc current)" \
--arg artist "$(${pkgs.mpc_cli}/bin/mpc current -f %artist%)" \
--arg title "$(${pkgs.mpc_cli}/bin/mpc current -f %title%)" \
2020-04-19 18:35:55 +00:00
--arg filename "$(${pkgs.mpc_cli}/bin/mpc current -f %file%)" \
--arg position "$(${get_current_track_position})" \
--arg length "$(${pkgs.mpc_cli}/bin/mpc current -f %time%)" \
2020-04-19 18:35:55 +00:00
--arg youtube "$(${track_youtube_link})" '{
name: $name,
artist: $artist,
title: $title,
2020-04-19 18:35:55 +00:00
filename: $filename,
position: $position,
length: $length,
2020-04-19 18:35:55 +00:00
youtube: $youtube
}'
2016-05-25 14:22:48 +00:00
'';
2020-04-20 06:46:10 +00:00
write_to_irc = pkgs.writeDash "write_to_irc" ''
${pkgs.curl}/bin/curl -fsSv --unix-socket /home/radio/reaktor.sock http://z/ \
-H content-type:application/json \
-d "$(${pkgs.jq}/bin/jq -n \
--arg text "$1" '{
command:"PRIVMSG",
params:["#the_playlist",$text]
}'
)"
'';
2016-05-21 11:47:09 +00:00
in {
users.users = {
"${name}" = rec {
inherit name;
group = name;
2018-12-03 08:47:35 +00:00
uid = genid_uint31 name;
2016-05-21 11:47:09 +00:00
description = "radio manager";
home = "/home/${name}";
useDefaultShell = true;
createHome = true;
2018-10-06 16:35:29 +00:00
openssh.authorizedKeys.keys = with config.krebs.users; [
lass.pubkey
lass-mors.pubkey
2016-05-21 11:47:09 +00:00
];
};
};
users.groups = {
"radio" = {};
};
krebs.per-user.${name}.packages = with pkgs; [
2016-05-25 14:22:48 +00:00
add_random
2020-04-15 15:21:54 +00:00
good_track
2016-05-25 14:22:48 +00:00
skip_track
print_current
2020-04-19 18:35:55 +00:00
print_current_json
2016-05-21 11:47:09 +00:00
ncmpcpp
mpc_cli
];
services.mpd = {
enable = true;
group = "radio";
2020-04-05 09:46:38 +00:00
musicDirectory = "${music_dir}";
2016-05-21 11:47:09 +00:00
extraConfig = ''
2019-04-17 18:14:06 +00:00
log_level "default"
auto_update "yes"
2018-11-27 00:01:56 +00:00
audio_output {
type "httpd"
name "lassulus radio"
encoder "vorbis" # optional
port "8000"
quality "5.0" # do not define if bitrate is defined
# bitrate "128" # do not define if quality is defined
2020-12-17 13:51:24 +00:00
format "44100:16:2"
always_on "yes" # prevent MPD from disconnecting all listeners when playback is stopped.
tags "yes" # httpd supports sending tags to listening streams.
2018-11-27 00:01:56 +00:00
}
2016-05-21 11:47:09 +00:00
'';
};
krebs.iptables = {
tables = {
filter.INPUT.rules = [
{ predicate = "-p tcp --dport 8000"; target = "ACCEPT"; }
2020-04-18 07:32:52 +00:00
{ predicate = "-i retiolum -p tcp --dport 8001"; target = "ACCEPT"; }
2016-05-21 11:47:09 +00:00
];
};
};
systemd.timers.radio = {
description = "radio autoadder timer";
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "*:0/1";
2016-05-21 11:47:09 +00:00
};
};
systemd.services.radio = let
autoAdd = pkgs.writeDash "autoAdd" ''
LIMIT=$1 #in seconds
2016-05-21 11:47:09 +00:00
timeLeft () {
2016-06-10 22:28:55 +00:00
playlistDuration=$(${pkgs.mpc_cli}/bin/mpc --format '%time%' playlist | ${pkgs.gawk}/bin/awk -F ':' 'BEGIN{t=0} {t+=$1*60+$2} END{print t}')
currentTime=$(${get_current_track_position})
2016-05-21 11:47:09 +00:00
expr ''${playlistDuration:-0} - ''${currentTime:-0}
}
if test $(timeLeft) -le $LIMIT; then
2016-05-25 14:22:48 +00:00
${add_random}/bin/add_random
2016-05-21 11:47:09 +00:00
fi
2018-01-20 11:49:37 +00:00
${pkgs.mpc_cli}/bin/mpc play > /dev/null
2016-05-21 11:47:09 +00:00
'';
in {
description = "radio playlist autoadder";
after = [ "network.target" ];
restartIfChanged = true;
serviceConfig = {
2016-06-16 20:16:02 +00:00
ExecStart = "${autoAdd} 150";
2016-05-21 11:47:09 +00:00
};
};
2016-05-25 14:24:38 +00:00
systemd.services.radio-recent = let
recentlyPlayed = pkgs.writeDash "recentlyPlayed" ''
LIMIT=1000 #how many tracks to keep in the history
HISTORY_FILE=/tmp/played
while :; do
${pkgs.mpc_cli}/bin/mpc idle player > /dev/null
${pkgs.mpc_cli}/bin/mpc current -f %file%
done | while read track; do
2021-01-23 18:06:07 +00:00
listeners=$(${pkgs.iproute}/bin/ss -Hno state established 'sport = :8000' | wc -l)
echo "$(date -Is)" "$track" | tee -a "$HISTORY_FILE"
echo "$(tail -$LIMIT "$HISTORY_FILE")" > "$HISTORY_FILE"
${write_to_irc} "playing: $track listeners: $listeners"
done
'';
in {
description = "radio recently played";
after = [ "mpd.service" "network.target" ];
wantedBy = [ "multi-user.target" ];
restartIfChanged = true;
serviceConfig = {
ExecStart = recentlyPlayed;
User = "radio";
};
};
# allow reaktor2 to modify files
systemd.services."reaktor2-the_playlist".serviceConfig.DynamicUser = mkForce false;
2019-01-28 22:06:30 +00:00
krebs.reaktor2.the_playlist = {
hostname = "irc.freenode.org";
port = "6697";
useTLS = true;
nick = "the_playlist";
username = "radio";
API.listen = "unix:/home/radio/reaktor.sock";
2019-01-28 22:06:30 +00:00
plugins = [
{
plugin = "register";
config = {
channels = [
"#the_playlist"
"#krebs"
];
};
}
{
plugin = "system";
config = {
workdir = config.krebs.reaktor2.the_playlist.stateDir;
hooks.PRIVMSG = [
{
activate = "match";
pattern = "^(?:.*\\s)?\\s*the_playlist:\\s*([0-9A-Za-z._][0-9A-Za-z._-]*)(?:\\s+(.*\\S))?\\s*$";
2019-01-28 22:06:30 +00:00
command = 1;
arguments = [2];
commands = {
skip.filename = "${skip_track}/bin/skip_track";
2020-04-15 15:21:54 +00:00
next.filename = "${skip_track}/bin/skip_track";
bad.filename = "${skip_track}/bin/skip_track";
good.filename = "${good_track}/bin/good_track";
nice.filename = "${good_track}/bin/good_track";
like.filename = "${good_track}/bin/good_track";
2019-01-28 22:06:30 +00:00
current.filename = "${print_current}/bin/print_current";
suggest.filename = pkgs.writeDash "suggest" ''
echo "$@" >> playlist_suggest
'';
};
}
];
};
}
2016-05-25 14:24:38 +00:00
];
};
2019-01-28 22:06:30 +00:00
2020-04-18 07:32:52 +00:00
krebs.htgen.radio = {
port = 8001;
user = {
name = "radio";
};
2021-01-23 18:06:20 +00:00
script = ''. ${pkgs.writeDash "radio" ''
2020-04-18 07:32:52 +00:00
case "$Method $Request_URI" in
2020-04-19 10:30:46 +00:00
"GET /current")
2020-04-19 11:21:58 +00:00
printf 'HTTP/1.1 200 OK\r\n'
printf 'Connection: close\r\n'
printf '\r\n'
2020-04-19 18:35:55 +00:00
${print_current_json}/bin/print_current_json
2020-04-19 10:30:46 +00:00
exit
;;
2020-04-18 07:32:52 +00:00
"POST /skip")
2020-04-20 06:46:10 +00:00
printf 'HTTP/1.1 200 OK\r\n'
printf 'Connection: close\r\n'
printf '\r\n'
msg=$(${skip_track}/bin/skip_track)
${write_to_irc} "$msg"
echo "$msg"
2020-04-18 07:32:52 +00:00
exit
;;
"POST /good")
2020-04-20 06:46:10 +00:00
printf 'HTTP/1.1 200 OK\r\n'
printf 'Connection: close\r\n'
printf '\r\n'
msg=$(${good_track}/bin/good_track)
${write_to_irc} "$msg"
echo "$msg"
2020-04-18 07:32:52 +00:00
exit
;;
esac
2021-01-23 18:06:20 +00:00
''}'';
2020-04-18 07:32:52 +00:00
};
services.nginx = {
enable = true;
virtualHosts."radio.lassul.us" = {
forceSSL = true;
enableACME = true;
locations."/".extraConfig = ''
2019-05-29 13:37:05 +00:00
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://localhost:8000;
'';
2019-10-10 12:27:52 +00:00
locations."= /recent".extraConfig = ''
alias /tmp/played;
'';
};
2019-10-10 12:27:52 +00:00
virtualHosts."lassul.us".locations."= /the_playlist".extraConfig = let
html = pkgs.writeText "index.html" ''
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>lassulus playlist</title>
</head>
<body>
<div style="display:inline-block;margin:0px;padding:0px;overflow:hidden">
<iframe src="https://kiwiirc.com/client/irc.freenode.org/?nick=kiwi_test|?&theme=cli#the_playlist" frameborder="0" style="overflow:hidden;overflow-x:hidden;overflow-y:hidden;height:95%;width:100%;position:absolute;top:0px;left:0px;right:0px;bottom:0px" height="95%" width="100%"></iframe>
</div>
<div style="position:absolute;bottom:1px;display:inline-block;background-color:red;">
<audio controls autoplay="autoplay"><source src="http://lassul.us:8000/radio.ogg" type="audio/ogg">Your browser does not support the audio element.</audio>
</div>
<!-- page content -->
</body>
</html>
'';
in ''
default_type "text/html";
alias ${html};
'';
};
2020-04-08 10:33:08 +00:00
services.syncthing.declarative.folders."the_playlist" = {
2019-04-18 08:16:02 +00:00
path = "/home/radio/music/the_playlist";
2020-04-08 10:33:08 +00:00
devices = [ "mors" "phone" "prism" "xerxes" ];
2019-04-18 08:16:02 +00:00
};
krebs.permown."/home/radio/music/the_playlist" = {
owner = "radio";
group = "syncthing";
2019-04-18 11:39:54 +00:00
umask = "0002";
2019-04-18 08:16:02 +00:00
};
2016-05-21 11:47:09 +00:00
}