2020-02-11 19:50:58 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Based on https://gist.github.com/turt2live/a99c8e794d6115d4ddfaadb72aabf063
|
|
|
|
|
2020-02-23 11:18:53 +01:00
|
|
|
# Check https://matrix.org/docs/spec/#complete-list-of-room-versions before
|
2021-09-22 09:08:39 +02:00
|
|
|
# upgrading a room and change as necessary (WARNING: deprecated, no replacement
|
|
|
|
# that includes versions after 7 at the time of writing)
|
|
|
|
ROOMVERSION=9
|
2020-02-11 19:50:58 +01:00
|
|
|
ACCESSTOKEN=
|
|
|
|
NEWROOMNAME=""
|
|
|
|
OLDROOMID=
|
|
|
|
# Note: $ is not a character that worlks without quotes due to signifying a
|
|
|
|
# variable
|
|
|
|
LASTEVENTINOLDROOM=''
|
2021-10-06 22:06:03 +02:00
|
|
|
HOMESERVER=matrix-client.matrix.org
|
2020-02-11 19:50:58 +01:00
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
# Creating the new room pointing to old one
|
|
|
|
# Thanks to https://gist.github.com/turt2live/a99c8e794d6115d4ddfaadb72aabf063#gistcomment-3071780 for the awk
|
2022-02-18 12:21:14 +01:00
|
|
|
NEWROOMID=$(curl -s -X POST -H "Authorization: Bearer $ACCESSTOKEN" -H "Content-Type: application/json" --data-binary "{\"name\":\"$NEWROOMNAME\",\"room_version\":\"$ROOMVERSION\",\"creation_content\":{\"predecessor\":{\"room_id\":\"$OLDROOMID\",\"event_id\":\"$LASTEVENTINOLDROOM\"}}}" https://$HOMESERVER/_matrix/client/v3/createRoom | awk -F\" '{ printf $4 }')
|
2020-02-11 19:50:58 +01:00
|
|
|
|
|
|
|
# Sending a tombstone
|
2022-02-18 12:21:14 +01:00
|
|
|
curl -s -X PUT -H "Authorization: Bearer $ACCESSTOKEN" -H "Content-Type: application/json" --data-binary "{\"replacement_room\":\"$NEWROOMID\"}" "https://$HOMESERVER/_matrix/client/v3/rooms/$OLDROOMID/state/m.room.tombstone"
|
2020-02-11 19:50:58 +01:00
|
|
|
set +x
|