2017-04-10 04:55:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
2017-04-19 02:37:40 +02:00
|
|
|
# Loads the generic functions usually used in the script
|
|
|
|
source .fonctions
|
|
|
|
# Source YunoHost helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
2017-04-10 04:55:10 +02:00
|
|
|
|
|
|
|
# See comments in install script
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
path=$(ynh_app_setting_get "$app" path)
|
|
|
|
admin=$(ynh_app_setting_get "$app" admin)
|
2017-04-17 02:04:18 +02:00
|
|
|
language=$(ynh_app_setting_get "$app" language)
|
2017-04-10 04:55:10 +02:00
|
|
|
|
|
|
|
CHECK_PATH # Checks and corrects the syntax of the path.
|
|
|
|
|
|
|
|
# Check if admin is not null
|
2017-04-17 02:04:18 +02:00
|
|
|
if [[ "$admin" = "" || "$language" = "" ]]; then
|
2017-04-10 04:55:10 +02:00
|
|
|
echo "Unable to upgrade, please contact support"
|
|
|
|
ynh_die
|
|
|
|
fi
|
|
|
|
|
|
|
|
final_path=/opt/$app
|
|
|
|
|
|
|
|
db_name=$app
|
|
|
|
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
|
|
sudo sed -i "s@__PATH__@$app@g" ../conf/nginx.conf*
|
2017-07-13 00:12:42 +02:00
|
|
|
sudo sed -i "s@__FINALPATH__@$final_path@g" ../conf/nginx.conf*
|
2017-04-22 23:10:37 +02:00
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2017-04-11 17:03:11 +02:00
|
|
|
# Stop Mastodon Services
|
2017-04-17 02:04:18 +02:00
|
|
|
sudo systemctl stop mastodon-*.service
|
2017-04-11 17:03:11 +02:00
|
|
|
|
2017-05-06 20:34:29 +02:00
|
|
|
# Change owner of live folder
|
|
|
|
sudo chown -R $app: $final_path/live
|
|
|
|
|
2017-04-30 14:24:02 +02:00
|
|
|
# Download Mastodon
|
|
|
|
sudo su - $app <<PULLCOMMANDS
|
2017-04-10 04:55:10 +02:00
|
|
|
pushd ~/live
|
2017-04-17 02:04:18 +02:00
|
|
|
git fetch
|
2017-05-06 19:58:45 +02:00
|
|
|
git reset --hard origin/master
|
2017-04-17 02:04:18 +02:00
|
|
|
git pull https://github.com/tootsuite/mastodon.git master
|
2017-04-30 14:24:02 +02:00
|
|
|
PULLCOMMANDS
|
|
|
|
|
|
|
|
# Switch branch to tagged release
|
|
|
|
cd $final_path/live
|
2017-05-08 15:33:08 +02:00
|
|
|
sudo su - $app <<SWITCHCOMMANDS
|
|
|
|
pushd ~/live
|
2017-08-10 18:11:34 +02:00
|
|
|
git checkout $(git tag -l | sort -V | tail -n 1)
|
2017-05-08 15:33:08 +02:00
|
|
|
SWITCHCOMMANDS
|
2017-04-30 14:24:02 +02:00
|
|
|
|
2017-05-22 00:42:09 +02:00
|
|
|
# upgrade Node.js v4 to v6
|
|
|
|
node_version=$(nodejs --version)
|
|
|
|
if [[ $node_version =~ ^v4.*$ ]]; then
|
|
|
|
pushd /opt
|
|
|
|
curl -sL https://deb.nodesource.com/setup_6.x | sudo bash -
|
|
|
|
sudo apt-get -y install nodejs
|
|
|
|
fi
|
|
|
|
|
|
|
|
# add additional package for release 1.4
|
2017-07-24 01:15:15 +02:00
|
|
|
ynh_package_install pkg-config libprotobuf-dev protobuf-compiler libicu-dev libidn11-dev
|
2017-05-22 00:42:09 +02:00
|
|
|
|
2017-10-11 18:59:24 +02:00
|
|
|
# Install ruby 2.5.2 for release 2.0
|
|
|
|
sudo su - $app <<RCOMMANDS
|
|
|
|
/opt/mastodon/.rbenv/bin/rbenv install 2.5.2
|
|
|
|
/opt/mastodon/.rbenv/versions/2.5.2/bin/ruby -v
|
|
|
|
RCOMMANDS
|
|
|
|
|
|
|
|
# Create symlink for ruby 2.5.2
|
|
|
|
sudo ln -s /opt/mastodon/.rbenv/versions/2.5.2/bin/ruby /usr/bin/ruby || true
|
|
|
|
|
|
|
|
# Install Mastodon
|
|
|
|
sudo su - $app <<MCOMMANDS
|
|
|
|
pushd ~/live
|
|
|
|
/opt/mastodon/.rbenv/versions/2.5.2/bin/gem install bundler
|
|
|
|
bin/bundle install --deployment --without development test
|
|
|
|
yarn install --production
|
|
|
|
MCOMMANDS
|
|
|
|
|
2017-04-30 14:24:02 +02:00
|
|
|
# Apply Mastodon upgrade
|
|
|
|
sudo su - $app <<COMMANDS
|
|
|
|
pushd ~/live
|
2017-04-17 02:04:18 +02:00
|
|
|
bin/bundle install
|
2017-04-29 16:00:41 +02:00
|
|
|
yarn install --pure-lockfile
|
2017-06-15 10:47:06 +02:00
|
|
|
# For 1.4.1 -> 1.4.2 migration prepare_for_foreign_keys is needed
|
2017-09-07 23:04:29 +02:00
|
|
|
# RAILS_ENV=production bundle exec rails mastodon:maintenance:prepare_for_foreign_keys
|
2017-04-17 02:04:18 +02:00
|
|
|
RAILS_ENV=production bundle exec rails assets:clean
|
|
|
|
RAILS_ENV=production bundle exec rails assets:precompile
|
|
|
|
RAILS_ENV=production bundle exec rails db:migrate
|
2017-04-10 04:55:10 +02:00
|
|
|
COMMANDS
|
|
|
|
|
2017-05-06 23:44:21 +02:00
|
|
|
# Restart Mastodon
|
|
|
|
sudo systemctl start mastodon-*.service
|
|
|
|
|
2017-05-08 13:04:01 +02:00
|
|
|
# Waiting start all services
|
|
|
|
sleep 30
|
|
|
|
|
2017-04-10 04:55:10 +02:00
|
|
|
# Reload Nginx
|
|
|
|
sudo systemctl reload nginx
|
2017-04-20 16:35:44 +02:00
|
|
|
|
|
|
|
# Set app public
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
|
|
|
|
2017-04-20 17:01:27 +02:00
|
|
|
# Reload SSOwat configuration
|
|
|
|
sudo yunohost app ssowatconf
|