2018-01-31 16:08:58 +01:00
|
|
|
#=================================================
|
|
|
|
# SET ALL CONSTANTS
|
|
|
|
#=================================================
|
|
|
|
|
2017-11-14 16:05:26 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2017-11-16 21:10:21 +01:00
|
|
|
final_path=/opt/yunohost/$app
|
|
|
|
pgadmin_user="pgadmin"
|
2018-11-07 19:30:34 +01:00
|
|
|
python_version="3.5"
|
2019-06-06 22:39:49 +02:00
|
|
|
dependances="python3-pip build-essential python3-dev python3-venv postgresql uwsgi uwsgi-plugin-python3 expect libpq-dev"
|
2017-11-16 21:10:21 +01:00
|
|
|
|
2019-06-07 22:09:00 +02:00
|
|
|
if [[ -e "../settings/manifest.json" ]] || [[ -e "../manifest.json" ]]; then
|
2018-01-31 16:08:58 +01:00
|
|
|
APP_VERSION=$(ynh_app_upstream_version)
|
2019-06-07 22:09:00 +02:00
|
|
|
app_main_version=$(echo $APP_VERSION | cut -d'-' -f1)
|
|
|
|
app_sub_version=$(echo $APP_VERSION | cut -d'-' -f2)
|
|
|
|
fi
|
2017-11-14 16:05:26 +01:00
|
|
|
|
2018-01-31 16:08:58 +01:00
|
|
|
#=================================================
|
|
|
|
# DEFINE ALL COMMON FONCTIONS
|
|
|
|
#=================================================
|
|
|
|
|
2017-11-16 21:10:21 +01:00
|
|
|
setup_dir() {
|
|
|
|
# Create empty dir for pgadmin
|
|
|
|
mkdir -p /var/lib/pgadmin
|
|
|
|
mkdir -p /var/log/pgadmin
|
|
|
|
mkdir -p $final_path
|
|
|
|
}
|
2017-11-14 16:05:26 +01:00
|
|
|
|
2017-11-16 21:10:21 +01:00
|
|
|
install_source() {
|
2018-05-27 00:53:49 +02:00
|
|
|
if [ -n "$(uname -m | grep arm)" ]
|
|
|
|
then
|
2020-01-26 15:50:06 +01:00
|
|
|
# Clean old file, sometime it could make some big issues if we don't do this !!
|
|
|
|
ynh_secure_remove --file=$final_path/bin
|
|
|
|
ynh_secure_remove --file=$final_path/lib
|
|
|
|
ynh_secure_remove --file=$final_path/include
|
|
|
|
ynh_secure_remove --file=$final_path/share
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_setup_source --dest_dir $final_path/ --source_id "armv7_stretch"
|
2018-05-27 00:53:49 +02:00
|
|
|
else
|
2017-11-16 21:10:21 +01:00
|
|
|
# Install virtualenv if it don't exist
|
2018-11-07 19:30:34 +01:00
|
|
|
test -e $final_path/bin/python3 || python3 -m venv $final_path
|
2017-11-16 21:10:21 +01:00
|
|
|
|
|
|
|
# Install pgadmin in virtualenv
|
2018-05-27 00:53:49 +02:00
|
|
|
PS1=""
|
|
|
|
cp ../conf/virtualenv_activate $final_path/bin/activate
|
|
|
|
source $final_path/bin/activate
|
2018-11-07 19:30:34 +01:00
|
|
|
pip3 install --upgrade pip
|
2020-02-22 23:17:32 +01:00
|
|
|
pip3 install --upgrade 'Werkzeug<1.0'
|
2018-11-07 19:30:34 +01:00
|
|
|
pip3 install --upgrade https://ftp.postgresql.org/pub/pgadmin/pgadmin$app_main_version/v$app_sub_version/pip/pgadmin${APP_VERSION}-py2.py3-none-any.whl
|
2018-05-27 00:53:49 +02:00
|
|
|
deactivate
|
|
|
|
fi
|
2017-11-16 21:10:21 +01:00
|
|
|
}
|
2017-11-14 16:05:26 +01:00
|
|
|
|
2017-11-16 21:10:21 +01:00
|
|
|
set_permission() {
|
|
|
|
# Set permission
|
|
|
|
chown $pgadmin_user:root -R $final_path
|
|
|
|
chown $pgadmin_user:root -R /var/lib/pgadmin
|
|
|
|
chown $pgadmin_user:root -R /var/log/pgadmin
|
2020-02-24 23:24:30 +01:00
|
|
|
chown $pgadmin_user:root /var/log/uwsgi/$app
|
2020-03-06 15:38:59 +01:00
|
|
|
chown $pgadmin_user:root /etc/uwsgi/apps-available/$app.ini
|
2018-01-29 18:48:14 +01:00
|
|
|
chmod u=rwX,g=rX,o= -R /var/lib/pgadmin
|
2017-11-16 21:10:21 +01:00
|
|
|
}
|
2017-11-14 16:05:26 +01:00
|
|
|
|
2017-11-16 21:10:21 +01:00
|
|
|
config_pgadmin() {
|
2018-11-07 19:30:34 +01:00
|
|
|
cp ../conf/config_local.py $final_path/lib/python$python_version/site-packages/pgadmin4/config_local.py
|
2019-06-06 22:39:49 +02:00
|
|
|
ynh_replace_string --match_string __USER__ --replace_string $pgadmin_user --target_file $final_path/lib/python$python_version/site-packages/pgadmin4/config_local.py
|
|
|
|
ynh_replace_string --match_string __DOMAIN__ --replace_string $domain --target_file $final_path/lib/python$python_version/site-packages/pgadmin4/config_local.py
|
2017-11-16 21:10:21 +01:00
|
|
|
}
|