upgrade.sh 3.7 KB

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