2017-04-08 04:04:27 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
source _common.sh
|
2019-10-07 22:54:13 +02:00
|
|
|
source ynh_install_ruby__2
|
2019-08-11 00:20:48 +02:00
|
|
|
source ynh_add_swap
|
2018-04-06 21:01:26 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-06 16:08:48 +02:00
|
|
|
ynh_clean_setup () {
|
|
|
|
ynh_clean_check_starting
|
|
|
|
}
|
2018-04-06 21:01:26 +02:00
|
|
|
# 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
|
|
|
#=================================================
|
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')
|
2018-04-06 21:01:26 +02:00
|
|
|
|
2017-04-08 04:04:27 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Validating installation parameters..."
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2018-04-06 21:01:26 +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
|
|
|
|
2018-04-06 21:01:26 +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
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Storing installation settings..."
|
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=language --value=$language
|
2017-04-30 03:00:02 +02:00
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
2019-03-22 23:42:17 +01:00
|
|
|
# FIND AND OPEN A PORT
|
|
|
|
#=================================================
|
2021-01-09 22:44:16 +01:00
|
|
|
ynh_script_progression --message="Finding an available port..."
|
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)
|
2019-05-10 12:19:39 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=port_web --value=$port_web
|
2021-02-27 20:31:22 +01:00
|
|
|
|
|
|
|
port_stream=$(ynh_find_port --port=4000)
|
2019-05-10 12:19:39 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=port_stream --value=$port_stream
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..."
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2021-03-06 01:10:38 +01:00
|
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
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"
|
2021-03-06 01:10:38 +01:00
|
|
|
ynh_install_ruby --ruby_version=$RUBY_VERSION
|
2018-05-01 11:29:25 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring system user..."
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
2019-03-18 04:22:38 +01:00
|
|
|
# CREATE A POSTGRESQL DATABASE
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
2021-02-17 19:22:07 +01:00
|
|
|
ynh_script_progression --message="Creating a PostgreSQL database..."
|
2018-04-06 21:01:26 +02:00
|
|
|
|
2021-02-17 19:22:07 +01:00
|
|
|
# Create PostgreSQL database
|
2021-03-01 21:15:26 +01:00
|
|
|
db_name=$(ynh_sanitize_dbid --db_name="${app}_production")
|
|
|
|
db_user=$(ynh_sanitize_dbid --db_name=$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;"
|
2018-04-06 21:01:26 +02:00
|
|
|
|
2018-05-01 18:49:10 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..."
|
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
|
2020-10-29 23:23:19 +01:00
|
|
|
ynh_setup_source --dest_dir="$final_path/live"
|
2020-03-28 20:25:37 +01:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
2021-04-11 22:31:48 +02:00
|
|
|
chown -R $app:$app "$final_path"
|
2021-04-10 00:18:53 +02:00
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-04-10 00:18:53 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..."
|
2018-04-06 21:01:26 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
# Create a dedicated NGINX config
|
2019-05-10 12:19:39 +02:00
|
|
|
ynh_add_nginx_config 'port_web port_stream'
|
2018-04-06 21:01:26 +02:00
|
|
|
|
2019-03-18 04:22:38 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
2019-08-11 00:20:48 +02:00
|
|
|
#=================================================
|
|
|
|
# ADD SWAP IF NEEDED
|
|
|
|
#=================================================
|
2021-03-06 01:52:44 +01:00
|
|
|
ynh_script_progression --message="Adding swap if needed..."
|
2019-08-11 00:20:48 +02:00
|
|
|
|
2020-05-26 13:18:02 +02:00
|
|
|
total_memory=$(ynh_get_ram --total)
|
2019-08-11 00:20:48 +02:00
|
|
|
swap_needed=0
|
|
|
|
|
2020-05-26 13:19:50 +02:00
|
|
|
if [ $total_memory -lt $MEMORY_NEEDED ]; then
|
2020-05-26 13:18:02 +02:00
|
|
|
# Need a minimum of 2.5Go of memory
|
2020-05-26 13:19:50 +02:00
|
|
|
swap_needed=$(($MEMORY_NEEDED - $total_memory))
|
2019-08-11 00:20:48 +02:00
|
|
|
fi
|
|
|
|
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Adding $swap_needed Mo to swap..."
|
2019-08-11 00:20:48 +02:00
|
|
|
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
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Installing Ruby..."
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2020-05-19 01:20:45 +02:00
|
|
|
pushd "$final_path/live"
|
2021-03-06 01:10:38 +01:00
|
|
|
ynh_use_ruby
|
2021-03-08 00:57:36 +01:00
|
|
|
ynh_gem update --system
|
2021-03-07 20:17:05 +01:00
|
|
|
ynh_gem install bundler --no-document
|
2020-05-19 01:20:45 +02:00
|
|
|
popd
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2019-03-21 02:58:33 +01:00
|
|
|
#=================================================
|
2021-04-10 20:28:06 +02:00
|
|
|
# ADD A CONFIGURATION
|
2019-03-19 23:33:34 +01:00
|
|
|
#=================================================
|
2021-04-10 20:28:06 +02:00
|
|
|
ynh_script_progression --message="Adding a config file..."
|
2018-05-31 13:41:03 +02:00
|
|
|
|
2020-05-18 22:38:55 +02:00
|
|
|
config="$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-03-21 04:30:44 +01:00
|
|
|
|
2020-12-11 14:40:24 +01:00
|
|
|
secret_key_base=$(ynh_string_random --length=128)
|
2019-05-10 12:19:39 +02:00
|
|
|
ynh_app_setting_set --app="$app" --key=secret_key_base --value="$secret_key_base"
|
2019-03-23 01:24:41 +01:00
|
|
|
|
2020-12-11 14:40:24 +01:00
|
|
|
otp_secret=$(ynh_string_random --length=128)
|
2019-05-10 12:19:39 +02:00
|
|
|
ynh_app_setting_set --app="$app" --key=otp_secret --value="$otp_secret"
|
2019-03-21 04:30:44 +01:00
|
|
|
|
2021-02-27 20:31:22 +01:00
|
|
|
vapid_private_key=""
|
|
|
|
vapid_public_key=""
|
|
|
|
|
2021-03-01 00:37:33 +01:00
|
|
|
ynh_add_config --template="../conf/.env.production.sample" --destination="$config"
|
|
|
|
|
2021-04-10 20:28:06 +02:00
|
|
|
chmod 400 "$config"
|
|
|
|
chown $app:$app "$config"
|
|
|
|
|
2020-05-19 01:31:51 +02:00
|
|
|
ynh_replace_string --match_string="registrations_mode: 'open'" --replace_string="registrations_mode: 'none'" --target_file="$final_path/live/config/settings.yml"
|
|
|
|
ynh_replace_string --match_string="min_invite_role: 'admin'" --replace_string="min_invite_role: 'none'" --target_file="$final_path/live/config/settings.yml"
|
|
|
|
|
2021-02-27 20:31:22 +01:00
|
|
|
ynh_store_file_checksum --file="$final_path/live/config/settings.yml"
|
|
|
|
|
2021-04-10 20:28:06 +02:00
|
|
|
chmod 400 "$final_path/live/config/settings.yml"
|
|
|
|
chown $app:$app "$final_path/live/config/settings.yml"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring a systemd service..."
|
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config --service="$app-web" --template="mastodon-web.service" --others_var="port_web RBENV_ROOT"
|
|
|
|
ynh_add_systemd_config --service="$app-sidekiq" --template="mastodon-sidekiq.service" --others_var="RBENV_ROOT"
|
|
|
|
ynh_add_systemd_config --service="$app-streaming" --template="mastodon-streaming.service" --others_var="port_stream ynh_node_load_PATH ynh_node"
|
|
|
|
|
2019-03-19 23:33:34 +01:00
|
|
|
#=================================================
|
|
|
|
# INSTALLING MASTODON
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Installing Mastodon..."
|
2019-03-19 23:33:34 +01:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
pushd "$final_path/live"
|
2021-03-08 00:45:35 +01:00
|
|
|
sudo -u $app $ynh_ruby_load_path bin/bundle config deployment 'true'
|
|
|
|
sudo -u $app $ynh_ruby_load_path bin/bundle config without 'development test'
|
|
|
|
sudo -u $app $ynh_ruby_load_path bin/bundle install -j$(getconf _NPROCESSORS_ONLN)
|
2019-03-21 02:31:06 +01:00
|
|
|
ynh_use_nodejs
|
2021-03-06 01:10:38 +01:00
|
|
|
sudo -u $app $ynh_node_load_PATH yarn install --pure-lockfile
|
2020-05-19 01:20:45 +02:00
|
|
|
echo "SAFETY_ASSURED=1">> $config
|
2021-03-08 00:45:35 +01:00
|
|
|
sudo -u $app RAILS_ENV=production $ynh_ruby_load_path bin/bundle exec rails db:setup --quiet
|
|
|
|
sudo -u $app RAILS_ENV=production $ynh_ruby_load_path bin/bundle exec rails assets:precompile --quiet
|
|
|
|
sudo -u $app RAILS_ENV=production $ynh_ruby_load_path bin/bundle exec rake mastodon:webpush:generate_vapid_key > key.txt
|
|
|
|
sudo -u $app RAILS_ENV=production $ynh_ruby_load_path bin/tootctl accounts create "$admin" --email="$admin_mail" --confirmed --role=admin > /dev/null
|
|
|
|
sudo -u $app RAILS_ENV=production $ynh_ruby_load_path bin/tootctl accounts modify "$admin" --approve
|
2019-03-21 02:07:49 +01:00
|
|
|
popd
|
|
|
|
|
2019-10-10 21:22:19 +02:00
|
|
|
vapid_private_key=$(grep -oP "VAPID_PRIVATE_KEY=\K.+" "$final_path/live/key.txt")
|
2019-05-10 12:19:39 +02:00
|
|
|
ynh_app_setting_set --app="$app" --key=vapid_private_key --value="$vapid_private_key"
|
2021-02-27 20:31:22 +01:00
|
|
|
|
|
|
|
vapid_public_key=$(grep -oP "VAPID_PUBLIC_KEY=\K.+" "$final_path/live/key.txt")
|
2019-05-10 12:19:39 +02:00
|
|
|
ynh_app_setting_set --app="$app" --key=vapid_public_key --value="$vapid_public_key"
|
2019-03-23 02:58:59 +01:00
|
|
|
|
2021-04-10 20:28:06 +02:00
|
|
|
ynh_secure_remove --file="$final_path/live/key.txt"
|
|
|
|
|
2021-03-24 19:58:27 +01:00
|
|
|
ynh_delete_file_checksum --file="$config"
|
|
|
|
|
2021-02-27 20:31:22 +01:00
|
|
|
ynh_add_config --template="../conf/.env.production.sample" --destination="$config"
|
|
|
|
|
2021-04-10 20:28:06 +02:00
|
|
|
chmod 400 "$config"
|
|
|
|
chown $app:$app "$config"
|
2019-03-23 02:58:59 +01:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
#=================================================
|
2020-05-26 13:44:21 +02:00
|
|
|
# SETUP THE CRON FILE
|
2019-03-21 02:07:49 +01:00
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Setuping the cron file..."
|
2019-03-21 02:07:49 +01:00
|
|
|
|
2021-02-27 20:31:22 +01:00
|
|
|
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
|
2018-04-06 21:01:26 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2020-02-23 19:51:58 +01:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..."
|
2018-04-06 21:01:26 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
yunohost service add "$app-web" --description="$app web service"
|
|
|
|
yunohost service add "$app-sidekiq" --description="$app sidekiq service"
|
|
|
|
yunohost service add "$app-streaming" --description="$app streaming service"
|
2017-04-08 04:04:27 +02:00
|
|
|
|
2019-05-10 12:19:39 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2019-05-10 12:19:39 +02:00
|
|
|
|
2021-03-07 20:17:05 +01:00
|
|
|
ynh_systemd_action --service_name=${app}-web --action="start" --log_path=systemd --line_match="Listening on"
|
2020-12-11 14:40:13 +01:00
|
|
|
ynh_systemd_action --service_name=${app}-sidekiq --action="start" --log_path=systemd --line_match="Schedules Loaded"
|
2019-05-10 16:34:57 +02:00
|
|
|
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
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2021-02-17 19:22:07 +01:00
|
|
|
ynh_script_progression --message="Configuring permissions..."
|
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
|
2021-02-17 19:22:07 +01:00
|
|
|
# Everyone can access the app.
|
|
|
|
# The "main" permission is automatically created before the install script.
|
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2019-03-21 02:07:49 +01:00
|
|
|
fi
|
2017-04-20 16:34:31 +02:00
|
|
|
|
2021-03-01 01:10:48 +01:00
|
|
|
ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --auth_header="false" --show_tile="false" --protected="true"
|
|
|
|
|
2018-04-06 21:01:26 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-04-10 00:18:53 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
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
|
|
|
|
#=================================================
|
|
|
|
|
2020-06-02 18:34:04 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed"
|