diff options
author | Rory& <root@rory.gay> | 2024-10-13 06:14:11 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-10-13 06:14:11 +0200 |
commit | c5e9651eb722c9b3063777342c98cc38997d62a6 (patch) | |
tree | 11adcd80c9a5ea551cd79eef8ba366c82ac15128 /host/Rory-nginx/hooks/post-rebuild.sh | |
parent | Small updates, fix grapevine (diff) | |
download | Rory-Open-Architecture-c5e9651eb722c9b3063777342c98cc38997d62a6.tar.xz |
Desktop changes, build script changes
Diffstat (limited to 'host/Rory-nginx/hooks/post-rebuild.sh')
-rwxr-xr-x | host/Rory-nginx/hooks/post-rebuild.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/host/Rory-nginx/hooks/post-rebuild.sh b/host/Rory-nginx/hooks/post-rebuild.sh new file mode 100755 index 0000000..9b0c17c --- /dev/null +++ b/host/Rory-nginx/hooks/post-rebuild.sh @@ -0,0 +1,29 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i bash -p curl gnused nix coreutils jq openssl +#set -x +REG_KEY=`cat /var/lib/matrix-synapse/registration_shared_secret.txt` +LOCALPART='rory.gay' +REACHABLE_DOMAIN='http://localhost:8008' + +# -- LICENSE: CNPL v7+ - https://thufie.lain.haus/files/CNPLv7.md +# Modified from Nyaaori (https://nyaaori.cat) <+@nyaaori.cat> +# Explicit authorisation to use the code has been granted by the original author +# for use by members of the Rory& system (https://rory.gay) + +# the magic function: +register(){ + echo "Registering $1" + _nonce=`curl -s http://localhost:8008/_synapse/admin/v1/register | jq -r .nonce` + #data: nonce, domain, username, password + _hmac=`printf '%s\0%s\0%s\0%s' "$_nonce" "$1" "$2" "admin" | openssl dgst -sha1 -hmac "$REG_KEY" | awk '{print $2}'` + curl -s -XPOST -d '{"nonce": "'"$_nonce"'", "username": "'"$1"'", "displayname": "'"$1"'", "password": "'"$2"'", "admin": true, "mac": "'"$_hmac"'"}' $REACHABLE_DOMAIN/_synapse/admin/v1/register | tee -a matrix-user-tokens.txt + echo +} + +# -- END OF LICENSED CODE + +PASSWD=`cat /etc/matrix-user-pass` +for u in {draupnir,Alicia,Emma,Rory,root,Quetzelle} +do + register $u $PASSWD +done |