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

288 lines
10 KiB
Text
Raw Normal View History

2016-04-07 00:00:41 +02:00
#!/bin/bash
2017-03-19 18:36:20 +01:00
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-06-15 23:57:31 +02:00
2017-03-20 00:17:59 +01:00
source _common.sh
2017-03-19 18:36:20 +01:00
source /usr/share/yunohost/helpers
2017-09-05 00:34:00 +02:00
# Load common variables for all scripts.
source _variables
2017-03-19 18:36:20 +01:00
#=================================================
# 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
#=================================================
2016-06-15 23:57:31 +02:00
2016-11-08 13:38:29 +01:00
domain=$YNH_APP_ARG_DOMAIN
2017-03-19 18:36:20 +01:00
path_url=$YNH_APP_ARG_PATH
2016-11-08 13:38:29 +01:00
admin=$YNH_APP_ARG_ADMIN
infcloud=$YNH_APP_ARG_INFCLOUD
language=$YNH_APP_ARG_LANGUAGE
2016-05-20 00:03:02 +02:00
2016-11-08 13:38:29 +01:00
app=$YNH_APP_INSTANCE_NAME
2016-05-20 00:03:02 +02:00
2017-12-16 23:29:00 +01:00
version=$(grep '\"version\": ' ../manifest.json | cut -d '"' -f 4 | cut -d '~' -f 1) # Retrieve the version number in the manifest file.
2016-05-20 00:03:02 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS
#=================================================
2016-04-07 00:00:41 +02:00
2017-09-05 00:34:00 +02:00
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
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2016-04-07 00:00:41 +02:00
2016-12-14 16:13:20 +01:00
ynh_app_setting_set $app domain $domain
2017-03-19 18:36:20 +01:00
ynh_app_setting_set $app path $path_url
2016-12-14 16:13:20 +01:00
ynh_app_setting_set $app admin $admin
ynh_app_setting_set $app infcloud $infcloud
2017-03-19 18:36:20 +01:00
ynh_app_setting_set $app version $version
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2016-04-07 00:00:41 +02:00
2017-09-05 00:34:00 +02:00
ynh_install_app_dependencies $app_depencencies
2017-03-19 18:36:20 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2017-09-05 00:34:00 +02:00
ynh_add_nginx_config
2017-03-19 18:36:20 +01:00
if [ $infcloud -eq 1 ]
then # Ajoute InfCloud dans la config Nginx
2017-06-13 22:28:52 +02:00
ynh_replace_string "#INFCLOUD#" "" /etc/nginx/conf.d/$domain.d/$app.conf
2017-03-19 18:36:20 +01:00
fi
2017-06-13 22:28:52 +02:00
ynh_store_file_checksum "$finalnginxconf"
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
ynh_system_user_create $app # Créer un utilisateur système dédié à l'app
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
# SPECIFIC SETUP
#=================================================
# INSTALL RADICALE IN A VIRTUALENV
#=================================================
2016-04-07 00:00:41 +02:00
# Init virtualenv
2017-09-05 00:34:00 +02:00
virtualenv /opt/yunohost/$app
2017-12-16 23:29:00 +01:00
version=$(ynh_app_setting_get $app version $version)
2017-09-05 00:34:00 +02:00
/opt/yunohost/$app/bin/pip install radicale==$version python-ldap
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
# COPY FILES INTO $FINAL_PATH
#=================================================
# Crée le repertoire de destination et stocke son emplacement.
2017-09-05 00:34:00 +02:00
mkdir "$final_path"
2017-03-19 18:36:20 +01:00
ynh_app_setting_set $app final_path $final_path
2016-04-07 00:00:41 +02:00
# Copy files to the right place
2017-09-05 00:34:00 +02:00
mkdir -p $final_path/collections
cp ../conf/radicale.wsgi $final_path
2016-04-07 00:00:41 +02:00
# Copie les fichiers additionnels ou modifiés.
2017-09-05 00:34:00 +02:00
cp -a ../sources/extra_files_radicale/. "$final_path"
2016-04-07 00:00:41 +02:00
# Le fichier regex.py est patché pour corrigé le commit destructeur e807c3d35bea9cfcfcacac83b1b17d748ea15a39 du 3/12/2015 qui arrête la lecture du fichier rights à la première occurence validée.
2017-09-05 00:34:00 +02:00
mv "$final_path/regex.py" /opt/yunohost/$app/lib/python*/site-packages/radicale/rights/regex.py
2017-03-19 18:36:20 +01:00
if [ $infcloud -eq 1 ]
2016-04-07 00:00:41 +02:00
then #Instal InfCloud
2016-06-22 14:11:25 +02:00
final_path_backup=$final_path # Sauvegarde le contenu de $final_path
final_path=$final_path/infcloud # Change final_path pour l'installation de infcloud
2017-06-13 22:28:52 +02:00
ynh_setup_source "$final_path" # Télécharge la source, décompresse et copie dans $final_path
2016-06-22 14:11:25 +02:00
final_path=$final_path_backup # Restaure le contenu de $final_path
2016-04-07 00:00:41 +02:00
fi
2017-03-19 18:36:20 +01:00
#=================================================
# CONFIGURE RADICALE
#=================================================
2017-09-05 00:34:00 +02:00
mkdir -p /etc/$app
cp ../conf/config /etc/$app/
cp ../conf/logging /etc/$app/
cp ../conf/rights /etc/$app/
2017-12-05 19:41:20 +01:00
ynh_replace_string "__PATH__" "${path_url%/}" /etc/$app/config
2017-06-13 22:28:52 +02:00
ynh_replace_string "__FINALPATH__" "$final_path" /etc/$app/config
ynh_store_file_checksum "/etc/$app/config" # Enregistre la somme de contrôle du fichier de config
ynh_store_file_checksum "/etc/$app/logging" # Enregistre la somme de contrôle du fichier de config
2017-03-19 18:36:20 +01:00
if [ $infcloud -eq 1 ]
2016-04-07 00:00:41 +02:00
then #Configuration InfCloud
# Détermine la langue
case "$language" in
"Czech") language="cs_CZ"
;;
"Danish") language="da_DK"
;;
"German") language="de_DE"
;;
"English/US") language="en_US"
;;
"Spanish") language="es_ES"
;;
"French") language="fr_FR"
;;
"Italian") language="it_IT"
;;
"Japan") language="ja_JP"
;;
"Hungarian") language="hu_HU"
;;
"Dutch") language="nl_NL"
;;
"Slovak") language="sk_SK"
;;
"Turkish") language="tr_TR"
;;
"Russian") language="ru_RU"
;;
"Ukrainian") language="uk_UA"
;;
"Chinese") language="zh_CN"
;;
esac
2016-12-14 16:13:20 +01:00
ynh_app_setting_set $app language $language
2017-09-05 00:34:00 +02:00
cp ../conf/config.js "$final_path/infcloud/"
2017-06-13 22:28:52 +02:00
ynh_replace_string "__DOMAIN__" "$domain" "$final_path/infcloud/config.js"
2017-12-05 19:41:20 +01:00
ynh_replace_string "__PATH__" "${path_url%/}" "$final_path/infcloud/config.js"
2017-06-13 22:28:52 +02:00
ynh_replace_string "__LANG__" "$language" "$final_path/infcloud/config.js"
ynh_replace_string "__ADMIN__" "$admin" "$final_path/infcloud/config.js"
ynh_replace_string "__TIMEZONE__" "$(cat /etc/timezone)" "$final_path/infcloud/config.js"
ynh_store_file_checksum "$final_path/infcloud/config.js" # Enregistre la somme de contrôle du fichier de config
2016-04-07 00:00:41 +02:00
fi
2017-03-19 18:36:20 +01:00
#=================================================
# SET PERMISSIONS ON RADICALE'S DIRECTORIES
#=================================================
2017-09-05 00:34:00 +02:00
# useradd radicale -d /opt/yunohost/$app
chown radicale: -R /opt/yunohost/$app
2016-04-07 00:00:41 +02:00
2017-09-05 00:34:00 +02:00
chown -R radicale: $final_path
mkdir -p /var/log/$app
touch /var/log/$app/$app.log
chown radicale -R /var/log/$app
2016-04-07 00:00:41 +02:00
# Droit par défaut des dossiers de collections utilisateurs, tels qu'ils sont créés par radicale.
2017-09-05 00:34:00 +02:00
chmod 666 -R $final_path/default_collections
chmod 777 $final_path/default_collections $final_path/default_collections/USER
2016-04-07 00:00:41 +02:00
# Fix permission
2017-09-05 00:34:00 +02:00
chmod 755 /etc/$app/
find /opt/yunohost/$app/ -type d -exec chmod 2755 {} \;
find /opt/yunohost/$app/ -type f -exec chmod g+r,o+r {} \;
chmod 644 /etc/$app/*
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
# CONFIGURE UWSGI FOR RADICALE
#=================================================
2017-09-05 00:34:00 +02:00
cp ../conf/radicale.ini /etc/uwsgi/apps-available/
ln -s /etc/uwsgi/apps-available/radicale.ini /etc/uwsgi/apps-enabled/
2017-03-19 18:36:20 +01:00
#=================================================
# GENERATE CALENDARS AND ADDRESS BOOKS FOR ALL USERS
#=================================================
2016-04-07 00:00:41 +02:00
# Créer les calendriers et carnets d'adresses par défaut des utilisateurs.
while read user #USER en majuscule est une variable système, à éviter.
do
2017-09-05 00:34:00 +02:00
cp -a $final_path/default_collections/USER $final_path/collections/$user
cp -a $final_path/default_collections/USER.props $final_path/collections/$user.props
done <<< "$(yunohost user list | grep username | cut -d ":" -f 2 | cut -c 2-)" # Liste les utilisateurs et supprime l'espace après username:
2016-04-07 00:00:41 +02:00
# Le triple chevron <<< permet de prendre la sortie de commande en entrée de boucle.
2017-03-19 18:36:20 +01:00
#=================================================
# ENABLE UWSGI SERVICE IN ADMIN PANEL
#=================================================
2018-07-13 17:36:34 +02:00
ynh_system_reload --service_name=uwsgi --action=restart
2017-03-19 18:36:20 +01:00
# Ajoute le service au monitoring de Yunohost.
2017-09-05 00:34:00 +02:00
yunohost service add uwsgi --log "/var/log/uwsgi/app/radicale.log"
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
#=================================================
# PREPARE THE HOOKS
#=================================================
# Modification des hook pour la création des collections par défaut des nouveaux utilisateurs. Et leur suppression
2017-06-13 22:28:52 +02:00
ynh_replace_string "__FINALPATH__" "$final_path" ../hooks/post_user_create
ynh_replace_string "__FINALPATH__" "$final_path" ../hooks/post_user_delete
2017-03-19 18:36:20 +01:00
#=================================================
# GENERIC FINALISATION
#=================================================
# SETUP SSOWAT
#=================================================
if [ $infcloud -eq 1 ]
2016-04-07 00:00:41 +02:00
then # /infcloud vient se rajouter à l'adresse de radicale pour y être associé sur le portail.
2017-12-05 19:41:20 +01:00
ynh_app_setting_set $app path ${path_url%/}/infcloud # Remplace radicale par InfCloud dans le portail Yunohost
2016-12-14 16:13:20 +01:00
ynh_app_setting_set $app protected_uris "/" # Protège l'accès à infcloud
2017-03-19 18:36:20 +01:00
domain_regex=$(echo "$domain" | sed 's@-@.@g')
2017-07-01 16:42:57 +02:00
ynh_app_setting_set $app skipped_regex "$domain_regex$path_url" # Radicale est accessible librement (pour l'accès distant aux ressources)
2016-04-07 00:00:41 +02:00
else # Si seul radicale est installé.
2016-12-14 16:13:20 +01:00
ynh_app_setting_set $app unprotected_uris "/" # Radicale est accessible librement (pour l'accès distant aux ressources)
2016-04-07 00:00:41 +02:00
fi
2017-03-19 18:36:20 +01:00
#=================================================
# SETUP LOGROTATE
#=================================================
2016-04-07 00:00:41 +02:00
2017-03-19 18:36:20 +01:00
ynh_use_logrotate
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
if [ $infcloud -eq 1 ]
then
2017-09-05 00:34:00 +02:00
ynh_add_fpm_config # Créer le fichier de configuration du pool php-fpm et le configure.
2017-03-19 18:36:20 +01:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2018-07-13 17:36:34 +02:00
ynh_system_reload --service_name=nginx
2017-12-16 23:29:00 +01:00
#=================================================
# SEND A README FOR THE ADMIN
#=================================================
if [ $infcloud -eq 1 ]
then
infcloud_config="
InfCloud has its own config file, at $final_path/infcloud/config.js
"
else
infcloud_config=""
fi
message="Use the file /etc/radicale/config to change the main configuration of radicale.
The file /etc/radicale/logging to change the level of logging.
And the file /etc/radicale/rights to edit the way the calendars will be sharing.
$infcloud_config
If you facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/radicale_ynh"
2018-07-13 17:36:34 +02:00
ynh_send_readme_to_admin --app_message="$message" --recipients="$admin"