mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-10 06:04:14 +00:00
nixos/matrix-synapse: Wrap register_new_matrix_user
`register_new_matrix_user` is a script provided by the matrix-synapse package to create a new matrix user on the command line. This commit provides a wrapper around `register_new_matrix_user` that automatically passes the url (and `registration_shared_secret`, if present) as CLI arguments.
This commit is contained in:
parent
3c2143ee7f
commit
2a701e8061
@ -119,6 +119,30 @@ ${cfg.extraConfig}
|
|||||||
|
|
||||||
hasLocalPostgresDB = let args = cfg.database_args; in
|
hasLocalPostgresDB = let args = cfg.database_args; in
|
||||||
usePostgresql && (!(args ? host) || (elem args.host [ "localhost" "127.0.0.1" "::1" ]));
|
usePostgresql && (!(args ? host) || (elem args.host [ "localhost" "127.0.0.1" "::1" ]));
|
||||||
|
|
||||||
|
registerNewMatrixUser =
|
||||||
|
let
|
||||||
|
isIpv6 = x: lib.length (lib.splitString ":" x) > 1;
|
||||||
|
listener =
|
||||||
|
lib.findFirst (
|
||||||
|
listener: lib.any (
|
||||||
|
resource: lib.any (
|
||||||
|
name: name == "client"
|
||||||
|
) resource.names
|
||||||
|
) listener.resources
|
||||||
|
) (lib.last cfg.listeners) cfg.listeners;
|
||||||
|
in
|
||||||
|
pkgs.writeShellScriptBin "matrix-synapse-register_new_matrix_user" ''
|
||||||
|
exec ${cfg.package}/bin/register_new_matrix_user \
|
||||||
|
$@ \
|
||||||
|
${lib.concatMapStringsSep " " (x: "-c ${x}") ([ configFile ] ++ cfg.extraConfigFiles)} \
|
||||||
|
"${listener.type}://${
|
||||||
|
if (isIpv6 listener.bind_address) then
|
||||||
|
"[${listener.bind_address}]"
|
||||||
|
else
|
||||||
|
"${listener.bind_address}"
|
||||||
|
}:${builtins.toString listener.port}/"
|
||||||
|
'';
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
services.matrix-synapse = {
|
services.matrix-synapse = {
|
||||||
@ -792,6 +816,8 @@ in {
|
|||||||
UMask = "0077";
|
UMask = "0077";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [ registerNewMatrixUser ];
|
||||||
};
|
};
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
|
Loading…
Reference in New Issue
Block a user