summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/misc/errbot.nix
blob: 2703752561595d03a17fb9647ec79c9e8942add2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
  config,
  lib,
  pkgs,
  ...
}:
let
  cfg = config.services.errbot;
  pluginEnv =
    plugins:
    pkgs.buildEnv {
      name = "errbot-plugins";
      paths = plugins;
    };
  mkConfigDir =
    instanceCfg: dataDir:
    pkgs.writeTextDir "config.py" ''
      import logging
      BACKEND = '${instanceCfg.backend}'
      BOT_DATA_DIR = '${dataDir}'
      BOT_EXTRA_PLUGIN_DIR = '${pluginEnv instanceCfg.plugins}'

      BOT_LOG_LEVEL = logging.${instanceCfg.logLevel}
      BOT_LOG_FILE = False

      BOT_ADMINS = (${lib.concatMapStringsSep "," (name: "'${name}'") instanceCfg.admins})

      BOT_IDENTITY = ${builtins.toJSON instanceCfg.identity}

      ${instanceCfg.extraConfig}
    '';
in
{
  options = {
    services.errbot.instances = lib.mkOption {
      default = { };
      description = "Errbot instance configs";
      type = lib.types.attrsOf (
        lib.types.submodule {
          options = {
            dataDir = lib.mkOption {
              type = lib.types.nullOr lib.types.path;
              default = null;
              description = "Data directory for errbot instance.";
            };

            plugins = lib.mkOption {
              type = lib.types.listOf lib.types.package;
              default = [ ];
              description = "List of errbot plugin derivations.";
            };

            logLevel = lib.mkOption {
              type = lib.types.str;
              default = "INFO";
              description = "Errbot log level";
            };

            admins = lib.mkOption {
              type = lib.types.listOf lib.types.str;
              default = [ ];
              description = "List of identifiers of errbot admins.";
            };

            backend = lib.mkOption {
              type = lib.types.str;
              default = "XMPP";
              description = "Errbot backend name.";
            };

            identity = lib.mkOption {
              type = lib.types.attrs;
              description = "Errbot identity configuration";
            };

            extraConfig = lib.mkOption {
              type = lib.types.lines;
              default = "";
              description = "String to be appended to the config verbatim";
            };
          };
        }
      );
    };
  };

  config = lib.mkIf (cfg.instances != { }) {
    users.users.errbot = {
      group = "errbot";
      isSystemUser = true;
    };
    users.groups.errbot = { };

    systemd.tmpfiles.settings = {
      "10-errbot" = lib.mapAttrs' (
        name: instanceCfg:
        let
          dataDir = if instanceCfg.dataDir != null then instanceCfg.dataDir else "/var/lib/errbot/${name}";
        in
        lib.nameValuePair "${dataDir}".d {
          group = "errbot";
          user = "errbot";
          mode = "0755";
        }
      ) cfg.instances;
    };

    systemd.services = lib.mapAttrs' (
      name: instanceCfg:
      lib.nameValuePair "errbot-${name}" (
        let
          dataDir = if instanceCfg.dataDir != null then instanceCfg.dataDir else "/var/lib/errbot/${name}";
        in
        {
          after = [ "network-online.target" ];
          wantedBy = [ "multi-user.target" ];
          serviceConfig = {
            User = "errbot";
            Restart = "on-failure";
            ExecStart = "${pkgs.errbot}/bin/errbot -c ${mkConfigDir instanceCfg dataDir}/config.py";
          };
        }
      )
    ) cfg.instances;
  };
}