2020-11-09 22:28:22 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2023-05-20 14:28:49 +02:00
|
|
|
key=$(ynh_string_random --length=24)
|
2022-01-14 19:09:22 +01:00
|
|
|
registration_enabled="true"
|
|
|
|
login_enabled="true"
|
|
|
|
captcha_enabled="true"
|
|
|
|
|
2020-11-09 22:28:22 +01:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=2
|
|
|
|
|
2022-01-14 19:09:22 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=registration_enabled --value=$registration_enabled
|
|
|
|
ynh_app_setting_set --app=$app --key=login_enabled --value=$login_enabled
|
|
|
|
ynh_app_setting_set --app=$app --key=captcha_enabled --value=$captcha_enabled
|
2020-11-09 22:28:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2021-05-23 10:38:54 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=15
|
2020-11-09 22:28:22 +01:00
|
|
|
|
2021-10-03 09:12:48 +02:00
|
|
|
ynh_exec_warn_less curl -fsSL https://crystal-lang.org/install.sh | bash -s -- --channel=stable
|
2021-05-23 09:54:30 +02:00
|
|
|
|
2020-11-09 22:28:22 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=4
|
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
mkdir -p "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2023-02-08 09:44:10 +01:00
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
git config --system --add safe.directory $install_dir
|
2023-02-14 20:48:57 +01:00
|
|
|
|
2020-11-10 23:21:34 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from GitHub
|
2023-03-11 22:28:46 +01:00
|
|
|
git clone https://github.com/iv-org/invidious "$install_dir" --quiet
|
2023-02-14 19:56:34 +01:00
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
pushd "$install_dir"
|
|
|
|
git reset --hard --quiet $version_commit
|
2023-05-20 14:28:49 +02:00
|
|
|
make
|
2021-07-28 15:43:49 +02:00
|
|
|
popd
|
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-05-23 10:27:58 +02:00
|
|
|
|
2020-11-09 22:28:22 +01:00
|
|
|
#=================================================
|
2023-05-20 14:28:49 +02:00
|
|
|
# MODIFY A CONFIG FILE
|
2020-11-09 22:28:22 +01:00
|
|
|
#=================================================
|
2023-05-20 14:28:49 +02:00
|
|
|
ynh_script_progression --message="Modifying a config file..." --weight=1
|
2020-11-09 22:28:22 +01:00
|
|
|
|
2023-05-20 14:28:49 +02:00
|
|
|
ynh_add_config --template="../conf/config.yml" --destination="$install_dir/config/config.yml"
|
|
|
|
|
|
|
|
chmod 600 "$install_dir/config/config.yml"
|
|
|
|
chown $app:$app "$install_dir/config/config.yml"
|
2020-11-09 22:28:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# INSTALL INVIDIOUS
|
|
|
|
#=================================================
|
2021-05-23 10:27:58 +02:00
|
|
|
ynh_script_progression --message="Building Invidious.. (this will take some time and resources!)" --weight=60
|
2020-11-09 22:28:22 +01:00
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
pushd "$install_dir"
|
2023-05-20 14:28:49 +02:00
|
|
|
./invidious --migrate
|
2022-02-25 19:27:51 +01:00
|
|
|
ynh_exec_warn_less shards install --production
|
2023-05-20 09:46:29 +02:00
|
|
|
ynh_exec_warn_less crystal build $install_dir/src/invidious.cr --release
|
|
|
|
#ynh_exec_warn_less crystal build $install_dir/src/invidious.cr --Ddisable_quic --release
|
2021-10-02 16:23:12 +02:00
|
|
|
popd
|
2020-11-09 22:28:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
2023-03-11 22:28:46 +01:00
|
|
|
# SYSTEM CONFIGURATION
|
2020-11-09 22:28:22 +01:00
|
|
|
#=================================================
|
2023-03-11 22:28:46 +01:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app ..." --weight=10
|
2020-11-09 22:28:22 +01:00
|
|
|
|
2023-05-20 14:28:49 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2021-03-03 21:04:16 +01:00
|
|
|
ynh_add_config --template="../conf/cron_invidious" --destination="/etc/cron.d/$app"
|
2021-10-03 07:40:37 +02:00
|
|
|
chown root: "/etc/cron.d/$app"
|
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2020-11-09 22:28:22 +01:00
|
|
|
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
ynh_add_systemd_config
|
2020-11-09 22:28:22 +01:00
|
|
|
|
2020-12-04 12:11:13 +01:00
|
|
|
yunohost service add $app --description="Invidious is an alternative front-end to YouTube" --log="/var/log/$app/$app.log"
|
2020-11-09 22:28:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
2023-03-11 22:28:46 +01:00
|
|
|
# START SYSTEMD SERVICE
|
2020-11-09 22:28:22 +01:00
|
|
|
#=================================================
|
2023-03-11 22:28:46 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=2
|
2020-11-09 22:28:22 +01:00
|
|
|
|
2023-03-11 22:28:46 +01:00
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name=$app --action=start --log_path=systemd
|
2020-11-09 22:28:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of Invidious completed" --last
|