1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/horde_ynh.git synced 2024-09-03 19:16:08 +02:00
horde_ynh/scripts/_common.sh

109 lines
5 KiB
Bash
Raw Normal View History

2018-02-06 14:33:23 +01:00
#!/bin/bash
2018-02-11 00:32:26 +01:00
#=================================================
2022-08-31 00:06:07 +02:00
# COMMON VARIABLES
#=================================================
# PHP APP SPECIFIC
2018-02-11 00:32:26 +01:00
#=================================================
2023-11-02 22:30:09 +01:00
YNH_PHP_VERSION="7.4"
php_dependencies="php$YNH_PHP_VERSION-pear php$YNH_PHP_VERSION-imagick php$YNH_PHP_VERSION-tidy php$YNH_PHP_VERSION-bcmath"
2022-03-09 00:27:32 +01:00
2022-08-31 00:06:07 +02:00
# dependencies used by the app (must be on a single line)
2023-11-02 22:48:16 +01:00
pkg_dependencies="expect php-pear $php_dependencies"
2018-02-06 14:33:23 +01:00
2018-02-11 00:32:26 +01:00
#=================================================
2022-08-31 00:06:07 +02:00
# PERSONAL HELPERS
2018-02-11 00:32:26 +01:00
#=================================================
2018-02-06 14:33:23 +01:00
patch_app() {
local old_dir=$(pwd)
(cd "$final_path/horde" && patch -p1 < $YNH_CWD/../sources/sso_auth.patch) || echo "Unable to apply patches"
cd $old_dir
}
config_horde() {
ynh_backup_if_checksum_is_different --file "$final_path/horde/config/conf.php"
ynh_backup_if_checksum_is_different --file "$final_path/horde/imp/config/conf.php"
ynh_backup_if_checksum_is_different --file "$final_path/horde/config/registry.local.php"
ynh_backup_if_checksum_is_different --file "$final_path/horde/gollem/config/backends.local.php"
ynh_backup_if_checksum_is_different --file "$final_path/horde/ingo/config/backends.local.php"
2018-02-06 14:33:23 +01:00
cp ../conf/horde_conf.php "$final_path/horde/config/conf.php"
ynh_replace_string --match_string __DOMAIN__ --replace_string "$domain" --target_file "$final_path/horde/config/conf.php"
ynh_replace_string --match_string __PATH__ --replace_string "$path_url" --target_file "$final_path/horde/config/conf.php"
ynh_replace_string --match_string __FINAL_PATH__ --replace_string "$final_path" --target_file "$final_path/horde/config/conf.php"
ynh_replace_string --match_string __DB_NAME__ --replace_string "$db_name" --target_file "$final_path/horde/config/conf.php"
ynh_replace_string --match_string __DB_USER__ --replace_string "$db_user" --target_file "$final_path/horde/config/conf.php"
2023-11-02 22:32:54 +01:00
ynh_replace_string --match_string __DB_PWD__ --replace_string "$db_pwd" --target_file "$final_path/horde/config/conf.php"
ynh_replace_string --match_string __ADMIN_USER__ --replace_string "$admin" --target_file "$final_path/horde/config/conf.php"
ynh_replace_string --match_string __SECRET_KEY__ --replace_string "$secret_key" --target_file "$final_path/horde/config/conf.php"
2018-02-06 14:33:23 +01:00
2018-02-12 14:03:45 +01:00
cp ../conf/horde_imp_conf.php "$final_path/horde/imp/config/conf.php"
2018-02-06 14:33:23 +01:00
cp ../conf/horde_registry.php "$final_path/horde/config/registry.local.php"
ynh_replace_string --match_string __PATH__ --replace_string "$path_url" --target_file "$final_path/horde/config/registry.local.php"
2018-02-06 14:33:23 +01:00
cp ../conf/gollem_backends.php "$final_path/horde/gollem/config/backends.local.php"
ynh_replace_string --match_string __GOLLEM_DATA_DIR__ --replace_string "$gollem_data_dir" --target_file "$final_path/horde/gollem/config/backends.local.php"
2018-02-06 14:33:23 +01:00
cp ../conf/ingo_backends.php "$final_path/horde/ingo/config/backends.local.php"
ynh_store_file_checksum --file "$final_path/horde/config/conf.php"
ynh_store_file_checksum --file "$final_path/horde/imp/config/conf.php"
ynh_store_file_checksum --file "$final_path/horde/config/registry.local.php"
ynh_store_file_checksum --file "$final_path/horde/gollem/config/backends.local.php"
ynh_store_file_checksum --file "$final_path/horde/ingo/config/backends.local.php"
2018-02-06 14:33:23 +01:00
}
config_nginx() {
ynh_add_nginx_config
[[ $service_autodiscovery ]] && add_nginx_autodiscovery
ynh_store_file_checksum --file "/etc/nginx/conf.d/$domain.d/$app.conf"
2018-02-06 14:33:23 +01:00
}
add_nginx_autodiscovery() {
nginx_domain_path=/etc/nginx/conf.d/$domain.d/*
nginx_config_path="/etc/nginx/conf.d/$domain.d/$app.conf"
grep "/Microsoft-Server-ActiveSync" $nginx_domain_path || echo "location /Microsoft-Server-ActiveSync {
return 301 https://\$server_name$path_url/rpc.php;
}
" >> "$nginx_config_path"
grep "/autodiscover/autodiscover.xml" $nginx_domain_path || echo "location /autodiscover/autodiscover.xml {
return 301 https://\$server_name$path_url/rpc.php;
}
" >> "$nginx_config_path"
grep "/Autodiscover/Autodiscover.xml" $nginx_domain_path || echo "location /Autodiscover/Autodiscover.xml {
return 301 https://\$server_name$path_url/rpc.php;
}
" >> "$nginx_config_path"
grep "/.well-known/caldav" $nginx_domain_path || echo "location /.well-known/caldav {
return 301 https://\$server_name$path_url/rpc.php;
}
" >> "$nginx_config_path"
grep "/.well-known/carddav" $nginx_domain_path || echo "location /.well-known/carddav {
return 301 https://\$server_name$path_url/rpc.php;
}
" >> "$nginx_config_path"
}
set_permission() {
chown -R www-data:$app $final_path
chown -R www-data:$app $gollem_data_dir
chmod u=rwX,g=rwX,o= -R $final_path
chmod u=rwX,g=rwX,o= -R $gollem_data_dir
2019-05-14 21:46:30 +02:00
}
2022-08-31 00:06:07 +02:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================