#!/bin/bash #================================================= # GENERIC STARTING #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers #================================================= # MANAGE FAILURE OF THE SCRIPT #================================================= ynh_abort_if_errors # Active trap pour arrêter le script si une erreur est détectée. #================================================= # RETRIEVE ARGUMENTS FROM THE MANIFEST #================================================= domain=$YNH_APP_ARG_DOMAIN is_public=$YNH_APP_ARG_IS_PUBLIC path_url=$YNH_APP_ARG_PATH app=$YNH_APP_INSTANCE_NAME #================================================= # CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS #================================================= final_path=/var/www/$app test ! -e "$final_path" || ynh_die "This path already contains a folder" # Normalize the url path syntax path_url=$(ynh_normalize_url_path $path_url) # Check web path availability ynh_webpath_available $domain $path_url # Register (book) web path ynh_webpath_register $app $domain $path_url #================================================= # STORE SETTINGS FROM MANIFEST #================================================= ynh_app_setting_set $app domain "$domain" ynh_app_setting_set $app is_public "$is_public" ynh_app_setting_set $app path_url "$path_url" #================================================= # STANDARD MODIFICATIONS #================================================= # FIND AND OPEN A PORT #================================================= port=$(ynh_find_port 3000) # Cherche un port libre. ynh_app_setting_set $app port $port #================================================= # INSTALL NODEJS #================================================= ynh_install_nodejs $NODEJS_VERSION #================================================= # CREATE DEDICATED USER #================================================= ynh_system_user_create $app #================================================= # SPECIFIC SETUP #================================================= # HANDLE LOG FILES AND LOGROTATE #================================================= # Créer le dossier de log mkdir -p /var/log/$app touch /var/log/$app/$app.log chown $app -R /var/log/$app # Setup logrotate ynh_use_logrotate #================================================= # DOWNLOAD, CHECK AND UNPACK SOURCE #================================================= ynh_app_setting_set $app final_path $final_path ynh_setup_source "$final_path" # Download, check integrity and uncompress the source from app.src # Set files ownership during installation chown $app:$app $final_path -R chmod 755 $final_path -R #================================================= # NGINX CONFIGURATION #================================================= if [ "$path_url" != "/" ] then ynh_replace_string "^#sub_path_only" "" "../conf/nginx.conf" fi ynh_replace_string "__PATH__/" "${path_url%/}/" "../conf/nginx.conf" ynh_add_nginx_config #================================================= # ADD SYSTEMD SERVICE #================================================= ynh_replace_string "__NODE__" "$nodejs_path" "../conf/systemd.service" ynh_replace_string "__NODEJS__" "$nodejs_use_version" "../conf/systemd.service" ynh_replace_string "__ENV_PATH__" "$PATH" "../conf/systemd.service" ynh_add_systemd_config #================================================= # INSTALL CRYPTPAD #================================================= script_dir="$PWD" pushd "$final_path" chown -R $app:$app $final_path sudo_path npm install sudo_path npm install -g bower sudo su -l $app -s /bin/bash -c "cd $final_path && env PATH=$PATH bower install" popd #================================================= # CONFIGURE SERVER.JS #================================================= # Copy default configuration file mv "$final_path/config.example.js" "$final_path/config.js" # Set service port ynh_replace_string "httpPort: 3000" "httpPort: $port" "$final_path/config.js" # Tune CSP to allow for YunoHost tile ynh_replace_string "\"script-src 'self'\"" "\"script-src 'self' 'unsafe-eval'\"" "$final_path/config.js" # Remove donate button ynh_replace_string "removeDonateButton: false" "removeDonateButton: true" "$final_path/config.js" # Disable analytics unsolicited communications ynh_replace_string "adminEmail: 'i.did.not.read.my.config@cryptpad.fr'" "adminEmail: false" "$final_path/config.js" # Store file checksum to detected user modifications on upgrade ynh_store_file_checksum "$final_path/config.js" #================================================= # SET FILES OWNERSHIP #================================================= chown -R root: $final_path mkdir $final_path/datastore $final_path/pins $final_path/blob $final_path/blobstage chown -R $app: $final_path/datastore $final_path/pins $final_path/blob $final_path/blobstage #================================================= # INSTALL MODULES FOR CRYPTPAD #================================================= #npm install cryptpad-level-store; #================================================= # ENABLE SERVICE IN ADMIN PANEL #================================================= # Ajoute le service au monitoring de Yunohost. yunohost service add $app --log "/var/log/$app/$app.log" #================================================= # START CRYPTPAD IN BACKGROUND #================================================= systemctl start $app #================================================= # SETUP SSOWAT #================================================= if [ $is_public -eq 1 ]; then ynh_app_setting_set "$app" unprotected_uris "/" fi #================================================= # App need to sleep #================================================= sleep 30 #================================================= # RELOAD NGINX #================================================= systemctl reload nginx systemctl status cryptpad