2020-05-03 07:42:53 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
2021-09-13 04:40:47 -07:00
|
|
|
options = {
|
|
|
|
nix-bitcoin.nodeinfo = {
|
|
|
|
enable = mkEnableOption "nodeinfo";
|
|
|
|
program = mkOption {
|
|
|
|
readOnly = true;
|
|
|
|
default = script;
|
2021-12-07 19:07:27 -08:00
|
|
|
defaultText = "(See source)";
|
2021-09-13 04:40:47 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-14 04:24:26 -08:00
|
|
|
cfg = config.nix-bitcoin.nodeinfo;
|
2021-10-01 02:51:57 -07:00
|
|
|
nbLib = config.nix-bitcoin.lib;
|
2021-01-14 04:24:26 -08:00
|
|
|
|
|
|
|
# Services included in the output
|
|
|
|
services = {
|
|
|
|
bitcoind = mkInfo "";
|
|
|
|
clightning = mkInfo ''
|
|
|
|
info["nodeid"] = shell("lightning-cli getinfo | jq -r '.id'")
|
|
|
|
if 'onion_address' in info:
|
|
|
|
info["id"] = f"{info['nodeid']}@{info['onion_address']}"
|
|
|
|
'';
|
|
|
|
lnd = mkInfo ''
|
2021-01-17 08:13:09 -08:00
|
|
|
info["nodeid"] = shell("lncli getinfo | jq -r '.identity_pubkey'")
|
2021-01-14 04:24:26 -08:00
|
|
|
'';
|
2022-05-05 12:56:16 -07:00
|
|
|
clightning-rest = mkInfo "";
|
2021-01-14 04:24:26 -08:00
|
|
|
electrs = mkInfo "";
|
|
|
|
spark-wallet = mkInfo "";
|
|
|
|
btcpayserver = mkInfo "";
|
|
|
|
liquidd = mkInfo "";
|
2021-01-17 04:24:57 -08:00
|
|
|
joinmarket-ob-watcher = mkInfo "";
|
2021-11-08 03:43:14 -08:00
|
|
|
rtl = mkInfo "";
|
2021-01-14 04:24:26 -08:00
|
|
|
# Only add sshd when it has an onion service
|
|
|
|
sshd = name: cfg: mkIfOnionPort "sshd" (onionPort: ''
|
|
|
|
add_service("sshd", """set_onion_address(info, "sshd", ${onionPort})""")
|
|
|
|
'');
|
|
|
|
};
|
|
|
|
|
2020-05-03 07:42:53 -07:00
|
|
|
script = pkgs.writeScriptBin "nodeinfo" ''
|
2021-01-14 04:24:26 -08:00
|
|
|
#!${pkgs.python3}/bin/python
|
|
|
|
|
|
|
|
import json
|
|
|
|
import subprocess
|
2021-11-02 20:25:55 -07:00
|
|
|
import sys
|
2021-01-14 04:24:26 -08:00
|
|
|
from collections import OrderedDict
|
|
|
|
|
|
|
|
def success(*args):
|
|
|
|
return subprocess.call(args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) == 0
|
|
|
|
|
|
|
|
def is_active(unit):
|
|
|
|
return success("systemctl", "is-active", "--quiet", unit)
|
|
|
|
|
|
|
|
def is_enabled(unit):
|
|
|
|
return success("systemctl", "is-enabled", "--quiet", unit)
|
|
|
|
|
|
|
|
def cmd(*args):
|
|
|
|
return subprocess.run(args, stdout=subprocess.PIPE).stdout.decode('utf-8')
|
|
|
|
|
|
|
|
def shell(*args):
|
|
|
|
return cmd("bash", "-c", *args).strip()
|
|
|
|
|
|
|
|
infos = OrderedDict()
|
|
|
|
operator = "${config.nix-bitcoin.operator.name}"
|
|
|
|
|
|
|
|
def set_onion_address(info, name, port):
|
|
|
|
path = f"/var/lib/onion-addresses/{operator}/{name}"
|
|
|
|
try:
|
|
|
|
with open(path, "r") as f:
|
|
|
|
onion_address = f.read().strip()
|
|
|
|
except OSError:
|
|
|
|
print(f"error reading file {path}", file=sys.stderr)
|
|
|
|
return
|
|
|
|
info["onion_address"] = f"{onion_address}:{port}"
|
|
|
|
|
|
|
|
def add_service(service, make_info):
|
|
|
|
if not is_active(service):
|
|
|
|
infos[service] = "service is not running"
|
|
|
|
else:
|
|
|
|
info = OrderedDict()
|
|
|
|
exec(make_info, globals(), locals())
|
|
|
|
infos[service] = info
|
|
|
|
|
|
|
|
if is_enabled("onion-adresses") and not is_active("onion-adresses"):
|
|
|
|
print("error: service 'onion-adresses' is not running")
|
|
|
|
exit(1)
|
|
|
|
|
|
|
|
${concatStrings infos}
|
|
|
|
|
|
|
|
print(json.dumps(infos, indent=2))
|
2020-05-03 07:42:53 -07:00
|
|
|
'';
|
2021-01-14 04:24:26 -08:00
|
|
|
|
|
|
|
infos = map (service:
|
|
|
|
let cfg = config.services.${service};
|
|
|
|
in optionalString cfg.enable (services.${service} service cfg)
|
|
|
|
) (builtins.attrNames services);
|
|
|
|
|
|
|
|
mkInfo = extraCode: name: cfg:
|
|
|
|
''
|
|
|
|
add_service("${name}", """
|
2021-10-01 02:51:57 -07:00
|
|
|
info["local_address"] = "${nbLib.addressWithPort cfg.address cfg.port}"
|
2021-01-14 04:24:26 -08:00
|
|
|
'' + mkIfOnionPort name (onionPort: ''
|
|
|
|
set_onion_address(info, "${name}", ${onionPort})
|
|
|
|
'') + extraCode + ''
|
|
|
|
|
|
|
|
""")
|
|
|
|
'';
|
|
|
|
|
2021-08-15 02:28:41 -07:00
|
|
|
mkIfOnionPort = name: fn:
|
|
|
|
if onionServices ? ${name} then
|
|
|
|
fn (toString (builtins.elemAt onionServices.${name}.map 0).port)
|
|
|
|
else
|
|
|
|
"";
|
2021-01-14 04:24:26 -08:00
|
|
|
|
2021-08-15 02:28:41 -07:00
|
|
|
inherit (config.services.tor.relay) onionServices;
|
2020-05-03 07:42:53 -07:00
|
|
|
in {
|
2021-09-13 04:40:47 -07:00
|
|
|
inherit options;
|
2020-05-03 07:42:53 -07:00
|
|
|
|
|
|
|
config = {
|
2021-01-14 04:24:26 -08:00
|
|
|
environment.systemPackages = optional cfg.enable script;
|
2020-05-03 07:42:53 -07:00
|
|
|
};
|
|
|
|
}
|