2018-02-11 01:20:58 +01:00
|
|
|
#=================================================
|
|
|
|
# SET ALL CONSTANTS
|
|
|
|
#=================================================
|
2016-12-27 10:44:40 +01:00
|
|
|
|
2023-08-08 23:21:11 +02:00
|
|
|
time_zone=$(cat /etc/timezone)
|
2023-10-04 20:56:57 +02:00
|
|
|
python_version="$(python3 -V | cut -d' ' -f2 | cut -d. -f1-2)"
|
2017-12-09 20:56:20 +01:00
|
|
|
|
2018-02-11 01:20:58 +01:00
|
|
|
#=================================================
|
|
|
|
# DEFINE ALL COMMON FONCTIONS
|
|
|
|
#=================================================
|
|
|
|
|
2017-07-21 14:56:41 +02:00
|
|
|
install_dependance() {
|
2022-08-23 06:24:57 +02:00
|
|
|
ynh_add_swap --size=2000
|
2023-10-04 20:56:57 +02:00
|
|
|
|
|
|
|
# Clean venv is it was on python3 with old version in case major upgrade of debian
|
|
|
|
if [ ! -e $install_dir/venv/bin/python3 ] || [ ! -e $install_dir/venv/lib/python$python_version ]; then
|
|
|
|
ynh_secure_remove --file=$install_dir/venv/bin
|
|
|
|
ynh_secure_remove --file=$install_dir/venv/lib
|
|
|
|
ynh_secure_remove --file=$install_dir/venv/lib64
|
|
|
|
ynh_secure_remove --file=$install_dir/venv/include
|
|
|
|
ynh_secure_remove --file=$install_dir/venv/share
|
|
|
|
ynh_secure_remove --file=$install_dir/venv/pyvenv.cfg
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create venv if it don't exist
|
|
|
|
test -e $install_dir/venv/bin/python3 || python3 -m venv $install_dir/venv
|
|
|
|
|
|
|
|
u_arg='u'
|
|
|
|
set +$u_arg;
|
|
|
|
source $install_dir/venv/bin/activate
|
|
|
|
set -$u_arg;
|
2021-03-20 19:04:25 +01:00
|
|
|
|
2020-02-19 22:00:10 +01:00
|
|
|
# Note that we install imageio to force the dependance, without this imageio 2.8 is installed and it need python3.5
|
2023-10-04 20:56:57 +02:00
|
|
|
pip3 install --upgrade future mysqlclient PyMySQL 'Pillow<10.0.0' pylibmc captcha Jinja2 'SQLAlchemy<2' psd-tools django-pylibmc django-simple-captcha python3-ldap pycryptodome==3.12.0 cffi==1.14.0 lxml
|
|
|
|
|
|
|
|
set +$u_arg;
|
|
|
|
deactivate
|
|
|
|
set -$u_arg;
|
2019-10-11 21:40:07 +02:00
|
|
|
ynh_del_swap
|
2023-10-04 20:56:57 +02:00
|
|
|
|
|
|
|
# Create symbolic link to venv package on seahub
|
|
|
|
ls $install_dir/venv/lib/python$python_version/site-packages | while read f; do
|
|
|
|
if [ ! -e "$install_dir/seafile-server-$seafile_version/seahub/thirdpart/$f" ]; then
|
|
|
|
ln -s ../../../venv/lib/python$python_version/site-packages/$f $install_dir/seafile-server-$seafile_version/seahub/thirdpart/$f
|
|
|
|
fi
|
|
|
|
done
|
2017-01-31 23:25:17 +01:00
|
|
|
}
|
|
|
|
|
2021-04-09 21:20:39 +02:00
|
|
|
mv_expect_scripts() {
|
|
|
|
expect_scripts_dir=$(mktemp -d)
|
|
|
|
cp expect_scripts/* $expect_scripts_dir
|
2021-04-25 14:11:51 +02:00
|
|
|
chmod u=rwx,o= -R $expect_scripts_dir
|
2023-09-27 19:21:58 +02:00
|
|
|
chown $YNH_APP_ID -R $expect_scripts_dir
|
2021-04-09 21:20:39 +02:00
|
|
|
}
|
|
|
|
|
2019-06-11 22:28:26 +02:00
|
|
|
set_permission() {
|
2023-09-27 19:21:58 +02:00
|
|
|
chown -R $YNH_APP_ID:$YNH_APP_ID $install_dir
|
2023-10-04 20:56:57 +02:00
|
|
|
chmod -R u+rwX,g-wx,o= $install_dir
|
2023-08-08 23:21:11 +02:00
|
|
|
setfacl -m user:www-data:rX $install_dir
|
|
|
|
setfacl -m user:www-data:rX $install_dir/seafile-server-$seafile_version
|
2022-11-02 17:19:55 +01:00
|
|
|
# At install time theses directory are not available
|
2023-09-27 19:21:58 +02:00
|
|
|
test -e $install_dir/seafile-server-latest/seahub && setfacl -m user:www-data:rX $install_dir/seafile-server-latest/seahub
|
|
|
|
test -e $install_dir/seafile-server-latest/seahub/media && setfacl -R -m user:www-data:rX $install_dir/seafile-server-latest/seahub/media
|
|
|
|
test -e $install_dir/seahub-data && setfacl -R -m user:www-data:rX $install_dir/seahub-data
|
2021-06-26 12:22:45 +02:00
|
|
|
|
2022-08-02 23:57:57 +02:00
|
|
|
# We also check at the install time when data directory is not already initialised
|
2021-04-09 21:20:39 +02:00
|
|
|
if [ -e /home/yunohost.app/seafile-data ]; then
|
2023-09-27 19:21:58 +02:00
|
|
|
chown -R $YNH_APP_ID /home/yunohost.app/seafile-data
|
2021-04-09 21:20:39 +02:00
|
|
|
chmod -R o= /home/yunohost.app/seafile-data
|
|
|
|
fi
|
2019-06-11 22:28:26 +02:00
|
|
|
}
|
2023-09-27 19:21:58 +02:00
|
|
|
|
|
|
|
clean_url_in_db_config() {
|
|
|
|
sql_request='DELETE FROM `constance_config` WHERE `constance_key`= "SERVICE_URL"'
|
|
|
|
ynh_mysql_execute_as_root --sql "$sql_request" --database seahubdb
|
|
|
|
sql_request='DELETE FROM `constance_config` WHERE `constance_key`= "FILE_SERVER_ROOT"'
|
|
|
|
ynh_mysql_execute_as_root --sql "$sql_request" --database seahubdb
|
|
|
|
}
|