mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
88 lines
3.1 KiB
Bash
88 lines
3.1 KiB
Bash
#=================================================
|
|
# SET ALL CONSTANTS
|
|
#=================================================
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
[[ -e "../settings/manifest.json" ]] || [[ -e "../manifest.json" ]] && \
|
|
seafile_version=$(ynh_app_upstream_version)
|
|
|
|
#=================================================
|
|
# DEFINE ALL COMMON FONCTIONS
|
|
#=================================================
|
|
|
|
get_configuration() {
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
seafile_user=$(ynh_app_setting_get $app seafile_user)
|
|
|
|
if [[ -z $final_path ]] || [[ -z $seafile_user ]]
|
|
then
|
|
if [[ -e /var/www/$app ]]
|
|
then
|
|
final_path=/var/www/$app
|
|
seafile_user=www-data
|
|
elif [[ -e /opt/yunohost/$app ]]
|
|
then
|
|
final_path=/opt/yunohost/$app
|
|
seafile_user=seafile
|
|
else
|
|
ynh_die "Error : can't find seafile path"
|
|
fi
|
|
ynh_app_setting_set $app final_path $final_path
|
|
ynh_app_setting_set $app seafile_user $seafile_user
|
|
fi
|
|
}
|
|
|
|
config_nginx() {
|
|
|
|
# In the 3.x seafile version package the seahub_port and fileserver_port wasn't saved in the settings. If the settings is empty we try to get it and save in the settings
|
|
|
|
if [[ -z $seahub_port ]] || [[ -z $fileserver_port ]]
|
|
then
|
|
seahub_port=$(head -n 20 /etc/nginx/conf.d/$domain.d/seafile.conf | grep -E "fastcgi_pass.*127.0.0.1:" | cut -d':' -f2 | cut -d';' -f1)
|
|
fileserver_port=$(head -n 50 /etc/nginx/conf.d/$domain.d/seafile.conf | grep -E "proxy_pass.*127.0.0.1:" | cut -d':' -f3 | cut -d';' -f1 | cut -d'/' -f1)
|
|
|
|
ynh_app_setting_set $app seahub_port $seahub_port
|
|
ynh_app_setting_set $app fileserver_port $fileserver_port
|
|
fi
|
|
|
|
ynh_add_nginx_config 'seahub_port fileserver_port webdav_port'
|
|
}
|
|
|
|
install_source() {
|
|
mkdir "$final_path/seafile-server-$seafile_version"
|
|
if [[ $architecture == "i386" ]]
|
|
then
|
|
ynh_die "Error : this architecture is no longer supported by the upstream. Please create en issue here : https://github.com/YunoHost-Apps/seafile_ynh/issues to ask to discuss about a support of this architecture"
|
|
fi
|
|
ynh_setup_source "$final_path/seafile-server-$seafile_version" "$architecture"
|
|
}
|
|
|
|
install_dependance() {
|
|
ynh_install_app_dependencies python2.7 python-pip libpython2.7 python-setuptools python-ldap python-urllib3 python-simplejson python-imaging python-mysqldb python-flup expect python-requests python-dev ffmpeg python-memcache \
|
|
libjpeg62-turbo-dev zlib1g-dev # For building pillow
|
|
pip install --upgrade 'Pillow==4.3.0' moviepy
|
|
}
|
|
|
|
ynh_clean_setup () {
|
|
pkill -f seafile-controller
|
|
pkill -f seaf-server
|
|
pkill -f ccnet-server
|
|
pkill -f "seahub"
|
|
}
|
|
|
|
# Reload (or other actions) a service and print a log in case of failure.
|
|
#
|
|
# usage: system_reload service_name [action]
|
|
# | arg: service_name - Name of the service to reload
|
|
# | arg: action - Action to perform with systemctl. Default: reload
|
|
system_reload () {
|
|
local service_name=$1
|
|
local action=${2:-reload}
|
|
|
|
# Reload, restart or start and print the log if the service fail to start or reload
|
|
systemctl $action $service_name || (
|
|
journalctl --lines=20 -u $service_name >&2
|
|
tail -n 50 $final_path/logs/*.log
|
|
false
|
|
)
|
|
}
|