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

110 lines
3.1 KiB
Text
Raw Normal View History

#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -eu
2017-06-02 17:15:57 +02:00
# Source app helpers
source ./_common.sh
source /usr/share/yunohost/helpers
# Retrieve arguments
2017-06-02 17:15:57 +02:00
domain=$YNH_APP_ARG_DOMAIN
path=$(ynh_normalize_url_path $YNH_APP_ARG_PATH)
with_carddav=$YNH_APP_ARG_WITH_CARDDAV
app=$YNH_APP_INSTANCE_NAME
2017-06-02 17:15:57 +02:00
# Check domain/path availability
sudo yunohost app checkurl "${domain}${path}" -a "$app"
# Set app specific variables
dbname=$app
dbuser=$app
2017-06-02 17:15:57 +02:00
# Generate random DES key & password
deskey=$(ynh_string_random 24)
dbpass=$(ynh_string_random)
# Check domain/path availability
2017-06-02 17:15:57 +02:00
sudo yunohost app checkurl "${domain}${path}" -a "$app"
# Save app settings
ynh_app_setting_set $app domain $domain
ynh_app_setting_set $app path $path
ynh_app_setting_set $app with_carddav $with_carddav
# Check destination directory
2017-06-02 17:15:57 +02:00
final_path=/var/www/$app
# FIXME: jessie-backports is needed for php-net-ldap3
grep -q -R 'jessie-backports' /etc/apt/sources.list{,.d} || {
echo "deb http://httpredir.debian.org/debian jessie-backports main" \
| sudo tee -a /etc/apt/sources.list.d/backports.list >/dev/null
}
# Install dependencies
2017-06-03 15:33:12 +02:00
ynh_package_install_from_equivs ../conf/${DEPS_PKG_NAME}.control
2017-06-02 17:15:57 +02:00
# Create system user dedicace for this app
ynh_system_user_create $app
2017-06-02 17:15:57 +02:00
# Create final_path directory and install app inside
sudo mkdir -p $final_path
extract_roundcube "${final_path}"
# Change owner by admin for execute composer
sudo chown -R admin: "${final_path}"
init_composer "${final_path}"
# Initialize database
ynh_mysql_create_db "$dbname" "$dbuser" "$dbpass"
ynh_mysql_connect_as "$dbuser" "$dbpass" "$dbname" \
2017-06-02 17:15:57 +02:00
< "${final_path}/SQL/mysql.initial.sql"
# Copy and set Roundcube configuration
2017-06-02 17:15:57 +02:00
rc_conf="${final_path}/config/config.inc.php"
cp ../conf/config.inc.php "$rc_conf"
2017-06-02 17:15:57 +02:00
ynh_substitute_char "#DESKEY#" "$deskey" "$rc_conf"
ynh_substitute_char "#DBUSER#" "$dbuser" "$rc_conf"
ynh_substitute_char "#DBPASS#" "$dbpass" "$rc_conf"
ynh_substitute_char "#DBNAME#" "$dbname" "$rc_conf"
# Install files and set permissions
2017-06-02 17:15:57 +02:00
sudo mkdir -p "${final_path}/logs" "${final_path}/temp"
# Install some plugins manually
2017-06-02 17:15:57 +02:00
sudo cp -r ../sources/plugins/ldapAliasSync "${final_path}/plugins"
installed_plugins=" 'ldapAliasSync',"
# Install additional plugins
2017-06-02 17:15:57 +02:00
exec_composer admin "$final_path" require \
"johndoh/contextmenu 2.1.2" \
"sblaisot/automatic_addressbook 0.4.2"
installed_plugins+=" 'contextmenu', 'automatic_addressbook',"
# Install CardDAV plugin
if [[ $with_carddav -eq 1 ]]; then
2017-06-02 17:15:57 +02:00
install_carddav "$final_path" \
&& installed_plugins+=" 'carddav'," \
|| echo "Unable to install CardDAV plugin" >&2
fi
# Update Roundcube configuration
sudo sed -i "s#^\s*// installed plugins#&\n ${installed_plugins}#" \
2017-06-02 17:15:57 +02:00
"${final_path}/config/config.inc.php"
# Change owner final_path directory
sudo chown -R $app: "${final_path}"
2017-06-02 17:15:57 +02:00
# Modify Nginx configuration file and copy it to Nginx conf directory
ynh_nginx_config
# Create the php-fpm pool config
ynh_fpm_config
# Save app settings
ynh_app_setting_set "$app" with_carddav "$with_carddav"
ynh_app_setting_set "$app" mysqlpwd "$dbpass"
# Reload services
2017-06-02 17:15:57 +02:00
sudo systemctl restart php5-fpm
sudo systemctl reload nginx