seafile_ynh/scripts/install

232 lines
9.5 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
2017-07-21 14:56:41 +02:00
# Source YunoHost helpers
source /usr/share/yunohost/helpers
# Stop script if errors
ynh_abort_if_errors
2017-01-05 23:24:32 +01:00
# Import common cmd
source ./experimental_helper.sh
2017-01-05 23:24:32 +01:00
source ./_common.sh
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Validating installation parameters..."
# Retrieve arguments
2017-01-05 23:24:32 +01:00
domain=$YNH_APP_ARG_DOMAIN
path_url=$(ynh_normalize_url_path $YNH_APP_ARG_PATH)
2018-04-02 21:05:01 +02:00
server_name="$YNH_APP_ARG_SERVER_NAME"
2017-01-05 23:24:32 +01:00
admin=$YNH_APP_ARG_ADMIN
is_public=$YNH_APP_ARG_PUBLIC_SITE
seafile_data=/home/yunohost.app/seafile-data
final_path=/opt/yunohost/$app
seafile_user=$app
2019-06-11 22:28:26 +02:00
admin_password=$YNH_APP_ARG_ADMIN_PASSWORD
# Create special path with / at the end
if [[ $path_url == '/' ]]
then
path_url2=$path_url
else
path_url2=$path_url"/"
fi
2019-06-11 22:28:26 +02:00
# Register (book) web path
ynh_webpath_register --app $app --domain $domain --path_url $path_url
2017-07-21 14:56:41 +02:00
# Check Final Path availability
2019-06-11 22:28:26 +02:00
test ! -e "$final_path" || ynh_die --message "This path already contains a folder"
2017-07-21 14:56:41 +02:00
# Find available ports
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Finding available ports..."
2017-07-21 14:56:41 +02:00
seahub_port=$(ynh_find_port 8000)
fileserver_port=$(ynh_find_port 8082)
webdav_port=$(ynh_find_port 8080)
# store config in yunohost
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Storing installation settings..."
ynh_app_setting_set --app $app --key server_name --value "$server_name"
ynh_app_setting_set --app $app --key final_path --value $final_path
ynh_app_setting_set --app $app --key seafile_user --value $seafile_user
ynh_app_setting_set --app $app --key admin --value $admin
ynh_app_setting_set --app $app --key seahub_port --value $seahub_port
ynh_app_setting_set --app $app --key fileserver_port --value $fileserver_port
ynh_app_setting_set --app $app --key webdav_port --value $webdav_port
ynh_app_setting_set --app $app --key is_public --value $is_public
ynh_app_setting_set --app $app --key installed_version --value $seafile_version
#=================================================
# STANDARD MODIFICATIONS
#=================================================
2019-05-07 21:52:43 +02:00
# Create User
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Configuring system user..."
ynh_system_user_create --username $seafile_user --home_dir $final_path
2019-05-07 21:52:43 +02:00
# Check dependencies
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Installing dependencies..." --weight=7
2017-07-21 14:56:41 +02:00
install_dependance
# Copy files to the right place
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Cleaning data directory..."
test -e $seafile_data && ynh_secure_remove --file="$seafile_data"
ynh_script_progression --message="Creating base directory..."
2017-07-21 14:56:41 +02:00
mkdir -p $final_path
mkdir -p $final_path/installed
mkdir -p $final_path/logs
mkdir -p $final_path/seafile-data
2018-01-19 20:55:44 +01:00
# Download new version from sources
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Installing sources files..." --weight=7
2018-01-19 20:55:44 +01:00
install_source
# init databases
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Configuring MySQL database..."
db_user=seafile
ynh_mysql_setup_db --db_user $db_user --db_name ccnetdb
ynh_mysql_setup_db --db_user $db_user --db_name seafiledb --db_pwd "$db_pwd"
ynh_mysql_setup_db --db_user $db_user --db_name seahubdb --db_pwd "$db_pwd"
ynh_script_progression --message="Configuring application..." --weight=3
# Run install script
chmod +x expect_scripts/install.exp
2017-07-21 14:56:41 +02:00
chmod +x $final_path/seafile-server-$seafile_version/setup-seafile-mysql.sh
expect_scripts/install.exp "$final_path/seafile-server-$seafile_version" "$server_name" "$domain" "$seafile_data" "$fileserver_port" "$db_pwd"
# Update seafile config
2019-06-11 22:28:26 +02:00
ynh_replace_string --match_string http:// --replace_string https:// --target_file $final_path/conf/ccnet.conf
ynh_replace_string --match_string :8000 --replace_string $path_url --target_file $final_path/conf/ccnet.conf
2017-07-21 14:56:41 +02:00
echo 'FILE_SERVER_ROOT = "https://'$domain'/seafhttp"' | tee -a $final_path/conf/seahub_settings.py
echo 'SITE_ROOT = "'$path_url2'"' | tee -a $final_path/conf/seahub_settings.py
2017-07-21 14:56:41 +02:00
echo 'SERVE_STATIC = False' | tee -a $final_path/conf/seahub_settings.py
echo 'MEDIA_URL = "'$path_url2'media/"' | tee -a $final_path/conf/seahub_settings.py
2017-07-21 14:56:41 +02:00
echo 'COMPRESS_URL = MEDIA_URL' | tee -a $final_path/conf/seahub_settings.py
echo "STATIC_URL = MEDIA_URL + 'assets/'" | tee -a $final_path/conf/seahub_settings.py
2018-05-10 01:24:20 +02:00
echo "LOGIN_URL = '"$path_url2"accounts/login/'" | tee -a $final_path/conf/seahub_settings.py
echo "ALLOWED_HOSTS = ['"$domain"']" | tee -a $final_path/conf/seahub_settings.py
# Email configuration
2017-07-21 14:56:41 +02:00
echo 'EMAIL_USE_TLS = False' | tee -a $final_path/conf/seahub_settings.py
echo 'EMAIL_HOST = "localhost"' | tee -a $final_path/conf/seahub_settings.py
echo 'EMAIL_HOST_USER = "seafile@'$domain'"' | tee -a $final_path/conf/seahub_settings.py
echo 'EMAIL_PORT = "25"' | tee -a $final_path/conf/seahub_settings.py
echo 'DEFAULT_FROM_EMAIL = "seafile@'$domain'"' | tee -a $final_path/conf/seahub_settings.py
echo 'SERVER_EMAIL = "seafile@'$domain'"' | tee -a $final_path/conf/seahub_settings.py
2019-06-11 22:28:26 +02:00
echo 'EMAIL_HOST_PASSWORD = ""' | tee -a $final_path/conf/seahub_settings.py
2019-06-12 22:56:50 +02:00
echo "TIME_ZONE = \"$(cat /etc/timezone)\"" | tee -a $final_path/conf/seahub_settings.py
2019-07-30 21:58:38 +02:00
# SSO authentication
echo 'ENABLE_REMOTE_USER_AUTHENTICATION = True' | tee -a $final_path/conf/seahub_settings.py
echo 'REMOTE_USER_CREATE_UNKNOWN_USER = False' | tee -a $final_path/conf/seahub_settings.py
echo "REMOTE_USER_DOMAIN = '$domain'" | tee -a $final_path/conf/seahub_settings.py
echo "REMOTE_USER_PROTECTED_PATH = ['$path_url', '$path_url/accounts/login']" | tee -a $final_path/conf/seahub_settings.py
# LDAP configuration
2017-07-21 14:56:41 +02:00
echo '[LDAP]' | tee -a $final_path/conf/ccnet.conf
echo 'HOST = ldap://localhost:389' | tee -a $final_path/conf/ccnet.conf
echo 'BASE = ou=users,dc=yunohost,dc=org' | tee -a $final_path/conf/ccnet.conf
echo 'LOGIN_ATTR = mail' | tee -a $final_path/conf/ccnet.conf
2017-08-09 15:34:10 +02:00
# Enable manually wiki
echo 'ENABLE_WIKI = True' | tee -a $final_path/conf/seahub_settings.py
2017-07-21 14:56:41 +02:00
# Fix local warning
2019-06-11 22:28:26 +02:00
ynh_replace_string --match_string en_US.UTF-8 --replace_string ${LANG:-'en_US.UTF-8'} --target_file $final_path/seafile-server-$seafile_version/seahub.sh
2018-08-03 22:24:07 +02:00
# Update gunicorn config
2019-08-05 15:36:59 +02:00
sed --in-place -r "s@bind = \"127\.0\.0\.1:[[:digit:]]+\"@bind = \"127.0.0.1:$seahub_port\"@g" $final_path/conf/gunicorn.conf
2018-08-03 22:24:07 +02:00
# Add webdav
2017-07-21 14:56:41 +02:00
cp ../conf/seafdav.conf $final_path/conf/seafdav.conf
2019-06-11 22:28:26 +02:00
ynh_replace_string --match_string __WEBDAV_PORT__ --replace_string $webdav_port --target_file $final_path/conf/seafdav.conf
2017-07-21 14:56:41 +02:00
# Add Seafile Server to startup
2019-08-05 15:36:59 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=2
2019-06-11 22:28:26 +02:00
ynh_add_systemd_config --service seafile --template seafile.service
ynh_add_systemd_config --service seahub --template seahub.service
2017-07-21 14:56:41 +02:00
# Config nginx
2019-08-05 15:36:59 +02:00
ynh_script_progression --message="Configuring nginx..." --weight=1
2019-06-11 22:28:26 +02:00
ynh_add_nginx_config 'seahub_port fileserver_port webdav_port'
# Copy first launch script
cp expect_scripts/first_launch.exp $final_path
2017-07-21 14:56:41 +02:00
chmod +x $final_path/first_launch.exp
# Set permissions to seafile directory
2017-07-21 14:56:41 +02:00
chown -R $seafile_user:$seafile_user $final_path
chown -R $seafile_user:$seafile_user $seafile_data
2019-08-05 17:07:17 +02:00
# Sometime we have a current effect. We try to lunch seafile when not all permissions are already set.
# So wait untils all permissions are cleanly set
sleep 5
2019-09-10 22:51:27 +02:00
ynh_debug_exec ls /opt/yunohost/seafile/ccnet
2019-08-05 17:07:17 +02:00
# Start seafile, seahub and populate admin account
2017-07-21 14:56:41 +02:00
su - $seafile_user -s /bin/bash -c "$final_path/seafile-server-$seafile_version/seafile.sh start"
2018-01-30 11:32:02 +01:00
# We escape all char witch needed.
2019-06-11 22:28:26 +02:00
ynh_replace_special_string --match_string __ADMIN_PASSWORD__ --replace_string "$admin_password" --target_file $final_path/first_launch.exp
su - $seafile_user -s /bin/bash -c "$final_path/first_launch.exp $final_path/seafile-server-$seafile_version $admin@$domain"
ynh_secure_remove --file="$final_path/first_launch.exp"
#=================================================
# GENERIC FINALIZATION
#=================================================
2019-06-11 22:28:26 +02:00
# Set all permissions
ynh_script_progression --message="Protecting directory..."
set_permission
ynh_script_progression --message="Configuring permissions..."
# Add sso config to unprotect domain.tld/seafhttp + domain.tld/seafdav do in /etc/ssowat/conf.json.persistent
2019-06-11 22:28:26 +02:00
python3 ../conf/add_sso_conf.py || ynh_die --message="Your file /etc/ssowat/conf.json.persistent doesn't respect the json syntax. Please fix the syntax to install this app."
# unprotect media
2019-06-11 22:28:26 +02:00
ynh_app_setting_set --app $app --key unprotected_uris --value "/media"
if [ "$is_public" = "0" ]
then
2019-06-11 22:28:26 +02:00
ynh_app_setting_delete --app seafile --key unprotected_uris
else
2019-06-11 22:28:26 +02:00
ynh_app_setting_set --app $app --key unprotected_uris --value "/"
fi
# Add logrotate
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Configuring log rotation..."
ynh_use_logrotate $final_path/logs
2017-12-10 11:29:36 +01:00
ln -s $final_path/logs /var/log/seafile
2019-06-12 22:56:50 +02:00
# Add fail2ban
ynh_script_progression --message="Configuring fail2ban..." --weight=10
ynh_add_fail2ban_config --use_template --others_var 'final_path'
# register yunohost service
2019-06-11 22:28:26 +02:00
yunohost service add seafile
yunohost service add seahub
2019-08-05 15:36:59 +02:00
ynh_script_progression --message="Stoping services..." --weight=3
2019-06-11 22:28:26 +02:00
# Kill all services launched for initialisation
2019-08-05 15:36:59 +02:00
su - $seafile_user -s /bin/bash -c "$final_path/seafile-server-latest/seafile.sh stop"
2017-07-21 14:56:41 +02:00
su - $seafile_user -s /bin/bash -c "$final_path/seafile-server-latest/seahub.sh stop"
2017-08-09 15:34:10 +02:00
sleep 2
# We kill all process lunched by the script
pkill -f seafile-controller || true
pkill -f seaf-server || true
2019-06-11 22:28:26 +02:00
# Start service
ynh_script_progression --message="Starting seafile services..." --weight=3
ynh_systemd_action --service_name seafile -l "spawned seaf-server, pid " -p /var/log/seafile/controller.log
ynh_systemd_action --service_name seahub -l "Started Seafile hub." -p "systemd"
sleep 2
2019-06-11 22:28:26 +02:00
ynh_script_progression --message="Installation of $app completed" --last