From e23a1db405b5181f66d2fad6636f89ec2c30948f Mon Sep 17 00:00:00 2001 From: Lukas Oertel Date: Sun, 22 Jan 2023 18:12:17 +0100 Subject: scripts/hedgedoc-ldap_to_oauth2: Init --- scripts/hedgedoc-ldap_to_oauth2/README.md | 8 ++++++++ scripts/hedgedoc-ldap_to_oauth2/ldap_users.sh | 8 ++++++++ scripts/hedgedoc-ldap_to_oauth2/replacements.txt | 4 ++++ 3 files changed, 20 insertions(+) create mode 100644 scripts/hedgedoc-ldap_to_oauth2/README.md create mode 100644 scripts/hedgedoc-ldap_to_oauth2/ldap_users.sh create mode 100644 scripts/hedgedoc-ldap_to_oauth2/replacements.txt diff --git a/scripts/hedgedoc-ldap_to_oauth2/README.md b/scripts/hedgedoc-ldap_to_oauth2/README.md new file mode 100644 index 0000000..d6c0d8b --- /dev/null +++ b/scripts/hedgedoc-ldap_to_oauth2/README.md @@ -0,0 +1,8 @@ +Script to convert CodiMD, HackMD or Hedgedoc Postgres database users from LDAP authentication to OAuth2 (i.e. Keycloak in our case). + + +`ldap_users.txt` should look like: +``` +scott LDAP-1000 +peter LDAP-1001 +``` diff --git a/scripts/hedgedoc-ldap_to_oauth2/ldap_users.sh b/scripts/hedgedoc-ldap_to_oauth2/ldap_users.sh new file mode 100644 index 0000000..8d05fa5 --- /dev/null +++ b/scripts/hedgedoc-ldap_to_oauth2/ldap_users.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +while read p; do + USER=`echo $p | sed 's/\s.*$//'` + ID=`echo $p | sed 's/.* //'` + echo $USER $ID + sed 's/$UID/'$USER'/g' replacements.txt | sed 's/$LDAPID/'$ID'/g' - >> replacements.sql +done 'username') where profileid = '$UID'; +UPDATE "Users" SET profile = jsonb_set(profile::jsonb, '{username}', '"$UID"') where profileid = '$UID'; +UPDATE "Users" SET profile = jsonb_set(profile::jsonb, '{provider}', '"oauth2"') where profileid = '$UID'; -- cgit v1.2.3