aboutsummaryrefslogtreecommitdiff
path: root/modules/webapps/diaspora.nix
blob: d9e9989f1b3afed5c28fd4d6a4c8a930e610a73f (plain) (blame)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{ lib, pkgs, config, ... }:
let
  name = "diaspora";
  cfg = config.services.diaspora;

  uid = config.ids.uids.diaspora;
  gid = config.ids.gids.diaspora;
in
{
  options.services.diaspora = {
    enable = lib.mkEnableOption "Enable Diaspora’s service";
    user = lib.mkOption {
      type = lib.types.str;
      default = name;
      description = "User account under which Diaspora runs";
    };
    group = lib.mkOption {
      type = lib.types.str;
      default = name;
      description = "Group under which Diaspora runs";
    };
    adminEmail = lib.mkOption {
      type = lib.types.str;
      example = "admin@example.com";
      description = "Admin e-mail for Diaspora";
    };
    dataDir = lib.mkOption {
      type = lib.types.path;
      default = "/var/lib/${name}";
      description = ''
        The directory where Diaspora stores its data.
      '';
    };
    socketsDir = lib.mkOption {
      type = lib.types.path;
      default = "/run/${name}";
      description = ''
        The directory where Diaspora puts runtime files and sockets.
        '';
    };
    configDir = lib.mkOption {
      type = lib.types.path;
      description = ''
        The configuration path for Diaspora.
        '';
    };
    package = lib.mkOption {
      type = lib.types.package;
      default = pkgs.webapps.diaspora;
      description = ''
        Diaspora package to use.
        '';
    };
    # Output variables
    systemdStateDirectory = lib.mkOption {
      type = lib.types.str;
      # Use ReadWritePaths= instead if varDir is outside of /var/lib
      default = assert lib.strings.hasPrefix "/var/lib/" cfg.dataDir;
        lib.strings.removePrefix "/var/lib/" cfg.dataDir;
      description = ''
      Adjusted Diaspora data directory for systemd
      '';
      readOnly = true;
    };
    systemdRuntimeDirectory = lib.mkOption {
      type = lib.types.str;
      # Use ReadWritePaths= instead if socketsDir is outside of /run
      default = assert lib.strings.hasPrefix "/run/" cfg.socketsDir;
        lib.strings.removePrefix "/run/" cfg.socketsDir;
      description = ''
      Adjusted Diaspora sockets directory for systemd
      '';
      readOnly = true;
    };
    workdir = lib.mkOption {
      type = lib.types.package;
      default = cfg.package.override {
        varDir = cfg.dataDir;
        podmin_email = cfg.adminEmail;
        config_dir = cfg.configDir;
      };
      description = ''
        Adjusted diaspora package with overriden values
        '';
      readOnly = true;
    };
    sockets = lib.mkOption {
      type = lib.types.attrsOf lib.types.path;
      default = {
        rails = "${cfg.socketsDir}/diaspora.sock";
        eye   = "${cfg.socketsDir}/eye.sock";
      };
      readOnly = true;
      description = ''
        Diaspora sockets
        '';
    };
    pids = lib.mkOption {
      type = lib.types.attrsOf lib.types.path;
      default = {
        eye   = "${cfg.socketsDir}/eye.pid";
      };
      readOnly = true;
      description = ''
        Diaspora pids
        '';
    };
  };

  config = lib.mkIf cfg.enable {
    users.users = lib.optionalAttrs (cfg.user == name) {
      "${name}" = {
        inherit uid;
        group = cfg.group;
        description = "Diaspora user";
        home = cfg.dataDir;
        packages = [ cfg.workdir.gems pkgs.nodejs cfg.workdir.gems.ruby ];
        useDefaultShell = true;
      };
    };
    users.groups = lib.optionalAttrs (cfg.group == name) {
      "${name}" = {
        inherit gid;
      };
    };

    systemd.services.diaspora = {
      description = "Diaspora";
      wantedBy = [ "multi-user.target" ];
      after = [
        "network.target" "redis.service" "postgresql.service"
      ];
      wants = [
        "redis.service" "postgresql.service"
      ];

      environment.RAILS_ENV = "production";
      environment.BUNDLE_PATH = "${cfg.workdir.gems}/${cfg.workdir.gems.ruby.gemPath}";
      environment.BUNDLE_GEMFILE = "${cfg.workdir.gems.confFiles}/Gemfile";
      environment.EYE_SOCK = cfg.sockets.eye;
      environment.EYE_PID = cfg.pids.eye;

      path = [ cfg.workdir.gems pkgs.nodejs cfg.workdir.gems.ruby pkgs.curl pkgs.which pkgs.gawk ];

      preStart = ''
        install -m 0755 -d ${cfg.dataDir}/uploads ${cfg.dataDir}/tmp ${cfg.dataDir}/log
        install -m 0700 -d ${cfg.dataDir}/tmp/pids
        if [ ! -f ${cfg.dataDir}/schedule.yml ]; then
          echo "{}" > ${cfg.dataDir}/schedule.yml
        fi
        ./bin/bundle exec rails db:migrate
      '';

      script = ''
        exec ${cfg.workdir}/script/server
      '';

      serviceConfig = {
        User = cfg.user;
        PrivateTmp = true;
        Restart = "always";
        Type = "simple";
        WorkingDirectory = cfg.workdir;
        StateDirectory = cfg.systemdStateDirectory;
        RuntimeDirectory = cfg.systemdRuntimeDirectory;
        StandardInput = "null";
        KillMode = "control-group";
      };

      unitConfig.RequiresMountsFor = cfg.dataDir;
    };
  };
}