2018-12-28 21:59:37 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source /usr/share/yunohost/helpers
|
2019-01-18 20:29:56 +01:00
|
|
|
source ./experimental_helper.sh
|
2018-12-28 21:59:37 +01:00
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
# Load common variables and helpers
|
|
|
|
source ./_common.sh
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Retrieve arguments
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
path_url=$YNH_APP_ARG_PATH
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
2019-01-03 20:02:31 +01:00
|
|
|
enable_terminal=$YNH_APP_ARG_ENABLE_TERMINAL
|
2018-12-28 21:59:37 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REGISTER DOMAIN
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Normalize the url path syntax
|
2018-12-29 11:06:34 +01:00
|
|
|
test -n "$path_url" || path_url="/"
|
2018-12-28 21:59:37 +01:00
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
|
|
|
|
|
|
|
# This function check also the availability of this one
|
|
|
|
ynh_webpath_register $app $domain $path_url
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REGISTER DOMAIN
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Check user parameter
|
|
|
|
ynh_user_exists "$admin" \
|
|
|
|
|| ynh_die "The chosen admin user does not exist."
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_app_setting_set $app admin $admin
|
2018-12-30 23:38:15 +01:00
|
|
|
ynh_app_setting_set $app domain $domain
|
2018-12-28 21:59:37 +01:00
|
|
|
ynh_app_setting_set $app path_url $path_url
|
|
|
|
ynh_app_setting_set $app is_public $is_public
|
2019-01-03 20:02:31 +01:00
|
|
|
ynh_app_setting_set $app enable_terminal $is_public
|
2018-12-28 21:59:37 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# FIND AND OPEN PORTS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Find free ports
|
|
|
|
port=$(ynh_find_port 8080)
|
2019-01-02 19:11:56 +01:00
|
|
|
port_hub=$(ynh_find_port 8081)
|
2018-12-28 21:59:37 +01:00
|
|
|
|
|
|
|
yunohost firewall allow --no-upnp TCP $port 2>&1
|
2019-01-02 19:11:56 +01:00
|
|
|
yunohost firewall allow --no-upnp TCP $port_hub 2>&1
|
2018-12-28 21:59:37 +01:00
|
|
|
ynh_app_setting_set $app port $port
|
2019-01-02 19:11:56 +01:00
|
|
|
ynh_app_setting_set $app port_hub $port_hub
|
2018-12-28 21:59:37 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE JUPYTERLAB
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Configure jupyterlab with jupyterhub_config.py file
|
2018-12-28 23:00:17 +01:00
|
|
|
config_jupyterlab
|
2018-12-28 21:59:37 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND INSTALL JUPYTERLAB
|
|
|
|
#=================================================
|
|
|
|
|
2019-01-02 19:11:56 +01:00
|
|
|
setup_source $miniconda_architecture
|
2018-12-28 21:59:37 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
2018-12-30 16:00:54 +01:00
|
|
|
# ADD HUB EXTENSION
|
|
|
|
#=================================================
|
2018-12-28 21:59:37 +01:00
|
|
|
|
2019-01-02 19:11:56 +01:00
|
|
|
jupyter labextension install @jupyterlab/hub-extension
|
|
|
|
jupyter lab build
|
2018-12-28 21:59:37 +01:00
|
|
|
|
2018-12-30 23:28:32 +01:00
|
|
|
chown $admin -R $final_path/share/jupyter
|
|
|
|
|
2018-12-30 16:00:54 +01:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE JUPYTER NOTEBOOK
|
|
|
|
#=================================================
|
|
|
|
config_jupyter_notebook
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
add_systemd_config
|
2018-12-28 21:59:37 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# If app is public, add url to SSOWat conf as skipped_uris
|
|
|
|
if [[ $is_public -eq 1 ]]; then
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
|
|
|
|
2019-01-18 20:29:56 +01:00
|
|
|
systemctl reload nginx
|
2018-12-28 21:59:37 +01:00
|
|
|
|
2018-12-30 16:00:54 +01:00
|
|
|
#=================================================
|
|
|
|
# ADVERTISE SERVICE IN ADMIN PANEL
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
yunohost service add $app --log "/var/log/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SERVICE
|
|
|
|
#=================================================
|
|
|
|
|
2019-01-18 20:29:56 +01:00
|
|
|
ynh_systemd_action -n $app -a start -l "JupyterHub is now running at" -p /var/log/$app.log
|