]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/upgrade.sh
Translated using Weblate (Spanish)
[github/Chocobozzz/PeerTube.git] / scripts / upgrade.sh
CommitLineData
0e4ffb4b 1#!/bin/sh
64586951 2
0e4ffb4b 3set -eu
64586951 4
5ed25fb7 5PEERTUBE_PATH=${1:-/var/www/peertube}
b4e5942c
JJ
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
b30ad988 23if [ -x "$(command -v awk)" ] && [ -x "$(command -v sed)" ]; then
5c94c38d
FA
24 REMAINING=$(df -k $PEERTUBE_PATH | awk '{ print $4}' | sed -n 2p)
25 ONE_GB=$((1024 * 1024))
b30ad988 26
5c94c38d 27 if [ "$REMAINING" -lt "$ONE_GB" ]; then
b30ad988
C
28 echo "Error - not enough free space for upgrading"
29 echo ""
30 echo "Make sure you have at least 1 GB of free space in $PEERTUBE_PATH"
31 exit 1
5c94c38d 32 fi
75939291 33fi
ee1219d8 34
64586951 35# Backup database
b30ad988
C
36if [ -x "$(command -v pg_dump)" ]; then
37 mkdir -p $PEERTUBE_PATH/backup
38
86dc0b9c 39 SQL_BACKUP_PATH="$PEERTUBE_PATH/backup/sql-peertube_prod-$(date +"%Y%m%d-%H%M").bak"
b30ad988
C
40
41 echo "Backing up PostgreSQL database in $SQL_BACKUP_PATH"
42
a5ea2aea
LW
43 DB_USER=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['username'])")
44 DB_PASS=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['password'])")
45 DB_HOST=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['hostname'])")
46 DB_SUFFIX=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['suffix'])")
f076d49f 47 DB_NAME=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['name'] || '')")
b30ad988 48
86dc0b9c 49 PGPASSWORD=$DB_PASS pg_dump -U $DB_USER -h $DB_HOST -F c "${DB_NAME:-peertube${DB_SUFFIX}}" -f "$SQL_BACKUP_PATH"
e6fdfdc2 50else
51 echo "pg_dump not found. Cannot make a SQL backup!"
52fi
64586951 53
4cd7a103
FA
54# If there is a pre-release, give the user a choice which one to install.
55RELEASE_VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4)
56PRE_RELEASE_VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases | grep tag_name | head -1 | cut -d '"' -f 4)
57
58if [ "$RELEASE_VERSION" != "$PRE_RELEASE_VERSION" ]; then
59 echo -e "Which version do you want to install?\n[1] $RELEASE_VERSION (stable) \n[2] $PRE_RELEASE_VERSION (pre-release)"
60 read choice
61 case $choice in
62 [1]* ) VERSION="$RELEASE_VERSION";;
63 [2]* ) VERSION="$PRE_RELEASE_VERSION";;
64 * ) exit;
65 esac
cee43cf1
FA
66else
67 VERSION="$RELEASE_VERSION"
4cd7a103
FA
68fi
69
70echo "Installing Peertube version $VERSION"
ee1219d8
JJ
71wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" -O "$PEERTUBE_PATH/versions/peertube-${VERSION}.zip"
72cd $PEERTUBE_PATH/versions
0e4ffb4b
LA
73unzip -o "peertube-${VERSION}.zip"
74rm -f "peertube-${VERSION}.zip"
64586951 75
b30ad988
C
76RELEASE_PAGE_URL="https://github.com/Chocobozzz/PeerTube/releases/tag/${VERSION}"
77LATEST_VERSION_DIRECTORY="$PEERTUBE_PATH/versions/peertube-${VERSION}"
78cd "$LATEST_VERSION_DIRECTORY"
79
e7542293 80# Launch yarn to check if we have all required dependencies
e7542293
JJ
81NOCLIENT=1 yarn install --production --pure-lockfile
82
83# Switch to latest code version
ee1219d8 84rm -rf $PEERTUBE_PATH/peertube-latest
b30ad988 85ln -s "$LATEST_VERSION_DIRECTORY" $PEERTUBE_PATH/peertube-latest
ee1219d8 86cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml
64586951 87
b30ad988
C
88echo ""
89echo "=========================================================="
90echo ""
91
92if [ -x "$(command -v git)" ]; then
93 cd /var/www/peertube
94
95 git merge-file -p config/production.yaml "$LATEST_VERSION_DIRECTORY/config/production.yaml.example" "peertube-latest/config/production.yaml.example" | tee "config/production.yaml.new" > /dev/null
96 echo "/var/www/peertube/config/production.yaml.new generated"
97 echo "You can review it and replace your existing production.yaml configuration"
98else
99 echo "git command not found: unable to generate config/production.yaml.new configuration file based on your existing production.yaml configuration"
100fi
34333925 101
cd1a4889 102echo ""
b30ad988
C
103echo "=========================================================="
104echo ""
105echo "Please read the IMPORTANT NOTES on $RELEASE_PAGE_URL"
106echo ""
107echo "Then restart PeerTube!"