2017-05-22 22:46:07 +02:00
|
|
|
#!/bin/bash
|
2018-04-08 14:30:21 +02:00
|
|
|
# _____ _ _
|
|
|
|
# | __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
|
|
|
|
# | __| _| -_| -_| . | . | | . | . | | -_|
|
|
|
|
# |__| |_| |___|___|___|___|_|_|_|___|___|_|_|___|
|
2017-05-22 22:46:07 +02:00
|
|
|
#
|
2018-04-08 14:30:21 +02:00
|
|
|
# Freedom in the Cloud
|
2017-05-22 22:46:07 +02:00
|
|
|
#
|
2017-10-02 11:43:59 +02:00
|
|
|
# scuttlebot pub application. Enables nat traversal for SSB.
|
2017-05-22 22:46:07 +02:00
|
|
|
# https://scuttlebot.io
|
|
|
|
#
|
|
|
|
# License
|
|
|
|
# =======
|
|
|
|
#
|
2018-01-25 19:35:39 +01:00
|
|
|
# Copyright (C) 2017-2018 Bob Mottram <bob@freedombone.net>
|
2017-05-22 22:46:07 +02:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-10-02 11:46:12 +02:00
|
|
|
VARIANTS='full full-vim social'
|
2017-05-22 22:46:07 +02:00
|
|
|
|
|
|
|
IN_DEFAULT_INSTALL=0
|
|
|
|
SHOW_ON_ABOUT=0
|
|
|
|
SHOW_ICANN_ADDRESS_ON_ABOUT=0
|
|
|
|
|
2017-12-12 17:35:14 +01:00
|
|
|
SCUTTLEBOT_DOMAIN_NAME=
|
|
|
|
SCUTTLEBOT_CODE=
|
2018-04-12 20:48:56 +02:00
|
|
|
SCUTTLEBOT_VERSION='11.2.0'
|
2017-10-02 22:57:24 +02:00
|
|
|
SCUTTLEBOT_PORT=8010
|
2017-12-12 17:35:14 +01:00
|
|
|
SCUTTLEBOT_ONION_PORT=8623
|
|
|
|
GIT_SSB_PORT=7718
|
|
|
|
NGINX_GIT_SSB_PORT=7719
|
2017-05-22 22:46:07 +02:00
|
|
|
|
|
|
|
scuttlebot_variables=(MY_USERNAME
|
2017-12-12 18:46:38 +01:00
|
|
|
SCUTTLEBOT_DOMAIN_NAME
|
|
|
|
SCUTTLEBOT_CODE
|
2017-05-23 16:13:45 +02:00
|
|
|
DEFAULT_DOMAIN_NAME
|
2017-05-22 22:46:07 +02:00
|
|
|
SYSTEM_TYPE)
|
|
|
|
|
2017-07-01 20:14:28 +02:00
|
|
|
function logging_on_scuttlebot {
|
|
|
|
echo -n ''
|
|
|
|
}
|
|
|
|
|
|
|
|
function logging_off_scuttlebot {
|
|
|
|
echo -n ''
|
|
|
|
}
|
|
|
|
|
2017-05-23 16:13:45 +02:00
|
|
|
function scuttlebot_create_invite {
|
2017-05-23 18:21:32 +02:00
|
|
|
invite_string=$(su -c "sbot invite.create 1" - scuttlebot | sed 's/"//g')
|
2017-05-22 22:46:07 +02:00
|
|
|
|
2017-05-23 16:13:45 +02:00
|
|
|
clear
|
2018-03-01 00:17:49 +01:00
|
|
|
echo -e "\\n\\nYour Scuttlebot invite code is:\\n\\n${invite_string}\\n\\n"
|
|
|
|
# shellcheck disable=SC2034
|
2017-05-23 16:13:45 +02:00
|
|
|
read -n1 -r -p $"Press any key to continue..." key
|
|
|
|
}
|
|
|
|
|
|
|
|
function configure_interactive_scuttlebot {
|
2018-04-04 14:13:09 +02:00
|
|
|
W=(1 $"Create an invite")
|
|
|
|
|
2017-05-23 16:13:45 +02:00
|
|
|
while true
|
|
|
|
do
|
2018-04-04 14:13:09 +02:00
|
|
|
# shellcheck disable=SC2068
|
|
|
|
selection=$(dialog --backtitle $"Freedombone Administrator Control Panel" --title $"Scuttlebot" --menu $"Choose an operation, or ESC to exit:" 10 60 2 "${W[@]}" 3>&2 2>&1 1>&3)
|
|
|
|
|
|
|
|
if [ ! "$selection" ]; then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
|
|
|
|
case $selection in
|
2017-05-23 16:13:45 +02:00
|
|
|
1) scuttlebot_create_invite;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|
2017-05-22 22:46:07 +02:00
|
|
|
|
|
|
|
function remove_user_scuttlebot {
|
2018-03-01 00:17:49 +01:00
|
|
|
echo -n ''
|
|
|
|
# remove_username="$1"
|
2017-05-22 22:46:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function add_user_scuttlebot {
|
2018-03-01 00:17:49 +01:00
|
|
|
# new_username="$1"
|
|
|
|
# new_user_password="$2"
|
2017-05-22 22:46:07 +02:00
|
|
|
echo '0'
|
|
|
|
}
|
|
|
|
|
|
|
|
function install_interactive_scuttlebot {
|
2017-12-12 17:35:14 +01:00
|
|
|
if [[ $ONION_ONLY != "no" ]]; then
|
|
|
|
SCUTTLEBOT_DOMAIN_NAME='scuttlebot.local'
|
|
|
|
write_config_param "SCUTTLEBOT_DOMAIN_NAME" "$SCUTTLEBOT_DOMAIN_NAME"
|
|
|
|
else
|
|
|
|
function_check interactive_site_details
|
|
|
|
interactive_site_details scuttlebot
|
|
|
|
fi
|
2017-05-22 22:46:07 +02:00
|
|
|
APP_INSTALLED=1
|
|
|
|
}
|
|
|
|
|
|
|
|
function change_password_scuttlebot {
|
2018-03-01 00:17:49 +01:00
|
|
|
# new_username="$1"
|
|
|
|
# new_user_password="$2"
|
2017-05-22 22:46:07 +02:00
|
|
|
echo '0'
|
|
|
|
}
|
|
|
|
|
|
|
|
function reconfigure_scuttlebot {
|
|
|
|
if [ -d /etc/scuttlebot/.ssb ]; then
|
|
|
|
systemctl stop scuttlebot
|
|
|
|
rm -rf /etc/scuttlebot/.ssb
|
|
|
|
systemctl start scuttlebot
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function upgrade_scuttlebot {
|
2018-03-01 00:17:49 +01:00
|
|
|
if ! grep -q 'scuttlebot version:' $"COMPLETION_FILE"; then
|
2017-05-22 22:46:07 +02:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
CURR_SCUTTLEBOT_VERSION=$(get_completion_param "scuttlebot version")
|
|
|
|
echo "scuttlebot current version: ${CURR_SCUTTLEBOT_VERSION}"
|
|
|
|
echo "scuttlebot app version: ${SCUTTLEBOT_VERSION}"
|
|
|
|
if [[ "${CURR_SCUTTLEBOT_VERSION}" == "${SCUTTLEBOT_VERSION}" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2018-03-01 00:17:49 +01:00
|
|
|
if ! npm upgrade -g scuttlebot@${SCUTTLEBOT_VERSION} --save; then
|
2017-05-22 22:46:07 +02:00
|
|
|
return
|
|
|
|
fi
|
2018-03-01 00:17:49 +01:00
|
|
|
sed -i "s|scuttlebot version.*|scuttlebot version:${SCUTTLEBOT_VERSION}|g" "${COMPLETION_FILE}"
|
2017-05-22 22:46:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function backup_local_scuttlebot {
|
|
|
|
if [ -d /etc/scuttlebot/.ssb ]; then
|
|
|
|
systemctl stop scuttlebot
|
|
|
|
function_check backup_directory_to_usb
|
|
|
|
backup_directory_to_usb /etc/scuttlebot/.ssb scuttlebot
|
|
|
|
systemctl start scuttlebot
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function restore_local_scuttlebot {
|
|
|
|
if [ -d /etc/scuttlebot ]; then
|
|
|
|
systemctl stop scuttlebot
|
|
|
|
temp_restore_dir=/root/tempscuttlebot
|
|
|
|
function_check restore_directory_from_usb
|
|
|
|
restore_directory_from_usb $temp_restore_dir scuttlebot
|
2017-08-25 18:35:33 +02:00
|
|
|
if [ -d $temp_restore_dir/etc/scuttlebot/.ssb ]; then
|
|
|
|
cp -r $temp_restore_dir/etc/scuttlebot/.ssb /etc/scuttlebot/
|
|
|
|
else
|
|
|
|
cp -r $temp_restore_dir/* /etc/scuttlebot/.ssb/*
|
|
|
|
fi
|
2017-05-22 22:46:07 +02:00
|
|
|
systemctl start scuttlebot
|
2017-08-25 18:35:33 +02:00
|
|
|
rm -rf $temp_restore_dir
|
2017-05-22 22:46:07 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function backup_remote_scuttlebot {
|
|
|
|
if [ -d /etc/scuttlebot/.ssb ]; then
|
|
|
|
systemctl stop scuttlebot
|
|
|
|
function_check backup_directory_to_friend
|
|
|
|
backup_directory_to_friend /etc/scuttlebot/.ssb scuttlebot
|
|
|
|
systemctl start scuttlebot
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function restore_remote_scuttlebot {
|
|
|
|
if [ -d /etc/scuttlebot ]; then
|
|
|
|
systemctl stop scuttlebot
|
|
|
|
temp_restore_dir=/root/tempscuttlebot
|
|
|
|
function_check restore_directory_from_friend
|
|
|
|
restore_directory_from_friend $temp_restore_dir scuttlebot
|
2017-08-25 18:35:33 +02:00
|
|
|
if [ -d $temp_restore_dir/etc/scuttlebot/.ssb ]; then
|
|
|
|
cp -r $temp_restore_dir/etc/scuttlebot/.ssb /etc/scuttlebot/
|
|
|
|
else
|
|
|
|
cp -r $temp_restore_dir/* /etc/scuttlebot/.ssb/*
|
|
|
|
fi
|
2017-05-22 22:46:07 +02:00
|
|
|
systemctl start scuttlebot
|
2017-08-25 18:35:33 +02:00
|
|
|
rm -rf $temp_restore_dir
|
2017-05-22 22:46:07 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function remove_scuttlebot {
|
2017-05-23 18:38:48 +02:00
|
|
|
firewall_remove ${SCUTTLEBOT_PORT}
|
2017-12-12 17:35:14 +01:00
|
|
|
firewall_remove ${GIT_SSB_PORT}
|
|
|
|
|
2017-12-12 18:47:39 +01:00
|
|
|
if [ $SCUTTLEBOT_DOMAIN_NAME ]; then
|
|
|
|
nginx_dissite ${SCUTTLEBOT_DOMAIN_NAME}
|
|
|
|
rm /etc/nginx/sites-available/${SCUTTLEBOT_DOMAIN_NAME}
|
|
|
|
fi
|
2017-05-23 18:38:48 +02:00
|
|
|
|
2017-12-12 23:22:08 +01:00
|
|
|
systemctl stop git_ssb
|
2017-05-22 22:46:07 +02:00
|
|
|
systemctl stop scuttlebot
|
2017-12-12 23:22:08 +01:00
|
|
|
systemctl disable git_ssb
|
2017-05-22 22:46:07 +02:00
|
|
|
systemctl disable scuttlebot
|
2017-12-12 23:22:08 +01:00
|
|
|
rm /etc/systemd/system/git_ssb.service
|
2017-05-22 22:46:07 +02:00
|
|
|
rm /etc/systemd/system/scuttlebot.service
|
2017-06-10 22:37:50 +02:00
|
|
|
systemctl daemon-reload
|
2017-05-22 22:46:07 +02:00
|
|
|
|
|
|
|
userdel -r scuttlebot
|
|
|
|
|
|
|
|
if [ -d /etc/scuttlebot ]; then
|
|
|
|
rm -rf /etc/scuttlebot
|
|
|
|
fi
|
2017-12-12 23:22:08 +01:00
|
|
|
if [ -f /usr/bin/git-ssb-create ]; then
|
|
|
|
rm /usr/bin/git-ssb-create
|
|
|
|
fi
|
2017-05-22 22:46:07 +02:00
|
|
|
|
|
|
|
remove_completion_param install_scuttlebot
|
2018-03-01 00:17:49 +01:00
|
|
|
sed -i '/scuttlebot /d' "$COMPLETION_FILE"
|
2017-05-22 22:46:07 +02:00
|
|
|
}
|
|
|
|
|
2017-12-12 23:22:08 +01:00
|
|
|
function git_ssb_script {
|
|
|
|
if [[ "$1" == "mesh" ]]; then
|
2018-03-01 00:17:49 +01:00
|
|
|
# shellcheck disable=SC2154
|
2017-12-12 23:22:08 +01:00
|
|
|
git_ssb_script_name=$rootdir/usr/bin/git-ssb-create
|
2017-12-16 16:21:01 +01:00
|
|
|
git_ssb_daemon_filename=$rootdir/etc/systemd/system/git_ssb.service
|
2017-12-12 23:22:08 +01:00
|
|
|
else
|
|
|
|
git_ssb_script_name=/usr/bin/git-ssb-create
|
2017-12-16 16:21:01 +01:00
|
|
|
git_ssb_daemon_filename=/etc/systemd/system/git_ssb.service
|
2017-12-12 23:22:08 +01:00
|
|
|
fi
|
2018-03-01 00:17:49 +01:00
|
|
|
{ echo '#!/bin/bash';
|
|
|
|
echo "reponame=\"\$1\"";
|
|
|
|
echo '';
|
|
|
|
echo "if [[ \"\$reponame\" != \"\" ]]; then";
|
|
|
|
echo " mkdir \$reponame";
|
|
|
|
echo " cd \$reponame";
|
|
|
|
echo ' git init';
|
|
|
|
echo " git ssb create ssb \$reponame";
|
|
|
|
echo ' git push --tags ssb master';
|
|
|
|
echo 'fi';
|
|
|
|
echo 'exit 0'; } > $git_ssb_script_name
|
2017-12-12 23:22:08 +01:00
|
|
|
chmod +x $git_ssb_script_name
|
2017-12-16 16:21:01 +01:00
|
|
|
|
2018-03-01 00:17:49 +01:00
|
|
|
{ echo '[Unit]';
|
|
|
|
echo 'Description=Git SSB (SSB git web interface)';
|
|
|
|
echo 'After=syslog.target';
|
|
|
|
echo 'After=network.target';
|
|
|
|
echo 'After=scuttlebot.target';
|
|
|
|
echo '';
|
|
|
|
echo '[Service]';
|
|
|
|
echo 'Type=simple';
|
|
|
|
echo 'User=scuttlebot';
|
|
|
|
echo 'Group=scuttlebot';
|
|
|
|
echo "WorkingDirectory=/etc/scuttlebot";
|
|
|
|
echo "ExecStart=/usr/bin/git ssb web --public localhost:$GIT_SSB_PORT";
|
|
|
|
echo 'Restart=always';
|
|
|
|
echo 'Environment="USER=scuttlebot"';
|
|
|
|
echo '';
|
|
|
|
echo '[Install]';
|
|
|
|
echo 'WantedBy=multi-user.target'; } > $git_ssb_daemon_filename
|
2017-12-12 23:22:08 +01:00
|
|
|
}
|
|
|
|
|
2017-12-12 17:35:14 +01:00
|
|
|
function scuttlebot_git_setup {
|
|
|
|
if [[ "$1" == "mesh" ]]; then
|
2018-03-01 00:17:49 +01:00
|
|
|
if [ ! -d "$rootdir/usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight" ]; then
|
|
|
|
mkdir "$rootdir/usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight"
|
2017-12-12 23:22:08 +01:00
|
|
|
fi
|
2018-03-01 00:17:49 +01:00
|
|
|
if [ ! -f "$rootdir/usr/local/lib/node_modules/git-ssb/node_modules/highlight.js/styles/foundation.css" ]; then
|
2017-12-12 23:22:08 +01:00
|
|
|
echo $'Could not find foundation.css'
|
|
|
|
exit 347687245
|
|
|
|
fi
|
2018-03-01 00:17:49 +01:00
|
|
|
cp "$rootdir/usr/local/lib/node_modules/git-ssb/node_modules/highlight.js/styles/foundation.css" "$rootdir/usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight/foundation.css"
|
2017-12-12 23:22:08 +01:00
|
|
|
|
2017-12-12 17:35:14 +01:00
|
|
|
git_ssb_nginx_site=$rootdir/etc/nginx/sites-available/git_ssb
|
2018-03-01 00:17:49 +01:00
|
|
|
{ echo 'server {';
|
|
|
|
echo " listen $NGINX_GIT_SSB_PORT default_server;";
|
|
|
|
echo " server_name P${PEER_ID}.local;";
|
|
|
|
echo '';
|
|
|
|
echo ' access_log /dev/null;';
|
|
|
|
echo ' error_log /dev/null;';
|
|
|
|
echo '';
|
|
|
|
echo ' add_header X-XSS-Protection "1; mode=block";';
|
|
|
|
echo ' add_header X-Content-Type-Options nosniff;';
|
|
|
|
echo ' add_header X-Frame-Options SAMEORIGIN;'; } > "$git_ssb_nginx_site"
|
2017-12-12 17:35:14 +01:00
|
|
|
else
|
2017-12-12 18:46:38 +01:00
|
|
|
if [ ! $SCUTTLEBOT_DOMAIN_NAME ]; then
|
|
|
|
exit 7357225
|
|
|
|
fi
|
2017-12-12 23:22:08 +01:00
|
|
|
|
|
|
|
if [ ! -d /usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight ]; then
|
|
|
|
mkdir /usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight
|
|
|
|
fi
|
|
|
|
if [ ! -f /usr/local/lib/node_modules/git-ssb/node_modules/highlight.js/styles/foundation.css ]; then
|
|
|
|
echo $'Could not find foundation.css'
|
|
|
|
exit 347687245
|
|
|
|
fi
|
|
|
|
cp /usr/local/lib/node_modules/git-ssb/node_modules/highlight.js/styles/foundation.css /usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web/highlight/foundation.css
|
|
|
|
|
2017-12-12 17:35:14 +01:00
|
|
|
git_ssb_nginx_site=/etc/nginx/sites-available/${SCUTTLEBOT_DOMAIN_NAME}
|
|
|
|
function_check nginx_http_redirect
|
|
|
|
nginx_http_redirect $SCUTTLEBOT_DOMAIN_NAME "index index.html"
|
2018-03-01 00:17:49 +01:00
|
|
|
{ echo 'server {';
|
|
|
|
echo ' listen 443 ssl;';
|
|
|
|
echo ' #listen [::]:443 ssl;';
|
|
|
|
echo " server_name $SCUTTLEBOT_DOMAIN_NAME;";
|
|
|
|
echo ''; } >> $git_ssb_nginx_site
|
2017-12-12 17:35:14 +01:00
|
|
|
function_check nginx_compress
|
|
|
|
nginx_compress $SCUTTLEBOT_DOMAIN_NAME
|
2018-03-01 00:17:49 +01:00
|
|
|
echo '' >> "$git_ssb_nginx_site"
|
|
|
|
echo ' # Security' >> "$git_ssb_nginx_site"
|
2017-12-12 17:35:14 +01:00
|
|
|
function_check nginx_ssl
|
|
|
|
nginx_ssl $SCUTTLEBOT_DOMAIN_NAME
|
|
|
|
|
2018-03-05 19:15:29 +01:00
|
|
|
function_check nginx_security_options
|
|
|
|
nginx_security_options $SCUTTLEBOT_DOMAIN_NAME
|
2017-12-12 17:35:14 +01:00
|
|
|
fi
|
|
|
|
|
2018-03-01 00:17:49 +01:00
|
|
|
{ echo '';
|
|
|
|
echo ' root /usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web;';
|
|
|
|
echo '';
|
|
|
|
echo ' location = / {';
|
|
|
|
echo " proxy_pass http://localhost:${GIT_SSB_PORT};";
|
|
|
|
echo " proxy_set_header X-Real-IP \$remote_addr;";
|
|
|
|
echo " proxy_set_header Host \$host;";
|
|
|
|
echo " proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;";
|
|
|
|
echo ' proxy_http_version 1.1;';
|
|
|
|
echo " proxy_set_header Upgrade \$http_upgrade;";
|
|
|
|
echo ' proxy_set_header Connection upgrade;';
|
|
|
|
echo ' }';
|
|
|
|
echo '}'; } >> $git_ssb_nginx_site
|
|
|
|
|
|
|
|
if [ "$SCUTTLEBOT_ONION_HOSTNAME" ]; then
|
|
|
|
{ echo '';
|
|
|
|
echo 'server {';
|
|
|
|
echo " listen 127.0.0.1:${SCUTTLEBOT_ONION_PORT} default_server;";
|
|
|
|
echo " server_name ${SCUTTLEBOT_ONION_HOSTNAME};";
|
|
|
|
echo '';
|
|
|
|
echo ' access_log /dev/null;';
|
|
|
|
echo ' error_log /dev/null;';
|
|
|
|
echo '';
|
|
|
|
echo ' add_header X-XSS-Protection "1; mode=block";';
|
|
|
|
echo ' add_header X-Content-Type-Options nosniff;';
|
|
|
|
echo ' add_header X-Frame-Options SAMEORIGIN;';
|
|
|
|
echo '';
|
|
|
|
echo ' root /usr/local/lib/node_modules/git-ssb/node_modules/git-ssb-web;';
|
|
|
|
echo '';
|
|
|
|
echo ' location = / {';
|
|
|
|
echo " proxy_pass http://localhost:${GIT_SSB_PORT};";
|
|
|
|
echo " proxy_set_header X-Real-IP \$remote_addr;";
|
|
|
|
echo " proxy_set_header Host \$host;";
|
|
|
|
echo " proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;";
|
|
|
|
echo ' proxy_http_version 1.1;';
|
|
|
|
echo " proxy_set_header Upgrade \$http_upgrade;";
|
|
|
|
echo ' proxy_set_header Connection upgrade;';
|
|
|
|
echo ' }';
|
|
|
|
echo '}'; } >> $git_ssb_nginx_site
|
2017-12-12 17:35:14 +01:00
|
|
|
fi
|
2017-12-16 14:03:32 +01:00
|
|
|
if [[ "$1" != "mesh" ]]; then
|
|
|
|
nginx_ensite git_ssb
|
|
|
|
fi
|
2017-12-12 17:35:14 +01:00
|
|
|
}
|
|
|
|
|
2018-04-12 21:19:03 +02:00
|
|
|
function mesh_setup_npm {
|
|
|
|
cat <<EOF > "$rootdir/usr/bin/install_npm_global"
|
|
|
|
#!/bin/bash
|
|
|
|
if [ ! -d ~/.npm-global ]; then
|
|
|
|
mkdir ~/.npm-global
|
|
|
|
fi
|
|
|
|
npm config set prefix '~/.npm-global'
|
|
|
|
if [[ "$PATH" != *'~/.npm-global/bin'* ]]; then
|
|
|
|
export PATH=~/.npm-global/bin:$PATH
|
|
|
|
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc
|
|
|
|
fi
|
|
|
|
source ~/.profile
|
|
|
|
EOF
|
|
|
|
chroot "$rootdir" /bin/chmod +x /usr/bin/install_npm_global
|
|
|
|
chroot "$rootdir" /usr/bin/install_npm_global
|
|
|
|
rm "$rootdir/usr/bin/install_npm_global"
|
|
|
|
}
|
|
|
|
|
2018-01-11 11:24:50 +01:00
|
|
|
function mesh_install_dat {
|
|
|
|
get_npm_arch
|
2018-04-12 21:19:03 +02:00
|
|
|
mesh_setup_npm
|
2018-01-11 11:24:50 +01:00
|
|
|
|
2018-03-01 00:17:49 +01:00
|
|
|
cat <<EOF > "$rootdir/usr/bin/install_dat"
|
2018-01-11 11:24:50 +01:00
|
|
|
#!/bin/bash
|
|
|
|
npm install --arch=$NPM_ARCH -g dat
|
|
|
|
EOF
|
|
|
|
chroot "$rootdir" /bin/chmod +x /usr/bin/install_dat
|
|
|
|
chroot "$rootdir" /usr/bin/install_dat
|
2018-03-01 00:17:49 +01:00
|
|
|
rm "$rootdir/usr/bin/install_dat"
|
2018-01-11 11:24:50 +01:00
|
|
|
}
|
|
|
|
|
2018-01-11 11:27:43 +01:00
|
|
|
function install_dat {
|
|
|
|
npm install -g dat
|
|
|
|
}
|
|
|
|
|
2017-10-01 20:46:02 +02:00
|
|
|
function mesh_install_scuttlebot {
|
2017-12-12 17:35:14 +01:00
|
|
|
SCUTTLEBOT_ONION_HOSTNAME=
|
|
|
|
|
2018-01-11 11:24:50 +01:00
|
|
|
mesh_install_dat
|
|
|
|
|
2017-12-11 21:15:05 +01:00
|
|
|
get_npm_arch
|
2018-04-12 21:19:03 +02:00
|
|
|
mesh_setup_npm
|
2017-12-11 21:15:05 +01:00
|
|
|
|
2018-03-01 00:17:49 +01:00
|
|
|
cat <<EOF > "$rootdir/usr/bin/install_scuttlebot"
|
2017-10-01 20:46:02 +02:00
|
|
|
#!/bin/bash
|
2018-04-12 21:59:10 +02:00
|
|
|
if ! npm install --arch=$NPM_ARCH -g scuttlebot@${SCUTTLEBOT_VERSION}; then
|
2018-04-12 20:48:56 +02:00
|
|
|
exit 2
|
|
|
|
fi
|
2018-04-12 21:59:10 +02:00
|
|
|
if ! npm install --arch=$NPM_ARCH -g git-ssb; then
|
2018-04-12 20:48:56 +02:00
|
|
|
exit 3
|
|
|
|
fi
|
2018-04-12 21:59:10 +02:00
|
|
|
if ! npm install --arch=$NPM_ARCH -g git-remote-ssb; then
|
|
|
|
exit 4
|
|
|
|
fi
|
2017-10-01 20:46:02 +02:00
|
|
|
EOF
|
|
|
|
chroot "$rootdir" /bin/chmod +x /usr/bin/install_scuttlebot
|
|
|
|
chroot "$rootdir" /usr/bin/install_scuttlebot
|
2018-03-01 00:17:49 +01:00
|
|
|
rm "$rootdir/usr/bin/install_scuttlebot"
|
2017-10-01 20:46:02 +02:00
|
|
|
|
2018-03-01 00:17:49 +01:00
|
|
|
if [ ! -f "$rootdir/usr/local/bin/sbot" ]; then
|
2017-10-01 20:46:02 +02:00
|
|
|
echo $'Scuttlebot was not installed'
|
|
|
|
exit 528253
|
|
|
|
fi
|
|
|
|
|
2018-03-01 00:17:49 +01:00
|
|
|
if [ ! -d "$rootdir/etc/scuttlebot" ]; then
|
|
|
|
mkdir -p "$rootdir/etc/scuttlebot"
|
2017-10-01 20:46:02 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# an unprivileged user to run as
|
|
|
|
chroot "$rootdir" useradd -d /etc/scuttlebot/ scuttlebot
|
|
|
|
|
|
|
|
# daemon
|
2018-03-01 00:17:49 +01:00
|
|
|
{ echo '[Unit]';
|
|
|
|
echo 'Description=Scuttlebot (messaging system)';
|
|
|
|
echo 'After=syslog.target';
|
|
|
|
echo 'After=network.target';
|
|
|
|
echo '';
|
|
|
|
echo '[Service]';
|
|
|
|
echo 'Type=simple';
|
|
|
|
echo 'User=scuttlebot';
|
|
|
|
echo 'Group=scuttlebot';
|
|
|
|
echo "WorkingDirectory=/etc/scuttlebot";
|
|
|
|
echo 'ExecStart=/usr/local/bin/sbot server';
|
|
|
|
echo 'Restart=always';
|
|
|
|
echo 'Environment="USER=scuttlebot"';
|
|
|
|
echo '';
|
|
|
|
echo '[Install]';
|
|
|
|
echo 'WantedBy=multi-user.target'; } > "$rootdir/etc/systemd/system/scuttlebot.service"
|
2017-12-12 17:35:14 +01:00
|
|
|
|
|
|
|
scuttlebot_git_setup mesh
|
2017-12-12 23:22:08 +01:00
|
|
|
git_ssb_script mesh
|
2017-10-01 20:46:02 +02:00
|
|
|
}
|
|
|
|
|
2017-05-22 22:46:07 +02:00
|
|
|
function install_scuttlebot {
|
|
|
|
function_check install_nodejs
|
|
|
|
install_nodejs scuttlebot
|
|
|
|
|
|
|
|
npm install -g scuttlebot@${SCUTTLEBOT_VERSION}
|
|
|
|
if [ ! -f /usr/local/bin/sbot ]; then
|
|
|
|
exit 528253
|
|
|
|
fi
|
|
|
|
|
2018-01-11 11:27:43 +01:00
|
|
|
install_dat
|
2017-12-11 21:15:05 +01:00
|
|
|
npm install -g git-ssb
|
|
|
|
npm install -g git-remote-ssb
|
|
|
|
|
2017-05-22 22:46:07 +02:00
|
|
|
if [ ! -d /etc/scuttlebot ]; then
|
|
|
|
mkdir -p /etc/scuttlebot
|
|
|
|
fi
|
|
|
|
|
2018-04-04 15:07:14 +02:00
|
|
|
npm install -g dat
|
|
|
|
|
2017-05-22 22:46:07 +02:00
|
|
|
# an unprivileged user to run as
|
2017-05-23 00:15:10 +02:00
|
|
|
useradd -d /etc/scuttlebot/ scuttlebot
|
2017-05-22 22:46:07 +02:00
|
|
|
|
|
|
|
# daemon
|
2018-03-01 00:17:49 +01:00
|
|
|
{ echo '[Unit]';
|
|
|
|
echo 'Description=Scuttlebot (messaging system)';
|
|
|
|
echo 'After=syslog.target';
|
|
|
|
echo 'After=network.target';
|
|
|
|
echo '';
|
|
|
|
echo '[Service]';
|
|
|
|
echo 'Type=simple';
|
|
|
|
echo 'User=scuttlebot';
|
|
|
|
echo 'Group=scuttlebot';
|
|
|
|
echo "WorkingDirectory=/etc/scuttlebot";
|
|
|
|
echo 'ExecStart=/usr/local/bin/sbot server';
|
|
|
|
echo 'Restart=always';
|
|
|
|
echo 'Environment="USER=scuttlebot"';
|
|
|
|
echo '';
|
|
|
|
echo '[Install]';
|
|
|
|
echo 'WantedBy=multi-user.target'; } > /etc/systemd/system/scuttlebot.service
|
2017-05-22 22:46:07 +02:00
|
|
|
|
|
|
|
chown -R scuttlebot:scuttlebot /etc/scuttlebot
|
|
|
|
|
|
|
|
# files gw_name myhostname mdns4_minimal [NOTFOUND=return] dns
|
|
|
|
sed -i "s|hosts:.*|hosts: files mdns4_minimal dns mdns4 mdns|g" /etc/nsswitch.conf
|
|
|
|
|
|
|
|
# start the daemon
|
|
|
|
systemctl enable scuttlebot.service
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl start scuttlebot.service
|
|
|
|
|
2017-05-23 16:13:45 +02:00
|
|
|
sleep 3
|
|
|
|
|
|
|
|
if [ ! -d /etc/scuttlebot/.ssb ]; then
|
|
|
|
echo $'Scuttlebot config not generated'
|
|
|
|
exit 73528
|
|
|
|
fi
|
|
|
|
|
2018-04-04 15:03:49 +02:00
|
|
|
SCUTTLEBOT_ONION_HOSTNAME=$(add_onion_service scuttlebot 80 ${SCUTTLEBOT_ONION_PORT})
|
|
|
|
|
|
|
|
if [[ "$ONION_ONLY" == 'no' ]]; then
|
|
|
|
{ echo '{';
|
|
|
|
echo " \"host\": \"${DEFAULT_DOMAIN_NAME}\",";
|
|
|
|
echo ' "tor-only": false,'; } > /etc/scuttlebot/.ssb/config
|
|
|
|
else
|
|
|
|
{ echo '{';
|
|
|
|
echo " \"host\": \"${SCUTTLEBOT_ONION_HOSTNAME}\",";
|
|
|
|
echo ' "tor-only": true,'; } > /etc/scuttlebot/.ssb/config
|
|
|
|
fi
|
|
|
|
|
|
|
|
{ echo " \"port\": ${SCUTTLEBOT_PORT},";
|
2018-03-01 00:17:49 +01:00
|
|
|
echo ' "timeout": 30000,';
|
|
|
|
echo ' "pub": true,';
|
|
|
|
echo ' "local": true,';
|
|
|
|
echo ' "friends": {';
|
|
|
|
echo ' "dunbar": 150,';
|
|
|
|
echo ' "hops": 3';
|
|
|
|
echo ' },';
|
|
|
|
echo ' "gossip": {';
|
|
|
|
echo ' "connections": 2';
|
|
|
|
echo ' },';
|
|
|
|
echo ' "master": [],';
|
|
|
|
echo ' "logging": {';
|
|
|
|
echo ' "level": "error"';
|
|
|
|
echo ' }';
|
2018-04-04 15:03:49 +02:00
|
|
|
echo '}'; } >> /etc/scuttlebot/.ssb/config
|
2017-05-23 16:13:45 +02:00
|
|
|
chown scuttlebot:scuttlebot /etc/scuttlebot/.ssb/config
|
|
|
|
systemctl restart scuttlebot.service
|
|
|
|
|
2017-05-23 18:38:48 +02:00
|
|
|
firewall_add scuttlebot ${SCUTTLEBOT_PORT}
|
2017-12-12 17:35:14 +01:00
|
|
|
firewall_add git_ssb ${GIT_SSB_PORT}
|
|
|
|
|
|
|
|
scuttlebot_git_setup
|
2017-12-12 23:22:08 +01:00
|
|
|
git_ssb_script
|
2017-12-12 18:35:26 +01:00
|
|
|
|
2017-12-16 16:44:17 +01:00
|
|
|
systemctl enable git_ssb.service
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl start git_ssb.service
|
|
|
|
|
2017-12-12 18:35:26 +01:00
|
|
|
function_check create_site_certificate
|
|
|
|
create_site_certificate ${SCUTTLEBOT_DOMAIN_NAME} 'yes'
|
|
|
|
|
2017-12-12 17:35:14 +01:00
|
|
|
systemctl restart nginx
|
2017-05-23 18:38:48 +02:00
|
|
|
|
2018-03-01 00:17:49 +01:00
|
|
|
if ! grep -q "scuttlebot version:" "${COMPLETION_FILE}"; then
|
|
|
|
echo "scuttlebot version:${SCUTTLEBOT_VERSION}" >> "${COMPLETION_FILE}"
|
2017-05-22 22:46:07 +02:00
|
|
|
else
|
2018-03-01 00:17:49 +01:00
|
|
|
sed -i "s|scuttlebot version.*|scuttlebot version:${SCUTTLEBOT_VERSION}|g" "${COMPLETION_FILE}"
|
2017-05-22 22:46:07 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
APP_INSTALLED=1
|
|
|
|
}
|
|
|
|
|
|
|
|
# NOTE: deliberately no exit 0
|