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

188 lines
6.5 KiB
Text
Raw Normal View History

2021-05-27 02:26:40 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
true
}
# 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
2021-05-29 05:47:54 +02:00
path_url='/'
2021-05-27 02:26:40 +02:00
admin=$YNH_APP_ARG_ADMIN
is_public=$YNH_APP_ARG_IS_PUBLIC
password=$YNH_APP_ARG_PASSWORD
2021-05-29 05:47:54 +02:00
extension_service_url=$YNH_APP_ARG_EXTENSION_SERVICE_URL
extension_item_url=$YNH_APP_ARG_EXTENSION_ITEM_URL
enable_proposed_api=$YNH_APP_ARG_ENABLE_PROPOSED_API
2021-05-27 02:26:40 +02:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
final_path=/opt/yunohost/$app
2021-05-27 02:26:40 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2021-05-29 05:47:54 +02:00
data_path=/home/yunohost.app/$app
test ! -e "$data_path" || ynh_die --message="This path already contains a folder"
2021-05-27 02:26:40 +02:00
# Register (book) web path
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2021-05-27 02:26:40 +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
2021-05-29 05:47:54 +02:00
if [ ! -z "$password" ]; then
auth="password"
hashed_password="$(printf "$password" | sha256sum | cut -d' ' -f1)"
else
auth="none"
hashed_password=""
fi
ynh_app_setting_set --app=$app --key=hashed_password --value=$hashed_password
ynh_app_setting_set --app=$app --key=extension_service_url --value="$extension_service_url"
ynh_app_setting_set --app=$app --key=extension_item_url --value="$extension_item_url"
ynh_app_setting_set --app=$app --key=enable_proposed_api --value="$enable_proposed_api"
2021-05-27 02:26:40 +02:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Finding an available port..." --weight=1
2021-05-27 02:26:40 +02:00
# Find an available port
2021-05-29 05:47:54 +02:00
port=$(ynh_find_port --port=8080)
2021-05-27 02:26:40 +02:00
ynh_app_setting_set --app=$app --key=port --value=$port
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=30
2021-05-27 02:26:40 +02:00
2021-05-29 05:47:54 +02:00
install_dependencies
2021-05-27 02:26:40 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Setting up source files..." --weight=25
2021-05-27 02:26:40 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2021-05-29 05:47:54 +02:00
ynh_app_setting_set --app=$app --key=data_path --value=$data_path
2021-05-27 02:26:40 +02:00
2021-05-29 05:47:54 +02:00
setup_source
2021-05-27 02:26:40 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2021-05-27 02:26:40 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SPECIFIC SETUP
#=================================================
2021-05-29 05:47:54 +02:00
# BUILD APP
2021-05-27 02:26:40 +02:00
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Compiling code-server... (this will take a long time)" --weight=200
build_app
2021-05-27 02:26:40 +02:00
#=================================================
2021-05-29 05:47:54 +02:00
# ADD CONFIGURATIONS
2021-05-27 02:26:40 +02:00
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2021-05-27 02:26:40 +02:00
2021-05-29 05:47:54 +02:00
add_configs
2021-05-27 02:26:40 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2021-05-27 02:26:40 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Configuring log rotation..." --weight=1
2021-05-27 02:26:40 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
yunohost service add $app --description="Server for accessing VS Code from the browser" --log="/var/log/$app/$app.log"
2021-05-27 02:26:40 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-05-27 02:26:40 +02:00
# Start a systemd service
2021-05-29 05:47:54 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" --line_match=" HTTP server listening on "
2021-05-27 02:26:40 +02:00
#=================================================
# SETUP FAIL2BAN
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Configuring Fail2Ban..." --weight=1
2021-05-27 02:26:40 +02:00
# Create a dedicated Fail2Ban config
2021-05-29 05:47:54 +02:00
ynh_add_fail2ban_config --logpath="/var/log/$app/$app.log" --failregex='^Failed login attempt {"xForwardedFor":"<HOST>"'
2021-05-27 02:26:40 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2021-05-27 02:26:40 +02:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# Everyone can access the app.
# The "main" permission is automatically created before the install script.
ynh_permission_update --permission="main" --add="visitors"
fi
#=================================================
# RELOAD NGINX
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-05-27 02:26:40 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Installation of $app completed" --last