1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/paperless-ngx_ynh.git synced 2024-09-03 19:56:33 +02:00
paperless-ngx_ynh/scripts/install

184 lines
6.8 KiB
Text
Raw Permalink Normal View History

2022-03-29 11:08:51 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Setting up source files..." --weight=1
2022-03-29 11:08:51 +02:00
ynh_setup_source --dest_dir="$install_dir"
2022-03-29 17:50:14 +02:00
2024-02-10 09:24:13 +01:00
ynh_setup_source --dest_dir="$install_dir/ghostscript" --source_id="gs"
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
2022-03-29 11:08:51 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2022-03-29 11:08:51 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SPECIFIC SETUP
#=================================================
2022-03-29 17:50:14 +02:00
# INSTALL PYTHON DEPENDENCIES
2022-03-29 11:08:51 +02:00
#=================================================
2022-03-29 17:50:14 +02:00
ynh_script_progression --message="Installing Python dependencies..."
pushd $install_dir
2022-03-29 17:50:14 +02:00
python3 -m venv venv
chown -R "$app:" "$install_dir"
2022-12-30 12:24:18 +01:00
(
source "$install_dir/venv/bin/activate"
ynh_exec_as $app $install_dir/venv/bin/pip3 install --upgrade pip setuptools wheel
ynh_exec_as $app $install_dir/venv/bin/pip3 install -r "$install_dir/requirements.txt"
2023-01-11 21:13:25 +01:00
# Installing NLTK data
mkdir -p "$install_dir/nltk_data"
chown -R "$app:" "$install_dir/nltk_data"
ynh_exec_warn_less ynh_exec_as $app $install_dir/venv/bin/python3 -m nltk.downloader -d "$install_dir/nltk_data" snowball_data
ynh_exec_warn_less ynh_exec_as $app $install_dir/venv/bin/python3 -m nltk.downloader -d "$install_dir/nltk_data" stopwords
ynh_exec_warn_less ynh_exec_as $app $install_dir/venv/bin/python3 -m nltk.downloader -d "$install_dir/nltk_data" punkt
2023-01-11 21:13:25 +01:00
2022-12-30 12:24:18 +01:00
deactivate
)
2022-03-29 17:50:14 +02:00
popd
2022-03-29 11:08:51 +02:00
2024-02-10 09:24:13 +01:00
#=================================================
# BUILD GHOSTCRIPT SPECIFIC VERSION
#=================================================
2024-02-12 18:06:57 +01:00
ynh_script_progression --message="Building Ghostscript dependency... (this will take a long time!)"
2024-02-10 09:24:13 +01:00
pushd $install_dir/ghostscript
2024-02-12 17:18:19 +01:00
ynh_exec_warn_less ./configure
ynh_exec_warn_less make
2024-02-12 22:48:54 +01:00
mv bin/ $install_dir/
2024-02-10 09:24:13 +01:00
popd
2024-02-12 22:48:54 +01:00
ynh_secure_remove --file="$install_dir/ghostscript"
chmod -R o-rwx "$install_dir/bin"
chown -R $app:$app "$install_dir/bin"
2024-02-12 23:49:58 +01:00
chmod 550 $install_dir/bin/gs
2024-02-10 09:24:13 +01:00
2024-02-12 22:48:54 +01:00
local_path=$install_dir/bin/:$PATH
2024-02-12 19:38:29 +01:00
2022-03-29 11:08:51 +02:00
#=================================================
# CREATE DATA DIRECTORY
#=================================================
ynh_script_progression --message="Setting permissions for the data directory..." --weight=1
2022-03-29 11:08:51 +02:00
chmod 750 "$data_dir"
chmod -R o-rwx "$data_dir"
chown -R $app:$app "$data_dir"
2023-04-15 17:40:41 +02:00
#=================================================
2022-03-29 11:08:51 +02:00
# ADD A CONFIGURATION
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
redis_db=$(ynh_redis_get_free_db)
ynh_app_setting_set --app=$app --key=redis_db --value=$redis_db
2022-03-29 11:08:51 +02:00
2022-03-29 17:50:14 +02:00
paperless_secret_key=$(ynh_string_random)
2022-12-30 12:24:18 +01:00
ynh_app_setting_set --app=$app --key=paperless_secret_key --value=$paperless_secret_key
2022-03-29 17:50:14 +02:00
2023-01-11 21:12:19 +01:00
ocr_language="eng"
ynh_app_setting_set --app=$app --key=ocr_language --value=$ocr_language
ynh_add_config --template="paperless.conf.example" --destination="$install_dir/paperless.conf"
2022-03-29 17:50:14 +02:00
chmod 400 "$install_dir/paperless.conf"
chown $app:$app "$install_dir/paperless.conf"
2022-03-29 11:08:51 +02:00
# ImageMagick configuration
mkdir -p "$install_dir/.config/ImageMagick"
ynh_add_config --template="policy.xml" --destination="$install_dir/.config/ImageMagick/policy.xml"
chmod 400 "$install_dir/.config/ImageMagick/policy.xml"
chown -R $app:$app "$install_dir/.config"
2022-03-29 11:08:51 +02:00
#=================================================
2022-03-29 17:50:14 +02:00
# SETUP THE DATABASE
2022-03-29 11:08:51 +02:00
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Setting up the database..." --weight=1
2022-03-29 11:08:51 +02:00
pushd "$install_dir/src"
2022-12-30 12:24:18 +01:00
(
source "$install_dir/venv/bin/activate"
ynh_exec_as $app $install_dir/venv/bin/python manage.py migrate
2022-12-30 12:24:18 +01:00
deactivate
)
2022-03-29 17:50:14 +02:00
popd
2022-03-29 11:08:51 +02:00
2022-03-29 17:50:14 +02:00
#=================================================
# CREATE THE ADMIN USER
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Creating the admin user..." --weight=1
2022-03-29 11:08:51 +02:00
pushd "$install_dir/src"
2022-12-30 12:24:18 +01:00
(
source "$install_dir/venv/bin/activate"
2022-03-29 17:50:14 +02:00
email=$(ynh_user_get_info $admin 'mail')
ynh_exec_as $app env "DJANGO_SUPERUSER_PASSWORD=$admin_pw" $install_dir/venv/bin/python3 manage.py createsuperuser --noinput --username "$admin" --email "$email"
2022-12-30 12:24:18 +01:00
deactivate
)
2022-03-29 17:50:14 +02:00
popd
2022-03-29 11:08:51 +02:00
2022-12-30 12:24:18 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Configuring a systemd service..." --weight=1
# Create a dedicated systemd config
ynh_add_systemd_config --service="$app" --template="systemd.service"
2022-12-30 19:30:56 +01:00
ynh_add_systemd_config --service="$app-consumer" --template="systemd-consumer.service"
ynh_add_systemd_config --service="$app-scheduler" --template="systemd-scheduler.service"
ynh_add_systemd_config --service="$app-task-queue" --template="systemd-task-queue.service"
2022-12-30 12:24:18 +01:00
2022-03-29 11:08:51 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Configuring log rotation..." --weight=1
2022-03-29 11:08:51 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-03-29 11:08:51 +02:00
2022-12-30 12:24:18 +01:00
yunohost service add "$app" --log="/var/log/$app/$app.log"
2022-12-30 19:30:56 +01:00
yunohost service add "$app-consumer" --log="/var/log/$app/$app-consumer.log"
yunohost service add "$app-scheduler" --log="/var/log/$app/$app-scheduler.log"
yunohost service add "$app-task-queue" --log="/var/log/$app/$app-task-queue.log"
2022-03-29 11:08:51 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-03-29 11:08:51 +02:00
2022-12-30 12:24:18 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2022-12-30 19:30:56 +01:00
ynh_systemd_action --service_name="$app-consumer" --action="start" --log_path="/var/log/$app/$app-consumer.log"
ynh_systemd_action --service_name="$app-scheduler" --action="start" --log_path="/var/log/$app/$app-scheduler.log"
ynh_systemd_action --service_name="$app-task-queue" --action="start" --log_path="/var/log/$app/$app-task-queue.log"
2022-03-29 11:08:51 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-12-30 12:24:18 +01:00
ynh_script_progression --message="Installation of $app completed" --last