freedombone-wifi 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Wifi configuration tools
  12. # License
  13. # =======
  14. #
  15. # Copyright (C) 2016 Bob Mottram <bob@robotics.uk.to>
  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}-wifi
  31. export TEXTDOMAINDIR="/usr/share/locale"
  32. CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
  33. COMPLETION_FILE=$HOME/${PROJECT_NAME}-completed.txt
  34. WIFI_INTERFACE=wlan0
  35. wifi_interface_specified=
  36. WIFI_TYPE='wpa2-psk'
  37. WIFI_SSID=
  38. WIFI_PASSPHRASE=
  39. WIFI_HOTSPOT='no'
  40. WIFI_CONFIG=/etc/wpa_supplicant/wpa_supplicant.conf
  41. WIFI_NETWORKS_FILE=~/${PROJECT_NAME}-wifi.cfg
  42. NETWORKS_INTERACTIVE=
  43. WIFI_DISABLE=
  44. IFACE=
  45. IFACE_SECONDARY=
  46. source /usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-config
  47. source /usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-wifi
  48. function show_help {
  49. echo ''
  50. echo $"${PROJECT_NAME}-wifi -i [interface] -t [type] -s [ssid] -p [passphrase]"
  51. echo ''
  52. echo $'Wifi configuration tool'
  53. echo ''
  54. echo $' --help Show help'
  55. echo $' -i --interface [wlan0|wlan1...] Device name'
  56. echo $' -t --type [wpa2-psk|none|open] Security type'
  57. echo $' -s --ssid [id] Set SSID'
  58. echo $' -p --passphrase [text] Set passphrase'
  59. echo $' --hotspot [yes|no] Create a hotspot'
  60. echo $' --networks [filename] File containing wifi networks'
  61. echo $' --createnetworks [filename] Create file containing wifi networks'
  62. echo $' --disable [yes/no] Disable wifi'
  63. echo ''
  64. exit 0
  65. }
  66. while [[ $# > 1 ]]
  67. do
  68. key="$1"
  69. case $key in
  70. --help)
  71. show_help
  72. ;;
  73. -i|--if|--interface)
  74. shift
  75. WIFI_INTERFACE=${1}
  76. wifi_interface_specified=1
  77. write_config_param "WIFI_INTERFACE" "$WIFI_INTERFACE"
  78. ;;
  79. -t|--type)
  80. shift
  81. WIFI_TYPE=${1}
  82. ;;
  83. -s|--ssid)
  84. shift
  85. WIFI_SSID=${1}
  86. ;;
  87. -p|--pass|--passphrase)
  88. shift
  89. WIFI_PASSPHRASE=${1}
  90. ;;
  91. --hotspot)
  92. shift
  93. WIFI_HOTSPOT=${1}
  94. ;;
  95. --networks)
  96. shift
  97. WIFI_NETWORKS_FILE=${1}
  98. ;;
  99. --networksinteractive)
  100. shift
  101. NETWORKS_INTERACTIVE='yes'
  102. WIFI_NETWORKS_FILE=${1}
  103. ;;
  104. --disable)
  105. shift
  106. WIFI_DISABLE=${1}
  107. if [[ $WIFI_DISABLE == $'yes' || $WIFI_DISABLE == $'y' ]]; then
  108. WIFI_DISABLE='yes'
  109. else
  110. WIFI_DISABLE='no'
  111. fi
  112. ;;
  113. *)
  114. # unknown option
  115. ;;
  116. esac
  117. shift
  118. done
  119. if [ $NETWORKS_INTERACTIVE ]; then
  120. create_networks_interactive
  121. exit 0
  122. fi
  123. if [ ! $wifi_interface_specified= ]; then
  124. update_wifi_adaptors
  125. if [ ! $IFACE ]; then
  126. echo $'No wifi adaptors were found'
  127. exit 872356
  128. fi
  129. WIFI_INTERFACE=$IFACE
  130. write_config_param "WIFI_INTERFACE" "$WIFI_INTERFACE"
  131. fi
  132. if [ $WIFI_DISABLE ]; then
  133. disable_wifi $WIFI_DISABLE
  134. remove_config_param "WIFI_INTERFACE"
  135. exit 0
  136. fi
  137. if [ -f $WIFI_NETWORKS_FILE ]; then
  138. networks_from_file
  139. exit 0
  140. fi
  141. if [ ! $WIFI_SSID ]; then
  142. echo $'No SSID given'
  143. exit 1
  144. fi
  145. if [[ $WIFI_HOTSPOT != 'no' ]]; then
  146. hotspot_on
  147. exit 0
  148. else
  149. hotspot_off
  150. fi
  151. if [[ "$WIFI_TYPE" != 'none' && "$WIFI_TYPE" != 'open' ]]; then
  152. if [ ! $WIFI_PASSPHRASE ]; then
  153. echo $'No wifi passphrase was given'
  154. exit 2
  155. fi
  156. fi
  157. if [[ $WIFI_TYPE == 'wpa2-psk' ]]; then
  158. if [ ! -d /etc/wpa_supplicant ]; then
  159. echo $'wpasupplicant package is not installed'
  160. exit 3
  161. fi
  162. wifi_wpa2_psk "$WIFI_SSID" "$WIFI_PASSPHRASE"
  163. exit 0
  164. fi
  165. if [[ "$WIFI_TYPE" == 'none' || "$WIFI_TYPE" == 'open' ]]; then
  166. wifi_none "$WIFI_SSID"
  167. exit 0
  168. fi
  169. exit 0