freedombone-controlpanel-user 31KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850
  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@freedombone.net>
  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. GPG_BACKUP_ID=$(gpg --fingerprint "(backup key)" | grep -i "pub" | head -n 1 | awk -F '/' '{print $2}' | awk -F ' ' '{print $1}')
  36. UTILS_FILES=/usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-*
  37. for f in $UTILS_FILES
  38. do
  39. source $f
  40. done
  41. APP_FILES=/usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-*
  42. for f in $APP_FILES
  43. do
  44. source $f
  45. done
  46. function any_key {
  47. echo ' '
  48. read -n1 -r -p $"Press any key to continue..." key
  49. }
  50. function remove_user_from_mailing_list {
  51. USER_MAILING_LISTS=$(cat "/home/$USER/.procmailrc" | grep '\[' | grep '\]' | awk -F '\[' '{print $2}' | awk -F '\\' '{print $1}')
  52. i=0
  53. W=()
  54. list_name=()
  55. while read -r listname; do
  56. i=$((i+1))
  57. if [[ "$listname" != *']'* && "$listname" != *'['* ]]; then
  58. W+=($i "$listname")
  59. list_name+=("$listname")
  60. echo $listname
  61. fi
  62. done <<< "$USER_MAILING_LISTS"
  63. i=$((i+1))
  64. W+=($i $"Exit back to filtering rules menu")
  65. 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)
  66. if [ $? -eq 0 ]; then # Exit with OK
  67. if [ ${list_selected} -ne ${i} ]; then
  68. remove_list_name="${list_name[$((list_selected-1))]}"
  69. # find the line number where the list is defined
  70. line_number=0
  71. i=0
  72. while read -r line
  73. do
  74. if [[ "$line" == *"\[${remove_list_name}\\]"* ]]; then
  75. line_number=${i}
  76. fi
  77. i=$((i+1))
  78. done < "/home/$USER/.procmailrc"
  79. if [ ${line_number} -eq 0 ]; then
  80. # no match was found
  81. return
  82. fi
  83. # recreate the file
  84. if [ -f /home/${USER}/.procmailrc_new ]; then
  85. rm /home/${USER}/.procmailrc_new
  86. fi
  87. i=0
  88. clip=0
  89. while read -r line
  90. do
  91. i=$((i+1))
  92. if [ ${i} -gt $((line_number-1)) ]; then
  93. if [ ${clip} -eq 0 ]; then
  94. clip=1
  95. fi
  96. if [ ${clip} -eq 1 ]; then
  97. if [ ${i} -lt $((line_number+2)) ]; then
  98. continue
  99. else
  100. if [ ${#line} -lt 1 ]; then
  101. clip=2
  102. continue
  103. fi
  104. if [[ "$line" == ":"* || "$line" == "#"* ]]; then
  105. clip=2
  106. else
  107. continue
  108. fi
  109. fi
  110. fi
  111. fi
  112. echo "$line" >> /home/${USER}/.procmailrc_new
  113. if [[ "$line" == *"\[${remove_list_name}\\]"* ]]; then
  114. line_number=${i}
  115. fi
  116. done < "/home/$USER/.procmailrc"
  117. cp /home/${USER}/.procmailrc_new /home/${USER}/.procmailrc
  118. rm /home/${USER}/.procmailrc_new
  119. chown ${USER}:${USER} /home/${USER}/.procmailrc
  120. dialog --title $"Remove yourself from mailing list" \
  121. --msgbox $"You have been removed from ${remove_list_name}" 6 50
  122. fi
  123. fi
  124. }
  125. function add_to_mailing_list {
  126. data=$(tempfile 2>/dev/null)
  127. trap "rm -f $data" 0 1 2 5 15
  128. dialog --backtitle $"Freedombone User Control Panel" \
  129. --title $"Subscribe to a mailing list" \
  130. --form $"You can either enter a subject or an email address\n" 11 68 4 \
  131. $"List folder name:" 1 1 "" 1 35 26 25 \
  132. $"Name between [] on subject line:" 2 1 "" 2 35 26 25 \
  133. $"List email address:" 3 1 "" 3 35 26 25 \
  134. $"Public:" 4 1 $"yes" 4 35 4 25 \
  135. 2> $data
  136. sel=$?
  137. case $sel in
  138. 1) return;;
  139. 255) return;;
  140. esac
  141. LIST_NAME=$(cat $data | sed -n 1p)
  142. LIST_SUBJECT=$(cat $data | sed -n 2p)
  143. LIST_EMAIL=$(cat $data | sed -n 3p)
  144. LIST_PUBLIC=$(cat $data | sed -n 4p)
  145. if [ ${#LIST_PUBLIC} -lt 1 ]; then
  146. LIST_PUBLIC='no'
  147. fi
  148. if [[ $LIST_PUBLIC == $'y' || $LIST_PUBLIC == $'Y' || $LIST_PUBLIC == $'true' || $LIST_PUBLIC == $'True' || $LIST_PUBLIC == $'yes' || $LIST_PUBLIC == $'Yes' || $LIST_PUBLIC == $'YES' ]]; then
  149. LIST_PUBLIC='yes'
  150. else
  151. LIST_PUBLIC='no'
  152. fi
  153. if [ ${#LIST_NAME} -lt 2 ]; then
  154. dialog --title $"Add mailing list" \
  155. --msgbox $"No mailing list name was given" 6 40
  156. return
  157. fi
  158. if [ ${#LIST_SUBJECT} -lt 2 ]; then
  159. if [ ${#LIST_EMAIL} -lt 2 ]; then
  160. dialog --title $"Add mailing list" \
  161. --msgbox $"No mailing list subject or address was given" 6 40
  162. return
  163. fi
  164. fi
  165. if [ ${#LIST_SUBJECT} -gt 1 ]; then
  166. ${PROJECT_NAME}-addlist -u $USER -l "$LIST_NAME" \
  167. -s "$LIST_SUBJECT" --public $LIST_PUBLIC
  168. else
  169. if [[ "$LIST_EMAIL" != *"@"* || "$LIST_EMAIL" != *"."* ]]; then
  170. dialog --title $"Add mailing list" \
  171. --msgbox $"Unrecognised email address" 6 40
  172. return
  173. else
  174. ${PROJECT_NAME}-addlist -u $USER -l "$LIST_NAME" \
  175. -e "$LIST_EMAIL" --public $LIST_PUBLIC
  176. fi
  177. fi
  178. dialog --title $"Add mailing list" \
  179. --msgbox $"$LIST_NAME list was added" 6 40
  180. }
  181. function email_rule_address {
  182. data=$(tempfile 2>/dev/null)
  183. trap "rm -f $data" 0 1 2 5 15
  184. dialog --backtitle $"Freedombone User Control Panel" \
  185. --title $"Create an email rule" \
  186. --form "\n" 9 65 4 \
  187. $"When email arrives from address:" 1 1 "" 1 35 24 28 \
  188. $"Move to folder:" 2 1 "" 2 35 24 28 \
  189. $"Public:" 3 1 $"no" 3 35 4 25 \
  190. 2> $data
  191. sel=$?
  192. case $sel in
  193. 1) return;;
  194. 255) return;;
  195. esac
  196. RULE_EMAIL=$(cat $data | sed -n 1p)
  197. RULE_FOLDER=$(cat $data | sed -n 2p)
  198. RULE_PUBLIC=$(cat $data | sed -n 3p)
  199. if [ ${#RULE_PUBLIC} -lt 1 ]; then
  200. RULE_PUBLIC='no'
  201. fi
  202. if [[ $RULE_PUBLIC == $'y' || $RULE_PUBLIC == $'Y' || $RULE_PUBLIC == $'true' || $RULE_PUBLIC == $'True' || $RULE_PUBLIC == $'yes' || $RULE_PUBLIC == $'Yes' || $RULE_PUBLIC == $'YES' ]]; then
  203. RULE_PUBLIC='yes'
  204. else
  205. RULE_PUBLIC='no'
  206. fi
  207. if [ ${#RULE_EMAIL} -lt 2 ]; then
  208. dialog --title $"Create an email rule" \
  209. --msgbox $"No email address was given" 6 40
  210. return
  211. fi
  212. if [ ${#RULE_FOLDER} -lt 2 ]; then
  213. dialog --title $"Create an email rule" \
  214. --msgbox $"No folder name was given" 6 40
  215. return
  216. fi
  217. if [[ "$RULE_EMAIL" != *"@"* || "$RULE_EMAIL" != *"."* ]]; then
  218. dialog --title $"Create an email rule" \
  219. --msgbox $"Unrecognised email address" 6 40
  220. return
  221. fi
  222. ${PROJECT_NAME}-addemail -u $USER -e "$RULE_EMAIL" \
  223. -g "$RULE_FOLDER" --public $RULE_PUBLIC
  224. dialog --title $"Create an email rule" \
  225. --msgbox $"Email rule for $RULE_EMAIL was added" 6 40
  226. }
  227. function gpg_set_trust {
  228. TRUST_ADDRESS=$1
  229. fpr=$(gpg --with-colons --fingerprint "$TRUST_ADDRESS" | grep fpr | head -n 1 | awk -F ':' '{print $10}')
  230. if [ ${#fpr} -gt 2 ]; then
  231. data=$(tempfile 2>/dev/null)
  232. trap "rm -f $data" 0 1 2 5 15
  233. dialog --backtitle $"Freedombone User Control Panel" \
  234. --title $"Trust a PGP/GPG key or website domain" \
  235. --radiolist $"Set the trust level for $TRUST_ADDRESS:" 18 70 10 \
  236. 1 $"I don't know or won't say" off \
  237. 2 $"I do NOT trust" off \
  238. 3 $"I trust marginally" on \
  239. 4 $"I trust fully" off \
  240. 5 $"I trust ultimately" off 2> $data
  241. sel=$?
  242. case $sel in
  243. 1) return;;
  244. 255) return;;
  245. esac
  246. TRUST_LEVEL=$(cat $data)
  247. if [ ${TRUST_LEVEL} -ge 1 ] ; then
  248. if [ ${TRUST_LEVEL} -le 5 ] ; then
  249. echo -e "trust\n${TRUST_LEVEL}\ny\nsave\n" | gpg --command-fd 0 --edit-key $fpr
  250. if [ "$?" = "0" ]; then
  251. gpg --update-trustdb
  252. dialog --title $"Trust a PGP/GPG key or website domain" \
  253. --backtitle $"Freedombone User Control Panel" \
  254. --msgbox $"$TRUST_ADDRESS was set to trust level ${TRUST_LEVEL}" 6 50
  255. fi
  256. fi
  257. fi
  258. fi
  259. }
  260. function email_rule_subject {
  261. data=$(tempfile 2>/dev/null)
  262. trap "rm -f $data" 0 1 2 5 15
  263. dialog --backtitle $"Freedombone User Control Panel" \
  264. --title $"Create an email rule" \
  265. --form "\n" 9 75 4 \
  266. $"When email arrives with subject containing:" 1 1 "" 1 45 24 28 \
  267. $"Move to folder:" 2 1 "" 2 45 24 28 \
  268. $"Public:" 3 1 $"no" 3 45 4 25 \
  269. 2> $data
  270. sel=$?
  271. case $sel in
  272. 1) return;;
  273. 255) return;;
  274. esac
  275. RULE_SUBJECT=$(cat $data | sed -n 1p)
  276. RULE_FOLDER=$(cat $data | sed -n 2p)
  277. RULE_PUBLIC=$(cat $data | sed -n 3p)
  278. if [ ${#RULE_PUBLIC} -lt 1 ]; then
  279. RULE_PUBLIC='no'
  280. fi
  281. if [[ $RULE_PUBLIC == $'y' || $RULE_PUBLIC == $'Y' || $RULE_PUBLIC == $'true' || $RULE_PUBLIC == $'True' || $RULE_PUBLIC == $'yes' || $RULE_PUBLIC == $'Yes' || $RULE_PUBLIC == $'YES' ]]; then
  282. RULE_PUBLIC='yes'
  283. else
  284. RULE_PUBLIC='no'
  285. fi
  286. if [ ${#RULE_SUBJECT} -lt 2 ]; then
  287. dialog --title $"Create an email rule" \
  288. --msgbox $"No subject text was given" 6 40
  289. return
  290. fi
  291. if [ ${#RULE_FOLDER} -lt 2 ]; then
  292. dialog --title $"Create an email rule" \
  293. --msgbox $"No folder name was given" 6 40
  294. return
  295. fi
  296. ${PROJECT_NAME}-addemail -u $USER -s "$RULE_SUBJECT" \
  297. -g "$RULE_FOLDER" --public $RULE_PUBLIC
  298. dialog --title $"Create an email rule" \
  299. --msgbox $"Email rule for subject '$RULE_SUBJECT' was added" 6 40
  300. }
  301. function block_unblock_email {
  302. blockstr=$"Block or unblock emails from a given address"
  303. data=$(tempfile 2>/dev/null)
  304. trap "rm -f $data" 0 1 2 5 15
  305. dialog --backtitle $"Freedombone User Control Panel" \
  306. --title "$blockstr" \
  307. --form "\n" 8 65 3 \
  308. $"When email arrives from address:" 1 1 "" 1 35 24 100 \
  309. $"Block it:" 2 1 "yes" 2 35 4 4 \
  310. 2> $data
  311. sel=$?
  312. case $sel in
  313. 1) return;;
  314. 255) return;;
  315. esac
  316. BLOCK_EMAIL=$(cat $data | sed -n 1p)
  317. BLOCK=$(cat $data | sed -n 2p)
  318. if [ ${#BLOCK_EMAIL} -lt 2 ]; then
  319. dialog --title "$blockstr" \
  320. --msgbox $"No email address was given" 6 40
  321. return
  322. fi
  323. if [[ "$BLOCK_EMAIL" != *"@"* || "$BLOCK_EMAIL" != *"."* ]]; then
  324. dialog --title "$blockstr" \
  325. --msgbox $"Unrecognised email address" 6 40
  326. return
  327. fi
  328. if [[ $BLOCK == "y"* || $BLOCK == "Y"* ]]; then
  329. ${PROJECT_NAME}-ignore -u $USER -e "$BLOCK_EMAIL"
  330. dialog --title $"Block an email" \
  331. --msgbox "Email from $BLOCK_EMAIL is now blocked" 6 75
  332. else
  333. ${PROJECT_NAME}-unignore -u $USER -e "$BLOCK_EMAIL"
  334. dialog --title $"Unblock an email" \
  335. --msgbox "Email from $BLOCK_EMAIL is now unblocked" 6 75
  336. fi
  337. }
  338. function block_unblock_subject {
  339. blockstr=$"Block or unblock emails with text in the subject line"
  340. data=$(tempfile 2>/dev/null)
  341. trap "rm -f $data" 0 1 2 5 15
  342. dialog --backtitle $"Freedombone User Control Panel" \
  343. --title "$blockstr" \
  344. --form "\n" 8 70 3 \
  345. $"When email arrives with subject text:" 1 1 "" 1 40 24 28 \
  346. $"Block it:" 2 1 "yes" 2 40 4 4 \
  347. 2> $data
  348. sel=$?
  349. case $sel in
  350. 1) return;;
  351. 255) return;;
  352. esac
  353. BLOCK_SUBJECT=$(cat $data | sed -n 1p)
  354. BLOCK=$(cat $data | sed -n 2p)
  355. if [ ${#BLOCK_SUBJECT} -lt 2 ]; then
  356. dialog --title "$blockstr" \
  357. --msgbox $"No subject was given" 6 40
  358. return
  359. fi
  360. if [[ $BLOCK == "y"* || $BLOCK == "Y"* ]]; then
  361. ${PROJECT_NAME}-ignore -u $USER -t "$BLOCK_SUBJECT"
  362. dialog --title $"Block an email" \
  363. --msgbox $"Email with subject $BLOCK_SUBJECT is now blocked" 6 40
  364. else
  365. ${PROJECT_NAME}-unignore -u $USER -t "$BLOCK_SUBJECT"
  366. dialog --title $"Unblock an email" \
  367. --msgbox $"Email with subject $BLOCK_SUBJECT is now unblocked" 6 40
  368. fi
  369. }
  370. function show_gpg_key {
  371. GPG_FINGERPRINT=$(gpg --fingerprint $MY_EMAIL_ADDRESS | grep -i "key fingerprint" | head -n 1 | awk -F '= ' '{print $2}')
  372. GPG_DATE=$(gpg --fingerprint $MY_EMAIL_ADDRESS | grep -i "pub" | head -n 1 | awk -F '/' '{print $2}' | awk -F ' ' '{print $2}')
  373. dialog --title $"My PGP/GPG Key" \
  374. --backtitle $"Freedombone User Control Panel" \
  375. --msgbox $"Email Address: $MY_EMAIL_ADDRESS\n\nKey ID: $GPG_ID\n\nFingerprint: $GPG_FINGERPRINT\n\nCreated: $GPG_DATE" 12 70
  376. }
  377. function show_full_gpg_key {
  378. clear
  379. echo ''
  380. echo ''
  381. echo ''
  382. gpg --armor --export $GPG_ID
  383. gpg --armor --export-secret-key $GPG_ID
  384. any_key
  385. }
  386. function publish_gpg_key {
  387. gpg --send-key $GPG_ID
  388. if [ $GPG_BACKUP_ID ]; then
  389. gpg --send-key $GPG_BACKUP_ID
  390. fi
  391. dialog --title $"Publish your PGP/GPG key" \
  392. --msgbox $"Your key has now been published" 6 40
  393. }
  394. function refresh_gpg_keys {
  395. gpg --refresh-keys
  396. dialog --title $"Refresh PGP/GPG keys" \
  397. --msgbox $"Your keys have been refreshed" 6 40
  398. }
  399. function add_gpg_key {
  400. data=$(tempfile 2>/dev/null)
  401. trap "rm -f $data" 0 1 2 5 15
  402. dialog --title $"Add someone's PGP/GPG key" \
  403. --backtitle $"Freedombone User Control Panel" \
  404. --inputbox $"Enter their email address or Key ID below" 8 60 2>$data
  405. sel=$?
  406. case $sel in
  407. 0)
  408. ADD_EMAIL_ADDRESS=$(<$data)
  409. if [ ${#ADD_EMAIL_ADDRESS} -gt 2 ]; then
  410. address_is_valid=
  411. if [[ $ADD_EMAIL_ADDRESS == *"@"* && $ADD_EMAIL_ADDRESS == *"."* ]]; then
  412. address_is_valid=1
  413. else
  414. if [[ $ADD_EMAIL_ADDRESS == "0x"* ]]; then
  415. address_is_valid=1
  416. fi
  417. fi
  418. if [ $address_is_valid ]; then
  419. clear
  420. gpg --search-keys "$ADD_EMAIL_ADDRESS"
  421. gpg_set_trust "$ADD_EMAIL_ADDRESS"
  422. else
  423. dialog --title $"Unrecognised email address" \
  424. --backtitle $"Freedombone User Control Panel" \
  425. --msgbox $"This doesn't look like an email address or key ID" 6 50
  426. fi
  427. fi
  428. ;;
  429. esac
  430. }
  431. function remove_gpg_key {
  432. data=$(tempfile 2>/dev/null)
  433. trap "rm -f $data" 0 1 2 5 15
  434. dialog --title $"Remove someone's PGP/GPG key" \
  435. --backtitle $"Freedombone User Control Panel" \
  436. --inputbox $"Enter their email address or key ID below" 8 60 2>$data
  437. sel=$?
  438. case $sel in
  439. 0)
  440. REMOVE_EMAIL_ADDRESS=$(<$data)
  441. if [ ${#REMOVE_EMAIL_ADDRESS} -gt 2 ]; then
  442. if [[ $REMOVE_EMAIL_ADDRESS == *"@"* && $REMOVE_EMAIL_ADDRESS == *"."* ]]; then
  443. if [[ $REMOVE_EMAIL_ADDRESS != $MY_EMAIL_ADDRESS ]]; then
  444. clear
  445. gpg --delete-key $REMOVE_EMAIL_ADDRESS
  446. else
  447. dialog --title $"Remove someone's PGP/GPG key" \
  448. --backtitle $"Freedombone User Control Panel" \
  449. --msgbox $"It's not a good idea to remove your own encryption key" 6 65
  450. fi
  451. else
  452. if [[ $REMOVE_EMAIL_ADDRESS == "0x"* ]]; then
  453. clear
  454. gpg --delete-key $REMOVE_EMAIL_ADDRESS
  455. else
  456. dialog --title $"Unrecognised email address" \
  457. --backtitle $"Freedombone User Control Panel" \
  458. --msgbox $"This doesn't look like an email address" 6 50
  459. fi
  460. fi
  461. fi
  462. ;;
  463. esac
  464. }
  465. function add_ssh_key {
  466. data=$(tempfile 2>/dev/null)
  467. trap "rm -f $data" 0 1 2 5 15
  468. dialog --title $"Add an ssh key for logging in" \
  469. --backtitle $"Freedombone User Control Panel" \
  470. --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
  471. sel=$?
  472. case $sel in
  473. 0)
  474. SSH_PUBLIC_KEY=$(<$data)
  475. if [ ${#SSH_PUBLIC_KEY} -gt 20 ]; then
  476. if [[ "$SSH_PUBLIC_KEY" == "ssh-"* ]]; then
  477. if [ ! -d /home/$USER/.ssh ]; then
  478. mkdir /home/$USER/.ssh
  479. fi
  480. if [ ! -f /home/$USER/.ssh/authorized_keys ]; then
  481. touch /home/$USER/.ssh/authorized_keys
  482. fi
  483. if ! grep -q "$SSH_PUBLIC_KEY" /home/$USER/.ssh/authorized_keys; then
  484. echo "$SSH_PUBLIC_KEY" >> /home/$USER/.ssh/authorized_keys
  485. dialog --title $"New ssh key added" \
  486. --backtitle $"Freedombone User Control Panel" \
  487. --msgbox $"Your ssh key has now been added" 6 50
  488. else
  489. dialog --title $"ssh key already added" \
  490. --backtitle $"Freedombone User Control Panel" \
  491. --msgbox $"That ssh key has already been added" 6 50
  492. fi
  493. else
  494. dialog --title $"Unrecognised ssh public key" \
  495. --backtitle $"Freedombone User Control Panel" \
  496. --msgbox $"This doesn't look like an ssh key" 6 50
  497. fi
  498. fi
  499. ;;
  500. esac
  501. }
  502. function remove_ssh_key {
  503. data=$(tempfile 2>/dev/null)
  504. trap "rm -f $data" 0 1 2 5 15
  505. dialog --title $"Remove an ssh key for logging in" \
  506. --backtitle $"Freedombone User Control Panel" \
  507. --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
  508. sel=$?
  509. case $sel in
  510. 0)
  511. SSH_PUBLIC_KEY=$(<$data)
  512. if [ ${#SSH_PUBLIC_KEY} -gt 5 ]; then
  513. if [ -f /home/$USER/.ssh/authorized_keys ]; then
  514. sed -i "s|.*${SSH_PUBLIC_KEY}.*||g" /home/$USER/.ssh/authorized_keys
  515. dialog --title $"Remove an ssh public key" \
  516. --backtitle $"Freedombone User Control Panel" \
  517. --msgbox $"The ssh key has been removed" 6 50
  518. fi
  519. fi
  520. ;;
  521. esac
  522. }
  523. function smtp_proxy {
  524. MUTTRC_FILE=/home/$USER/.muttrc
  525. if [ ! -f $MUTTRC_FILE ]; then
  526. return
  527. fi
  528. SMTP_PROXY_ENABLE=$'no'
  529. SMTP_PROXY_PROTOCOL='smtps'
  530. SMTP_PROXY_SERVER='mail.myispdomain'
  531. SMTP_PROXY_PORT=465
  532. SMTP_PROXY_USERNAME=''
  533. SMTP_PROXY_PASSWORD=''
  534. if grep -q "set smtp_url" $MUTTRC_FILE; then
  535. if grep -q "#set smtp_url" $MUTTRC_FILE; then
  536. SMTP_PROXY_ENABLE=$'no'
  537. else
  538. SMTP_PROXY_ENABLE=$'yes'
  539. fi
  540. SMTP_PROXY_PROTOCOL=$(cat $MUTTRC_FILE | grep "set smtp_url" | awk -F '"' '{print $2}' | awk -F ':' '{print $1}')
  541. 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}')
  542. SMTP_PROXY_PORT=$(cat $MUTTRC_FILE | grep "set smtp_url" | awk -F ':' '{print $4}' | awk -F '/' '{print $1}')
  543. SMTP_PROXY_USERNAME=$(cat $MUTTRC_FILE | grep "set smtp_url" | awk -F '"' '{print $2}' | awk -F '/' '{print $3}' | awk -F ':' '{print $1}')
  544. 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}')
  545. fi
  546. data=$(tempfile 2>/dev/null)
  547. trap "rm -f $data" 0 1 2 5 15
  548. dialog --backtitle $"Freedombone Control Panel" \
  549. --title $"SMTP Proxy for $USER" \
  550. --form $"You may need to proxy outgoing email via your ISP's mail server. If so enter the details below." 14 75 6 \
  551. $"Enable proxy:" 1 1 "$SMTP_PROXY_ENABLE" 1 24 5 5 \
  552. $"Protocol (smtp/smtps):" 2 1 "$SMTP_PROXY_PROTOCOL" 2 24 5 5 \
  553. $"ISP mail server:" 3 1 "$SMTP_PROXY_SERVER" 3 24 40 10000 \
  554. $"Port:" 4 1 "$SMTP_PROXY_PORT" 4 24 5 5 \
  555. $"Username:" 5 1 "$SMTP_PROXY_USERNAME" 5 24 40 10000 \
  556. $"Password:" 6 1 "$SMTP_PROXY_PASSWORD" 6 24 40 10000 \
  557. 2> $data
  558. sel=$?
  559. case $sel in
  560. 1) return;;
  561. 255) return;;
  562. esac
  563. SMTP_PROXY_ENABLE=$(cat $data | sed -n 1p)
  564. SMTP_PROXY_PROTOCOL=$(cat $data | sed -n 2p)
  565. SMTP_PROXY_SERVER=$(cat $data | sed -n 3p)
  566. SMTP_PROXY_PORT=$(cat $data | sed -n 4p)
  567. SMTP_PROXY_USERNAME=$(cat $data | sed -n 5p)
  568. SMTP_PROXY_PASSWORD=$(cat $data | sed -n 6p)
  569. # change muttrc
  570. if [ $SMTP_PROXY_ENABLE != $'no' ]; then
  571. if ! grep -q "set smtp_url" $MUTTRC_FILE; then
  572. echo "set smtp_url=\"${SMTP_PROXY_PROTOCOL}://${SMTP_PROXY_USERNAME}:${SMTP_PROXY_PASSWORD}@${SMTP_PROXY_SERVER}:${SMTP_PROXY_PORT}/\"" >> $MUTTRC_FILE
  573. else
  574. 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
  575. fi
  576. sed -i 's|#set smtp_url|set smtp_url|g' $MUTTRC_FILE
  577. else
  578. if grep "set smtp_url" $MUTTRC_FILE; then
  579. sed -i 's|set smtp_url|#set smtp_url|g' $MUTTRC_FILE
  580. fi
  581. fi
  582. }
  583. function sign_gpg_key {
  584. data=$(tempfile 2>/dev/null)
  585. trap "rm -f $data" 0 1 2 5 15
  586. dialog --title $"Sign a PGP/GPG key or website domain" \
  587. --backtitle $"Freedombone User Control Panel" \
  588. --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
  589. sel=$?
  590. case $sel in
  591. 0)
  592. SIGN_ADDRESS=$(<$data)
  593. if [ ${#SIGN_ADDRESS} -gt 2 ]; then
  594. clear
  595. gpg --search "$SIGN_ADDRESS"
  596. fpr=$(gpg --with-colons --fingerprint "$SIGN_ADDRESS" | grep fpr | head -n 1 | awk -F ':' '{print $10}')
  597. if [ ${#fpr} -gt 2 ]; then
  598. gpg --sign-key $fpr
  599. if [ "$?" = "0" ]; then
  600. gpg --update-trustdb
  601. dialog --title $"Sign a PGP/GPG key" \
  602. --backtitle $"Freedombone User Control Panel" \
  603. --msgbox $"$SIGN_ADDRESS was signed" 6 50
  604. fi
  605. fi
  606. fi
  607. ;;
  608. esac
  609. }
  610. function gpg_key_trust {
  611. data=$(tempfile 2>/dev/null)
  612. trap "rm -f $data" 0 1 2 5 15
  613. dialog --title $"Trust a PGP/GPG key or website domain" \
  614. --backtitle $"Freedombone User Control Panel" \
  615. --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
  616. sel=$?
  617. case $sel in
  618. 0)
  619. TRUST_ADDRESS=$(<$data)
  620. if [ ${#TRUST_ADDRESS} -gt 2 ]; then
  621. clear
  622. gpg --search "$TRUST_ADDRESS"
  623. gpg_set_trust "$TRUST_ADDRESS"
  624. fi
  625. ;;
  626. esac
  627. }
  628. function menu_encryption_keys {
  629. while true
  630. do
  631. data=$(tempfile 2>/dev/null)
  632. trap "rm -f $data" 0 1 2 5 15
  633. dialog --backtitle $"Freedombone User Control Panel" \
  634. --title $"My Encryption Keys" \
  635. --radiolist $"Choose an operation:" 19 70 11 \
  636. 1 $"Show your PGP/GPG key" off \
  637. 2 $"Show your full PGP/GPG key, including private key" off \
  638. 3 $"Publish your PGP/GPG key so that others can find it" off \
  639. 4 $"Add someone's PGP/GPG key" off \
  640. 5 $"Remove someone's PGP/GPG key" off \
  641. 6 $"Sign a PGP/GPG key or website domain" off \
  642. 7 $"Refresh your PGP/GPG keys" off \
  643. 8 $"Add an ssh key for logging in" off \
  644. 9 $"Remove an ssh key for logging in" off \
  645. 10 $"Set the trust level for a PGP/GPG key" off \
  646. 11 $"Back to main menu" on 2> $data
  647. sel=$?
  648. case $sel in
  649. 1) break;;
  650. 255) break;;
  651. esac
  652. case $(cat $data) in
  653. 1) show_gpg_key;;
  654. 2) show_full_gpg_key;;
  655. 3) publish_gpg_key;;
  656. 4) add_gpg_key;;
  657. 5) remove_gpg_key;;
  658. 6) sign_gpg_key;;
  659. 7) refresh_gpg_keys;;
  660. 8) add_ssh_key;;
  661. 9) remove_ssh_key;;
  662. 10) gpg_key_trust;;
  663. 11) break;;
  664. esac
  665. done
  666. }
  667. function menu_email {
  668. while true
  669. do
  670. data=$(tempfile 2>/dev/null)
  671. trap "rm -f $data" 0 1 2 5 15
  672. dialog --backtitle $"Freedombone User Control Panel" \
  673. --title $"Change Email Filtering Rules" \
  674. --radiolist $"Choose an operation:" 14 70 7 \
  675. 1 $"Add yourself to a mailing list" off \
  676. 2 $"Remove yourself from a mailing list" off \
  677. 3 $"Add an email rule for an address" off \
  678. 4 $"Add an email rule for a subject" off \
  679. 5 $"Block or unblock an email address" off \
  680. 6 $"Block or unblock email with subject text" off \
  681. 7 $"Back to main menu" on 2> $data
  682. sel=$?
  683. case $sel in
  684. 1) break;;
  685. 255) break;;
  686. esac
  687. case $(cat $data) in
  688. 1) add_to_mailing_list;;
  689. 2) remove_user_from_mailing_list;;
  690. 3) email_rule_address;;
  691. 4) email_rule_subject;;
  692. 5) block_unblock_email;;
  693. 6) block_unblock_subject;;
  694. 7) break;;
  695. esac
  696. done
  697. }
  698. function menu_admin {
  699. if [ ! -f /etc/sudoers ]; then
  700. clear
  701. exit 0
  702. fi
  703. sudo ${PROJECT_NAME}-controlpanel
  704. }
  705. function sign_keys {
  706. if [ ! -f /home/$USER/.monkeysphere/server_keys ]; then
  707. return
  708. fi
  709. dialog --title $"Monkeysphere sign server keys" \
  710. --backtitle $"Freedombone Security Configuration" \
  711. --defaultno \
  712. --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
  713. sel=$?
  714. case $sel in
  715. 0) ${PROJECT_NAME}-sec --sign yes;;
  716. esac
  717. }
  718. function menu_run_client_app {
  719. detect_installable_apps
  720. applist=""
  721. appnames=()
  722. n=1
  723. app_index=0
  724. for a in "${APPS_AVAILABLE[@]}"
  725. do
  726. if [[ ${APPS_INSTALLED[$app_index]} != "0" ]]; then
  727. if [[ $(function_exists run_client_${a}) == "1" ]]; then
  728. applist="$applist $n $a off"
  729. n=$[n+1]
  730. appnames+=("$a")
  731. fi
  732. fi
  733. app_index=$[app_index+1]
  734. done
  735. if [ $n -le 1 ]; then
  736. return
  737. fi
  738. backstr=$'Exit'
  739. applist="$applist $n $backstr on"
  740. appnames+=("Exit")
  741. choice=$(dialog --stdout --backtitle $"Freedombone" \
  742. --title $"Run an App" \
  743. --radiolist $'Choose:' \
  744. 16 40 20 $applist)
  745. if [ $? -eq 0 ]; then
  746. app_index=$[choice-1]
  747. chosen_app=${appnames[$app_index]}
  748. if [[ $chosen_app != "Exit" ]]; then
  749. run_client_${chosen_app}
  750. fi
  751. fi
  752. }
  753. function menu_top_level {
  754. while true
  755. do
  756. data=$(tempfile 2>/dev/null)
  757. trap "rm -f $data" 0 1 2 5 15
  758. dialog --backtitle $"Freedombone User Control Panel" \
  759. --title $"User Control Panel" \
  760. --radiolist $"Choose an operation:" 19 50 12 \
  761. 1 $"Use Email" off \
  762. 2 $"Change Email Filtering Rules" off \
  763. 3 $"Run an App" off \
  764. 4 $"Browse the Web" off \
  765. 5 $"My Encryption Keys" off \
  766. 6 $"Set an outgoing email proxy" off \
  767. 7 $"Administrator controls" off \
  768. 8 $"Exit to the command line" off \
  769. 9 $"Log out" on 2> $data
  770. sel=$?
  771. case $sel in
  772. 1) exit 1;;
  773. 255) exit 1;;
  774. esac
  775. case $(cat $data) in
  776. 1) mutt;;
  777. 2) menu_email;;
  778. 3) menu_run_client_app;;
  779. 4) torify elinks;;
  780. 5) menu_encryption_keys;;
  781. 6) smtp_proxy;;
  782. 7) menu_admin;;
  783. 8) break;;
  784. 9) kill -HUP `pgrep -s 0 -o`;;
  785. esac
  786. done
  787. }
  788. sign_keys
  789. menu_top_level
  790. clear
  791. . ~/.bashrc
  792. exit 0