2017-04-08 04:04:27 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
source .fonctions # Loads the generic functions usually used in the script
|
|
|
|
source /usr/share/yunohost/helpers # Source app helpers
|
|
|
|
|
|
|
|
CLEAN_SETUP () {
|
|
|
|
# Clean installation residues that are not supported by the remove script.
|
|
|
|
# Clean hosts
|
2017-04-10 04:55:10 +02:00
|
|
|
echo ""
|
2017-04-08 04:04:27 +02:00
|
|
|
}
|
|
|
|
TRAP_ON # Active trap to stop the script if an error is detected.
|
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
admin_mastodon=$YNH_APP_ARG_ADMIN
|
2017-05-08 11:06:33 +02:00
|
|
|
admin_mastodon_mail=$(ynh_user_get_info $admin_mastodon 'mail')
|
2017-04-13 17:19:53 +02:00
|
|
|
admin_pass=$YNH_APP_ARG_PASSWD
|
2017-04-15 04:20:28 +02:00
|
|
|
language=$YNH_APP_ARG_LANGUAGE
|
2017-04-08 04:04:27 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
CHECK_VAR "$app" "app name not set"
|
|
|
|
|
|
|
|
CHECK_USER "$admin_mastodon"
|
|
|
|
|
|
|
|
CHECK_DOMAINPATH
|
|
|
|
|
|
|
|
CHECK_FINALPATH
|
|
|
|
|
|
|
|
ynh_app_setting_set $app domain $domain
|
|
|
|
ynh_app_setting_set $app admin $admin_mastodon
|
2017-04-13 17:19:53 +02:00
|
|
|
ynh_app_setting_set $app pass $admin_pass
|
2017-04-15 04:20:28 +02:00
|
|
|
ynh_app_setting_set $app language $language
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-05-08 11:06:33 +02:00
|
|
|
[[ ${#admin_pass} -gt 7 ]] || ynh_die \
|
|
|
|
"The password is too weak, it must be longer than 7 characters"
|
2017-04-30 03:00:02 +02:00
|
|
|
|
2017-04-08 04:04:27 +02:00
|
|
|
# Create user unix
|
|
|
|
sudo adduser $app --home /opt/$app --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-password --disabled-login
|
|
|
|
|
|
|
|
# Install debian package
|
2017-05-21 15:05:54 +02:00
|
|
|
ynh_package_install imagemagick libpq-dev libxml2-dev libxslt1-dev file curl apt-transport-https pkg-config libprotobuf-dev protobuf-compiler
|
2017-04-08 04:04:27 +02:00
|
|
|
|
|
|
|
# Install redis package
|
|
|
|
ynh_package_install redis-server redis-tools
|
|
|
|
|
|
|
|
# Install postgresql
|
|
|
|
ynh_package_install postgresql postgresql-contrib
|
|
|
|
|
|
|
|
# Install Ruby
|
|
|
|
ynh_package_install autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm3 libgdbm-dev
|
|
|
|
|
2017-04-11 15:22:54 +02:00
|
|
|
# Install source.list debian package backports & yarn
|
|
|
|
sudo cp ../conf/backports.list /etc/apt/sources.list.d/
|
|
|
|
sudo curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
|
|
|
sudo cp ../conf/yarn.list /etc/apt/sources.list.d/
|
2017-04-08 04:04:27 +02:00
|
|
|
ynh_package_update
|
2017-04-11 15:22:54 +02:00
|
|
|
|
|
|
|
# Install debian package backports
|
2017-04-08 04:04:27 +02:00
|
|
|
sudo apt-get -t jessie-backports -y install ffmpeg
|
|
|
|
|
|
|
|
# Creates the destination directory and stores its location.
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
|
|
|
|
|
|
|
# Install de Node.js
|
|
|
|
pushd /opt
|
2017-05-21 15:17:07 +02:00
|
|
|
curl -sL https://deb.nodesource.com/setup_6.x | sudo bash -
|
2017-04-08 04:04:27 +02:00
|
|
|
sudo apt-get -y install nodejs
|
2017-04-11 15:22:54 +02:00
|
|
|
|
|
|
|
# Install Yarn
|
|
|
|
ynh_package_install yarn
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-04-11 12:00:33 +02:00
|
|
|
# Set UTF8 encoding by default
|
2017-04-11 11:39:46 +02:00
|
|
|
sudo su -c "psql" postgres <<< \
|
2017-04-29 16:00:41 +02:00
|
|
|
"update pg_database set datistemplate='false' where datname='template1';"
|
2017-04-11 14:36:12 +02:00
|
|
|
sudo su -c "psql" postgres <<< \
|
2017-04-29 16:00:41 +02:00
|
|
|
"drop database template1;"
|
2017-04-11 14:36:12 +02:00
|
|
|
sudo su -c "psql" postgres <<< \
|
2017-04-29 16:00:41 +02:00
|
|
|
"create database template1 encoding='UTF8' template template0;"
|
2017-04-11 14:36:12 +02:00
|
|
|
sudo su -c "psql" postgres <<< \
|
2017-04-29 16:00:41 +02:00
|
|
|
"update pg_database set datistemplate='true' where datname='template1';"
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-04-10 04:55:10 +02:00
|
|
|
# Create DB without password
|
2017-04-11 13:54:13 +02:00
|
|
|
ynh_psql_create_db_without_password "$app"
|
2017-04-11 15:22:54 +02:00
|
|
|
sudo systemctl restart postgresql
|
2017-04-11 13:54:13 +02:00
|
|
|
|
2017-04-28 18:02:28 +02:00
|
|
|
# Download all sources rbenv, ruby and mastodon
|
2017-04-11 15:20:55 +02:00
|
|
|
sudo su - $app <<CLONECOMMANDS
|
|
|
|
git clone https://github.com/rbenv/rbenv.git $final_path/.rbenv
|
|
|
|
git clone https://github.com/rbenv/ruby-build.git $final_path/.rbenv/plugins/ruby-build
|
|
|
|
git clone https://github.com/tootsuite/mastodon.git $final_path/live
|
|
|
|
CLONECOMMANDS
|
2017-04-10 16:01:13 +02:00
|
|
|
|
2017-05-08 15:33:08 +02:00
|
|
|
# Switch branch to tagged release
|
2017-04-30 00:53:56 +02:00
|
|
|
cd $final_path/live
|
2017-05-08 15:33:08 +02:00
|
|
|
sudo su - $app <<SWITCHCOMMANDS
|
|
|
|
pushd ~/live
|
|
|
|
git checkout $(git tag | tail -n 1)
|
|
|
|
SWITCHCOMMANDS
|
2017-04-29 23:58:25 +02:00
|
|
|
|
2017-04-10 21:13:13 +02:00
|
|
|
# Be king rewind (/var/cache/yunohost/from_file/scripts)
|
|
|
|
popd
|
|
|
|
|
2017-04-08 04:04:27 +02:00
|
|
|
# Install de rbenv
|
|
|
|
sudo su - $app <<COMMANDS
|
|
|
|
pushd ~/.rbenv
|
|
|
|
src/configure && make -C src
|
2017-04-10 21:13:13 +02:00
|
|
|
echo 'export PATH="/opt/mastodon/.rbenv/bin:/opt/mastodon/live/bin:$PATH"' >> ~/.profile
|
2017-04-09 03:26:55 +02:00
|
|
|
echo 'export PATH="/opt/mastodon/.rbenv/bin:/opt/mastodon/live/bin:$PATH"' >> ~/.bashrc
|
2017-04-13 01:38:09 +02:00
|
|
|
echo 'eval "\$(rbenv init -)"' >> ~/.profile
|
2017-04-09 03:26:55 +02:00
|
|
|
COMMANDS
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-04-09 03:26:55 +02:00
|
|
|
# Install ruby-build
|
|
|
|
sudo su - $app <<RCOMMANDS
|
2017-04-10 23:29:33 +02:00
|
|
|
/opt/mastodon/.rbenv/bin/rbenv install 2.4.1
|
|
|
|
/opt/mastodon/.rbenv/versions/2.4.1/bin/ruby -v
|
2017-04-09 03:26:55 +02:00
|
|
|
RCOMMANDS
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-04-09 16:32:12 +02:00
|
|
|
# Create symlink for ruby
|
2017-04-10 23:29:33 +02:00
|
|
|
sudo ln -s /opt/mastodon/.rbenv/versions/2.4.1/bin/ruby /usr/bin/ruby || true
|
2017-04-09 16:32:12 +02:00
|
|
|
|
2017-04-10 21:13:13 +02:00
|
|
|
# Install Mastodon
|
2017-04-09 03:26:55 +02:00
|
|
|
sudo su - $app <<MCOMMANDS
|
|
|
|
pushd ~/live
|
2017-04-10 23:29:33 +02:00
|
|
|
/opt/mastodon/.rbenv/versions/2.4.1/bin/gem install bundler
|
2017-04-09 16:32:12 +02:00
|
|
|
bin/bundle install --deployment --without development test
|
2017-04-11 15:22:54 +02:00
|
|
|
yarn install --production
|
2017-04-09 03:26:55 +02:00
|
|
|
MCOMMANDS
|
2017-04-08 04:04:27 +02:00
|
|
|
|
|
|
|
# Adjust Mastodon config
|
2017-04-09 03:26:55 +02:00
|
|
|
pushd $final_path/live/
|
|
|
|
sudo cp -a .env.production.sample .env.production
|
2017-04-10 04:55:10 +02:00
|
|
|
sudo sed -i "s@REDIS_HOST=redis@REDIS_HOST=127.0.0.1@g" "${final_path}/live/.env.production"
|
2017-04-09 03:26:55 +02:00
|
|
|
sudo sed -i "s@DB_HOST=db@DB_HOST=/var/run/postgresql@g" "${final_path}/live/.env.production"
|
2017-04-10 04:55:10 +02:00
|
|
|
sudo sed -i "s@DB_USER=postgres@DB_USER=${app}@g" "${final_path}/live/.env.production"
|
|
|
|
sudo sed -i "s@DB_NAME=postgres@DB_NAME=${app}_production@g" "${final_path}/live/.env.production"
|
|
|
|
sudo sed -i "s@LOCAL_DOMAIN=example.com@LOCAL_DOMAIN=${domain}@g" "${final_path}/live/.env.production"
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-04-15 04:20:28 +02:00
|
|
|
language="$(echo $language | head -c 2)"
|
|
|
|
sudo sed -i "s@# DEFAULT_LOCALE=de@DEFAULT_LOCALE=${language}@g" "${final_path}/live/.env.production"
|
|
|
|
|
2017-04-19 02:37:40 +02:00
|
|
|
paperclip_secret=$(head -n128 /dev/urandom | tail -n +1 | tr -dc -d 'a-z0-9' | head -c128)
|
|
|
|
secret_key_base=$(head -n128 /dev/urandom | tail -n +1 | tr -dc -d 'a-z0-9' | head -c128)
|
|
|
|
otp_secret=$(head -n128 /dev/urandom | tail -n +1 | tr -dc -d 'a-z0-9' | head -c128)
|
|
|
|
sudo sed -i "s@PAPERCLIP_SECRET=@PAPERCLIP_SECRET=${paperclip_secret}@g" "${final_path}/live/.env.production"
|
|
|
|
sudo sed -i "s@SECRET_KEY_BASE=@SECRET_KEY_BASE=${secret_key_base}@g" "${final_path}/live/.env.production"
|
|
|
|
sudo sed -i "s@OTP_SECRET=@OTP_SECRET=${otp_secret}@g" "${final_path}/live/.env.production"
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-05-08 13:04:01 +02:00
|
|
|
sudo sed -i "s@SMTP_LOGIN=@#SMTP_LOGIN=@g" "${final_path}/live/.env.production"
|
|
|
|
sudo sed -i "s@SMTP_PASSWORD=@#SMTP_PASSWORD=@g" "${final_path}/live/.env.production"
|
2017-04-09 03:26:55 +02:00
|
|
|
sudo sed -i "s@SMTP_SERVER=smtp.mailgun.org@SMTP_SERVER=localhost@g" "${final_path}/live/.env.production"
|
2017-05-08 13:04:01 +02:00
|
|
|
sudo sed -i "s@SMTP_PORT=587@SMTP_PORT=25@g" "${final_path}/live/.env.production"
|
2017-04-09 03:26:55 +02:00
|
|
|
sudo sed -i 's,SMTP_FROM_ADDRESS=notifications@example.com,SMTP_FROM_ADDRESS='${admin_mastodon}'@'${domain}',' "${final_path}/live/.env.production"
|
2017-05-08 13:04:01 +02:00
|
|
|
sudo sed -i "s@#SMTP_AUTH_METHOD=plain@SMTP_AUTH_METHOD=none@g" "${final_path}/live/.env.production"
|
2017-04-13 01:38:09 +02:00
|
|
|
sudo sed -i "s@#SMTP_OPENSSL_VERIFY_MODE=peer@SMTP_OPENSSL_VERIFY_MODE=none@g" "${final_path}/live/.env.production"
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-04-09 03:26:55 +02:00
|
|
|
# Create database
|
|
|
|
# Preconfig CSS & JS
|
2017-04-10 21:13:13 +02:00
|
|
|
sudo su - $app <<CCOMMANDS
|
2017-04-09 16:32:12 +02:00
|
|
|
pushd ~/live
|
|
|
|
RAILS_ENV=production bin/bundle exec rails db:setup
|
2017-04-11 15:22:54 +02:00
|
|
|
RAILS_ENV=production bin/bundle exec rails --trace assets:precompile
|
2017-04-10 21:13:13 +02:00
|
|
|
CCOMMANDS
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-04-13 01:38:09 +02:00
|
|
|
# init rbenv & create bundle
|
|
|
|
sudo su - $app <<BCOMMANDS
|
|
|
|
. ~/.profile
|
|
|
|
type rbenv
|
|
|
|
BCOMMANDS
|
|
|
|
|
2017-04-08 04:04:27 +02:00
|
|
|
# Add Services
|
2017-04-30 00:35:01 +02:00
|
|
|
popd
|
2017-04-08 04:04:27 +02:00
|
|
|
|
|
|
|
sudo cp ../conf/mastodon-web.service /etc/systemd/system/mastodon-web.service
|
|
|
|
sudo chown root: /etc/systemd/system/mastodon-web.service
|
2017-04-09 16:56:56 +02:00
|
|
|
sudo cp ../conf/mastodon-sidekiq.service /etc/systemd/system/mastodon-sidekiq.service
|
2017-04-08 04:04:27 +02:00
|
|
|
sudo chown root: /etc/systemd/system/mastodon-sidekiq.service
|
2017-04-09 16:56:56 +02:00
|
|
|
sudo cp ../conf/mastodon-streaming.service /etc/systemd/system/mastodon-streaming.service
|
2017-04-08 04:04:27 +02:00
|
|
|
sudo chown root: /etc/systemd/system/mastodon-streaming.service
|
|
|
|
|
2017-04-10 21:09:27 +02:00
|
|
|
sudo systemctl daemon-reload
|
2017-04-08 04:04:27 +02:00
|
|
|
sudo systemctl enable /etc/systemd/system/mastodon-*.service
|
2017-04-13 01:38:09 +02:00
|
|
|
sudo systemctl start mastodon-web.service mastodon-sidekiq.service mastodon-streaming.service
|
2017-04-11 15:22:54 +02:00
|
|
|
# debug
|
2017-04-13 01:38:09 +02:00
|
|
|
sudo systemctl status mastodon-web.service mastodon-sidekiq.service mastodon-streaming.service
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-04-09 03:26:55 +02:00
|
|
|
# Add service YunoHost
|
|
|
|
sudo yunohost service add mastodon-web
|
|
|
|
sudo yunohost service add mastodon-sidekiq
|
|
|
|
sudo yunohost service add mastodon-streaming
|
|
|
|
|
2017-04-30 03:00:02 +02:00
|
|
|
# Create user
|
|
|
|
sudo su - $app <<UCOMMANDS
|
|
|
|
pushd ~/live
|
|
|
|
RAILS_ENV=production bundle exec rails c
|
|
|
|
account = Account.create!(username: '$admin_mastodon')
|
2017-05-08 11:06:33 +02:00
|
|
|
user = User.create!(email: '$admin_mastodon_mail', password: '$admin_pass', account: account)
|
2017-04-30 03:00:02 +02:00
|
|
|
UCOMMANDS
|
|
|
|
|
|
|
|
# Create administrator & confirm user
|
|
|
|
sudo su - $app <<ACOMMANDS
|
|
|
|
pushd ~/live
|
|
|
|
RAILS_ENV=production bin/bundle exec rails mastodon:make_admin USERNAME=$admin_mastodon
|
2017-05-08 11:06:33 +02:00
|
|
|
RAILS_ENV=production bin/bundle exec rails mastodon:confirm_email USER_EMAIL=$admin_mastodon_mail
|
2017-04-30 03:00:02 +02:00
|
|
|
ACOMMANDS
|
|
|
|
|
2017-04-08 04:04:27 +02:00
|
|
|
# Copy nginx config
|
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
|
|
|
|
# Install crontab
|
|
|
|
sudo cp ../conf/crontab_mastodon /etc/cron.d/$app
|
2017-04-10 04:55:10 +02:00
|
|
|
sudo sed -i "s@__APP__@$app@g" /etc/cron.d/$app
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2017-04-20 16:34:35 +02:00
|
|
|
# Unprotected url
|
2017-04-20 16:34:31 +02:00
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
|
|
|
|
2017-04-08 04:04:27 +02:00
|
|
|
# Reload SSOwat configuration
|
|
|
|
sudo yunohost app ssowatconf
|
|
|
|
|
2017-04-10 16:01:13 +02:00
|
|
|
# Reload Nginx
|
2017-04-20 16:34:31 +02:00
|
|
|
sudo systemctl reload nginx
|