]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/upgrade.sh
Check free storage before upgrading
[github/Chocobozzz/PeerTube.git] / scripts / upgrade.sh
CommitLineData
0e4ffb4b 1#!/bin/sh
64586951 2
0e4ffb4b 3set -eu
64586951 4
b4e5942c
JJ
5PEERTUBE_PATH=${1:-/var/www/peertube/}
6
7if [ ! -e "$PEERTUBE_PATH" ]; then
8 echo "Error - path \"$PEERTUBE_PATH\" wasn't found"
9 echo ""
10 echo "If peertube was installed in another path, you can specify it with"
11 echo " ./upgrade.sh <PATH>"
12 exit 1
13fi
14
15if [ ! -e "$PEERTUBE_PATH/versions" -o ! -e "$PEERTUBE_PATH/config/production.yaml" ]; then
16 echo "Error - Couldn't find peertube installation in \"$PEERTUBE_PATH\""
17 echo ""
18 echo "If peertube was installed in another path, you can specify it with"
19 echo " ./upgrade.sh <PATH>"
20 exit 1
21fi
22
75939291
FA
23REMAINING=$(df -k $PEERTUBE_PATH | awk '{ print $4}' | sed -n 2p)
24ONE_GB=$((1024 * 1024))
25if [ "$REMAINING" -lt "$ONE_GB" ]; then
26 echo "Error - not enough free space for upgrading"
27 echo ""
28 echo "Make sure you have at least 1 GB of free space in $PEERTUBE_PATH"
29 exit 1
30fi
ee1219d8 31
64586951 32# Backup database
ee1219d8 33SQL_BACKUP_PATH="$PEERTUBE_PATH/backup/sql-peertube_prod-$(date +"%Y%m%d-%H%M").bak"
d9d1989b
LD
34DB_USER=$(node -e "console.log(require('js-yaml').safeLoad(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['username'])")
35DB_PASS=$(node -e "console.log(require('js-yaml').safeLoad(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['password'])")
36DB_HOST=$(node -e "console.log(require('js-yaml').safeLoad(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['hostname'])")
37DB_SUFFIX=$(node -e "console.log(require('js-yaml').safeLoad(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['suffix'])")
ee1219d8 38mkdir -p $PEERTUBE_PATH/backup
d9d1989b
LD
39
40PGPASSWORD=$DB_PASS pg_dump -U $DB_USER -h $DB_HOST -F c "peertube${DB_SUFFIX}" -f "$SQL_BACKUP_PATH"
64586951 41
4cd7a103
FA
42# If there is a pre-release, give the user a choice which one to install.
43RELEASE_VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4)
44PRE_RELEASE_VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases | grep tag_name | head -1 | cut -d '"' -f 4)
45
46if [ "$RELEASE_VERSION" != "$PRE_RELEASE_VERSION" ]; then
47 echo -e "Which version do you want to install?\n[1] $RELEASE_VERSION (stable) \n[2] $PRE_RELEASE_VERSION (pre-release)"
48 read choice
49 case $choice in
50 [1]* ) VERSION="$RELEASE_VERSION";;
51 [2]* ) VERSION="$PRE_RELEASE_VERSION";;
52 * ) exit;
53 esac
cee43cf1
FA
54else
55 VERSION="$RELEASE_VERSION"
4cd7a103
FA
56fi
57
58echo "Installing Peertube version $VERSION"
ee1219d8
JJ
59wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" -O "$PEERTUBE_PATH/versions/peertube-${VERSION}.zip"
60cd $PEERTUBE_PATH/versions
0e4ffb4b
LA
61unzip -o "peertube-${VERSION}.zip"
62rm -f "peertube-${VERSION}.zip"
64586951
SL
63
64# Upgrade Scripts
ee1219d8
JJ
65rm -rf $PEERTUBE_PATH/peertube-latest
66ln -s "$PEERTUBE_PATH/versions/peertube-${VERSION}" $PEERTUBE_PATH/peertube-latest
67cd $PEERTUBE_PATH/peertube-latest
64586951 68yarn install --production --pure-lockfile
ee1219d8 69cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml
64586951 70
34333925 71echo "Differences in configuration files..."
38d93700 72diff -u $PEERTUBE_PATH/config/production.yaml "$PEERTUBE_PATH/versions/peertube-${VERSION}/config/production.yaml.example"
34333925 73