1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-03 15:46:23 -07:00
gochan/tools/get_previous_version.sh

68 lines
No EOL
2.4 KiB
Bash
Executable file

#!/usr/bin/env bash
# Shell script that downloads a previous gochan release for testing gochan-migration -updatedb
# This should only be used in a development environment
set -euo pipefail
TESTING_VERSION="v3.10.2"
RELEASE_DIR="gochan-${TESTING_VERSION}_linux"
RELEASE_GZ="$RELEASE_DIR.tar.gz"
RELEASE_URL="https://github.com/gochan-org/gochan/releases/download/$TESTING_VERSION/$RELEASE_GZ"
if [ "$USER" != "vagrant" ]; then
echo "This must be run in the vagrant VM (expected \$USER to be vagrant, got $USER)"
exit 1
fi
cd ~
rm -f $RELEASE_GZ
echo "Downloading $RELEASE_GZ"
wget -q --show-progress $RELEASE_URL
echo "Extracting $RELEASE_GZ"
tar -xf gochan-${TESTING_VERSION}_linux.tar.gz
cd $RELEASE_DIR
cp examples/configs/gochan.example.json gochan.json
echo "Modifying $PWD/gochan.json for testing migration"
sed -i gochan.json \
-e 's/"Port": .*/"Port": 9000,/' \
-e 's/"UseFastCGI": false/"UseFastCGI": true/' \
-e "s/\"DBtype\": .*/\"DBtype\": \""$DBTYPE"\",/" \
-e 's/"DBpassword": ""/"DBpassword": "gochan"/' \
-e 's/"LogDir": .*/"LogDir": "log",/' \
-e 's/"TemplateDir": .*/"TemplateDir": "templates",/' \
-e 's/"DocumentRoot": .*/"DocumentRoot": "html",/' \
-e 's/"DBname": "gochan"/"DBname": "gochan_prev"/' \
-e 's/"DBprefix": .*/"DBprefix": "",/' \
-e 's/"SiteName": "Gochan"/"SiteName": "Gochan Migration Test"/' \
-e 's/"SiteSlogan": ""/"SiteSlogan": "Gochan instance used for testing gochan-migrate -updatedb"/' \
-e 's/"DebugMode": false/"DebugMode": true/' \
-e 's/"Verbosity": 0/"Verbosity": 1/' \
-e 's/"GeoIPType": .*/"GeoIPType": "",/' \
-e 's/"EnableGeoIP": .*/"EnableGeoIP": false,/'
if [ "$DBTYPE" = "mysql" ]; then
echo "Creating testing MySQL DB 'gochan_prev' if it doesn't already exist"
sudo mysql <<- EOF1
CREATE DATABASE IF NOT EXISTS gochan_prev;
GRANT USAGE ON *.* TO gochan IDENTIFIED BY 'gochan'; \
GRANT ALL PRIVILEGES ON gochan_prev.* TO gochan; \
SET PASSWORD FOR 'gochan'@'%' = PASSWORD('gochan'); \
FLUSH PRIVILEGES;
EOF1
elif [ "$DBTYPE" = "postgresql" ]; then
echo "Creating testing PostgreSQL DB 'gochan_prev' if it doesn't already exist"
sed -i gochan.json \
-e 's/"DBhost": ".*"/"DBhost": "127.0.0.1"/'
sudo -u postgres psql -f - <<- EOF1
CREATE DATABASE gochan_prev;
GRANT ALL PRIVILEGES ON DATABASE gochan_prev TO gochan;
EOF1
else
echo "Currently using unsupported \$DBTYPE: $DBTYPE"
exit 1
fi
mkdir -p log
sudo ./gochan