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

195 lines
6.2 KiB
Text
Raw Normal View History

2017-04-07 23:28:30 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source .fonctions
source /usr/share/yunohost/helpers
#=================================================
# MANAGE FAILURE OF THE SCRIPT
#=================================================
ynh_clean_setup () {
# Nettoyage des résidus d'installation non pris en charge par le script remove.
if test -n "$PID_TAIL"
then
SUPPRESS_WARNING kill -s 15 $PID_TAIL # Arrête l'exécution de tail.
sudo rm -f "$tempfile"
fi
echo ""
}
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="" # Assure la compatibilité avec les fonctions utilisant $path_url
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS
#=================================================
if sudo yunohost domain list | grep -q $domain # Vérifie la liste des domaines
then # Si le domaine existe dans Yunohost
if sudo yunohost app map | grep -q $domain # Vérifie la liste des apps par domaine
then # Si une app est installée sur ce domaine.
WARNING echo "An app is already installed on the domain $domain. Mypads needs a whole domain or subdomain to himself."
fi
fi
CHECK_DOMAINPATH # Vérifie la disponibilité du path et du domaine.
CHECK_FINALPATH # Vérifie que le dossier de destination n'est pas déjà utilisé.
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
ynh_app_setting_set $app domain $domain
ynh_app_setting_set $app is_public $is_public
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
port=$(ynh_find_port 3000) # Cherche un port libre.
ynh_app_setting_set $app port $port
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2017-07-05 23:17:46 +02:00
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
2017-04-18 13:07:38 +02:00
sudo apt-get install -yy -qq nodejs
2017-04-07 23:28:30 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
final_path=/var/www/$app
ynh_app_setting_set $app final_path $final_path
SETUP_SOURCE # Télécharge la source, décompresse et copie dans $final_path
#=================================================
# CREATE A SQL BDD
#=================================================
2017-04-08 00:00:54 +02:00
#pushd $final_path
2017-04-07 23:28:30 +02:00
# Setting up the database
2017-04-08 00:00:54 +02:00
#dbname=$app
#dbuser=$app
2017-04-07 23:28:30 +02:00
# Generate random password
2017-04-08 00:00:54 +02:00
#dbpass=$(ynh_string_random)
2017-04-07 23:28:30 +02:00
##### dbpass
2017-04-08 00:00:54 +02:00
#ynh_psql_create_db "$dbname" "$dbuser" "$dbpass"
#popd
2017-04-07 23:28:30 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
# Et copie le fichier de config nginx
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
# Modifie les variables dans le fichier de configuration nginx
sudo sed -i "s@__PORT__@$port@g" /etc/nginx/conf.d/$domain.d/$app.conf
2017-04-28 11:35:45 +02:00
sudo sed -i "s@ROOT_PATH@/var/www/$app@g" /etc/nginx/conf.d/$domain.d/$app.conf
2017-04-07 23:28:30 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2017-04-08 11:45:46 +02:00
sudo useradd -N $app -d $final_path # Créer un utilisateur système dédié à l'app
2017-04-07 23:28:30 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
# HANDLE LOG FILES AND LOGROTATE
#=================================================
# Créer le dossier de log
sudo mkdir -p /var/log/$app
sudo touch /var/log/$app/cryptpad.log
install_log=/var/log/$app/installation.log
sudo touch $install_log
sudo chown $app -R /var/log/$app
sudo chown admin -R $install_log
# Configuration de logrotate
ynh_use_logrotate
#=================================================
# INSTALL ETHERPAD
#=================================================
script_dir="$PWD"
pushd "$final_path"
2017-04-08 00:00:54 +02:00
sudo chown -R $app: $final_path
2017-07-01 10:58:12 +02:00
sudo su $app -c "cd $final_path && npm install"
sudo npm install -g bower
sudo su $app -c "cd $final_path && bower install && bower install chainpad#^0.4.0"
2017-04-08 00:38:52 +02:00
popd
2017-04-07 23:28:30 +02:00
#=================================================
2017-04-08 00:00:54 +02:00
# CONFIGURE SERVER.JS
2017-04-07 23:28:30 +02:00
#=================================================
2017-04-08 12:08:18 +02:00
sudo mv ../conf/config.js $final_path/config.js
2017-04-08 00:00:54 +02:00
sudo sed -i "s@__URL__@$path_url@g" $final_path/config.js
sudo sed -i "s@__PORT__@$port@g" $final_path/config.js
#=================================================
# INSTALL MODULES FOR CRYPTPAD
#=================================================
#npm install cryptpad-level-store;
2017-04-07 23:28:30 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2017-04-08 00:00:54 +02:00
sudo cp ../conf/cryptpad.service /etc/systemd/system/$app.service
2017-04-07 23:28:30 +02:00
sudo chown root: /etc/systemd/system/$app.service
sudo sed -i "s@__DIRECTORY__@$final_path/@g" /etc/systemd/system/$app.service
sudo sed -i "s@__APP__@$app@g" /etc/systemd/system/$app.service
## Démarrage auto du service
sudo systemctl enable $app
2017-04-08 18:23:00 +02:00
2017-04-07 23:28:30 +02:00
#=================================================
# ENABLE SERVICE IN ADMIN PANEL
#=================================================
# Ajoute le service au monitoring de Yunohost.
sudo yunohost service add $app --log "/var/log/$app/cryptpad.log"
#=================================================
# START ETHERPAD IN BACKGROUND
#=================================================
sudo systemctl start $app # Démarre etherpad. Le démarrage est fait le plus tôt possible, car il est très long...
#=================================================
# SETUP SSOWAT
#=================================================
if [ "$is_public" = 0 ];
then
ynh_app_setting_set "$app" unprotected_uris "/"
fi
#=================================================
# RELOAD NGINX
#=================================================
2017-04-24 17:12:06 +02:00
sudo nginx -t
2017-04-07 23:28:30 +02:00
sudo systemctl reload nginx