mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
141 lines
4.3 KiB
Nix
141 lines
4.3 KiB
Nix
{ lib, pkgs, config, ... }:
|
||
let
|
||
inherit (import <niveum/lib>) tmpfilesConfig;
|
||
liquidsoapDirectory = "/var/cache/liquidsoap";
|
||
icecastPassword = "hackme";
|
||
lyrikline-poem = pkgs.writers.writeDash "lyrikline.sh" ''
|
||
set -efu
|
||
|
||
html=$(mktemp)
|
||
trap clean EXIT
|
||
clean() {
|
||
rm "$html"
|
||
}
|
||
|
||
lyrikline=https://www.lyrikline.org
|
||
random_route="$(${pkgs.curl}/bin/curl -sSL "$lyrikline/index.php/tools/getrandompoem" --data-raw 'lang=de' --compressed | ${pkgs.jq}/bin/jq -r .link)"
|
||
poem_url="$lyrikline$random_route"
|
||
|
||
${pkgs.curl}/bin/curl -sSL "$poem_url" > "$html"
|
||
|
||
poem_file="$(${pkgs.gnugrep}/bin/grep -o 'https://.*\.mp3' "$html" | head -n1)"
|
||
|
||
author="$(${pkgs.htmlq}/bin/htmlq -f "$html" --text '#gedicht-autor')"
|
||
title="$(${pkgs.htmlq}/bin/htmlq -f "$html" --text .gedicht-originaltitel)"
|
||
|
||
echo "annotate:title=\"$title | $poem_url\",artist=\"$author\":$poem_file"
|
||
'';
|
||
stavenhagen-poem = pkgs.writers.writeDash "stavenhagen.sh" ''
|
||
base=https://www.deutschelyrik.de
|
||
author=$(${pkgs.curl}/bin/curl -sSL "$base" | ${pkgs.htmlq}/bin/htmlq option --attribute value | shuf -n1)
|
||
poem=$(${pkgs.curl}/bin/curl -sSL "$base/$author" | ${pkgs.htmlq}/bin/htmlq '#mnav2 li > a' --attribute href | shuf -n1)
|
||
|
||
html=$(mktemp)
|
||
trap clean EXIT
|
||
clean() {
|
||
rm "$html"
|
||
}
|
||
|
||
${pkgs.curl}/bin/curl -sSL "$base/$poem" > "$html"
|
||
|
||
printf "annotate:title=\"%s | %s\",artist=\"%s\":$base/%s\n" \
|
||
"$(${pkgs.htmlq}/bin/htmlq --text '.ce_text h1' -f "$html")" \
|
||
"$base/$poem" \
|
||
"$(${pkgs.htmlq}/bin/htmlq --text 'h1 + p em' -f "$html")" \
|
||
"$(${pkgs.htmlq}/bin/htmlq 'audio source' --attribute src -f "$html")"
|
||
'';
|
||
wikipedia-article = pkgs.writers.writeDash "wikipedia.sh" ''
|
||
set -efu
|
||
opus=$(mktemp ${liquidsoapDirectory}/wikipedia.XXX.opus)
|
||
|
||
html=$(mktemp)
|
||
trap clean EXIT
|
||
clean() {
|
||
rm "$html"
|
||
}
|
||
|
||
${pkgs.curl}/bin/curl -sSL https://de.wikipedia.org/wiki/Spezial:Zuf%C3%A4llige_Seite > "$html"
|
||
|
||
${pkgs.htmlq}/bin/htmlq '.mw-parser-output p' --text -f "$html" \
|
||
| ${pkgs.gnused}/bin/sed 's/\[[0-9]\+]//g' \
|
||
| ${pkgs.espeak}/bin/espeak -v german-mbrola-6 -w /dev/stdout \
|
||
| ${pkgs.opusTools}/bin/opusenc --quiet - "$opus"
|
||
|
||
printf "annotate:title=\"%s\":%s" \
|
||
"$(${pkgs.htmlq}/bin/htmlq -f "$html" --text h1)" \
|
||
"$opus"
|
||
'';
|
||
in {
|
||
# https://github.com/savonet/liquidsoap/issues/1043#issuecomment-593354427
|
||
services.liquidsoap.streams.radio = pkgs.writeText "lyrikline.liq" ''
|
||
set("protocol.external.curl","${pkgs.curl}/bin/curl")
|
||
|
||
def random_url(script) =
|
||
mksafe(audio_to_stereo(request.dynamic.list(
|
||
fun () -> list.map(request.create, get_process_lines(script))
|
||
)))
|
||
end
|
||
|
||
output.icecast(
|
||
mount = '/lyrikline.ogg',
|
||
port = ${toString config.services.icecast.listen.port},
|
||
password = "${icecastPassword}",
|
||
description = "lyrikline. listen to the poet (unofficial)",
|
||
%vorbis,
|
||
random_url("${lyrikline-poem}")
|
||
)
|
||
|
||
output.icecast(
|
||
mount = '/lyrik.ogg',
|
||
port = ${toString config.services.icecast.listen.port},
|
||
password = "${icecastPassword}",
|
||
description = "Lyrik für alle – Neue Lust auf Lyrik | www.deutschelyrik.de",
|
||
%vorbis,
|
||
random_url("${stavenhagen-poem}")
|
||
)
|
||
|
||
output.icecast(
|
||
mount = '/wikipedia.ogg',
|
||
port = ${toString config.services.icecast.listen.port},
|
||
password = "${icecastPassword}",
|
||
description = "Zufällige Artikel von Wikipedia",
|
||
genre = "useless knowledge",
|
||
%vorbis,
|
||
random_url("${wikipedia-article}")
|
||
)
|
||
'';
|
||
|
||
systemd.services.radio.environment.TMPDIR = liquidsoapDirectory;
|
||
|
||
systemd.tmpfiles.rules = [
|
||
(tmpfilesConfig {
|
||
type = "d";
|
||
path = liquidsoapDirectory;
|
||
mode = "0750";
|
||
user = "liquidsoap";
|
||
group = "liquidsoap";
|
||
age = "1h";
|
||
})
|
||
];
|
||
|
||
|
||
services.icecast = {
|
||
enable = true;
|
||
hostname = "radio.kmein.de";
|
||
admin.password = "hackme";
|
||
listen.port = 6457;
|
||
extraConf = ''
|
||
<authentication>
|
||
<source-password>${icecastPassword}</source-password>
|
||
</authentication>
|
||
'';
|
||
};
|
||
|
||
|
||
services.nginx.virtualHosts."radio.kmein.de" = {
|
||
enableACME = true;
|
||
forceSSL = true;
|
||
locations."/".proxyPass = "http://127.0.0.1:${toString config.services.icecast.listen.port}";
|
||
};
|
||
}
|