2015-08-03 11:35:01 +02:00
|
|
|
#!/bin/bash
|
2016-07-10 16:24:09 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-07-10 16:24:09 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
source _common.sh
|
2018-08-10 14:59:24 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-07-11 18:41:22 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
path_url=$YNH_APP_ARG_PATH
|
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
|
|
|
language=$YNH_APP_ARG_LANGUAGE
|
|
|
|
ssoenabled=$YNH_APP_ARG_SSOENABLED
|
|
|
|
port=$YNH_APP_ARG_PORT
|
|
|
|
timezone=$(cat /etc/timezone)
|
|
|
|
|
|
|
|
### If it's a multi-instance app, meaning it can be installed several times independently
|
|
|
|
### The id of the app as stated in the manifest is available as $YNH_APP_ID
|
|
|
|
### The instance number is available as $YNH_APP_INSTANCE_NUMBER (equals "1", "2", ...)
|
|
|
|
### The app instance name is available as $YNH_APP_INSTANCE_NAME
|
|
|
|
### - the first time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample
|
|
|
|
### - the second time the app is installed, YNH_APP_INSTANCE_NAME = ynhexample__2
|
|
|
|
### - ynhexample__{N} for the subsequent installations, with N=3,4, ...
|
|
|
|
### The app instance name is probably what interests you most, since this is
|
|
|
|
### guaranteed to be unique. This is a good unique identifier to define installation path,
|
|
|
|
### db names, ...
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
|
|
|
|
2018-08-10 16:36:04 +02:00
|
|
|
final_path=/var/www/$app
|
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
2018-08-10 15:55:41 +02:00
|
|
|
|
|
|
|
# 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
|
2015-08-03 11:35:01 +02:00
|
|
|
|
2015-08-10 17:34:50 +02:00
|
|
|
# Check port availability
|
2018-08-10 15:55:41 +02:00
|
|
|
yunohost app checkport "$port" \
|
|
|
|
|| ynh_die "This port is already used"
|
2015-08-12 14:35:47 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2015-08-12 14:35:47 +02:00
|
|
|
|
2016-07-10 16:24:09 +02:00
|
|
|
# Save app settings
|
|
|
|
ynh_app_setting_set "$app" admin "$admin"
|
|
|
|
ynh_app_setting_set "$app" ssoenabled "$ssoenabled"
|
|
|
|
ynh_app_setting_set "$app" port "$port"
|
2018-08-10 15:55:41 +02:00
|
|
|
ynh_app_setting_set "$app" path "$path_url"
|
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#=================================================
|
2015-08-03 11:35:01 +02:00
|
|
|
|
2016-07-10 16:24:09 +02:00
|
|
|
# Generate and save random MySQL password
|
|
|
|
db_pwd=$(ynh_string_random 12)
|
|
|
|
ynh_app_setting_set "$app" mysqlpwd "$db_pwd"
|
2015-08-03 11:35:01 +02:00
|
|
|
|
|
|
|
# Use 'movim' as database name and user
|
|
|
|
db_user=movim
|
2016-07-10 16:24:09 +02:00
|
|
|
db_name=movim
|
2015-08-03 11:35:01 +02:00
|
|
|
|
2016-07-10 16:24:09 +02:00
|
|
|
# Create MySQL database
|
|
|
|
ynh_mysql_create_db "$db_name" "$db_user" "$db_pwd"
|
2015-08-03 11:35:01 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
|
2015-08-03 12:05:52 +02:00
|
|
|
# Install packages
|
2018-08-10 15:00:05 +02:00
|
|
|
ynh_install_app_dependencies php5-gd php5-curl php5-imagick php5-cli php5-zmq
|
2015-08-03 11:35:01 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2018-08-10 16:36:04 +02:00
|
|
|
ynh_app_setting_set "$app" final_path "$final_path"
|
|
|
|
|
2016-07-10 17:34:37 +02:00
|
|
|
# Download Movim source code
|
|
|
|
tmp_path=/tmp/movim-git
|
2018-08-10 16:46:40 +02:00
|
|
|
ynh_secure_remove "$tmp_path"
|
2016-07-11 18:41:22 +02:00
|
|
|
(git clone "$GIT_REPO" "$tmp_path" \
|
|
|
|
&& cd "$tmp_path" && git checkout "$HEAD_COMMIT") \
|
2016-07-10 17:34:37 +02:00
|
|
|
|| ynh_die "Unable to download Movim source code."
|
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# SET CONFIGURATION FILE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# TODO: add checksum
|
2016-07-10 17:34:37 +02:00
|
|
|
# Set database configuration
|
|
|
|
cp "${tmp_path}/config/"{db.example.inc.php,db.inc.php}
|
2018-08-10 16:46:40 +02:00
|
|
|
ynh_replace_string "'username' => 'username'" "'username' => '$db_user'" \
|
2016-07-10 17:34:37 +02:00
|
|
|
"${tmp_path}/config/db.inc.php"
|
2018-08-10 16:46:40 +02:00
|
|
|
ynh_replace_string "'password' => 'password'" "'password' => '$db_pwd'" \
|
2016-07-10 17:34:37 +02:00
|
|
|
"${tmp_path}/config/db.inc.php"
|
2018-08-10 15:55:41 +02:00
|
|
|
## TODO: consider installation in a subpath
|
2018-08-10 16:46:40 +02:00
|
|
|
ynh_replace_string "'/ws/'" "'${path_url%/}/ws/'" \
|
2016-07-10 17:34:37 +02:00
|
|
|
"${tmp_path}/app/assets/js/movim_websocket.js"
|
|
|
|
|
|
|
|
# Move Movim source code
|
2018-08-10 16:46:40 +02:00
|
|
|
mv "$tmp_path" "$final_path"
|
2015-08-19 11:13:00 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
2015-08-19 11:17:10 +02:00
|
|
|
# Create movim system user and set permissions
|
2018-08-10 16:46:40 +02:00
|
|
|
useradd -d /var/www/movim -s /bin/sh movim
|
2018-08-10 15:55:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SET PERMISSIONS
|
|
|
|
#=================================================
|
|
|
|
|
2018-08-10 16:46:40 +02:00
|
|
|
chown -R movim:www-data "$final_path"
|
|
|
|
find "${final_path}/" -type f -print0 | xargs -0 chmod 0644
|
|
|
|
find "${final_path}/" -type d -print0 | xargs -0 chmod 0755
|
|
|
|
chmod 400 "${final_path}/config/db.inc.php"
|
2016-07-10 17:34:37 +02:00
|
|
|
|
|
|
|
# Install PHP dependencies using composer
|
|
|
|
(curl -sS https://getcomposer.org/installer \
|
2018-08-10 16:36:04 +02:00
|
|
|
| exec_cmd php -- --install-dir="$final_path" \
|
2016-07-10 17:34:37 +02:00
|
|
|
&& exec_cmd php composer.phar config --global discard-changes true \
|
2016-07-11 18:41:22 +02:00
|
|
|
&& exec_cmd php composer.phar install --no-interaction) \
|
2016-07-10 17:34:37 +02:00
|
|
|
|| ynh_die "Unable to install Movim dependencies."
|
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# Set Movim database and configuration
|
|
|
|
#=================================================
|
|
|
|
|
2016-07-10 17:34:37 +02:00
|
|
|
# Set Movim database and configuration
|
|
|
|
exec_cmd php mud.php db --set
|
|
|
|
exec_cmd php mud.php config --loglevel=1 \
|
|
|
|
--locale="$language" --timezone="$timezone" \
|
|
|
|
--username="$admin" --password="$password"
|
2015-08-03 11:35:01 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
|
2015-08-04 10:50:43 +02:00
|
|
|
# Copy init script or systemd service
|
2018-08-10 16:52:22 +02:00
|
|
|
ynh_replace_string "YHURL" "${domain}${path_url}" ../conf/movim.service
|
|
|
|
ynh_replace_string "YHDIR" "${final_path}" ../conf/movim.service
|
|
|
|
ynh_replace_string "YHPORT" "${port}" ../conf/movim.service
|
|
|
|
|
|
|
|
cp ../conf/movim.service /etc/systemd/system/
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl enable movim.service
|
|
|
|
systemctl start movim.service
|
2015-08-03 11:35:01 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2015-08-21 17:45:36 +02:00
|
|
|
# php-fpm configuration
|
2018-08-10 16:46:40 +02:00
|
|
|
ynh_replace_string "YHTZ" "$timezone" ../conf/php-fpm.conf
|
|
|
|
cp ../conf/php-fpm.conf /etc/php5/fpm/pool.d/movim.conf
|
2015-08-21 17:45:36 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2015-08-03 11:35:01 +02:00
|
|
|
# Nginx configuration
|
2018-08-10 16:46:40 +02:00
|
|
|
ynh_replace_string "PATHTOCHANGE" "$path_url" ../conf/nginx.conf
|
|
|
|
ynh_replace_string "ALIASTOCHANGE" "$final_path/" ../conf/nginx.conf
|
|
|
|
ynh_replace_string "YHPORT" "$port" ../conf/nginx.conf
|
|
|
|
ynh_replace_string "//ws/" "/ws/" ../conf/nginx.conf # Avoid duplicate /
|
|
|
|
cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/movim.conf
|
2015-08-03 11:35:01 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
|
2016-07-10 17:56:37 +02:00
|
|
|
# SSOwat configuration
|
2016-07-11 18:41:22 +02:00
|
|
|
if [[ "$ssoenabled" = "No" ]]; then
|
2016-07-10 17:56:37 +02:00
|
|
|
ynh_app_setting_set "$app" skipped_uris "/"
|
|
|
|
exec_cmd php mud.php config --xmppwhitelist="$domain"
|
2015-12-16 13:53:46 +01:00
|
|
|
else
|
2016-07-10 17:56:37 +02:00
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
2016-07-10 18:19:18 +02:00
|
|
|
apply_sso_patch
|
2015-12-16 13:53:46 +01:00
|
|
|
fi
|
2015-08-03 12:05:52 +02:00
|
|
|
|
2018-08-10 15:55:41 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
|
|
|
|
2016-07-10 18:31:45 +02:00
|
|
|
# Reload services
|
2018-08-10 16:46:40 +02:00
|
|
|
service php5-fpm restart
|
|
|
|
service nginx reload
|