From 03f345443e205841f3119a8a603139678705035a Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 9 Jan 2022 20:45:14 -0500 Subject: Add tildegit (gitea) to sup --- bin/man1/sup.1 | 3 ++- bin/sup.sh | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/bin/man1/sup.1 b/bin/man1/sup.1 index b413a468..7f84f11b 100644 --- a/bin/man1/sup.1 +++ b/bin/man1/sup.1 @@ -1,4 +1,4 @@ -.Dd July 5, 2021 +.Dd January 9, 2022 .Dt SUP 1 .Os . @@ -35,6 +35,7 @@ The following services are supported: .Cm liberapay , .Cm lobsters , .Cm patreon , +.Cm tildegit , .Cm tildenews . . .Pp diff --git a/bin/sup.sh b/bin/sup.sh index a261cb7f..ae369e36 100644 --- a/bin/sup.sh +++ b/bin/sup.sh @@ -110,6 +110,39 @@ discogs() { open 'https://discogs.com/login' } +gitea() { + echo 'Fetching CSRF token...' + csrf=$( + curl -Ss "${giteaBase}/user/forgot_password" | + sed -n 's/.*name="_csrf" value="\([^"]*\)".*/\1/p' + ) + echo 'Submitting form...' + curl -Ss -X POST \ + -F "email=${email}" -F "_csrf=${csrf}" \ + "${giteaBase}/user/forgot_password" \ + >/dev/null + echo 'Waiting for email...' + code=$( + git fetch-email -i -M Trash \ + -F "${giteaFrom}" -T "${email}" -S 'Recover your account' | + unwrap | sed -n 's/.*code=3D\(.*\)/\1/p' | head -n 1 + ) + echo 'Fetching CSRF token...' + csrf=$( + curl -Ss "${giteaBase}/user/recover_account" | + sed -n 's/.*name="_csrf" value="\([^"]*\)".*/\1/p' + ) + password=$(generate) + echo 'Setting password...' + curl -Ss -X POST \ + -F "_csrf=${csrf}" -F "code=${code}" \ + -F "password=${password}" \ + "${giteaBase}/user/recover_account" \ + >/dev/null + copy "${password}" + open "${giteaBase}/user/login" +} + liberapay() { echo 'Fetching CSRF token...' csrf=$( @@ -207,6 +240,12 @@ patreon() { open 'https://www.patreon.com/login' } +tildegit() { + giteaBase='https://tildegit.org' + giteaFrom='git@tildegit.org' + gitea +} + tildenews() { lobstersBase='https://tilde.news' lobstersFrom='nobody@tilde.news' -- cgit 1.4.1