freedomboneeee/src/zeronetavahi

498 lines
16 KiB
Plaintext
Raw Normal View History

2015-08-29 17:26:51 +02:00
#!/bin/bash
#
# .---. . .
# | | |
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
#
# Freedom in the Cloud
#
# A script for using avahi to discover peers and update zeronet trackers
# Blogs and fora are discovered on the network and then published
# to an index file which can be opened in a browser
2015-08-29 17:26:51 +02:00
# License
# =======
#
2016-01-02 22:58:27 +01:00
# Copyright (C) 2015-2016 Bob Mottram <bob@robotics.uk.to>
2015-08-29 17:26:51 +02:00
#
# This program is free software: you can redistribute it and/or modify
2016-02-13 23:09:27 +01:00
# it under the terms of the GNU Affero General Public License as published by
2015-08-29 17:26:51 +02:00
# 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
2016-02-13 23:09:27 +01:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
2015-08-29 17:26:51 +02:00
#
2016-02-13 23:09:27 +01:00
# 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/>.
2015-08-29 17:26:51 +02:00
2015-11-27 12:42:16 +01:00
PROJECT_NAME='freedombone'
2016-01-17 00:44:04 +01:00
export TEXTDOMAIN=$PROJECT_NAME-zeronetavahi
2015-11-27 12:42:16 +01:00
export TEXTDOMAINDIR="/usr/share/locale"
2016-06-26 00:46:05 +02:00
MESH_INSTALL_DIR=/var/lib
2015-12-11 18:48:15 +01:00
WEB_PAGE_TITLE=$"${PROJECT_NAME} Mesh"
2015-08-29 23:44:13 +02:00
TRACKER_PORT=6969
2016-06-26 00:46:05 +02:00
ZERONET_INSTALL=$MESH_INSTALL_DIR/zeronet
2016-08-03 16:36:59 +02:00
MESH_USERNAME='fbone'
2016-08-03 23:05:41 +02:00
MY_USERNAME=$MESH_USERNAME
2015-08-29 17:26:51 +02:00
2015-12-08 17:22:48 +01:00
BLOGS_FILE=$ZERONET_INSTALL/${PROJECT_NAME}-blogs
2015-12-11 18:15:52 +01:00
MAIL_FILE=$ZERONET_INSTALL/${PROJECT_NAME}-mail
2015-12-08 17:22:48 +01:00
FORUM_FILE=$ZERONET_INSTALL/${PROJECT_NAME}-fora
TOX_USERS_FILE=$ZERONET_INSTALL/${PROJECT_NAME}-tox-users
2016-07-17 14:07:06 +02:00
ID_FILE=$ZERONET_INSTALL/${PROJECT_NAME}-id
2016-07-16 18:43:31 +02:00
ZERONET_INDEX=$ZERONET_INSTALL/mesh.html
2015-09-12 19:48:34 +02:00
ZERONET_CONFIG=$ZERONET_INSTALL/bootstrap
2015-09-30 21:46:18 +02:00
IPFS_PORT=4001
2015-12-11 18:48:15 +01:00
MY_BLOG_STR=$"My Blog"
MY_MAIL_STR=$"My Mail"
MY_FORUM_STR=$"My Forum"
2016-07-17 14:07:06 +02:00
MY_ID_STR=$"My ID Service"
2016-07-18 10:54:22 +02:00
YOUR_SITES_STR=$'Your Sites'
ON_THE_MESH_STR=$'On the Mesh'
2016-07-17 14:07:06 +02:00
2015-12-11 18:48:15 +01:00
BLOGS_STR=$"Blogs"
MAIL_STR=$"Mail"
FORA_STR=$"Fora"
2016-08-03 17:17:01 +02:00
TOX_STR=$"Users on the Mesh"
2016-07-17 14:07:06 +02:00
ID_STR=$"ID Services"
2015-12-11 18:48:15 +01:00
NO_USERS_STR=$"No users found"
2016-07-17 14:07:06 +02:00
# service names advertised by avahi
ZERONET_BLOG_STR="ZeroNet Blog"
ZERONET_MAIL_STR="ZeroNet Mail"
ZERONET_FORUM_STR="ZeroNet Forum"
ZERONET_ID_STR="ZeroNet ID Service"
2016-07-16 14:52:04 +02:00
# contains the output of the avahi command
2016-07-20 20:13:16 +02:00
TEMPFILE_BASE=$(mktemp /tmp/zeronetavahibase.XXXXXX)
TEMPFILE=$(mktemp /tmp/zeronetavahi.XXXXXX)
2016-07-16 14:52:04 +02:00
# List of tox users previously seen
PREV_TOX_USERS_FILE=/root/.prev_tox_users
2016-07-16 14:52:04 +02:00
function ipfs_bootstrap {
cat $TEMPFILE_BASE | grep "IPFS\|hostname =\|address =\|port =\|txt =" > $TEMPFILE
state=0
address=""
peer=""
while IFS='' read -r line || [[ -n "$line" ]]; do
if [ ${state} -eq "3" ]; then
if [[ $line == *"txt ="* ]]; then
ipfs_peer_id=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}' | awk -F '"' '{print $2}')
ipfs bootstrap add /ip4/${address}/tcp/${IPFS_PORT}/ipfs/${ipfs_peer_id}
state=0
fi
fi
if [ ${state} -eq "2" ]; then
if [[ $line == *"address ="* ]]; then
address=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=3
fi
fi
if [ ${state} -eq "1" ]; then
if [[ $line == *"hostname ="* ]]; then
peer=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=2
fi
fi
if [[ $line == *"IPFS"* && $line == "= "* ]]; then
state=1
fi
done < "$TEMPFILE"
}
function detect_new_tox_users {
CURRENT_USERS_FILE=$1
if [ ! -f $CURRENT_USERS_FILE ]; then
return
fi
# Check that this is a GUI installation with a desktop
2016-08-03 16:36:59 +02:00
if [ ! -d /home/$MESH_USERNAME/Desktop ]; then
return
fi
# Produce notifications if new users appear
if [ -f $PREV_TOX_USERS_FILE ]; then
while IFS='' read -r line || [[ -n "$line" ]]; do
2016-08-03 16:36:59 +02:00
if [[ $line != "Failed*" && $line != "data "* ]]; then
if ! grep -q "$line" $PREV_TOX_USERS_FILE; then
# get the nick of the user
toxuser="$(echo "$line" | awk -F ' ' '{print $1}')"
if [ -r "/home/$MESH_USERNAME/.dbus/Xdbus" ]; then
. "/home/$MESH_USERNAME/.dbus/Xdbus"
fi
export DISPLAY=:0.0
export XAUTHORITY=/home/$MESH_USERNAME/.Xauthority
sudo -u MESH_USERNAME /usr/bin/notify-send $"$toxuser" $"has joined the mesh" --icon=dialog-information
break
2016-08-03 16:36:59 +02:00
fi
fi
done < "$CURRENT_USERS_FILE"
fi
# Store the previous tox users list
cp -f $CURRENT_USERS_FILE $PREV_TOX_USERS_FILE
2016-07-16 14:52:04 +02:00
}
function detect_tox_users {
# don't show the first peer field
lstox | awk -F ' ' '{$1=""; print $0}' | sed -e 's/^[[:space:]]*//' | sort -d > $TEMPFILE
detect_new_tox_users $TEMPFILE
toxctr=0
echo '<ol type="square">' >> $TOX_USERS_FILE.new
while IFS='' read -r line || [[ -n "$line" ]]; do
if [[ $line != "Failed*" && $line != "data "* ]]; then
echo " <li>$line</li>" >> $TOX_USERS_FILE.new
toxctr=$((toxctr + 1))
fi
done < "$TEMPFILE"
if [ $toxctr -eq "0" ]; then
echo " <li>${NO_USERS_STR}</li>" >> $TOX_USERS_FILE.new
fi
echo '<ol>' >> $TOX_USERS_FILE.new
2016-07-16 14:52:04 +02:00
}
function assemble_web_page {
f="$1"
fhome="$2"
cat "${f}-header.html" "${f}.new" "${f}-footer.html" > "${f}.html"
rm -f "${f}.new"
if [ -d "${fhome}" ]; then
2016-08-03 23:00:03 +02:00
sudo chown zeronet:zeronet "${f}.html"
fi
2016-07-16 14:52:04 +02:00
}
function create_index {
blogaddress=$(cat /home/$MY_USERNAME/.config/zeronet/myblog)
mailaddress=$(cat /home/$MY_USERNAME/.config/zeronet/mymail)
forumaddress=$(cat /home/$MY_USERNAME/.config/zeronet/myforum)
idaddress=$(cat /home/$MY_USERNAME/.config/zeronet/myzeroid)
if [ -f $ZERONET_INDEX ]; then
sed -i "s|.*${MY_BLOG_STR}.*| <li><a href=\"${blogaddress}\">${MY_BLOG_STR}</a></li>|g" $ZERONET_INDEX
sed -i "s|.*${MY_MAIL_STR}.*| <li><a href=\"${mailaddress}\">${MY_MAIL_STR}</a></li>|g" $ZERONET_INDEX
sed -i "s|.*${MY_FORUM_STR}.*| <li><a href=\"${forumaddress}\">${MY_FORUM_STR}</a></li>|g" $ZERONET_INDEX
sed -i "s|.*${MY_ID_STR}.*| <li><a href=\"${idaddress}\">${MY_ID_STR}</a></li>|g" $ZERONET_INDEX
return
fi
echo '<!DOCTYPE html>' > $ZERONET_INDEX
echo '<html>' >> $ZERONET_INDEX
echo '<head>' >> $ZERONET_INDEX
echo "<title>$WEB_PAGE_TITLE</title>" >> $ZERONET_INDEX
echo '</head>' >> $ZERONET_INDEX
echo '<body>' >> $ZERONET_INDEX
echo "<H1>$WEB_PAGE_TITLE</H1>" >> $ZERONET_INDEX
echo '' >> $ZERONET_INDEX
echo "<H2>${YOUR_SITES_STR}</H2>" >> $ZERONET_INDEX
echo '' >> $ZERONET_INDEX
echo '<ol type="square">' >> $ZERONET_INDEX
echo " <li><a href=\"${blogaddress}\">${MY_BLOG_STR}</a></li>" >> $ZERONET_INDEX
echo " <li><a href=\"${mailaddress}\">${MY_MAIL_STR}</a></li>" >> $ZERONET_INDEX
echo " <li><a href=\"${forumaddress}\">${MY_FORUM_STR}</a></li>" >> $ZERONET_INDEX
echo " <li><a href=\"${idaddress}\">${MY_ID_STR}</a></li>" >> $ZERONET_INDEX
2015-12-11 18:48:15 +01:00
# echo " <li><a href=\"http://localhost:5001/webui\">File Share</a></li>" >> $ZERONET_INDEX
echo '</ol>' >> $ZERONET_INDEX
echo '' >> $ZERONET_INDEX
echo "<H2>${ON_THE_MESH_STR}</H2>" >> $ZERONET_INDEX
echo '' >> $ZERONET_INDEX
echo '<ol type="square">' >> $ZERONET_INDEX
echo " <li><a href=\"${BLOGS_FILE}.html\">${BLOGS_STR}</a></li>" >> $ZERONET_INDEX
echo " <li><a href=\"${MAIL_FILE}.html\">${MAIL_STR}</a></li>" >> $ZERONET_INDEX
echo " <li><a href=\"${FORUM_FILE}.html\">${FORA_STR}</a></li>" >> $ZERONET_INDEX
echo " <li><a href=\"${ID_FILE}.html\">${ID_STR}</a></li>" >> $ZERONET_INDEX
echo " <li><a href=\"${TOX_USERS_FILE}.html\">${TOX_STR}</a></li>" >> $ZERONET_INDEX
echo '</ol>' >> $ZERONET_INDEX
echo '' >> $ZERONET_INDEX
echo '</body>' >> $ZERONET_INDEX
echo '</html>' >> $ZERONET_INDEX
}
function create_header {
header_file=${1}-header.html
if [ -f $header_file ]; then
return
fi
echo '<!DOCTYPE html>' > $header_file
echo '<html>' >> $header_file
echo '<head>' >> $header_file
echo "<title>$WEB_PAGE_TITLE - $2</title>" >> $header_file
echo '<meta http-equiv="refresh" content="60">' >> $header_file
echo '</head>' >> $header_file
echo '<body>' >> $header_file
echo "<H1>$2</H1>" >> $header_file
}
function create_footer {
footer_file=${1}-footer.html
if [ -f $footer_file ]; then
return
fi
echo '</body>' >> $footer_file
echo '</html>' >> $footer_file
}
2015-09-03 10:18:26 +02:00
2016-07-16 14:52:04 +02:00
function avahi_extract_info {
# Create a list of bootstrap nodes
avahi-browse -atr > $TEMPFILE_BASE
cat $TEMPFILE_BASE | grep "hostname =\|address =\|port =" > $TEMPFILE
if [ ! -f $TEMPFILE ]; then
exit 1
fi
2016-07-16 14:52:04 +02:00
}
2016-07-16 14:52:04 +02:00
function zeronet_detect {
if [ -f $ZERONET_CONFIG.new ]; then
rm -f $ZERONET_CONFIG.new
fi
touch $ZERONET_CONFIG.new
state=0
address=""
peer=""
tracker_ctr=0
while IFS='' read -r line || [[ -n "$line" ]]; do
if [ ${state} -eq "1" ]; then
if [[ $line == *"address ="* ]]; then
address=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
tracker_url="http://$peer:$TRACKER_PORT/announce"
if ! grep -q "$tracker_url" $ZERONET_CONFIG.new; then
echo "$tracker_url" >> $ZERONET_CONFIG.new
tracker_ctr=$((tracker_ctr + 1))
fi
state=0
fi
fi
if [[ $line == *"hostname ="* ]]; then
peer=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=1
fi
done < "$TEMPFILE"
2016-07-16 14:52:04 +02:00
}
2016-07-16 14:52:04 +02:00
function zeronet_detect_blog {
if [ -f $BLOGS_FILE.new ]; then
rm -f $BLOGS_FILE.new
fi
cat $TEMPFILE_BASE | grep "${ZERONET_BLOG_STR}\|hostname =\|address =\|port =\|txt =" > $TEMPFILE
state=0
address=""
peer=""
echo '<ol type="square">' >> $BLOGS_FILE.new
while IFS='' read -r line || [[ -n "$line" ]]; do
if [ ${state} -eq "3" ]; then
if [[ $line == *"txt ="* ]]; then
blog_url=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
echo " <li><a href=${blog_url}>${peer}</a></li>" >> $BLOGS_FILE.new
state=0
fi
fi
if [ ${state} -eq "2" ]; then
if [[ $line == *"address ="* ]]; then
address=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=3
fi
fi
if [ ${state} -eq "1" ]; then
if [[ $line == *"hostname ="* ]]; then
peer=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=2
fi
fi
if [[ $line == *"${ZERONET_BLOG_STR}"* && $line == "= "* ]]; then
state=1
fi
done < "$TEMPFILE"
echo '</ol>' >> $BLOGS_FILE.new
2016-07-16 14:52:04 +02:00
}
2015-12-11 18:15:52 +01:00
2016-07-16 14:52:04 +02:00
function zeronet_detect_mail {
if [ -f $MAIL_FILE.new ]; then
rm -f $MAIL_FILE.new
fi
cat $TEMPFILE_BASE | grep "${ZERONET_MAIL_STR}\|hostname =\|address =\|port =\|txt =" > $TEMPFILE
state=0
address=""
peer=""
echo '<ol type="square">' >> $MAIL_FILE.new
while IFS='' read -r line || [[ -n "$line" ]]; do
if [ ${state} -eq "3" ]; then
if [[ $line == *"txt ="* ]]; then
mail_url=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
echo " <li><a href=${mail_url}>${peer}</a></li>" >> $MAIL_FILE.new
state=0
fi
fi
if [ ${state} -eq "2" ]; then
if [[ $line == *"address ="* ]]; then
address=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=3
fi
fi
if [ ${state} -eq "1" ]; then
if [[ $line == *"hostname ="* ]]; then
peer=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=2
fi
fi
if [[ $line == *"${ZERONET_MAIL_STR}"* && $line == "= "* ]]; then
state=1
fi
done < "$TEMPFILE"
echo '</ol>' >> $MAIL_FILE.new
2016-07-16 14:52:04 +02:00
}
2016-07-16 14:52:04 +02:00
function zeronet_detect_fora {
if [ -f $FORUM_FILE.new ]; then
rm -f $FORUM_FILE.new
fi
cat $TEMPFILE_BASE | grep "${ZERONET_FORUM_STR}\|hostname =\|address =\|port =\|txt =" > $TEMPFILE
state=0
address=""
peer=""
echo '<ol type="square">' >> $FORUM_FILE.new
while IFS='' read -r line || [[ -n "$line" ]]; do
if [ ${state} -eq "3" ]; then
if [[ $line == *"txt ="* ]]; then
forum_url=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
echo " <li><a href=${forum_url}>${peer}</a></li>" >> $FORUM_FILE.new
state=0
fi
fi
if [ ${state} -eq "2" ]; then
if [[ $line == *"address ="* ]]; then
address=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=3
fi
fi
if [ ${state} -eq "1" ]; then
if [[ $line == *"hostname ="* ]]; then
peer=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=2
fi
fi
if [[ $line == *"${ZERONET_FORUM_STR}"* && $line == "= "* ]]; then
state=1
fi
done < "$TEMPFILE"
echo '<ol>' >> $FORUM_FILE.new
2016-07-16 14:52:04 +02:00
}
2015-09-04 22:28:11 +02:00
2016-07-17 14:07:06 +02:00
function zeronet_detect_id {
if [ -f $ID_FILE.new ]; then
rm -f $ID_FILE.new
fi
cat $TEMPFILE_BASE | grep "${ZERONET_ID_STR}\|hostname =\|address =\|port =\|txt =" > $TEMPFILE
state=0
address=""
peer=""
echo '<ol type="square">' >> $ID_FILE.new
while IFS='' read -r line || [[ -n "$line" ]]; do
if [ ${state} -eq "3" ]; then
if [[ $line == *"txt ="* ]]; then
id_url=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
echo " <li><a href=${id_url}>${peer}</a></li>" >> $ID_FILE.new
state=0
fi
fi
if [ ${state} -eq "2" ]; then
if [[ $line == *"address ="* ]]; then
address=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=3
fi
fi
if [ ${state} -eq "1" ]; then
if [[ $line == *"hostname ="* ]]; then
peer=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
state=2
fi
fi
if [[ $line == *"${ZERONET_ID_STR}"* && $line == "= "* ]]; then
state=1
fi
done < "$TEMPFILE"
echo '</ol>' >> $ID_FILE.new
2016-07-17 14:07:06 +02:00
}
2016-07-16 14:52:04 +02:00
function avahi_remove_info {
rm -f $TEMPFILE_BASE
rm -f $TEMPFILE
2016-07-16 14:52:04 +02:00
}
2015-09-04 22:28:11 +02:00
2016-07-16 14:52:04 +02:00
function zeronet_update_config {
if [ ${tracker_ctr} -gt "0" ]; then
cp -f $ZERONET_CONFIG.new $ZERONET_CONFIG
else
if [ -f $ZERONET_CONFIG ]; then
rm -f $ZERONET_CONFIG
fi
fi
rm -f $ZERONET_CONFIG.new
if [ -d $ZERONET_INSTALL ]; then
sudo chown zeronet:zeronet $ZERONET_CONFIG
fi
2016-07-16 14:52:04 +02:00
}
2016-07-16 14:52:04 +02:00
if [ ! -d /etc/avahi ]; then
exit 0
2015-08-31 13:20:57 +02:00
fi
2015-08-29 17:26:51 +02:00
2016-07-16 14:52:04 +02:00
avahi_extract_info
zeronet_detect
2016-07-17 14:07:06 +02:00
zeronet_detect_id
2016-07-16 14:52:04 +02:00
zeronet_detect_blog
zeronet_detect_mail
zeronet_detect_fora
ipfs_bootstrap
detect_tox_users
avahi_remove_info
zeronet_update_config
# make some html headers and footers
2016-07-17 14:07:06 +02:00
create_header $ID_FILE $ID_STR
2015-12-11 18:48:15 +01:00
create_header $BLOGS_FILE $BLOGS_STR
create_header $MAIL_FILE $MAIL_STR
create_header $FORUM_FILE $FORA_STR
create_header $TOX_USERS_FILE $"Tox Users"
2016-08-03 23:08:56 +02:00
create_footer $ID_FILE
create_footer $BLOGS_FILE
2015-12-11 18:15:52 +01:00
create_footer $MAIL_FILE
create_footer $FORUM_FILE
2015-09-04 22:28:11 +02:00
create_footer $TOX_USERS_FILE
# make the index page
create_index
2016-07-17 14:07:06 +02:00
assemble_web_page ${ID_FILE} $ZERONET_INSTALL
2016-07-16 18:43:31 +02:00
assemble_web_page ${BLOGS_FILE} $ZERONET_INSTALL
assemble_web_page ${MAIL_FILE} $ZERONET_INSTALL
assemble_web_page ${FORUM_FILE} $ZERONET_INSTALL
assemble_web_page ${TOX_USERS_FILE} $ZERONET_INSTALL
2015-09-04 22:28:11 +02:00
2016-07-18 22:08:58 +02:00
chown -R zeronet:zeronet $ZERONET_INSTALL
2015-08-29 17:26:51 +02:00
exit 0