ニジカ投稿局 https://tv.nizika.tv
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

111 lines
4.6 KiB

  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)" ]; then
  30. mkdir -p $PEERTUBE_PATH/backup
  31. SQL_BACKUP_PATH="$PEERTUBE_PATH/backup/sql-peertube_prod-$(date +"%Y%m%d-%H%M").bak"
  32. echo "Backing up PostgreSQL database in $SQL_BACKUP_PATH"
  33. DB_USER=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['username'])")
  34. DB_PASS=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['password'])")
  35. DB_HOST=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['hostname'])")
  36. DB_PORT=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['port'])")
  37. DB_SUFFIX=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['suffix'])")
  38. DB_NAME=$(node -e "console.log(require('js-yaml').load(fs.readFileSync('$PEERTUBE_PATH/config/production.yaml', 'utf8'))['database']['name'] || '')")
  39. PGPASSWORD=$DB_PASS pg_dump -U $DB_USER -p $DB_PORT -h $DB_HOST -F c "${DB_NAME:-peertube${DB_SUFFIX}}" -f "$SQL_BACKUP_PATH"
  40. else
  41. echo "pg_dump not found. Cannot make a SQL backup!"
  42. fi
  43. # If there is a pre-release, give the user a choice which one to install.
  44. RELEASE_VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases/latest | grep tag_name | cut -d '"' -f 4)
  45. PRE_RELEASE_VERSION=$(curl -s https://api.github.com/repos/chocobozzz/peertube/releases | grep tag_name | head -1 | cut -d '"' -f 4)
  46. if [ "$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
  54. else
  55. VERSION="$RELEASE_VERSION"
  56. fi
  57. echo "Installing Peertube version $VERSION"
  58. wget -q "https://github.com/Chocobozzz/PeerTube/releases/download/${VERSION}/peertube-${VERSION}.zip" -O "$PEERTUBE_PATH/versions/peertube-${VERSION}.zip"
  59. cd $PEERTUBE_PATH/versions
  60. unzip -o "peertube-${VERSION}.zip"
  61. rm -f "peertube-${VERSION}.zip"
  62. RELEASE_PAGE_URL="https://github.com/Chocobozzz/PeerTube/releases/tag/${VERSION}"
  63. LATEST_VERSION_DIRECTORY="$PEERTUBE_PATH/versions/peertube-${VERSION}"
  64. cd "$LATEST_VERSION_DIRECTORY"
  65. # Launch yarn to check if we have all required dependencies
  66. NOCLIENT=1 yarn install --production --pure-lockfile
  67. OLD_VERSION_DIRECTORY=$(readlink "$PEERTUBE_PATH/peertube-latest")
  68. # Switch to latest code version
  69. rm -rf $PEERTUBE_PATH/peertube-latest
  70. ln -s "$LATEST_VERSION_DIRECTORY" $PEERTUBE_PATH/peertube-latest
  71. cp $PEERTUBE_PATH/peertube-latest/config/default.yaml $PEERTUBE_PATH/config/default.yaml
  72. echo ""
  73. echo "=========================================================="
  74. echo ""
  75. if [ -x "$(command -v git)" ]; then
  76. cd $PEERTUBE_PATH
  77. git merge-file -p config/production.yaml "$OLD_VERSION_DIRECTORY/config/production.yaml.example" "peertube-latest/config/production.yaml.example" | tee "config/production.yaml.new" > /dev/null
  78. echo "$PEERTUBE_PATH/config/production.yaml.new generated"
  79. echo "You can review it and replace your existing production.yaml configuration"
  80. else
  81. echo "git command not found: unable to generate config/production.yaml.new configuration file based on your existing production.yaml configuration"
  82. fi
  83. echo ""
  84. echo "=========================================================="
  85. echo ""
  86. echo "Please read the IMPORTANT NOTES on $RELEASE_PAGE_URL"
  87. echo ""
  88. echo "Then restart PeerTube!"