1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/glitchsoc_ynh.git synced 2024-09-03 19:15:59 +02:00
glitchsoc_ynh/scripts/install

301 lines
13 KiB
Text
Raw Normal View History

2017-04-08 04:04:27 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-04-08 04:04:27 +02:00
source _common.sh
2019-10-07 22:54:13 +02:00
source ynh_install_ruby__2
source ynh_add_extra_apt_repos__3
2019-05-10 11:36:13 +02:00
source ynh_send_readme_to_admin__2
2019-08-11 00:20:48 +02:00
source ynh_add_swap
2019-08-11 01:40:06 +02:00
source ynh_check_ram
source /usr/share/yunohost/helpers
2017-04-08 04:04:27 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2020-02-23 18:44:50 +01:00
ynh_script_progression --message="Managing script failure..." --weight=1
ynh_clean_setup () {
ynh_clean_check_starting
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
2019-03-18 04:22:38 +01:00
#=================================================
2020-02-23 18:44:50 +01:00
ynh_script_progression --message="Retrieving arguments from the manifest..." --weight=1
2017-04-08 04:04:27 +02:00
domain=$YNH_APP_ARG_DOMAIN
2019-03-18 04:22:38 +01:00
path_url="/"
2019-03-22 23:09:55 +01:00
admin=$YNH_APP_ARG_ADMIN
is_public=$YNH_APP_ARG_IS_PUBLIC
2017-04-15 04:20:28 +02:00
language=$YNH_APP_ARG_LANGUAGE
2017-04-08 04:04:27 +02:00
2019-03-22 23:09:55 +01:00
admin_mail=$(ynh_user_get_info $admin 'mail')
2017-04-08 04:04:27 +02:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Validating installation parameters..." --weight=2
2017-04-08 04:04:27 +02:00
final_path=/var/www/$app
2019-05-10 12:19:39 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2017-04-08 04:04:27 +02:00
# Register (book) web path
2019-05-10 12:19:39 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2017-04-08 04:04:27 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=2
2017-04-08 04:04:27 +02:00
2019-05-10 12:19:39 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
ynh_app_setting_set --app=$app --key=admin --value=$admin
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
ynh_app_setting_set --app=$app --key=language --value=$language
#=================================================
# STANDARD MODIFICATIONS
#=================================================
2019-03-22 23:42:17 +01:00
# FIND AND OPEN A PORT
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Configuring firewall..." --weight=1
2017-04-08 04:04:27 +02:00
2020-02-23 18:44:50 +01:00
# Find an available port
2019-05-15 12:18:39 +02:00
port_web=$(ynh_find_port --port=3000)
port_stream=$(ynh_find_port --port=4000)
2019-03-22 23:42:17 +01:00
# Open this port
2019-05-10 12:19:39 +02:00
ynh_app_setting_set --app=$app --key=port_web --value=$port_web
ynh_app_setting_set --app=$app --key=port_stream --value=$port_stream
2017-04-08 04:04:27 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=86
2017-04-08 04:04:27 +02:00
2020-02-10 21:01:52 +01:00
ynh_install_nodejs --nodejs_version="10"
2019-03-19 23:11:01 +01:00
ynh_install_app_dependencies $pkg_dependencies
2019-05-14 21:04:05 +02:00
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
2018-05-01 11:29:25 +02:00
#=================================================
2019-03-18 04:22:38 +01:00
# CREATE A POSTGRESQL DATABASE
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=5
2018-06-21 04:48:02 +02:00
# Create postgresql database
db_name="${app}_production"
2019-05-10 12:19:39 +02:00
db_user=$app
2020-02-25 00:17:48 +01:00
db_pwd=$(ynh_string_random --length=30)
2019-05-10 12:19:39 +02:00
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_app_setting_set --app=$app --key=db_pwd --value=$db_pwd
2018-06-21 04:48:02 +02:00
ynh_psql_test_if_first_run
2019-05-10 19:38:49 +02:00
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
2019-10-08 01:22:50 +02:00
ynh_psql_execute_as_root --sql="ALTER USER $db_user CREATEDB;"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Setting up source files..." --weight=5
2017-04-11 13:54:13 +02:00
2019-05-10 12:19:39 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2019-03-21 02:31:06 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2019-03-21 02:50:01 +01:00
mkdir $final_path
2019-05-10 16:34:57 +02:00
ynh_setup_source --dest_dir="$final_path/live"
# Temporary workaround for https://github.com/tootsuite/mastodon/issues/13292
ynh_replace_string --match_string="sidekiq-unique-jobs (6.0.18)" --replace_string="sidekiq-unique-jobs (6.0.20)" --target_file="$final_path/live/Gemfile.lock"
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Configuring nginx web server..." --weight=3
2018-09-03 01:02:28 +02:00
# Create a dedicated nginx config
2019-05-10 12:19:39 +02:00
ynh_add_nginx_config 'port_web port_stream'
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Configuring system user..." --weight=4
2018-06-21 04:48:02 +02:00
# Create a system user
2019-05-10 12:19:39 +02:00
ynh_system_user_create --username=$app --home_dir=$final_path
2017-04-08 04:04:27 +02:00
2019-03-18 04:22:38 +01:00
#=================================================
# SPECIFIC SETUP
2019-08-11 00:20:48 +02:00
#=================================================
# ADD SWAP IF NEEDED
#=================================================
2020-02-23 18:44:50 +01:00
ynh_script_progression --message="Adding swap is needed..." --weight=4
2019-08-11 00:20:48 +02:00
total_memory=$(ynh_check_ram)
total_swap=$(ynh_check_ram --only_swap)
swap_needed=0
if [ $total_memory -lt 2560 ]; then
# Need a minimum of 8Go of memory
swap_needed=$((2560 - $total_memory))
fi
ynh_script_progression --message="Adding $swap_needed Mo to swap..." --weight=1
ynh_add_swap --size=$swap_needed
2019-03-19 23:33:34 +01:00
#=================================================
2019-03-21 03:26:05 +01:00
# INSTALLING RUBY AND BUNDLER
2019-03-21 02:58:33 +01:00
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Installing Ruby..." --weight=424
2017-04-08 04:04:27 +02:00
2019-10-07 22:54:13 +02:00
ynh_install_ruby --ruby_version=2.6.5
/opt/rbenv/versions/2.6.5/bin/gem update --system
2019-12-28 14:44:18 +01:00
/opt/rbenv/versions/2.6.5/bin/gem install bundler:1.17.3 --no-document
2017-04-08 04:04:27 +02:00
2019-03-21 02:58:33 +01:00
#=================================================
2019-03-19 23:33:34 +01:00
# MODIFY A CONFIG FILE
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Modifying a config file..." --weight=2
2019-03-21 04:30:44 +01:00
cp -f ../conf/.env.production.sample "$final_path/live/.env.production"
2019-05-10 12:19:39 +02:00
ynh_replace_string --match_string="__DB_USER__" --replace_string="$app" --target_file="$final_path/live/.env.production"
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$final_path/live/.env.production"
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$final_path/live/.env.production"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$final_path/live/.env.production"
ynh_replace_string --match_string="__SMTP_FROM_ADDRESS__" --replace_string="$admin_mail" --target_file="${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)"
2019-05-10 12:19:39 +02:00
ynh_replace_string --match_string="__LANGUAGE__" --replace_string="$language" --target_file="$final_path/live/.env.production"
2017-04-15 04:20:28 +02:00
paperclip_secret=$(head -n128 /dev/urandom | tail -n +1 | tr -dc -d 'a-z0-9' | head -c128)
2019-05-10 12:19:39 +02:00
ynh_replace_string --match_string="PAPERCLIP_SECRET=" --replace_string="PAPERCLIP_SECRET=$paperclip_secret" --target_file="${final_path}/live/.env.production"
ynh_app_setting_set --app="$app" --key=paperclip_secret --value="$paperclip_secret"
2019-03-21 04:30:44 +01:00
secret_key_base=$(head -n128 /dev/urandom | tail -n +1 | tr -dc -d 'a-z0-9' | head -c128)
2019-05-10 12:19:39 +02:00
ynh_replace_string --match_string="__SECRET_KEY_BASE__" --replace_string="$secret_key_base" --target_file="$final_path/live/.env.production"
ynh_app_setting_set --app="$app" --key=secret_key_base --value="$secret_key_base"
2019-03-23 01:24:41 +01:00
otp_secret=$(head -n128 /dev/urandom | tail -n +1 | tr -dc -d 'a-z0-9' | head -c128)
2019-05-10 12:19:39 +02:00
ynh_replace_string --match_string="__OTP_SECRET__" --replace_string="$otp_secret" --target_file="$final_path/live/.env.production"
ynh_app_setting_set --app="$app" --key=otp_secret --value="$otp_secret"
2019-03-21 04:30:44 +01:00
2019-03-19 23:33:34 +01:00
#=================================================
# INSTALLING MASTODON
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Installing Mastodon..." --weight=2230
2019-03-19 23:33:34 +01:00
2019-01-07 07:23:50 +01:00
chown -R "$app": "$final_path"
2019-03-21 02:07:49 +01:00
pushd "$final_path/live"
2019-03-21 02:31:06 +01:00
ynh_use_nodejs
2019-10-07 22:54:13 +02:00
sudo -u "$app" env PATH=$PATH /opt/rbenv/versions/2.6.5/bin/bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test
2019-03-21 02:31:06 +01:00
sudo -u "$app" env PATH=$PATH yarn install --pure-lockfile
sudo -u "$app" echo "SAFETY_ASSURED=1">> .env.production
2019-10-08 01:22:50 +02:00
sudo -u "$app" env PATH=$PATH RAILS_ENV=production /opt/rbenv/versions/2.6.5/bin/bundle exec rails db:setup --quiet
2019-10-07 22:54:13 +02:00
sudo -u "$app" env PATH=$PATH RAILS_ENV=production /opt/rbenv/versions/2.6.5/bin/bundle exec rails assets:precompile --quiet
sudo -u "$app" env PATH=$PATH RAILS_ENV=production /opt/rbenv/versions/2.6.5/bin/bundle exec rake mastodon:webpush:generate_vapid_key > key.txt
2019-03-22 23:09:55 +01:00
sudo -u "$app" env PATH=$PATH RAILS_ENV=production bin/tootctl accounts create "$admin" --email="$admin_mail" --confirmed --role=admin > acc.txt
2019-03-21 02:07:49 +01:00
popd
2019-03-21 02:31:06 +01:00
admin_pass=$( tail -1 $final_path/live/acc.txt | head -1 | cut -c 15- )
2019-05-10 12:19:39 +02:00
ynh_secure_remove --file="$final_path/live/acc.txt"
2019-03-21 02:07:49 +01:00
2019-10-10 21:22:19 +02:00
vapid_private_key=$(grep -oP "VAPID_PRIVATE_KEY=\K.+" "$final_path/live/key.txt")
vapid_public_key=$(grep -oP "VAPID_PUBLIC_KEY=\K.+" "$final_path/live/key.txt")
2019-03-23 02:58:59 +01:00
2019-05-10 12:19:39 +02:00
ynh_replace_string --match_string="__VAPID_PRIVATE_KEY__" --replace_string="$vapid_private_key" --target_file="${final_path}/live/.env.production"
ynh_replace_string --match_string="__VAPID_PUBLIC_KEY__" --replace_string="$vapid_public_key" --target_file="${final_path}/live/.env.production"
2019-03-23 02:58:59 +01:00
2019-05-10 12:19:39 +02:00
ynh_app_setting_set --app="$app" --key=vapid_private_key --value="$vapid_private_key"
ynh_app_setting_set --app="$app" --key=vapid_public_key --value="$vapid_public_key"
2019-03-23 02:58:59 +01:00
2019-05-10 12:19:39 +02:00
ynh_secure_remove --file="$final_path/live/key.txt"
2019-03-23 02:58:59 +01:00
2019-03-21 02:07:49 +01:00
#=================================================
# SETUP CRON JOB FOR REMOVING CACHE
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Setuping a cron job for removing cache..." --weight=1
2019-03-21 02:07:49 +01:00
2019-05-10 12:19:39 +02:00
ynh_replace_string --match_string="__FINAL_PATH__" --replace_string="$final_path" --target_file="../conf/cron"
ynh_replace_string --match_string="__USER__" --replace_string="$app" --target_file="../conf/cron"
2019-03-21 02:07:49 +01:00
sudo cp -f ../conf/cron /etc/cron.d/$app
2018-06-21 04:48:02 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=5
2018-06-21 04:48:02 +02:00
# Create a dedicated systemd config
2019-05-10 12:19:39 +02:00
ynh_replace_string --match_string="__PORT_WEB__" --replace_string="$port_web" --target_file="../conf/mastodon-web.service"
ynh_replace_string --match_string="__PORT_STREAM__" --replace_string="$port_stream" --target_file="../conf/mastodon-streaming.service"
ynh_replace_string --match_string="__NODEJS_PATH__" --replace_string="$nodejs_path" --target_file="../conf/mastodon-streaming.service"
ynh_add_systemd_config --service="$app-web" --template="mastodon-web.service"
ynh_add_systemd_config --service="$app-sidekiq" --template="mastodon-sidekiq.service"
ynh_add_systemd_config --service="$app-streaming" --template="mastodon-streaming.service"
2017-04-09 03:26:55 +02:00
2019-03-21 02:07:49 +01:00
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Storing the config file checksum..." --weight=1
2017-04-09 03:26:55 +02:00
2019-03-21 02:07:49 +01:00
# Calculate and store the config file checksum into the app settings
2019-05-15 12:18:39 +02:00
ynh_store_file_checksum --file="${final_path}/live/.env.production"
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Securing files and directories..." --weight=9
2019-03-21 02:07:49 +01:00
# Set permissions to app files
2018-12-26 00:12:07 +01:00
chown -R "$app": "$final_path"
#=================================================
2020-02-23 19:51:58 +01:00
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2020-02-23 19:51:58 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=3
yunohost service add "$app-web"
yunohost service add "$app-sidekiq"
yunohost service add "$app-streaming"
2017-04-08 04:04:27 +02:00
2019-05-10 12:19:39 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=47
2019-05-10 12:19:39 +02:00
2019-05-10 16:34:57 +02:00
ynh_systemd_action --service_name=${app}-web --action="start" --log_path=systemd --line_match="Listening on tcp"
ynh_systemd_action --service_name=${app}-sidekiq --action="start" --log_path=systemd --line_match="Starting processing"
ynh_systemd_action --service_name=${app}-streaming --action="start" --log_path=systemd --line_match="Worker 1 now listening"
2019-05-10 12:19:39 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Configuring SSOwat..." --weight=2
2017-04-08 04:04:27 +02:00
2019-03-21 02:07:49 +01:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway.
2019-05-10 12:19:39 +02:00
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
2019-03-21 02:07:49 +01:00
fi
2017-04-20 16:34:31 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Reloading nginx web server..." --weight=2
2017-04-08 04:04:27 +02:00
2019-05-10 12:19:39 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2018-06-21 04:48:02 +02:00
2019-03-18 04:22:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Installation of $app completed" --last