mirror of
https://github.com/YunoHost-Apps/cryptpad_ynh.git
synced 2024-09-03 18:26:14 +02:00
126 lines
4.4 KiB
Bash
126 lines
4.4 KiB
Bash
#!/bin/bash
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
#=================================================
|
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
|
|
|
#=================================================
|
|
# CREATE A SANDBOX DOMAIN
|
|
#=================================================
|
|
|
|
# if the main domain for the app is a root domain, we create a correct sandbox subdomain
|
|
if [[ $domain == *"."* ]]; then
|
|
sandboxdomain=sandbox.$domain
|
|
fi
|
|
# if the main domain for the app is already a sub-domain, we create a correct sandbox domain
|
|
if [[ $domain == *"."*"."* ]]; then
|
|
sandboxdomain=sandbox-$domain
|
|
fi
|
|
# if the main domain for the app is a .local root domain, we create a correct sandbox subdomain
|
|
if [[ $domain == *".local" ]]; then
|
|
sandboxdomain=sandbox-$domain
|
|
fi
|
|
|
|
ynh_app_setting_set --key=sandboxdomain --value=$sandboxdomain
|
|
|
|
ynh_script_progression "Setting up sandobx domain : $sandboxdomain"
|
|
|
|
# We don't test that in CI
|
|
if ! ynh_in_ci_tests; then
|
|
yunohost domain add $sandboxdomain
|
|
yunohost domain config set $sandboxdomain -a "mail_in=0&mail_out=0"
|
|
fi
|
|
|
|
#=================================================
|
|
# INSTALL DEPENDENCIES
|
|
#=================================================
|
|
ynh_script_progression "Installing dependencies..."
|
|
|
|
ynh_nodejs_install
|
|
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
ynh_script_progression "Setting up source files..."
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
|
|
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app:$app "$install_dir"
|
|
#=================================================
|
|
# SYSTEM CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression "Adding system configurations related to $app..."
|
|
|
|
# Create a dedicated NGINX config
|
|
ynh_config_add_nginx
|
|
|
|
# Create a dedicated systemd config
|
|
ynh_config_add_systemd
|
|
|
|
yunohost service add $app --description="Zero Knowledge realtime collaborative editor" --log="/var/log/$app/$app.log"
|
|
|
|
#=================================================
|
|
# ADD A CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression "Adding $app's configuration..."
|
|
|
|
ynh_config_add --template="config.js" --destination="$install_dir/config/config.js"
|
|
|
|
#=================================================
|
|
# INSTALL CRYPTPAD
|
|
#=================================================
|
|
ynh_script_progression "Building $app... (this will take some time and resources!)"
|
|
|
|
pushd "$install_dir"
|
|
ynh_hide_warnings npm install --allow-root
|
|
ynh_hide_warnings npm install -g bower
|
|
ynh_hide_warnings bower install --allow-root
|
|
ynh_hide_warnings bower update --allow-root
|
|
ynh_hide_warnings npm run build
|
|
popd
|
|
|
|
#=================================================
|
|
# START SYSTEMD SERVICE
|
|
#=================================================
|
|
ynh_script_progression "Starting $app's systemd service..."
|
|
|
|
# Start a systemd service
|
|
ynh_systemctl --service=$app --action="start" --log_path="systemd"
|
|
|
|
#=================================================
|
|
# SETUP SSOWAT
|
|
#=================================================
|
|
|
|
# We authorize access to sandbox domain
|
|
# We don't test that in CI
|
|
if ! ynh_in_ci_tests; then
|
|
ynh_permission_url --permission="main" --add_url=$sandboxdomain --auth_header=true
|
|
fi
|
|
|
|
#=================================================
|
|
# APPLY FOLDER RIGHTS
|
|
#=================================================
|
|
|
|
chgrp -R www-data $install_dir
|
|
|
|
#=================================================
|
|
# COPY NGINX CONF IN SANDBOX DOMAIN
|
|
#=================================================
|
|
|
|
# We don't test that in CI
|
|
if ! ynh_in_ci_tests; then
|
|
ynh_config_add --template="/etc/nginx/conf.d/$domain.d/cryptpad.conf" --destination="/etc/nginx/conf.d/$sandboxdomain.d/cryptpad.conf"
|
|
fi
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression "Installation of $app completed"
|