stockholm/krebs/3modules/tinc_graphs.nix

149 lines
4.2 KiB
Nix
Raw Normal View History

2015-10-04 14:42:04 +00:00
{ config, lib, pkgs, ... }:
2016-02-14 15:43:44 +00:00
with config.krebs.lib;
2015-10-04 14:42:04 +00:00
let
cfg = config.krebs.tinc_graphs;
2015-10-04 14:42:04 +00:00
internal_dir = "${cfg.workingDir}/internal";
external_dir = "${cfg.workingDir}/external";
out = {
options.krebs.tinc_graphs = api;
2016-02-14 15:43:44 +00:00
config = lib.mkIf cfg.enable imp ;
2015-10-04 14:42:04 +00:00
};
api = {
enable = mkEnableOption "tinc graphs";
2015-10-04 14:42:04 +00:00
geodbPath = mkOption {
type = types.str;
description = "Path to geocitydb, defaults to geolite-legacy";
default = "${pkgs.geolite-legacy}/share/GeoIP/GeoIPCity.dat";
};
2015-10-21 15:13:12 +00:00
nginx = {
enable = mkEnableOption "enable tinc_graphs to be served with nginx";
anonymous = {
server-names = mkOption {
type = with types; listOf str;
description = "hostnames which serve anonymous graphs";
default = [ "graphs.${config.krebs.build.host.name}" ];
};
listen = mkOption {
# use the type of the nginx listen option
2015-10-21 15:13:12 +00:00
type = with types; listOf str;
description = "listen address for anonymous graphs";
default = [ "80" ];
};
};
2015-10-21 15:13:12 +00:00
complete = {
server-names = mkOption {
type = with types; listOf str;
description = "hostname which serves complete graphs";
default = [ "graphs.${config.krebs.build.host.name}" ];
};
listen = mkOption {
type = with types; listOf str;
description = "listen address for complete graphs";
default = [ "127.0.0.1:80" ];
};
};
2015-10-04 14:42:04 +00:00
};
workingDir = mkOption {
type = types.str;
description = ''
Path to working dir, will create interal and external/.
Defaults to the new users home dir which defaults to
/var/cache/tinc_graphs'';
default = config.users.extraUsers.tinc_graphs.home;
2015-10-04 14:42:04 +00:00
};
timerConfig = mkOption {
type = with types; attrsOf str;
default = {
OnCalendar = "*:0/15";
};
};
};
imp = {
environment.systemPackages = [ pkgs.tinc_graphs];
2015-10-04 14:42:04 +00:00
systemd.timers.tinc_graphs = {
description = "Build Tinc Graphs via via timer";
wantedBy = [ "timers.target"];
2015-10-04 14:42:04 +00:00
timerConfig = cfg.timerConfig;
};
systemd.services.tinc_graphs = {
description = "Build Tinc Graphs";
environment = {
EXTERNAL_FOLDER = external_dir;
INTERNAL_FOLDER = internal_dir;
GEODB = cfg.geodbPath;
2016-02-11 22:23:50 +00:00
TINC_HOSTPATH = config.krebs.retiolum.hostsPackage;
};
2015-10-04 14:42:04 +00:00
restartIfChanged = true;
serviceConfig = {
Type = "simple";
2015-12-03 19:39:29 +00:00
TimeoutSec = 300; # we will wait 5 minutes, kill otherwise
2015-11-13 11:24:43 +00:00
restart = "always";
ExecStartPre = pkgs.writeScript "tinc_graphs-init" ''
2015-10-04 14:42:04 +00:00
#!/bin/sh
mkdir -p "${internal_dir}" "${external_dir}"
2015-10-17 21:51:02 +00:00
if ! test -e "${cfg.workingDir}/internal/index.html"; then
cp -fr "$(${pkgs.tinc_graphs}/bin/tincstats-static-dir)/internal/." "${internal_dir}"
fi
if ! test -e "${cfg.workingDir}/external/index.html"; then
cp -fr "$(${pkgs.tinc_graphs}/bin/tincstats-static-dir)/external/." "${external_dir}"
2015-10-17 21:51:02 +00:00
fi
2015-10-04 14:42:04 +00:00
'';
ExecStart = "${pkgs.tinc_graphs}/bin/all-the-graphs";
ExecStartPost = pkgs.writeScript "tinc_graphs-post" ''
#!/bin/sh
# TODO: this may break if workingDir is set to something stupid
# this is needed because homedir is created with 700
chmod 755 "${cfg.workingDir}"
'';
2015-10-17 21:51:02 +00:00
PrivateTmp = "yes";
User = "root"; # tinc cannot be queried as user,
# seems to be a tinc-pre issue
2015-10-04 14:42:04 +00:00
};
};
users.extraUsers.tinc_graphs = {
2015-12-26 04:55:13 +00:00
uid = genid "tinc_graphs";
home = "/var/spool/tinc_graphs";
2015-10-04 14:42:04 +00:00
};
krebs.nginx.servers = mkIf cfg.nginx.enable {
tinc_graphs_complete = mkMerge [ cfg.nginx.complete {
locations = [
(nameValuePair "/" ''
autoindex on;
root ${internal_dir};
'')
];
}] ;
tinc_graphs_anonymous = mkMerge [ cfg.nginx.anonymous {
locations = [
(nameValuePair "/" ''
autoindex on;
root ${external_dir};
'')
];
}];
};
2015-10-04 14:42:04 +00:00
};
in
out