summaryrefslogtreecommitdiffstats
path: root/lass/2configs/fysiirc.nix
blob: d2aaa73c5916dbdf86a723ae17275f53404452f6 (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
{ config, lib, pkgs, ... }:
{
  krebs.iptables.tables.filter.INPUT.rules = [
    { predicate = "-p tcp --dport 44002"; target = "ACCEPT"; }
  ];
  krebs.reaktor2.fysiweb-github = {
    hostname = "irc.libera.chat";
    port = "6697";
    useTLS = true;
    nick = "fysiweb-github";
    API.listen = "inet://127.0.0.1:44001";
    plugins = [
      {
        plugin = "register";
        config = {
          channels = [
            "#fysi"
          ];
        };
      }
    ];
  };
  krebs.htgen.fysiweb-github = {
    port = 44002;
    user = {
      name = "reaktor2-fysiweb-github";
    };
    script = ''. ${pkgs.writeDash "github-irc" ''
      case "$Method $Request_URI" in
        "POST /")
          payload=$(head -c "$req_content_length" \
            | sed 's/+/ /g;s/%\(..\)/\\x\1/g;' \
            | xargs -0 echo -e \
          )
          ${pkgs.curl}/bin/curl -fsSv http://localhost:44001/ \
           -H content-type:application/json \
           -d "$(echo "$payload" | ${pkgs.jq}/bin/jq \
             '{
               command:"PRIVMSG",
               params:["#fysi", "\(.action): \(.comment.html_url // .issue.html_url // .pull_request.html_url)"]
             }'
           )"
          printf 'HTTP/1.1 200 OK\r\n'
          printf 'Connection: close\r\n'
          printf '\r\n'
          exit
        ;;
      esac
    ''}'';
  };
}