meshavahi 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # A script for using avahi to discover peers and update tox/ipfs
  12. # License
  13. # =======
  14. #
  15. # Copyright (C) 2015-2016 Bob Mottram <bob@freedombone.net>
  16. #
  17. # This program is free software: you can redistribute it and/or modify
  18. # it under the terms of the GNU Affero General Public License as published by
  19. # the Free Software Foundation, either version 3 of the License, or
  20. # (at your option) any later version.
  21. #
  22. # This program is distributed in the hope that it will be useful,
  23. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. # GNU Affero General Public License for more details.
  26. #
  27. # You should have received a copy of the GNU Affero General Public License
  28. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  29. PROJECT_NAME='freedombone'
  30. export TEXTDOMAIN=$PROJECT_NAME-meshavahi
  31. export TEXTDOMAINDIR="/usr/share/locale"
  32. MESH_USERNAME='fbone'
  33. MY_USERNAME=$MESH_USERNAME
  34. IPFS_PORT=4001
  35. IPFS_PATH=/usr/bin
  36. IPFS_COMMAND=$IPFS_PATH/ipfs
  37. IPFS_USERS_FILE=/tmp/.ipfs-users
  38. IPFS_PUBLIC=/home/$MY_USERNAME/.ipfs-public
  39. # contains the output of the avahi command
  40. TEMPFILE_BASE=$(mktemp /tmp/meshavahibase.XXXXXX)
  41. TEMPFILE=$(mktemp /tmp/meshavahi.XXXXXX)
  42. # List of tox users previously seen
  43. PREV_TOX_USERS_FILE=/root/.prev_tox_users
  44. function ipfs_publish {
  45. # Publishes anything within the ~/Public directory
  46. DIR_TO_CHECK=/home/$MY_USERNAME/Public
  47. if [ ! -d $DIR_TO_CHECK ]; then
  48. return
  49. fi
  50. OLD_STAT_FILE=/home/$MY_USERNAME/.old_stat.txt
  51. if [ -e $OLD_STAT_FILE ]
  52. then
  53. OLD_STAT=$(cat $OLD_STAT_FILE)
  54. else
  55. OLD_STAT="nothing"
  56. fi
  57. NEW_STAT=$(stat -t $DIR_TO_CHECK)
  58. if [ "$OLD_STAT" != "$NEW_STAT" ]; then
  59. su -c "echo \$($IPFS_COMMAND add -rq /home/$MY_USERNAME/Public | tail -n 1) > $IPFS_PUBLIC" - $MY_USERNAME
  60. echo "$NEW_STAT" > $OLD_STAT_FILE
  61. chown $MY_USERNAME:$MY_USERNAME $OLD_STAT_FILE
  62. fi
  63. if [ -f $IPFS_PUBLIC ]; then
  64. IPFS_PUBLIC_ID=$(cat $IPFS_PUBLIC)
  65. su -c "$IPFS_COMMAND name publish /ipfs/$IPFS_PUBLIC_ID" - $MY_USERNAME
  66. fi
  67. }
  68. function ipfs_bootstrap {
  69. cat $TEMPFILE_BASE | grep "ipfs_id\|hostname =\|address =\|port =\|txt =" > $TEMPFILE
  70. state=0
  71. address=""
  72. peer=""
  73. if [ -d /home/$MY_USERNAME/Desktop ]; then
  74. echo -n '' > ${IPFS_USERS_FILE}.new
  75. fi
  76. while IFS='' read -r line || [[ -n "$line" ]]; do
  77. if [ ${state} -eq "3" ]; then
  78. if [[ $line == *"txt ="* ]]; then
  79. ipfs_txt=$(echo "$line" | awk -F '[' '{print $2}' | awk -F ']' '{print $1}' | awk -F '"' '{print $2}')
  80. ipfs_peer_id=$(echo "$ipfs_txt" | awk -F ':' '{print $1}')
  81. ipfs_tox_id=$(echo "$ipfs_txt" | awk -F ':' '{print $2}')
  82. su -c "$IPFS_COMMAND bootstrap add /ip4/${address}/tcp/${IPFS_PORT}/ipfs/${ipfs_peer_id}" - $MY_USERNAME
  83. if [ -d /home/$MY_USERNAME/Desktop ]; then
  84. if [[ $ipfs_tox_id != 'none' ]]; then
  85. echo "$ipfs_tox_id:$ipfs_peer_id" >> ${IPFS_USERS_FILE}.new
  86. fi
  87. fi
  88. state=0
  89. fi
  90. fi
  91. if [ ${state} -eq "2" ]; then
  92. if [[ $line == *"address ="* ]]; then
  93. address=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
  94. state=3
  95. fi
  96. fi
  97. if [ ${state} -eq "1" ]; then
  98. if [[ $line == *"hostname ="* ]]; then
  99. peer=$(echo $line | awk -F '[' '{print $2}' | awk -F ']' '{print $1}')
  100. state=2
  101. fi
  102. fi
  103. if [[ $line == *"ipfs_id"* && $line == "= "* ]]; then
  104. state=1
  105. fi
  106. done < "$TEMPFILE"
  107. # Create a list of user sites, in alphabetical order by Tox nick
  108. if [ -d /home/$MY_USERNAME/Desktop ]; then
  109. if [ -f ${IPFS_USERS_FILE}.new ]; then
  110. sites_list=$(cat ${IPFS_USERS_FILE}.new | sort -d)
  111. echo "${sites_list}" > ${IPFS_USERS_FILE}
  112. chown $MY_USERNAME:$MY_USERNAME ${IPFS_USERS_FILE}
  113. rm ${IPFS_USERS_FILE}.new
  114. fi
  115. fi
  116. }
  117. function detect_new_tox_users {
  118. CURRENT_USERS_FILE=$1
  119. if [ ! -f $CURRENT_USERS_FILE ]; then
  120. return
  121. fi
  122. # Check that this is a GUI installation with a desktop
  123. if [ ! -d /home/$MESH_USERNAME/Desktop ]; then
  124. return
  125. fi
  126. # Produce notifications if new users appear
  127. if [ -f $PREV_TOX_USERS_FILE ]; then
  128. while IFS='' read -r line || [[ -n "$line" ]]; do
  129. if [[ $line != "Failed*" && $line != "data "* && $line != "Anon "* && $line != "anon "* && $line != "anonymous "* && $line != "Anonymous "* ]]; then
  130. if ! grep -q "$line" $PREV_TOX_USERS_FILE; then
  131. # get the nick of the user
  132. toxidstr=$(echo "$line" | awk -F ' ' '{print $(NF)}')
  133. toxuser=$(echo "$line" | sed "s| $toxidstr||g")
  134. if [ -r "/home/$MESH_USERNAME/.dbus/Xdbus" ]; then
  135. . "/home/$MESH_USERNAME/.dbus/Xdbus"
  136. fi
  137. export DISPLAY=:0.0
  138. export XAUTHORITY=/home/$MESH_USERNAME/.Xauthority
  139. sudo -u $MESH_USERNAME /usr/bin/notify-send $"$toxuser" $"has joined the mesh" --icon=dialog-information
  140. break
  141. fi
  142. fi
  143. done < "$CURRENT_USERS_FILE"
  144. fi
  145. # Store the previous tox users list
  146. cp -f $CURRENT_USERS_FILE $PREV_TOX_USERS_FILE
  147. }
  148. function detect_tox_users {
  149. # don't show the first peer field
  150. lstox | awk -F ' ' '{$1=""; print $0}' | sed -e 's/^[[:space:]]*//' | sort -d > $TEMPFILE
  151. detect_new_tox_users $TEMPFILE
  152. }
  153. function avahi_extract_info {
  154. # Create a list of bootstrap nodes
  155. avahi-browse -atr > $TEMPFILE_BASE
  156. cat $TEMPFILE_BASE | grep "hostname =\|address =\|port =" > $TEMPFILE
  157. if [ ! -f $TEMPFILE ]; then
  158. exit 1
  159. fi
  160. }
  161. function avahi_remove_info {
  162. rm -f $TEMPFILE_BASE
  163. rm -f $TEMPFILE
  164. }
  165. if [ ! -d /etc/avahi ]; then
  166. exit 0
  167. fi
  168. avahi_extract_info
  169. ipfs_bootstrap
  170. ipfs_publish
  171. detect_tox_users
  172. avahi_remove_info
  173. exit 0