freedombone-controlpanel-user 29KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # User control panel
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2016 Bob Mottram <bob@robotics.uk.to>
  17. #
  18. # This program is free software: you can redistribute it and/or modify
  19. # it under the terms of the GNU Affero General Public License as published by
  20. # the Free Software Foundation, either version 3 of the License, or
  21. # (at your option) any later version.
  22. #
  23. # This program is distributed in the hope that it will be useful,
  24. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. # GNU Affero General Public License for more details.
  27. #
  28. # You should have received a copy of the GNU Affero General Public License
  29. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  30. PROJECT_NAME='freedombone'
  31. export TEXTDOMAIN=${PROJECT_NAME}-controlpanel-user
  32. export TEXTDOMAINDIR="/usr/share/locale"
  33. MY_EMAIL_ADDRESS=$USER@$HOSTNAME
  34. GPG_ID=$(gpg --fingerprint $MY_EMAIL_ADDRESS | grep -i "pub" | head -n 1 | awk -F '/' '{print $2}' | awk -F ' ' '{print $1}')
  35. SYNCTHING_CONFIG_FILE=~/.syncthingids
  36. SYNCTHING_ID=$(cat ~/.syncthing-server-id)
  37. function any_key {
  38. echo ' '
  39. read -n1 -r -p $"Press any key to continue..." key
  40. }
  41. function remove_user_from_mailing_list {
  42. USER_MAILING_LISTS=$(cat "/home/$USER/.procmailrc" | grep '\[' | grep '\]' | awk -F '\[' '{print $2}' | awk -F '\\' '{print $1}')
  43. i=0
  44. W=()
  45. list_name=()
  46. while read -r listname; do
  47. i=$((i+1))
  48. W+=($i "$listname")
  49. list_name+=("$listname")
  50. echo $listname
  51. done <<< "$USER_MAILING_LISTS"
  52. i=$((i+1))
  53. W+=($i $"Exit back to user mainenance")
  54. list_selected=$(dialog --default-item "$i" --backtitle $"Freedombone User Control Panel" --title $"Remove yourself from a mailing list" --menu $"Select one of the following:" 24 50 17 "${W[@]}" 3>&2 2>&1 1>&3)
  55. if [ $? -eq 0 ]; then # Exit with OK
  56. if [ ${list_selected} -ne ${i} ]; then
  57. remove_list_name="${list_name[$((list_selected-1))]}"
  58. # find the line number where the list is defined
  59. line_number=0
  60. i=0
  61. while read -r line
  62. do
  63. if [[ "$line" == *"\[${remove_list_name}\\]"* ]]; then
  64. line_number=${i}
  65. fi
  66. i=$((i+1))
  67. done < "/home/$USER/.procmailrc"
  68. if [ ${line_number} -eq 0 ]; then
  69. # no match was found
  70. return
  71. fi
  72. # recreate the file
  73. if [ -f /home/${USER}/.procmailrc_new ]; then
  74. rm /home/${USER}/.procmailrc_new
  75. fi
  76. i=0
  77. clip=0
  78. while read -r line
  79. do
  80. i=$((i+1))
  81. if [ ${i} -gt $((line_number-1)) ]; then
  82. if [ ${clip} -eq 0 ]; then
  83. clip=1
  84. fi
  85. if [ ${clip} -eq 1 ]; then
  86. if [ ${i} -lt $((line_number+2)) ]; then
  87. continue
  88. else
  89. if [ ${#line} -lt 1 ]; then
  90. clip=2
  91. continue
  92. fi
  93. if [[ "$line" == ":"* || "$line" == "#"* ]]; then
  94. clip=2
  95. else
  96. continue
  97. fi
  98. fi
  99. fi
  100. fi
  101. echo "$line" >> /home/${USER}/.procmailrc_new
  102. if [[ "$line" == *"\[${remove_list_name}\\]"* ]]; then
  103. line_number=${i}
  104. fi
  105. done < "/home/$USER/.procmailrc"
  106. cp /home/${USER}/.procmailrc_new /home/${USER}/.procmailrc
  107. rm /home/${USER}/.procmailrc_new
  108. chown ${USER}:${USER} /home/${USER}/.procmailrc
  109. dialog --title $"Remove yourself from mailing list" \
  110. --msgbox $"You have been removed from ${remove_list_name}" 6 50
  111. fi
  112. fi
  113. }
  114. function add_to_mailing_list {
  115. data=$(tempfile 2>/dev/null)
  116. trap "rm -f $data" 0 1 2 5 15
  117. dialog --backtitle $"Freedombone User Control Panel" \
  118. --title $"Subscribe to a mailing list" \
  119. --form $"You can either enter a subject or an email address\n" 11 68 4 \
  120. $"List folder name:" 1 1 "" 1 35 26 25 \
  121. $"Name between [] on subject line:" 2 1 "" 2 35 26 25 \
  122. $"List email address:" 3 1 "" 3 35 26 25 \
  123. $"Public:" 4 1 $"yes" 4 35 4 25 \
  124. 2> $data
  125. sel=$?
  126. case $sel in
  127. 1) return;;
  128. 255) return;;
  129. esac
  130. LIST_NAME=$(cat $data | sed -n 1p)
  131. LIST_SUBJECT=$(cat $data | sed -n 2p)
  132. LIST_EMAIL=$(cat $data | sed -n 3p)
  133. LIST_PUBLIC=$(cat $data | sed -n 4p)
  134. if [ ${#LIST_PUBLIC} -lt 1 ]; then
  135. LIST_PUBLIC='no'
  136. fi
  137. if [[ $LIST_PUBLIC == $'y' || $LIST_PUBLIC == $'Y' || $LIST_PUBLIC == $'true' || $LIST_PUBLIC == $'True' || $LIST_PUBLIC == $'yes' || $LIST_PUBLIC == $'Yes' || $LIST_PUBLIC == $'YES' ]]; then
  138. LIST_PUBLIC='yes'
  139. else
  140. LIST_PUBLIC='no'
  141. fi
  142. if [ ${#LIST_NAME} -lt 2 ]; then
  143. dialog --title $"Add mailing list" \
  144. --msgbox $"No mailing list name was given" 6 40
  145. return
  146. fi
  147. if [ ${#LIST_SUBJECT} -lt 2 ]; then
  148. if [ ${#LIST_EMAIL} -lt 2 ]; then
  149. dialog --title $"Add mailing list" \
  150. --msgbox $"No mailing list subject or address was given" 6 40
  151. return
  152. fi
  153. fi
  154. if [ ${#LIST_SUBJECT} -gt 1 ]; then
  155. ${PROJECT_NAME}-addlist -u $USER -l "$LIST_NAME" \
  156. -s "$LIST_SUBJECT" --public $LIST_PUBLIC
  157. else
  158. if [[ "$LIST_EMAIL" != *"@"* || "$LIST_EMAIL" != *"."* ]]; then
  159. dialog --title $"Add mailing list" \
  160. --msgbox $"Unrecognised email address" 6 40
  161. return
  162. else
  163. ${PROJECT_NAME}-addlist -u $USER -l "$LIST_NAME" \
  164. -e "$LIST_EMAIL" --public $LIST_PUBLIC
  165. fi
  166. fi
  167. dialog --title $"Add mailing list" \
  168. --msgbox $"$LIST_NAME list was added" 6 40
  169. }
  170. function email_rule_address {
  171. data=$(tempfile 2>/dev/null)
  172. trap "rm -f $data" 0 1 2 5 15
  173. dialog --backtitle $"Freedombone User Control Panel" \
  174. --title $"Create an email rule" \
  175. --form "\n" 9 65 4 \
  176. $"When email arrives from address:" 1 1 "" 1 35 24 28 \
  177. $"Move to folder:" 2 1 "" 2 35 24 28 \
  178. $"Public:" 3 1 $"no" 3 35 4 25 \
  179. 2> $data
  180. sel=$?
  181. case $sel in
  182. 1) return;;
  183. 255) return;;
  184. esac
  185. RULE_EMAIL=$(cat $data | sed -n 1p)
  186. RULE_FOLDER=$(cat $data | sed -n 2p)
  187. RULE_PUBLIC=$(cat $data | sed -n 3p)
  188. if [ ${#RULE_PUBLIC} -lt 1 ]; then
  189. RULE_PUBLIC='no'
  190. fi
  191. if [[ $RULE_PUBLIC == $'y' || $RULE_PUBLIC == $'Y' || $RULE_PUBLIC == $'true' || $RULE_PUBLIC == $'True' || $RULE_PUBLIC == $'yes' || $RULE_PUBLIC == $'Yes' || $RULE_PUBLIC == $'YES' ]]; then
  192. RULE_PUBLIC='yes'
  193. else
  194. RULE_PUBLIC='no'
  195. fi
  196. if [ ${#RULE_EMAIL} -lt 2 ]; then
  197. dialog --title $"Create an email rule" \
  198. --msgbox $"No email address was given" 6 40
  199. return
  200. fi
  201. if [ ${#RULE_FOLDER} -lt 2 ]; then
  202. dialog --title $"Create an email rule" \
  203. --msgbox $"No folder name was given" 6 40
  204. return
  205. fi
  206. if [[ "$RULE_EMAIL" != *"@"* || "$RULE_EMAIL" != *"."* ]]; then
  207. dialog --title $"Create an email rule" \
  208. --msgbox $"Unrecognised email address" 6 40
  209. return
  210. fi
  211. ${PROJECT_NAME}-addemail -u $USER -e "$RULE_EMAIL" \
  212. -g "$RULE_FOLDER" --public $RULE_PUBLIC
  213. dialog --title $"Create an email rule" \
  214. --msgbox $"Email rule for $RULE_EMAIL was added" 6 40
  215. }
  216. function gpg_set_trust {
  217. TRUST_ADDRESS=$1
  218. fpr=$(gpg --with-colons --fingerprint "$TRUST_ADDRESS" | grep fpr | head -n 1 | awk -F ':' '{print $10}')
  219. if [ ${#fpr} -gt 2 ]; then
  220. data=$(tempfile 2>/dev/null)
  221. trap "rm -f $data" 0 1 2 5 15
  222. dialog --backtitle $"Freedombone User Control Panel" \
  223. --title $"Trust a PGP/GPG key or website domain" \
  224. --radiolist $"Set the trust level for $TRUST_ADDRESS:" 18 70 10 \
  225. 1 $"I don't know or won't say" off \
  226. 2 $"I do NOT trust" off \
  227. 3 $"I trust marginally" on \
  228. 4 $"I trust fully" off \
  229. 5 $"I trust ultimately" off 2> $data
  230. sel=$?
  231. case $sel in
  232. 1) return;;
  233. 255) return;;
  234. esac
  235. TRUST_LEVEL=$(cat $data)
  236. if [ ${TRUST_LEVEL} -ge 1 ] ; then
  237. if [ ${TRUST_LEVEL} -le 5 ] ; then
  238. echo -e "trust\n${TRUST_LEVEL}\ny\nsave\n" | gpg --command-fd 0 --edit-key $fpr
  239. if [ "$?" = "0" ]; then
  240. gpg --update-trustdb
  241. dialog --title $"Trust a PGP/GPG key or website domain" \
  242. --backtitle $"Freedombone User Control Panel" \
  243. --msgbox $"$TRUST_ADDRESS was set to trust level ${TRUST_LEVEL}" 6 50
  244. fi
  245. fi
  246. fi
  247. fi
  248. }
  249. function email_rule_subject {
  250. data=$(tempfile 2>/dev/null)
  251. trap "rm -f $data" 0 1 2 5 15
  252. dialog --backtitle $"Freedombone User Control Panel" \
  253. --title $"Create an email rule" \
  254. --form "\n" 9 75 4 \
  255. $"When email arrives with subject containing:" 1 1 "" 1 45 24 28 \
  256. $"Move to folder:" 2 1 "" 2 45 24 28 \
  257. $"Public:" 3 1 $"no" 3 45 4 25 \
  258. 2> $data
  259. sel=$?
  260. case $sel in
  261. 1) return;;
  262. 255) return;;
  263. esac
  264. RULE_SUBJECT=$(cat $data | sed -n 1p)
  265. RULE_FOLDER=$(cat $data | sed -n 2p)
  266. RULE_PUBLIC=$(cat $data | sed -n 3p)
  267. if [ ${#RULE_PUBLIC} -lt 1 ]; then
  268. RULE_PUBLIC='no'
  269. fi
  270. if [[ $RULE_PUBLIC == $'y' || $RULE_PUBLIC == $'Y' || $RULE_PUBLIC == $'true' || $RULE_PUBLIC == $'True' || $RULE_PUBLIC == $'yes' || $RULE_PUBLIC == $'Yes' || $RULE_PUBLIC == $'YES' ]]; then
  271. RULE_PUBLIC='yes'
  272. else
  273. RULE_PUBLIC='no'
  274. fi
  275. if [ ${#RULE_SUBJECT} -lt 2 ]; then
  276. dialog --title $"Create an email rule" \
  277. --msgbox $"No subject text was given" 6 40
  278. return
  279. fi
  280. if [ ${#RULE_FOLDER} -lt 2 ]; then
  281. dialog --title $"Create an email rule" \
  282. --msgbox $"No folder name was given" 6 40
  283. return
  284. fi
  285. ${PROJECT_NAME}-addemail -u $USER -s "$RULE_SUBJECT" \
  286. -g "$RULE_FOLDER" --public $RULE_PUBLIC
  287. dialog --title $"Create an email rule" \
  288. --msgbox $"Email rule for subject '$RULE_SUBJECT' was added" 6 40
  289. }
  290. function block_unblock_email {
  291. blockstr=$"Block or unblock emails from a given address"
  292. data=$(tempfile 2>/dev/null)
  293. trap "rm -f $data" 0 1 2 5 15
  294. dialog --backtitle $"Freedombone User Control Panel" \
  295. --title "$blockstr" \
  296. --form "\n" 8 65 3 \
  297. $"When email arrives from address:" 1 1 "" 1 35 24 100 \
  298. $"Block it:" 2 1 "yes" 2 35 4 4 \
  299. 2> $data
  300. sel=$?
  301. case $sel in
  302. 1) return;;
  303. 255) return;;
  304. esac
  305. BLOCK_EMAIL=$(cat $data | sed -n 1p)
  306. BLOCK=$(cat $data | sed -n 2p)
  307. if [ ${#BLOCK_EMAIL} -lt 2 ]; then
  308. dialog --title "$blockstr" \
  309. --msgbox $"No email address was given" 6 40
  310. return
  311. fi
  312. if [[ "$BLOCK_EMAIL" != *"@"* || "$BLOCK_EMAIL" != *"."* ]]; then
  313. dialog --title "$blockstr" \
  314. --msgbox $"Unrecognised email address" 6 40
  315. return
  316. fi
  317. if [[ $BLOCK == "y"* || $BLOCK == "Y"* ]]; then
  318. ${PROJECT_NAME}-ignore -u $USER -e "$BLOCK_EMAIL"
  319. dialog --title $"Block an email" \
  320. --msgbox "Email from $BLOCK_EMAIL is now blocked" 6 75
  321. else
  322. ${PROJECT_NAME}-unignore -u $USER -e "$BLOCK_EMAIL"
  323. dialog --title $"Unblock an email" \
  324. --msgbox "Email from $BLOCK_EMAIL is now unblocked" 6 75
  325. fi
  326. }
  327. function block_unblock_subject {
  328. blockstr=$"Block or unblock emails with text in the subject line"
  329. data=$(tempfile 2>/dev/null)
  330. trap "rm -f $data" 0 1 2 5 15
  331. dialog --backtitle $"Freedombone User Control Panel" \
  332. --title "$blockstr" \
  333. --form "\n" 8 70 3 \
  334. $"When email arrives with subject text:" 1 1 "" 1 40 24 28 \
  335. $"Block it:" 2 1 "yes" 2 40 4 4 \
  336. 2> $data
  337. sel=$?
  338. case $sel in
  339. 1) return;;
  340. 255) return;;
  341. esac
  342. BLOCK_SUBJECT=$(cat $data | sed -n 1p)
  343. BLOCK=$(cat $data | sed -n 2p)
  344. if [ ${#BLOCK_SUBJECT} -lt 2 ]; then
  345. dialog --title "$blockstr" \
  346. --msgbox $"No subject was given" 6 40
  347. return
  348. fi
  349. if [[ $BLOCK == "y"* || $BLOCK == "Y"* ]]; then
  350. ${PROJECT_NAME}-ignore -u $USER -t "$BLOCK_SUBJECT"
  351. dialog --title $"Block an email" \
  352. --msgbox $"Email with subject $BLOCK_SUBJECT is now blocked" 6 40
  353. else
  354. ${PROJECT_NAME}-unignore -u $USER -t "$BLOCK_SUBJECT"
  355. dialog --title $"Unblock an email" \
  356. --msgbox $"Email with subject $BLOCK_SUBJECT is now unblocked" 6 40
  357. fi
  358. }
  359. function show_gpg_key {
  360. GPG_FINGERPRINT=$(gpg --fingerprint $MY_EMAIL_ADDRESS | grep -i "key fingerprint" | head -n 1 | awk -F '= ' '{print $2}')
  361. GPG_DATE=$(gpg --fingerprint $MY_EMAIL_ADDRESS | grep -i "pub" | head -n 1 | awk -F '/' '{print $2}' | awk -F ' ' '{print $2}')
  362. dialog --title $"My PGP/GPG Key" \
  363. --backtitle $"Freedombone User Control Panel" \
  364. --msgbox $"Email Address: $MY_EMAIL_ADDRESS\n\nKey ID: $GPG_ID\n\nFingerprint: $GPG_FINGERPRINT\n\nCreated: $GPG_DATE" 12 70
  365. }
  366. function publish_gpg_key {
  367. gpg --send-key $GPG_ID
  368. dialog --title $"Publish your PGP/GPG key" \
  369. --msgbox $"Your key has now been published" 6 40
  370. }
  371. function refresh_gpg_keys {
  372. gpg --refresh-keys
  373. dialog --title $"Refresh PGP/GPG keys" \
  374. --msgbox $"Your keys have been refreshed" 6 40
  375. }
  376. function add_gpg_key {
  377. data=$(tempfile 2>/dev/null)
  378. trap "rm -f $data" 0 1 2 5 15
  379. dialog --title $"Add someone's PGP/GPG key" \
  380. --backtitle $"Freedombone User Control Panel" \
  381. --inputbox $"Enter their email address or Key ID below" 8 60 2>$data
  382. sel=$?
  383. case $sel in
  384. 0)
  385. ADD_EMAIL_ADDRESS=$(<$data)
  386. if [ ${#ADD_EMAIL_ADDRESS} -gt 2 ]; then
  387. address_is_valid=
  388. if [[ $ADD_EMAIL_ADDRESS == *"@"* && $ADD_EMAIL_ADDRESS == *"."* ]]; then
  389. address_is_valid=1
  390. else
  391. if [[ $ADD_EMAIL_ADDRESS == "0x"* ]]; then
  392. address_is_valid=1
  393. fi
  394. fi
  395. if [ $address_is_valid ]; then
  396. clear
  397. gpg --search-keys "$ADD_EMAIL_ADDRESS"
  398. gpg_set_trust "$ADD_EMAIL_ADDRESS"
  399. else
  400. dialog --title $"Unrecognised email address" \
  401. --backtitle $"Freedombone User Control Panel" \
  402. --msgbox $"This doesn't look like an email address or key ID" 6 50
  403. fi
  404. fi
  405. ;;
  406. esac
  407. }
  408. function remove_gpg_key {
  409. data=$(tempfile 2>/dev/null)
  410. trap "rm -f $data" 0 1 2 5 15
  411. dialog --title $"Remove someone's PGP/GPG key" \
  412. --backtitle $"Freedombone User Control Panel" \
  413. --inputbox $"Enter their email address below" 8 60 2>$data
  414. sel=$?
  415. case $sel in
  416. 0)
  417. REMOVE_EMAIL_ADDRESS=$(<$data)
  418. if [ ${#REMOVE_EMAIL_ADDRESS} -gt 2 ]; then
  419. if [[ $REMOVE_EMAIL_ADDRESS == *"@"* && $REMOVE_EMAIL_ADDRESS == *"."* ]]; then
  420. if [[ $REMOVE_EMAIL_ADDRESS != $MY_EMAIL_ADDRESS ]]; then
  421. clear
  422. gpg --delete-key $REMOVE_EMAIL_ADDRESS
  423. else
  424. dialog --title $"Remove someone's PGP/GPG key" \
  425. --backtitle $"Freedombone User Control Panel" \
  426. --msgbox $"It's not a good idea to remove your own encryption key" 6 65
  427. fi
  428. else
  429. dialog --title $"Unrecognised email address" \
  430. --backtitle $"Freedombone User Control Panel" \
  431. --msgbox $"This doesn't look like an email address" 6 50
  432. fi
  433. fi
  434. ;;
  435. esac
  436. }
  437. function add_ssh_key {
  438. data=$(tempfile 2>/dev/null)
  439. trap "rm -f $data" 0 1 2 5 15
  440. dialog --title $"Add an ssh key for logging in" \
  441. --backtitle $"Freedombone User Control Panel" \
  442. --inputbox $"This will allow you to log into ${PROJECT_NAME} if you have an ssh key on your system, and provides much stronger security than simply using a login password.\n\nWARNING: If you make any mistakes here then you may not be able to log in and will need to get the administrator to clear your ssh authorized_keys file." 15 60 2>$data
  443. sel=$?
  444. case $sel in
  445. 0)
  446. SSH_PUBLIC_KEY=$(<$data)
  447. if [ ${#SSH_PUBLIC_KEY} -gt 20 ]; then
  448. if [[ "$SSH_PUBLIC_KEY" == "ssh-"* ]]; then
  449. if [ ! -d /home/$USER/.ssh ]; then
  450. mkdir /home/$USER/.ssh
  451. fi
  452. if [ ! -f /home/$USER/.ssh/authorized_keys ]; then
  453. touch /home/$USER/.ssh/authorized_keys
  454. fi
  455. if ! grep -q "$SSH_PUBLIC_KEY" /home/$USER/.ssh/authorized_keys; then
  456. echo "$SSH_PUBLIC_KEY" >> /home/$USER/.ssh/authorized_keys
  457. dialog --title $"New ssh key added" \
  458. --backtitle $"Freedombone User Control Panel" \
  459. --msgbox $"Your ssh key has now been added" 6 50
  460. else
  461. dialog --title $"ssh key already added" \
  462. --backtitle $"Freedombone User Control Panel" \
  463. --msgbox $"That ssh key has already been added" 6 50
  464. fi
  465. else
  466. dialog --title $"Unrecognised ssh public key" \
  467. --backtitle $"Freedombone User Control Panel" \
  468. --msgbox $"This doesn't look like an ssh key" 6 50
  469. fi
  470. fi
  471. ;;
  472. esac
  473. }
  474. function remove_ssh_key {
  475. data=$(tempfile 2>/dev/null)
  476. trap "rm -f $data" 0 1 2 5 15
  477. dialog --title $"Remove an ssh key for logging in" \
  478. --backtitle $"Freedombone User Control Panel" \
  479. --inputbox $"Enter the ssh public key which is to be removed. This can be just the address at the end.\n\nWARNING: If you make any mistakes here then you may not be able to log in and will need to get the administrator to clear your ssh authorized_keys file." 15 60 2>$data
  480. sel=$?
  481. case $sel in
  482. 0)
  483. SSH_PUBLIC_KEY=$(<$data)
  484. if [ ${#SSH_PUBLIC_KEY} -gt 5 ]; then
  485. if [ -f /home/$USER/.ssh/authorized_keys ]; then
  486. sed -i "s|.*${SSH_PUBLIC_KEY}.*||g" /home/$USER/.ssh/authorized_keys
  487. dialog --title $"Remove an ssh public key" \
  488. --backtitle $"Freedombone User Control Panel" \
  489. --msgbox $"The ssh key has been removed" 6 50
  490. fi
  491. fi
  492. ;;
  493. esac
  494. }
  495. function smtp_proxy {
  496. MUTTRC_FILE=/home/$USER/.muttrc
  497. if [ ! -f $MUTTRC_FILE ]; then
  498. return
  499. fi
  500. SMTP_PROXY_ENABLE=$'no'
  501. SMTP_PROXY_PROTOCOL='smtps'
  502. SMTP_PROXY_SERVER='mail.myispdomain'
  503. SMTP_PROXY_PORT=465
  504. SMTP_PROXY_USERNAME=''
  505. SMTP_PROXY_PASSWORD=''
  506. if grep -q "set smtp_url" $MUTTRC_FILE; then
  507. if grep -q "#set smtp_url" $MUTTRC_FILE; then
  508. SMTP_PROXY_ENABLE=$'no'
  509. else
  510. SMTP_PROXY_ENABLE=$'yes'
  511. fi
  512. SMTP_PROXY_PROTOCOL=$(cat $MUTTRC_FILE | grep "set smtp_url" | awk -F '"' '{print $2}' | awk -F ':' '{print $1}')
  513. SMTP_PROXY_SERVER=$(cat $MUTTRC_FILE | grep "set smtp_url" | awk -F '"' '{print $2}' | awk -F '/' '{print $3}' | awk -F ':' '{print $2}' | awk -F '@' '{print $2}')
  514. SMTP_PROXY_PORT=$(cat $MUTTRC_FILE | grep "set smtp_url" | awk -F ':' '{print $4}' | awk -F '/' '{print $1}')
  515. SMTP_PROXY_USERNAME=$(cat $MUTTRC_FILE | grep "set smtp_url" | awk -F '"' '{print $2}' | awk -F '/' '{print $3}' | awk -F ':' '{print $1}')
  516. SMTP_PROXY_PASSWORD=$(cat $MUTTRC_FILE | grep "set smtp_url" | awk -F '"' '{print $2}' | awk -F '/' '{print $3}' | awk -F ':' '{print $2}' | awk -F '@' '{print $1}')
  517. fi
  518. data=$(tempfile 2>/dev/null)
  519. trap "rm -f $data" 0 1 2 5 15
  520. dialog --backtitle $"Freedombone Control Panel" \
  521. --title $"SMTP Proxy for $USER" \
  522. --form $"You may need to proxy outgoing email via your ISP's mail server. If so enter the details below." 14 75 6 \
  523. $"Enable proxy:" 1 1 "$SMTP_PROXY_ENABLE" 1 24 5 5 \
  524. $"Protocol (smtp/smtps):" 2 1 "$SMTP_PROXY_PROTOCOL" 2 24 5 5 \
  525. $"ISP mail server:" 3 1 "$SMTP_PROXY_SERVER" 3 24 40 10000 \
  526. $"Port:" 4 1 "$SMTP_PROXY_PORT" 4 24 5 5 \
  527. $"Username:" 5 1 "$SMTP_PROXY_USERNAME" 5 24 40 10000 \
  528. $"Password:" 6 1 "$SMTP_PROXY_PASSWORD" 6 24 40 10000 \
  529. 2> $data
  530. sel=$?
  531. case $sel in
  532. 1) return;;
  533. 255) return;;
  534. esac
  535. SMTP_PROXY_ENABLE=$(cat $data | sed -n 1p)
  536. SMTP_PROXY_PROTOCOL=$(cat $data | sed -n 2p)
  537. SMTP_PROXY_SERVER=$(cat $data | sed -n 3p)
  538. SMTP_PROXY_PORT=$(cat $data | sed -n 4p)
  539. SMTP_PROXY_USERNAME=$(cat $data | sed -n 5p)
  540. SMTP_PROXY_PASSWORD=$(cat $data | sed -n 6p)
  541. # change muttrc
  542. if [ $SMTP_PROXY_ENABLE != $'no' ]; then
  543. if ! grep -q "set smtp_url" $MUTTRC_FILE; then
  544. echo "set smtp_url=\"${SMTP_PROXY_PROTOCOL}://${SMTP_PROXY_USERNAME}:${SMTP_PROXY_PASSWORD}@${SMTP_PROXY_SERVER}:${SMTP_PROXY_PORT}/\"" >> $MUTTRC_FILE
  545. else
  546. sed -i "s|set smtp_url=.*|set smtp_url=\"${SMTP_PROXY_PROTOCOL}://${SMTP_PROXY_USERNAME}:${SMTP_PROXY_PASSWORD}@${SMTP_PROXY_SERVER}:${SMTP_PROXY_PORT}/\"|g" $MUTTRC_FILE
  547. fi
  548. sed -i 's|#set smtp_url|set smtp_url|g' $MUTTRC_FILE
  549. else
  550. if grep "set smtp_url" $MUTTRC_FILE; then
  551. sed -i 's|set smtp_url|#set smtp_url|g' $MUTTRC_FILE
  552. fi
  553. fi
  554. }
  555. function syncthing_create_ids_file {
  556. if [ ! -f ~/.syncthing-server-id ]; then
  557. return
  558. fi
  559. SYNCTHING_ID=$(cat ~/.syncthing-server-id)
  560. if [ ! -f $SYNCTHING_CONFIG_FILE ]; then
  561. echo $'# Your syncthing configuration file' > $SYNCTHING_CONFIG_FILE
  562. echo '#' >> $SYNCTHING_CONFIG_FILE
  563. echo $"# The ${PROJECT_NAME} syncthing ID is: $SYNCTHING_ID" >> $SYNCTHING_CONFIG_FILE
  564. echo '#' >> $SYNCTHING_CONFIG_FILE
  565. echo '# Paste the IDs of your devices below' >> $SYNCTHING_CONFIG_FILE
  566. echo '#' >> $SYNCTHING_CONFIG_FILE
  567. fi
  568. }
  569. function syncthing_manual_edit {
  570. if [ ! -f ~/.syncthing-server-id ]; then
  571. return
  572. fi
  573. syncthing_create_ids_file
  574. editor $SYNCTHING_CONFIG_FILE
  575. # force an update of the configuration
  576. touch ~/.syncthing-update
  577. }
  578. function syncthing_show_id {
  579. if [ ! -f ~/.syncthing-server-id ]; then
  580. return
  581. fi
  582. SYNCTHING_ID=$(cat ~/.syncthing-server-id)
  583. dialog --title $"Device ID for ${PROJECT_NAME}" \
  584. --backtitle $"Freedombone User Control Panel" \
  585. --msgbox $"In a desktop terminal press shift and select the ID below,\nthen right click and copy.\n\nWithin Connectbot select Menu/Copy and then highlight the ID below\n\n$SYNCTHING_ID" 12 78
  586. }
  587. function syncthing_add_id {
  588. if [ ! -f ~/.syncthing-server-id ]; then
  589. return
  590. fi
  591. syncthing_create_ids_file
  592. data=$(tempfile 2>/dev/null)
  593. trap "rm -f $data" 0 1 2 5 15
  594. dialog --backtitle $"Freedombone User Control Panel" \
  595. --title $"Add a Syncthing device ID" \
  596. --form $"Paste the device ID for your laptop/desktop/netbook/phone/tablet below" 9 80 2 \
  597. $"Device ID:" 1 1 "" 1 26 80 80 \
  598. $"Description (optional):" 2 1 "" 2 26 80 80 \
  599. 2> $data
  600. sel=$?
  601. case $sel in
  602. 1) return;;
  603. 255) return;;
  604. esac
  605. SYNCTHING_DEVICE_ID=$(cat $data | sed -n 1p)
  606. SYNCTHING_DESCRIPTION=$(cat $data | sed -n 2p)
  607. if [ ${#SYNCTHING_DEVICE_ID} -lt 10 ]; then
  608. return
  609. fi
  610. if [[ $SYNCTHING_DEVICE_ID == *"#"* || $SYNCTHING_DEVICE_ID == *"*"* || $SYNCTHING_DEVICE_ID == *'/'* || $SYNCTHING_DEVICE_ID != *"-"* ]]; then
  611. dialog --title $"Add a Syncthing device ID" \
  612. --backtitle $"Freedombone User Control Panel" \
  613. --msgbox $"That doesn't look like a device ID" 6 50
  614. return
  615. fi
  616. if grep -q "$SYNCTHING_DEVICE_ID" $SYNCTHING_CONFIG_FILE; then
  617. dialog --title $"Add a Syncthing device ID" \
  618. --backtitle $"Freedombone User Control Panel" \
  619. --msgbox $"That ID has already been added" 6 50
  620. return
  621. fi
  622. if [ ${#SYNCTHING_DESCRIPTION} -gt 0 ]; then
  623. echo "# $SYNCTHING_DESCRIPTION" >> $SYNCTHING_CONFIG_FILE
  624. fi
  625. echo "$SYNCTHING_DEVICE_ID" >> $SYNCTHING_CONFIG_FILE
  626. # force an update of the configuration
  627. touch ~/.syncthing-update
  628. dialog --title $"Add a Syncthing device ID" \
  629. --backtitle $"Freedombone User Control Panel" \
  630. --msgbox $"The ID was added" 6 50
  631. }
  632. function syncthing_remove_id {
  633. if [ ! -f ~/.syncthing-server-id ]; then
  634. return
  635. fi
  636. syncthing_create_ids_file
  637. data=$(tempfile 2>/dev/null)
  638. trap "rm -f $data" 0 1 2 5 15
  639. dialog --backtitle $"Freedombone User Control Panel" \
  640. --title $"Remove a Syncthing device ID" \
  641. --form $"Paste the device ID which is to be removed below" 8 80 1 \
  642. $"Device ID:" 1 1 "" 1 14 80 80 \
  643. 2> $data
  644. sel=$?
  645. case $sel in
  646. 1) return;;
  647. 255) return;;
  648. esac
  649. SYNCTHING_DEVICE_ID=$(cat $data | sed -n 1p)
  650. if [ ${#SYNCTHING_DEVICE_ID} -lt 10 ]; then
  651. return
  652. fi
  653. if [[ $SYNCTHING_DEVICE_ID == *"#"* || $SYNCTHING_DEVICE_ID == *"*"* || $SYNCTHING_DEVICE_ID == *'/'* || $SYNCTHING_DEVICE_ID != *"-"* ]]; then
  654. dialog --title $"Remove a Syncthing device ID" \
  655. --backtitle $"Freedombone User Control Panel" \
  656. --msgbox $"That doesn't look like a device ID" 6 50
  657. return
  658. fi
  659. if ! grep -q "$SYNCTHING_DEVICE_ID" $SYNCTHING_CONFIG_FILE; then
  660. dialog --title $"Remove a Syncthing device ID" \
  661. --backtitle $"Freedombone User Control Panel" \
  662. --msgbox $"That ID wasn't registered anyway" 6 50
  663. return
  664. fi
  665. sed -i "/$SYNCTHING_DEVICE_ID/d" $SYNCTHING_CONFIG_FILE
  666. # force an update of the configuration
  667. touch ~/.syncthing-update
  668. dialog --title $"Remove a Syncthing device ID" \
  669. --backtitle $"Freedombone User Control Panel" \
  670. --msgbox $"The ID was removed" 6 50
  671. }
  672. function sign_gpg_key {
  673. data=$(tempfile 2>/dev/null)
  674. trap "rm -f $data" 0 1 2 5 15
  675. dialog --title $"Sign a PGP/GPG key or website domain" \
  676. --backtitle $"Freedombone User Control Panel" \
  677. --inputbox $"Enter the Key ID, address or domain to be signed.\n\nIf you are signing a website domain then include the https:// at the beginning.\n\nIf you are signing an ssh key then include ssh:// before the domain name." 14 75 2>$data
  678. sel=$?
  679. case $sel in
  680. 0)
  681. SIGN_ADDRESS=$(<$data)
  682. if [ ${#SIGN_ADDRESS} -gt 2 ]; then
  683. clear
  684. gpg --search "$SIGN_ADDRESS"
  685. fpr=$(gpg --with-colons --fingerprint "$SIGN_ADDRESS" | grep fpr | head -n 1 | awk -F ':' '{print $10}')
  686. if [ ${#fpr} -gt 2 ]; then
  687. gpg --sign-key $fpr
  688. if [ "$?" = "0" ]; then
  689. gpg --update-trustdb
  690. dialog --title $"Sign a PGP/GPG key" \
  691. --backtitle $"Freedombone User Control Panel" \
  692. --msgbox $"$SIGN_ADDRESS was signed" 6 50
  693. fi
  694. fi
  695. fi
  696. ;;
  697. esac
  698. }
  699. function gpg_key_trust {
  700. data=$(tempfile 2>/dev/null)
  701. trap "rm -f $data" 0 1 2 5 15
  702. dialog --title $"Trust a PGP/GPG key or website domain" \
  703. --backtitle $"Freedombone User Control Panel" \
  704. --inputbox $"Enter the Key ID, address or domain to be trusted.\n\nIf you are trusting a website domain then include the https:// at the beginning.\n\nIf you are trusting an ssh key then include ssh:// before the domain name." 14 75 2>$data
  705. sel=$?
  706. case $sel in
  707. 0)
  708. TRUST_ADDRESS=$(<$data)
  709. if [ ${#TRUST_ADDRESS} -gt 2 ]; then
  710. clear
  711. gpg --search "$TRUST_ADDRESS"
  712. gpg_set_trust "$TRUST_ADDRESS"
  713. fi
  714. ;;
  715. esac
  716. }
  717. function menu_encryption_keys {
  718. while true
  719. do
  720. data=$(tempfile 2>/dev/null)
  721. trap "rm -f $data" 0 1 2 5 15
  722. dialog --backtitle $"Freedombone User Control Panel" \
  723. --title $"My Encryption Keys" \
  724. --radiolist $"Choose an operation:" 18 70 10 \
  725. 1 $"Show your PGP/GPG key" off \
  726. 2 $"Publish your PGP/GPG key so that others can find it" off \
  727. 3 $"Add someone's PGP/GPG key" off \
  728. 4 $"Remove someone's PGP/GPG key" off \
  729. 5 $"Sign a PGP/GPG key or website domain" off \
  730. 6 $"Refresh your PGP/GPG keys" off \
  731. 7 $"Add an ssh key for logging in" off \
  732. 8 $"Remove an ssh key for logging in" off \
  733. 9 $"Set the trust level for a PGP/GPG key" off \
  734. 10 $"Back to main menu" on 2> $data
  735. sel=$?
  736. case $sel in
  737. 1) break;;
  738. 255) break;;
  739. esac
  740. case $(cat $data) in
  741. 1) show_gpg_key;;
  742. 2) publish_gpg_key;;
  743. 3) add_gpg_key;;
  744. 4) remove_gpg_key;;
  745. 5) sign_gpg_key;;
  746. 6) refresh_gpg_keys;;
  747. 7) add_ssh_key;;
  748. 8) remove_ssh_key;;
  749. 9) gpg_key_trust;;
  750. 10) break;;
  751. esac
  752. done
  753. }
  754. function menu_email {
  755. while true
  756. do
  757. data=$(tempfile 2>/dev/null)
  758. trap "rm -f $data" 0 1 2 5 15
  759. dialog --backtitle $"Freedombone User Control Panel" \
  760. --title $"Change Email Filtering Rules" \
  761. --radiolist $"Choose an operation:" 14 70 7 \
  762. 1 $"Add yourself to a mailing list" off \
  763. 2 $"Remove yourself from a mailing list" off \
  764. 3 $"Add an email rule for an address" off \
  765. 4 $"Add an email rule for a subject" off \
  766. 5 $"Block or unblock an email address" off \
  767. 6 $"Block or unblock email with subject text" off \
  768. 7 $"Back to main menu" on 2> $data
  769. sel=$?
  770. case $sel in
  771. 1) break;;
  772. 255) break;;
  773. esac
  774. case $(cat $data) in
  775. 1) add_to_mailing_list;;
  776. 2) remove_user_from_mailing_list;;
  777. 3) email_rule_address;;
  778. 4) email_rule_subject;;
  779. 5) block_unblock_email;;
  780. 6) block_unblock_subject;;
  781. 7) break;;
  782. esac
  783. done
  784. }
  785. function menu_syncthing {
  786. while true
  787. do
  788. data=$(tempfile 2>/dev/null)
  789. trap "rm -f $data" 0 1 2 5 15
  790. dialog --backtitle $"Freedombone User Control Panel" \
  791. --title $"File Synchronization" \
  792. --radiolist $"Choose an operation:" 12 70 6 \
  793. 1 $"Show device ID for ${PROJECT_NAME}" off \
  794. 2 $"Add an ID for another machine or device" off \
  795. 3 $"Remove an ID for another machine or device" off \
  796. 4 $"Manually edit device IDs" off \
  797. 5 $"Back to main menu" on 2> $data
  798. sel=$?
  799. case $sel in
  800. 1) break;;
  801. 255) break;;
  802. esac
  803. case $(cat $data) in
  804. 1) syncthing_show_id;;
  805. 2) syncthing_add_id;;
  806. 3) syncthing_remove_id;;
  807. 4) syncthing_manual_edit;;
  808. 5) break;;
  809. esac
  810. done
  811. }
  812. function menu_admin {
  813. if [ ! -f /etc/sudoers ]; then
  814. clear
  815. exit 0
  816. fi
  817. sudo freedombone-controlpanel
  818. }
  819. function sign_keys {
  820. if [ ! -f /home/$USER/.monkeysphere/server_keys ]; then
  821. return
  822. fi
  823. dialog --title $"Monkeysphere sign server keys" \
  824. --backtitle $"Freedombone Security Configuration" \
  825. --defaultno \
  826. --yesno $"\nMonkeysphere has been enabled and you will need to sign and trust the server keys. Do you want to do that now?" 8 60
  827. sel=$?
  828. case $sel in
  829. 0) ${PROJECT_NAME}-sec --sign yes;;
  830. esac
  831. }
  832. function menu_top_level {
  833. while true
  834. do
  835. data=$(tempfile 2>/dev/null)
  836. trap "rm -f $data" 0 1 2 5 15
  837. dialog --backtitle $"Freedombone User Control Panel" \
  838. --title $"User Control Panel" \
  839. --radiolist $"Choose an operation:" 19 50 12 \
  840. 1 $"Use Email" off \
  841. 2 $"Change Email Filtering Rules" off \
  842. 3 $"Use Tox Chat" off \
  843. 4 $"Use XMPP Chat" off \
  844. 5 $"Use IRC" off \
  845. 6 $"Browse the Web" off \
  846. 7 $"File Synchronization" off \
  847. 8 $"My Encryption Keys" off \
  848. 9 $"Set an outgoing email proxy" off \
  849. 10 $"Administrator controls" off \
  850. 11 $"Exit to the command line" off \
  851. 12 $"Log out" on 2> $data
  852. sel=$?
  853. case $sel in
  854. 1) exit 1;;
  855. 255) exit 1;;
  856. esac
  857. case $(cat $data) in
  858. 1) mutt;;
  859. 2) menu_email;;
  860. 3) toxic --force-tcp --SOCKS5-proxy 127.0.0.1 9050;;
  861. 4) torify profanity;;
  862. 5) irssi;;
  863. 6) torify elinks;;
  864. 7) menu_syncthing;;
  865. 8) menu_encryption_keys;;
  866. 9) smtp_proxy;;
  867. 10) menu_admin;;
  868. 11) break;;
  869. 12) kill -HUP `pgrep -s 0 -o`;;
  870. esac
  871. done
  872. }
  873. sign_keys
  874. menu_top_level
  875. clear
  876. . ~/.bashrc
  877. exit 0