mirror of
https://github.com/YunoHost-Apps/diaspora_ynh.git
synced 2024-09-03 18:26:13 +02:00
16d1654d13
from an irc conv on #diaspora: 17:38 <autra> hi! Can I run diaspora on a context_path, meaning on https://domain.tld/diaspora for instance? Or can I only do it on diaspora.domain.tld? 17:46 <jhass> unfortunately only the latter is really supported
241 lines
9.6 KiB
Bash
Executable file
241 lines
9.6 KiB
Bash
Executable file
#!/bin/bash
|
||
|
||
# TODO
|
||
# - which service to register to ynuhosto? diaspora.target only ? All of them ?
|
||
# - backup / restore
|
||
# - changeurl ? Is that possible ? or even a good idea ?
|
||
# - a setting to enable / disable registration
|
||
# - say something about the registration to https://the-federation.info/
|
||
|
||
#=================================================
|
||
# GENERIC START
|
||
#=================================================
|
||
# IMPORT GENERIC HELPERS
|
||
#=================================================
|
||
|
||
source _common.sh
|
||
source /usr/share/yunohost/helpers
|
||
|
||
#=================================================
|
||
# MANAGE SCRIPT FAILURE
|
||
#=================================================
|
||
|
||
# Exit if an error occurs during the execution of the script
|
||
ynh_abort_if_errors
|
||
|
||
#=================================================
|
||
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
||
#=================================================
|
||
|
||
domain=$YNH_APP_ARG_DOMAIN
|
||
admin=$YNH_APP_ARG_ADMIN
|
||
admin_password=$YNH_APP_ARG_ADMIN_PASSWORD
|
||
admin_email=$(ynh_user_get_info --username=$admin --key=mail)
|
||
|
||
|
||
# This is a multi-instance app, meaning it can be installed several times independently
|
||
# The id of the app as stated in the manifest is available as $YNH_APP_ID
|
||
# The instance number is available as $YNH_APP_INSTANCE_NUMBER (equals "1", "2", ...)
|
||
# The app instance name is available as $YNH_APP_INSTANCE_NAME
|
||
# - the first time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample
|
||
# - the second time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample__2
|
||
# - ynhexample__{N} for the subsequent installations, with N=3,4, ...
|
||
# The app instance name is probably what you are interested the most, since this is
|
||
# guaranteed to be unique. This is a good unique identifier to define installation path,
|
||
# db names, ...
|
||
app=$YNH_APP_INSTANCE_NAME
|
||
|
||
#=================================================
|
||
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
||
#=================================================
|
||
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
||
|
||
# Check web path availability
|
||
ynh_webpath_available --domain=$domain --path_url=/
|
||
# check path availability
|
||
final_path=/var/www/$app
|
||
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
||
# Register (book) web path
|
||
ynh_webpath_register --app=$app --domain=$domain --path_url=/
|
||
|
||
#=================================================
|
||
# STORE SETTINGS FROM MANIFEST
|
||
#=================================================
|
||
ynh_script_progression --message="Saving app settings..." --time --weight=1
|
||
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
||
ynh_app_setting_set --app=$app --key=path --value=/
|
||
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
||
|
||
#=================================================
|
||
# STANDARD MODIFICATIONS
|
||
#=================================================
|
||
|
||
#=================================================
|
||
# INSTALL DEPENDENCIES
|
||
#=================================================
|
||
ynh_script_progression --message="Installing dependencies..." --time --weight=27
|
||
ynh_install_app_dependencies $pkg_dependencies $ruby_build_dependencies
|
||
|
||
#=================================================
|
||
# CREATE A POSTGRESQL DATABASE
|
||
#=================================================
|
||
ynh_script_progression --message="Creating database..." --time --weight=1
|
||
db_name=$(ynh_sanitize_dbid $app)
|
||
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
||
ynh_psql_test_if_first_run
|
||
ynh_psql_setup_db $db_name $db_name
|
||
db_pass=$(ynh_app_setting_get --app=$app --key=psqlpwd)
|
||
|
||
#=================================================
|
||
# CREATE DEDICATED USER
|
||
#=================================================
|
||
ynh_script_progression --message="Creating user..." --time --weight=1
|
||
# Create a system user
|
||
ynh_system_user_create --username=$app --home_dir=$final_path --use_shell
|
||
mkdir -p $final_path
|
||
chown $app:$app $final_path
|
||
|
||
# SWITCH TO NEW USER UNTIL EOF
|
||
|
||
#=================================================
|
||
# INSTALL RVM AND RUBY FOR CURRENT USER
|
||
#=================================================
|
||
ynh_script_progression --message="Installing rvm..." --time --weight=10
|
||
sudo -u $app gpg --import ../conf/piotr.kuczynski\@gmail.com.pgp ../conf/mpapis\@gmail.com.pgp
|
||
pushd $final_path
|
||
sudo -u $app curl -sSL https://get.rvm.io | sudo -u $app bash -s stable
|
||
ynh_script_progression --message="Installing ruby 2.4 (this can take a long time)..." --time --weight=230
|
||
sudo -u $app $final_path/.rvm/bin/rvm autolibs read-fail
|
||
sudo -u $app $final_path/.rvm/bin/rvm install 2.4
|
||
|
||
#=================================================
|
||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||
#=================================================
|
||
# Download, check integrity, unucompress and patch the source from app.src
|
||
ynh_script_progression --message="Download the sources..." --time --weight=16
|
||
sudo -u $app git clone https://github.com/diaspora/diaspora.git -b v0.7.13.0
|
||
popd
|
||
|
||
#=================================================
|
||
# EXPORT VARIABLES FOR TEMPLATING
|
||
#=================================================
|
||
export app
|
||
export domain
|
||
export db_pass
|
||
export final_path
|
||
export admin
|
||
|
||
#=================================================
|
||
# CONFIGURE DIASPORA
|
||
#=================================================
|
||
ynh_script_progression --message="Configure diaspora..." --time --weight=1
|
||
ynh_render_template ../conf/diaspora.yml $final_path/diaspora/config/diaspora.yml
|
||
ynh_render_template ../conf/database.yml $final_path/diaspora/config/database.yml
|
||
|
||
#=================================================
|
||
# Bundle the ruby app
|
||
#=================================================
|
||
pushd $final_path/diaspora
|
||
ynh_script_progression --message="bundle the app..." --time --weight=1000
|
||
# here we *absolutely* need bash (not dash) because dash does not understand what rvm puts in .profile
|
||
# (wtf rvm for assuming everybody uses bash as default shell??)
|
||
# we also need a login shell to make sure .profile is loaded
|
||
sudo -u $app /bin/bash --login << EOF
|
||
rvm use --default 2.4
|
||
rvm 2.4 do gem install bundler:1.17.3
|
||
script/configure_bundler
|
||
bin/bundle install --full-index --with=postgresql
|
||
EOF
|
||
ynh_script_progression --message="Create db schema..." --time --weight=22
|
||
sudo -u $app /bin/bash --login << EOF
|
||
RAILS_ENV=production bundle exec rake db:migrate
|
||
EOF
|
||
|
||
#=================================================
|
||
# ASSETS PRECOMPILATION
|
||
#=================================================
|
||
ynh_script_progression --message="Precompile assets..." --time --weight=400
|
||
sudo -u $app /bin/bash --login << EOF
|
||
RAILS_ENV=production bin/rake assets:precompile
|
||
EOF
|
||
popd
|
||
|
||
#=================================================
|
||
# NGINX CONFIGURATION
|
||
#=================================================
|
||
# TODO serve public/ ?
|
||
# Create a dedicated nginx config
|
||
ynh_script_progression --message="configure nginx..." --time --weight=1
|
||
ynh_add_nginx_config
|
||
|
||
#=================================================
|
||
# SETUP SYSTEMD
|
||
#=================================================
|
||
# Create a dedicated systemd config
|
||
# TODO add service in yunohost panel ?
|
||
ynh_script_progression --message="configure systemd unit..." --time --weight=1
|
||
ynh_render_template ../conf/diaspora_sidekiq.service /etc/systemd/system/${app}_sidekiq.service
|
||
ynh_render_template ../conf/diaspora_web.service /etc/systemd/system/${app}_web.service
|
||
ynh_render_template ../conf/diaspora.tmpfiles.d /etc/tmpfiles.d/${app}.conf
|
||
ynh_render_template ../conf/diaspora.target /etc/systemd/system/${app}.target
|
||
systemctl daemon-reload
|
||
systemd-tmpfiles --create
|
||
systemctl enable ${app}.target ${app}_sidekiq.service ${app}_web.service
|
||
systemctl restart ${app}.target
|
||
|
||
#=================================================
|
||
# STORE THE CHECKSUM OF THE CONFIG FILE
|
||
#=================================================
|
||
# Calculate and store the config file checksum into the app settings
|
||
ynh_store_file_checksum --file="$final_path/diaspora/config/diaspora.yml"
|
||
ynh_store_file_checksum --file="$final_path/diaspora/config/database.yml"
|
||
|
||
#=================================================
|
||
# GENERIC FINALIZATION
|
||
#=================================================
|
||
|
||
#=================================================
|
||
# SETUP LOGROTATE
|
||
#=================================================
|
||
|
||
# Use logrotate to manage application logfile(s)
|
||
ynh_use_logrotate
|
||
|
||
#=================================================
|
||
# ADVERTISE SERVICE IN ADMIN PANEL
|
||
#=================================================
|
||
yunohost service add postgresql --log /var/log/postgresql/postgresql-9.4-main.log --description "PostgreSQL RDBMS"
|
||
yunohost service add $app.target\
|
||
--log $final_path/diaspora/log/production.log \
|
||
$final_path/diaspora/log/unicorn-stderr.log\
|
||
$final_path/diaspora/log/unicorn-stdout.log\
|
||
$final_path/diaspora/log/sidekiq.log\
|
||
--description "Diaspora service (unicorn web and sidekiq)"
|
||
|
||
#=================================================
|
||
# SETUP SSOWAT
|
||
#=================================================
|
||
# unprotected_uris allows SSO credentials to be passed anyway.
|
||
ynh_app_setting_set $app unprotected_uris "/"
|
||
|
||
#=================================================
|
||
# RELOAD NGINX
|
||
#=================================================
|
||
ynh_script_progression --message="Reload nginx..." --time --weight=1
|
||
systemctl reload nginx
|
||
|
||
#=================================================
|
||
# CREATE AN ADMIN
|
||
#=================================================
|
||
ynh_script_progression --message="Create admin..." --time --weight=1
|
||
pushd $final_path/diaspora
|
||
sudo -u diaspora /bin/bash --login << EOF
|
||
RAILS_ENV=production bundle exec rails console << END
|
||
user = User.build({username: '$admin', email: '$admin_email', password: '$admin_password', password_confirmation: '$admin_password' })
|
||
user.seed_aspects
|
||
user.save
|
||
Role.add_admin user.person
|
||
END
|
||
EOF
|
||
popd
|
||
|