stockholm/lass/2configs/radio.nix

313 lines
9.1 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;
admin-password = import <secrets/icecast-admin-pw>;
source-password = import <secrets/icecast-source-pw>;
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" ''
2020-04-18 07:32:38 +00:00
${pkgs.mpc_cli}/bin/mpc add "$(${pkgs.findutils}/bin/find "${music_dir}/the_playlist" | grep -v '/other/' | grep '\.ogg$' | shuf -n1 | sed 's,${music_dir}/,,')"
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"/.graveyard/
mv "$music_dir"/"$current_track" "$music_dir"/.graveyard/
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
mv "$music_dir"/"$current_track" "$music_dir"/the_playlist/music/
fi
echo good: "$track_infos"
'';
2016-05-25 14:22:48 +00:00
print_current = pkgs.writeDashBin "print_current" ''
echo "$(${pkgs.mpc_cli}/bin/mpc current -f %file%) \
$(${pkgs.mpc_cli}/bin/mpc current -f %file% \
| ${pkgs.gnused}/bin/sed 's@.*\(.\{11\}\)\.ogg@http://www.youtube.com/watch?v=\1@')"
2016-05-25 14:22:48 +00:00
'';
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
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 "shout"
encoding "lame"
name "the_playlist_mp3"
host "localhost"
port "8000"
mount "/radio.mp3"
password "${source-password}"
bitrate "128"
format "44100:16:2"
user "source"
genre "good music"
}
2016-05-21 11:47:09 +00:00
audio_output {
type "shout"
encoding "ogg"
2018-11-27 00:01:56 +00:00
name "the_playlist_ogg"
host "localhost"
port "8000"
mount "/radio.ogg"
password "${source-password}"
bitrate "128"
format "44100:16:2"
user "source"
genre "good music"
}
2016-05-21 11:47:09 +00:00
'';
};
services.icecast = {
enable = true;
2019-05-29 13:37:05 +00:00
hostname = "radio.lassul.us";
2016-05-21 11:47:09 +00:00
admin.password = admin-password;
extraConf = ''
<mount>
<mount-name>/radio.mp3</mount-name>
<password>${source-password}</password>
</mount>
<mount>
<mount-name>/radio.ogg</mount-name>
<password>${source-password}</password>
</mount>
2016-05-21 11:47:09 +00:00
'';
};
krebs.iptables = {
tables = {
filter.INPUT.rules = [
{ predicate = "-p tcp --dport 8000"; target = "ACCEPT"; }
];
};
};
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 secconds
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=$(${pkgs.mpc_cli}/bin/mpc status | ${pkgs.gawk}/bin/awk '/^\[playing\]/ { sub(/\/.+/,"",$3); split($3,a,/:/); print a[1]*60+a[2] }')
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
echo "$(date -Is)" "$track" | tee -a "$HISTORY_FILE"
echo "$(tail -$LIMIT "$HISTORY_FILE")" > "$HISTORY_FILE"
done
'';
in {
description = "radio recently played";
after = [ "mpd.service" "network.target" ];
wantedBy = [ "multi-user.target" ];
restartIfChanged = true;
serviceConfig = {
ExecStart = recentlyPlayed;
};
};
# 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";
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
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
}