1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/discourse_ynh.git synced 2024-09-03 18:26:18 +02:00
discourse_ynh/scripts/install

230 lines
9.3 KiB
Text
Raw Normal View History

2018-04-02 16:36:02 +02:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2018-04-02 16:36:02 +02:00
2024-01-26 22:16:29 +01:00
if [ "${PACKAGE_CHECK_EXEC:-0}" -ne 1 ]; then
# Check memory requirements
check_memory_requirements
fi
2018-04-02 16:36:02 +02:00
#=================================================
2024-01-26 22:16:29 +01:00
# INITIALIZE AND STORE SETTINGS
2018-04-02 16:36:02 +02:00
#=================================================
2024-01-26 22:16:29 +01:00
relative_url_root=${path%/}
2024-01-26 22:16:29 +01:00
# Create a random password
admin_pwd=$(ynh_string_random)
admin_mail=$(ynh_user_get_info --username=$admin --key=mail)
2018-04-02 16:36:02 +02:00
2024-01-26 22:16:29 +01:00
redis_db=$(ynh_redis_get_free_db)
ynh_app_setting_set --app="$app" --key=redis_db --value="$redis_db"
2018-04-02 16:36:02 +02:00
2024-01-26 22:16:29 +01:00
# Set a secret value
secret="$(ynh_string_random)"
2018-04-02 16:36:02 +02:00
2024-01-26 22:16:29 +01:00
# We assume for the moment that ARM devices are only dual core, so
# we restrict the number of workers to 2 (the default is 3)
if dpkg --print-architecture | grep -q "arm"; then
unicorn_workers=2
else
2024-01-26 22:16:29 +01:00
unicorn_workers=3
fi
2024-01-26 22:16:29 +01:00
ynh_app_setting_set --app="$app" --key=unicorn_workers --value=$unicorn_workers
2018-04-02 16:36:02 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2024-01-26 22:16:29 +01:00
ynh_script_progression --message="Installing Ruby..."
ynh_exec_warn_less ynh_install_ruby --ruby_version="$ruby_version"
ynh_use_ruby
2018-04-02 16:36:02 +02:00
2024-01-26 22:16:29 +01:00
ynh_script_progression --message="Installing NodeJS..."
2022-07-27 04:15:08 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2018-04-02 16:36:02 +02:00
2024-08-29 13:56:11 +02:00
ynh_script_progression --message="Building and installing ImageMagick v7..."
install_imagemagick
ynh_script_progression --message="Installing Oxipng..."
install_oxipng
2021-04-10 01:48:01 +02:00
#=================================================
2024-01-26 22:16:29 +01:00
# CONFIGURE A POSTGRESQL DATABASE
#=================================================
2024-01-26 22:16:29 +01:00
ynh_script_progression --message="Configuring $app's PostgreSQL database..."
2018-04-02 16:36:02 +02:00
# Set extensions
2024-01-26 22:16:29 +01:00
ynh_psql_execute_as_root --database="$db_name" --sql="CREATE EXTENSION IF NOT EXISTS hstore;"
ynh_psql_execute_as_root --database="$db_name" --sql="CREATE EXTENSION IF NOT EXISTS pg_trgm;"
2018-04-02 16:36:02 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Setting up source files..."
# Specific actions on ARM architecture
2024-01-26 22:16:29 +01:00
if dpkg --print-architecture | grep -q "arm"; then
# Unapply commit cf9b4a789b855b5199e98a13424e409854a8e848 that breaks ARM
# compatibility by pointing to a recent libv8 version
# This is due to this libv8 issue (https://github.com/cowboyd/libv8/issues/261)
# that prevents it from being compiled on ARM hence no binary gem is available yet
cp ../sources/patches_arm/* ../sources/patches
fi
2018-04-02 16:36:02 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir/discourse"
2018-04-02 16:36:02 +02:00
# Install LDAP plugin
2024-08-30 13:28:50 +02:00
# See https://github.com/jonmbake/discourse-ldap-auth/issues/77
ynh_setup_source --source_id=ldap-auth --dest_dir="$install_dir/discourse/plugins/ldap"
2021-04-10 01:48:01 +02:00
2024-01-26 22:16:29 +01:00
# Add a pids and socket directory for the systemd script.
mkdir -p "$install_dir/discourse/tmp/pids"
mkdir -p "$install_dir/discourse/tmp/sockets"
mkdir -p "$install_dir/discourse/public/forum"
2018-04-02 16:36:02 +02:00
2024-01-26 22:16:29 +01:00
# Create specific folders and links for subfolder compatibility
# (see: https://meta.discourse.org/t/subfolder-support-with-docker/30507)
ln -s "$install_dir/discourse/public/uploads" "$install_dir/discourse/public/forum/uploads"
ln -s "$install_dir/discourse/public/backups" "$install_dir/discourse/public/forum/backups"
2018-06-03 17:56:14 +02:00
2024-01-26 22:16:29 +01:00
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2018-04-02 16:36:02 +02:00
#=================================================
2022-05-29 17:36:13 +02:00
# ADD A CONFIGURATION
2018-04-02 16:36:02 +02:00
#=================================================
2024-01-26 22:16:29 +01:00
ynh_script_progression --message="Adding $app's configuration file..."
2018-08-01 23:08:07 +02:00
ynh_add_config --template="discourse_defaults.conf" --destination="$install_dir/discourse/config/discourse.conf"
ynh_add_config --template="secrets.yml" --destination="$install_dir/discourse/config/secrets.yml"
2024-08-30 13:28:50 +02:00
ynh_add_config --template="settings.yml" --destination="$install_dir/discourse/plugins/ldap/config/settings.yml"
2018-04-02 16:36:02 +02:00
# Disable svgo worker
echo "svgo: false" | ynh_exec_as "$app" tee "$install_dir/discourse/.image_optim.yml" >/dev/null
2018-04-02 16:36:02 +02:00
#=================================================
# SETUP UNICORN, A RUBY SERVER
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Setting up Unicorn..."
2018-04-29 11:25:32 +02:00
# On ARM architecture, replace bundled libpsl by system native libpsl
# because the provided binary isn't compatible
2024-01-26 22:16:29 +01:00
if dpkg --print-architecture | grep -q "arm"; then
(
cd "$install_dir/discourse/vendor/bundle/ruby"/*/"gems/mini_suffix-*/vendor"
2024-01-26 22:16:29 +01:00
rm libpsl.so
ln -s "$(ldconfig -p | grep libpsl | awk 'END {print $NF}')" libpsl.so
)
2018-04-29 11:25:32 +02:00
fi
pushd "$install_dir/discourse"
2024-07-26 15:40:31 +02:00
# Install bundler, a gems installer
ynh_gem install bundler
# Install without documentation
echo "gem: --no-ri --no-rdoc" | ynh_exec_as "$app" tee "$install_dir/.gemrc" >/dev/null
# Specific actions on ARM architecture
if dpkg --print-architecture | grep -q "arm"; then
# Define the platform specifically to retrieve binaries
# for libv8 because it currently doesn't compile on ARM devices
_exec_as_app_with_ruby_node "$install_dir/discourse/bin/bundle" config specific_platform arm-linux
2024-07-26 15:40:31 +02:00
fi
# Install dependencies
_exec_as_app_with_ruby_node "$install_dir/discourse/bin/bundle" config set path 'vendor/bundle'
_exec_as_app_with_ruby_node "$install_dir/discourse/bin/bundle" config set without test development
_exec_as_app_with_ruby_node MAKEFLAGS=-j2 "$install_dir/discourse/bin/bundle" install --jobs 2
2024-07-26 15:40:31 +02:00
popd
pushd "$install_dir/discourse"
2024-01-26 22:16:29 +01:00
ynh_use_nodejs
ynh_npm install --location=global terser
ynh_npm install --location=global uglify-js
ynh_exec_warn_less _exec_as_app_with_ruby_node yarn install --frozen-lockfile
ynh_exec_warn_less _exec_as_app_with_ruby_node yarn cache clean
2022-07-27 04:15:08 +02:00
popd
2018-04-02 16:36:02 +02:00
#=================================================
# PREPARE THE DATABASE
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Preparing the database..."
2018-04-02 16:36:02 +02:00
pushd "$install_dir/discourse"
ynh_exec_warn_less _exec_as_app_with_ruby_node RAILS_ENV=production "$install_dir/discourse/bin/bundle" exec rake db:migrate
ynh_exec_warn_less _exec_as_app_with_ruby_node RAILS_ENV=production "$install_dir/discourse/bin/bundle" exec rake themes:update assets:precompile
popd
2022-05-29 17:36:13 +02:00
2024-01-26 22:16:29 +01:00
# Set default data (especially to have correct image URLs for subfolder install)
ynh_add_config --template="provisioning.sql" --destination="$install_dir/provisioning.sql"
ynh_psql_connect_as --user="$db_user" --password="$db_pwd" --database="$db_name" < "$install_dir/provisioning.sql"
ynh_secure_remove --file="$install_dir/provisioning.sql"
2018-04-02 16:36:02 +02:00
#=================================================
# CREATE DISCOURSE ADMIN USER
2018-04-02 16:36:02 +02:00
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Creating Discourse admin user..."
2018-04-02 16:36:02 +02:00
pushd "$install_dir/discourse"
_exec_as_app_with_ruby_node RAILS_ENV=production bin/rake admin:create <<< "$admin_mail
2018-04-03 18:28:04 +02:00
$admin_pwd
$admin_pwd
y
"
popd
2018-04-02 16:36:02 +02:00
#=================================================
# CONFIGURE PLUGINS
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Configuring plugins..."
# Patch ldap-auth plugin dependency (omniauth-ldap) to fix it when using domain subfolder
# (Can only do that now because we are patching dependencies which have just been downloaded)
# Patch applied: https://github.com/omniauth/omniauth-ldap/pull/16
2024-08-30 13:28:50 +02:00
patch -p1 -d "$install_dir/discourse/plugins/ldap/gems/$ruby_version/gems/omniauth-ldap"*/ \
2024-01-26 22:16:29 +01:00
< "../conf/ldap-auth-fix-subfolder.patch"
2018-04-02 16:36:02 +02:00
#=================================================
2024-01-26 22:16:29 +01:00
# SYSTEM CONFIGURATION
2018-04-02 16:36:02 +02:00
#=================================================
2024-01-26 22:16:29 +01:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2018-04-02 16:36:02 +02:00
2024-01-26 22:16:29 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
# Reference: https://meta.discourse.org/t/subfolder-support-with-docker/30507?u=falco&source_topic_id=54191
if [ "$path" != "/" ] ; then
ynh_replace_string --target_file="/etc/nginx/conf.d/$domain.d/$app.conf" \
--match_string='$proxy_add_x_forwarded_for' \
--replace_string='$http_your_original_ip_header'
2018-04-29 11:25:32 +02:00
fi
2024-01-26 22:16:29 +01:00
ynh_store_file_checksum --file="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-03-15 19:50:18 +01:00
2024-01-26 22:16:29 +01:00
additional_env="UNICORN_WORKERS=$unicorn_workers"
ynh_add_systemd_config
yunohost service add "$app" --log "$install_dir/discourse/log/unicorn.stderr.log" "$install_dir/discourse/log/unicorn.stdout.log" "$install_dir/discourse/log/production.log"
2018-04-02 16:36:02 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate --logfile="$install_dir/discourse/log/unicorn.stderr.log"
ynh_use_logrotate --logfile="$install_dir/discourse/log/unicorn.stdout.log"
ynh_use_logrotate --logfile="$install_dir/discourse/log/production.log"
2018-04-02 16:36:02 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-01-26 22:16:29 +01:00
ynh_script_progression --message="Starting $app's systemd service..."
# Start a systemd service
ynh_systemd_action --service_name="$app" --action="start" --log_path="$install_dir/discourse/log/unicorn.stdout.log" --line_match="INFO -- : worker=$((unicorn_workers-1)) ready"
2018-04-02 16:36:02 +02:00
#=================================================
# END OF SCRIPT
2018-04-02 16:36:02 +02:00
#=================================================
2020-05-30 17:05:03 +02:00
ynh_script_progression --message="Installation of $app completed"