2023-06-05 21:52:51 +00:00
|
|
|
flake: { config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
2023-06-06 20:47:57 +00:00
|
|
|
inherit (lib) filterAttrs foldl imap1 mapAttrsToList mkEnableOption mkIf mkMerge mkOption types;
|
2023-06-06 01:07:31 +00:00
|
|
|
intakeCfg = config.services.intake;
|
2023-06-05 21:52:51 +00:00
|
|
|
in {
|
|
|
|
options = {
|
2023-06-06 01:07:31 +00:00
|
|
|
services.intake = {
|
|
|
|
listen.addr = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "0.0.0.0";
|
2023-06-06 20:47:57 +00:00
|
|
|
description = "The listen address for the entry point to intake services. This endpoint will redirect to a local port based on the request's HTTP Basic Auth credentials.";
|
2023-06-06 01:07:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
listen.port = mkOption {
|
|
|
|
type = types.port;
|
2023-06-06 20:47:57 +00:00
|
|
|
default = 8032;
|
|
|
|
description = "The listen port for the entry point to intake services. This endpoint will redirect to a local port based on the request's HTTP Basic Auth credentials.";
|
|
|
|
};
|
|
|
|
|
|
|
|
internalPortStart = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 24130;
|
|
|
|
description = "The first port to use for internal service endpoints. A number of ports will be continguously allocated equal to the number of users with enabled intake services.";
|
2023-06-06 01:07:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
users = mkOption {
|
|
|
|
description = "User intake service definitions.";
|
|
|
|
default = {};
|
|
|
|
type = types.attrsOf (types.submodule {
|
|
|
|
options = {
|
|
|
|
enable = mkEnableOption "intake, a personal feed aggregator.";
|
|
|
|
|
|
|
|
packages = mkOption {
|
|
|
|
type = types.listOf types.package;
|
|
|
|
default = [];
|
|
|
|
description = "Additional packages available to the intake service.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
2023-06-05 21:52:51 +00:00
|
|
|
};
|
|
|
|
|
2023-06-06 01:07:31 +00:00
|
|
|
config =
|
|
|
|
let
|
|
|
|
# Define the intake package and a python environment to run it from
|
|
|
|
intake = flake.packages.${pkgs.stdenv.hostPlatform.system}.default;
|
|
|
|
pythonEnv = pkgs.python38.withPackages (pypkgs: [ intake ]);
|
2023-06-06 20:47:57 +00:00
|
|
|
|
|
|
|
# Assign each user an internal port for their personal intake instance
|
|
|
|
enabledUsers = filterAttrs (userName: userCfg: userCfg.enable) intakeCfg.users;
|
|
|
|
enabledUserNames = mapAttrsToList (userName: userCfg: userName) enabledUsers;
|
|
|
|
userPortList = imap1 (i: userName: { ${userName} = i + intakeCfg.internalPortStart; }) enabledUserNames;
|
|
|
|
userPort = foldl (acc: val: acc // val) {} userPortList;
|
2023-06-06 01:07:31 +00:00
|
|
|
in {
|
2023-06-06 20:47:57 +00:00
|
|
|
# Define a user service for each configured user
|
2023-06-06 01:07:31 +00:00
|
|
|
systemd.services =
|
|
|
|
let
|
|
|
|
runScript = userName: pkgs.writeShellScript "intake-run.sh" ''
|
2023-06-06 20:47:57 +00:00
|
|
|
${pythonEnv}/bin/intake run -d /home/${userName}/.local/share/intake --port ${toString userPort.${userName}}
|
2023-06-06 01:07:31 +00:00
|
|
|
'';
|
|
|
|
# systemd service definition for a single user, given `services.intake.users.userName` = `userCfg`
|
|
|
|
userServiceConfig = userName: userCfg: {
|
|
|
|
"intake@${userName}" = {
|
|
|
|
description = "Intake service for user ${userName}";
|
|
|
|
script = "${runScript userName}";
|
|
|
|
path = userCfg.packages;
|
|
|
|
serviceConfig = {
|
|
|
|
User = userName;
|
|
|
|
Type = "simple";
|
|
|
|
};
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
after = [ "network.target" ];
|
|
|
|
enable = userCfg.enable;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in mkMerge (mapAttrsToList userServiceConfig intakeCfg.users);
|
2023-06-06 20:47:57 +00:00
|
|
|
|
|
|
|
# Define an nginx reverse proxy to request auth
|
|
|
|
services.nginx = mkIf (enabledUsers != {}) {
|
|
|
|
enable = true;
|
|
|
|
virtualHosts."intake" = mkIf (enabledUsers != {}) {
|
|
|
|
listen = [ intakeCfg.listen ];
|
|
|
|
locations."/" = {
|
|
|
|
proxyPass = "http://127.0.0.1:$target_port";
|
|
|
|
basicAuth = { alpha = "alpha"; beta = "beta"; };
|
|
|
|
};
|
|
|
|
extraConfig = foldl (acc: val: acc + val) "" (mapAttrsToList (userName: port: ''
|
|
|
|
if ($remote_user = "${userName}") {
|
|
|
|
set $target_port ${toString port};
|
|
|
|
}
|
|
|
|
'') userPort);
|
|
|
|
};
|
|
|
|
};
|
2023-06-05 21:52:51 +00:00
|
|
|
};
|
2023-06-06 01:07:31 +00:00
|
|
|
}
|