2019-04-14 09:55:40 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
2021-09-13 04:40:47 -07:00
|
|
|
options.services.recurring-donations = {
|
|
|
|
enable = mkEnableOption "recurring-donations";
|
|
|
|
tallycoin = mkOption {
|
|
|
|
type = types.attrs;
|
|
|
|
default = {};
|
|
|
|
description = ''
|
|
|
|
This option is used to specify tallycoin donation receivers using an
|
|
|
|
attribute set. For example the following setting instructs the module
|
|
|
|
to repeatedly send 1000 satoshis to djbooth007.
|
|
|
|
{
|
|
|
|
"djbooth007" = 1000;
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
interval = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "Mon *-*-* 00:00:00";
|
|
|
|
description = ''
|
|
|
|
Schedules the donations. Default is weekly on Mon 00:00:00. See `man
|
|
|
|
systemd.time` for further options.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
randomizedDelaySec = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 86400;
|
|
|
|
description = ''
|
|
|
|
Random delay to add to scheduled time for donation. Default is one day.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
enforceTor = nbLib.enforceTor;
|
|
|
|
};
|
|
|
|
|
2019-04-14 09:55:40 -07:00
|
|
|
cfg = config.services.recurring-donations;
|
2021-02-03 13:44:41 -08:00
|
|
|
nbLib = config.nix-bitcoin.lib;
|
2019-04-14 09:55:40 -07:00
|
|
|
recurring-donations-script = pkgs.writeScript "recurring-donations.sh" ''
|
2020-11-09 13:09:09 -08:00
|
|
|
LNCLI="${config.nix-bitcoin.pkgs.clightning}/bin/lightning-cli --lightning-dir=${config.services.clightning.dataDir}"
|
2019-04-14 09:55:40 -07:00
|
|
|
pay_tallycoin() {
|
|
|
|
NAME=$1
|
|
|
|
AMOUNT=$2
|
2021-08-15 02:28:36 -07:00
|
|
|
echo "Attempting to pay $AMOUNT sat to $NAME"
|
2021-08-04 15:49:00 -07:00
|
|
|
INVOICE=$(curl --socks5-hostname ${config.nix-bitcoin.torClientAddressWithPort} -d "satoshi_amount=$AMOUNT&payment_method=ln&id=$NAME&type=profile" -X POST https://api.tallyco.in/v1/payment/request/ | jq -r '.lightning_pay_request') 2> /dev/null
|
2019-04-14 09:55:40 -07:00
|
|
|
if [ -z "$INVOICE" ] || [ "$INVOICE" = "null" ]; then
|
|
|
|
echo "ERROR: did not get invoice from tallycoin"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
# Decode invoice and compare amount with requested amount
|
2019-04-21 17:37:45 -07:00
|
|
|
DECODED_AMOUNT=$($LNCLI decodepay "$INVOICE" | jq -r '.amount_msat' | head -c -8)
|
2019-04-14 09:55:40 -07:00
|
|
|
if [ -z "$DECODED_AMOUNT" ] || [ "$DECODED_AMOUNT" = "null" ]; then
|
|
|
|
echo "ERROR: did not get response from clightning"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
if [ $DECODED_AMOUNT -eq $AMOUNT ]; then
|
2021-08-15 02:28:36 -07:00
|
|
|
echo "Paying with invoice $INVOICE"
|
2019-04-14 09:55:40 -07:00
|
|
|
$LNCLI pay "$INVOICE"
|
|
|
|
else
|
2021-08-15 02:28:36 -07:00
|
|
|
echo "ERROR: requested amount and invoice amount do not match. $AMOUNT vs $DECODED_AMOUNT"
|
2019-04-14 09:55:40 -07:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
${ builtins.foldl'
|
|
|
|
(x: receiver: x +
|
|
|
|
''
|
|
|
|
pay_tallycoin ${receiver} ${toString (builtins.getAttr receiver cfg.tallycoin)}
|
|
|
|
'')
|
|
|
|
""
|
|
|
|
(builtins.attrNames cfg.tallycoin)
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
in {
|
2021-09-13 04:40:47 -07:00
|
|
|
inherit options;
|
2019-04-14 09:55:40 -07:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2020-10-18 05:49:20 -07:00
|
|
|
services.clightning.enable = true;
|
2020-06-15 03:34:11 -07:00
|
|
|
|
2019-04-14 09:55:40 -07:00
|
|
|
systemd.services.recurring-donations = {
|
|
|
|
requires = [ "clightning.service" ];
|
|
|
|
after = [ "clightning.service" ];
|
2021-01-30 14:08:43 -08:00
|
|
|
path = with pkgs; [ nix-bitcoin.clightning curl jq ];
|
2021-02-03 13:44:41 -08:00
|
|
|
serviceConfig = nbLib.defaultHardening // {
|
2019-04-14 09:55:40 -07:00
|
|
|
ExecStart = "${pkgs.bash}/bin/bash ${recurring-donations-script}";
|
2020-05-03 08:31:50 -07:00
|
|
|
User = "recurring-donations";
|
2019-04-14 09:55:40 -07:00
|
|
|
Type = "oneshot";
|
2021-03-22 05:19:45 -07:00
|
|
|
} // nbLib.allowedIPAddresses cfg.enforceTor;
|
2019-04-14 09:55:40 -07:00
|
|
|
};
|
|
|
|
systemd.timers.recurring-donations = {
|
|
|
|
requires = [ "clightning.service" ];
|
|
|
|
after = [ "clightning.service" ];
|
|
|
|
timerConfig = {
|
|
|
|
Unit = "recurring-donations.service";
|
|
|
|
OnCalendar = cfg.interval;
|
|
|
|
RandomizedDelaySec = toString cfg.randomizedDelaySec;
|
|
|
|
};
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
};
|
2021-02-01 13:53:22 -08:00
|
|
|
|
|
|
|
users.users.recurring-donations = {
|
2021-08-04 15:48:59 -07:00
|
|
|
isSystemUser = true;
|
2021-02-01 13:53:22 -08:00
|
|
|
group = "recurring-donations";
|
2021-02-16 08:52:45 -08:00
|
|
|
extraGroups = [ config.services.clightning.group ];
|
2021-02-01 13:53:22 -08:00
|
|
|
};
|
|
|
|
users.groups.recurring-donations = {};
|
2019-04-14 09:55:40 -07:00
|
|
|
};
|
|
|
|
}
|