freedombone-app-icecast 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Icecast application
  12. #
  13. # Notes: An attempt was made to get ices2 running with systemd, but that
  14. # was very unsuccessful. Instead there's a hacky cron entry which
  15. # starts icecast2 and ices2 if necessary
  16. #
  17. # License
  18. # =======
  19. #
  20. # Copyright (C) 2017 Bob Mottram <bob@freedombone.net>
  21. #
  22. # This program is free software: you can redistribute it and/or modify
  23. # it under the terms of the GNU Affero General Public License as published by
  24. # the Free Software Foundation, either version 3 of the License, or
  25. # (at your option) any later version.
  26. #
  27. # This program is distributed in the hope that it will be useful,
  28. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  29. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  30. # GNU Affero General Public License for more details.
  31. #
  32. # You should have received a copy of the GNU Affero General Public License
  33. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  34. VARIANTS='full'
  35. IN_DEFAULT_INSTALL=0
  36. SHOW_ON_ABOUT=1
  37. SHOW_ICANN_ADDRESS_ON_ABOUT=0
  38. ICECAST_DOMAIN_NAME=
  39. ICECAST_CODE=
  40. ICECAST_PORT=8005
  41. ICECAST_ONION_PORT=8146
  42. ICECAST_DIR=/icestream
  43. ICECAST_PLAYLIST_FILE=/etc/ices2/playlist.txt
  44. ICECAST_LOGIN_TEXT=$"Icecast login"
  45. icecast_variables=(MY_USERNAME
  46. MY_EMAIL_ADDRESS
  47. ONION_ONLY
  48. ICECAST_DOMAIN_NAME
  49. ICECAST_CODE
  50. DEFAULT_LANGUAGE)
  51. function icecast_rescan {
  52. if [ -d $ICECAST_DIR ]; then
  53. if [ -f $ICECAST_PLAYLIST_FILE ]; then
  54. rm $ICECAST_PLAYLIST_FILE
  55. fi
  56. icecast_add_file_to_playlist $ICECAST_DIR
  57. fi
  58. }
  59. function icecast_update_daemon {
  60. systemctl stop icecast2
  61. if [ -f /etc/init.d/icecast2 ]; then
  62. rm /etc/init.d/icecast2
  63. fi
  64. echo '#!/bin/sh' > /usr/bin/stop_icecast
  65. echo 'kill $(pidof ices2)' >> /usr/bin/stop_icecast
  66. echo 'systemctl stop icecast2' >> /usr/bin/stop_icecast
  67. chmod +x /usr/bin/stop_icecast
  68. # Note that the sleep here actually is important
  69. echo '#!/bin/bash' > /usr/bin/start_icecast
  70. echo 'isrunning=$(ps aux | grep ices2)' >> /usr/bin/start_icecast
  71. echo 'if [[ "$isrunning" != *"ices-playlist"* ]]; then' >> /usr/bin/start_icecast
  72. echo ' systemctl start icecast2' >> /usr/bin/start_icecast
  73. echo ' sleep 3' >> /usr/bin/start_icecast
  74. echo ' cd /etc/ices2' >> /usr/bin/start_icecast
  75. echo ' ices2 ices-playlist.xml' >> /usr/bin/start_icecast
  76. echo 'fi' >> /usr/bin/start_icecast
  77. chmod +x /usr/bin/start_icecast
  78. echo '[Unit]' > /etc/systemd/system/icecast2.service
  79. echo 'Description=Icecast' >> /etc/systemd/system/icecast2.service
  80. echo 'After=network.target' >> /etc/systemd/system/icecast2.service
  81. echo 'After=tor.service' >> /etc/systemd/system/icecast2.service
  82. echo '' >> /etc/systemd/system/icecast2.service
  83. echo '[Service]' >> /etc/systemd/system/icecast2.service
  84. echo 'User=icecast2' >> /etc/systemd/system/icecast2.service
  85. echo 'Group=icecast' >> /etc/systemd/system/icecast2.service
  86. echo 'ExecStart=/usr/bin/icecast2 -c /etc/icecast2/icecast.xml' >> /etc/systemd/system/icecast2.service
  87. echo 'Restart=on-failure' >> /etc/systemd/system/icecast2.service
  88. echo 'RestartSec=10' >> /etc/systemd/system/icecast2.service
  89. echo '' >> /etc/systemd/system/icecast2.service
  90. echo '[Install]' >> /etc/systemd/system/icecast2.service
  91. echo 'WantedBy=multi-user.target' >> /etc/systemd/system/icecast2.service
  92. chown -R icecast2:icecast /etc/ices2
  93. chown -R icecast2:icecast /etc/icecast2
  94. systemctl daemon-reload
  95. systemctl enable icecast2
  96. if ! grep -q "start_icecast" /etc/crontab; then
  97. echo '*/1 * * * * root /usr/bin/start_icecast > /dev/null' >> /etc/crontab
  98. fi
  99. }
  100. function change_password_icecast {
  101. curr_username="$1"
  102. new_user_password="$2"
  103. stop_icecast
  104. sed -i -e "s|<source-password>[^<]*</source-password>|<source-password>$new_user_password</source-password>|" \
  105. -e "s|<relay-password>[^<]*</relay-password>|<relay-password>$new_user_password</relay-password>|" \
  106. -e "s|<admin-password>[^<]*</admin-password>|<admin-password>$new_user_password</admin-password>|" \
  107. /etc/icecast2/icecast.xml
  108. sed -i "s|<password>.*|<password>${new_user_password}</password>|g" /etc/ices2/ices-playlist.xml
  109. ${PROJECT_NAME}-pass -u "$curr_username" -a icecast -p "$new_user_password"
  110. start_icecast
  111. }
  112. function logging_on_icecast {
  113. echo -n ''
  114. }
  115. function logging_off_icecast {
  116. echo -n ''
  117. }
  118. function reconfigure_icecast {
  119. echo -n ''
  120. }
  121. function icecast_convert_files {
  122. clear
  123. cd ${1}
  124. echo $'Converting any mp3 files to ogg format'
  125. find . -type f -name '*.mp3' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogg}"' '{}' \;
  126. find . -name "*.mp3" -print0 | xargs -0 rm -f
  127. echo $'Converting any mp4 files to ogv format'
  128. find . -type f -name '*.mp4' -exec bash -c 'ffmpeg -i "$0" -c:a libvorbis -q:a 4 "${0/%mp3/ogv}"' '{}' \;
  129. find . -name "*.mp4" -print0 | xargs -0 rm -f
  130. chown -R icecast2:icecast $ICECAST_DIR
  131. }
  132. function icecast_add_file_to_playlist {
  133. files_dir=${1}
  134. if [ ! -d $files_dir ]; then
  135. return
  136. fi
  137. echo $'Adding ogg files to playlist'
  138. find $files_dir -type f -name '*.ogg' -print0 | while read -d $'\0' file; do
  139. if ! grep -q "$file" $ICECAST_PLAYLIST_FILE; then
  140. echo "$file" >> $ICECAST_PLAYLIST_FILE
  141. fi
  142. done
  143. echo $'Adding ogv files to playlist'
  144. find $files_dir -type f -name '*.ogv' -print0 | while read -d $'\0' file; do
  145. if ! grep -q "$file" $ICECAST_PLAYLIST_FILE; then
  146. echo "$file" >> $ICECAST_PLAYLIST_FILE
  147. fi
  148. done
  149. chown icecast2:icecast $ICECAST_PLAYLIST_FILE
  150. stop_icecast
  151. start_icecast
  152. }
  153. function icecast_import_from_directory {
  154. data=$(tempfile 2>/dev/null)
  155. dialog --title "Choose a directory containing stream files" --dselect /home/$MY_USERNAME/ 30 60 2> $data
  156. selected_dir=$(cat $data)
  157. rm $data
  158. if [[ "$selected_dir" == "$ICECAST_DIR" ]]; then
  159. return
  160. fi
  161. if [ ! -d $selected_dir ]; then
  162. return
  163. fi
  164. if [[ "$selected_dir" == "/home/$MY_USERNAME/" ]]; then
  165. return
  166. fi
  167. if [[ "$selected_dir" == "/home/$MY_USERNAME/."* ]]; then
  168. return
  169. fi
  170. if [[ "$selected_dir" == *"/Maildir" || "$selected_dir" == *"/Sync" ]]; then
  171. return
  172. fi
  173. dialog --title $"Import stream files directory into Icecast" \
  174. --backtitle $"Freedombone Control Panel" \
  175. --defaultno \
  176. --yesno $"\nImport the directory:\n\n $selected_dir" 12 75
  177. sel=$?
  178. case $sel in
  179. 1) return;;
  180. 255) return;;
  181. esac
  182. if [ ! -d $ICECAST_DIR ]; then
  183. mkdir -p $ICECAST_DIR
  184. fi
  185. dest_dir=$(basename "$selected_dir")
  186. mv "$selected_dir" $ICECAST_DIR
  187. icecast_convert_files $ICECAST_DIR/$dest_dir
  188. icecast_add_file_to_playlist $ICECAST_DIR/$dest_dir
  189. dialog --title $"Import stream files directory into Icecast" \
  190. --msgbox $"Import success" 6 40
  191. }
  192. function icecast_import_from_usb {
  193. clear
  194. detect_usb_drive
  195. if [ ! -b $USB_DRIVE ]; then
  196. dialog --title $"Import stream files from USB drive" --msgbox $'No USB drive found' 6 50
  197. return
  198. fi
  199. backup_mount_drive ${USB_DRIVE}
  200. if [ ! -d $USB_MOUNT$ICECAST_DIR ]; then
  201. dialog --title $"Import stream files from USB drive" --msgbox $'No stream files directory found on USB drive' 6 50
  202. backup_unmount_drive ${USB_DRIVE}
  203. fi
  204. cp -ru $USB_MOUNT$ICECAST_DIR/* $ICECAST_DIR
  205. backup_unmount_drive ${USB_DRIVE}
  206. icecast_convert_files $ICECAST_DIR
  207. dialog --title $"Import stream files from USB drive" --msgbox $'Import complete. You may now remove the USB drive' 6 50
  208. }
  209. function icecast_export_to_usb {
  210. clear
  211. detect_usb_drive
  212. if [ ! -b $USB_DRIVE ]; then
  213. dialog --title $"Export stream files to USB drive" --msgbox $'No USB drive found' 6 50
  214. return
  215. fi
  216. backup_mount_drive ${USB_DRIVE}
  217. if [ ! -d $USB_MOUNT$ICECAST_DIR ]; then
  218. mkdir -p $USB_MOUNT$ICECAST_DIR
  219. fi
  220. cp -ru $ICECAST_DIR/* $USB_MOUNT$ICECAST_DIR
  221. backup_unmount_drive ${USB_DRIVE}
  222. dialog --title $"Export stream files to USB drive" --msgbox $'Export complete. You may now remove the USB drive' 6 50
  223. }
  224. function icecast_format_drive {
  225. detect_usb_drive
  226. data=$(tempfile 2>/dev/null)
  227. trap "rm -f $data" 0 1 2 5 15
  228. dialog --title $"Format USB drive $USB_DRIVE for stream file storage" \
  229. --backtitle $"Freedombone Control Panel" \
  230. --defaultno \
  231. --yesno $"\nPlease confirm that you wish to format drive\n\n ${USB_DRIVE}\n\nAll current data on the drive will be lost, and you will be prompted to give a password used to encrypt the drive.\n\nDANGER: If you screw up here and format the wrong drive it's your own fault!" 16 60
  232. sel=$?
  233. case $sel in
  234. 1) return;;
  235. 255) return;;
  236. esac
  237. rm $data
  238. clear
  239. echo ''
  240. echo $"Formatting drive $USB_DRIVE. ALL CONTENTS WILL BE LOST."
  241. echo ''
  242. ${PROJECT_NAME}-format $USB_DRIVE
  243. dialog --title $"Format USB drive $USB_DRIVE for stream file storage" --msgbox $'Format complete. You may now export stream files or remove the USB drive' 6 50
  244. }
  245. function icecast_edit_playlist {
  246. editor $ICECAST_PLAYLIST_FILE
  247. stop_icecast
  248. start_icecast
  249. }
  250. function icecast_change_login {
  251. read_config_param $MY_USERNAME
  252. ICECAST_USER_PASSWORD=$(${PROJECT_NAME}-pass -u $MY_USERNAME -a icecastuser)
  253. data=$(tempfile 2>/dev/null)
  254. trap "rm -f $data" 0 1 2 5 15
  255. dialog --title $"Change Icecast stream visitor login" \
  256. --backtitle $"Freedombone Control Panel" \
  257. --inputbox $"Enter the new login password for stream visitors" 8 60 "$ICECAST_USER_PASSWORD" 2>$data
  258. sel=$?
  259. case $sel in
  260. 0) ICECAST_USER_PASSWORD=$(<$data)
  261. if [[ "$ICECAST_USER_PASSWORD" != *' '* ]]; then
  262. if [ ${#ICECAST_USER_PASSWORD} -gt 8 ]; then
  263. ${PROJECT_NAME}-pass -u $MY_USERNAME -a icecastuser -p $ICECAST_USER_PASSWORD
  264. dialog --title $"Change Icecast stream visitor login" \
  265. --msgbox $"Password changed to $ICECAST_USER_PASSWORD" 6 75
  266. fi
  267. fi
  268. ;;
  269. esac
  270. rm $data
  271. }
  272. function icecast_enable_login {
  273. dialog --title $"Enable Icecast login" \
  274. --backtitle $"Freedombone Control Panel" \
  275. --defaultno \
  276. --yesno $"\nDo you want to add a login so that random web users can't access your stream?" 10 60
  277. sel=$?
  278. case $sel in
  279. 0) if grep -q '#auth_basic' /etc/nginx/sites-available/icecast; then
  280. sed -i 's|#auth_basic|auth_basic|g' /etc/nginx/sites-available/icecast
  281. systemctl restart nginx
  282. fi
  283. read_config_param $MY_USERNAME
  284. ICECAST_USER_PASSWORD=$(${PROJECT_NAME}-pass -u $MY_USERNAME -a icecastuser)
  285. dialog --title $"Enable Icecast login" \
  286. --msgbox $"Icecast logins are now enabled with the password $ICECAST_USER_PASSWORD" 6 65
  287. ICECAST_USER_PASSWORD=
  288. ;;
  289. 1) if ! grep -q '#auth_basic' /etc/nginx/sites-available/icecast; then
  290. sed -i 's|auth_basic|#auth_basic|g' /etc/nginx/sites-available/icecast
  291. systemctl restart nginx
  292. fi
  293. dialog --title $"Disable Icecast login" \
  294. --msgbox $"Icecast logins are now disabled. Anyone can access your stream." 6 65
  295. ;;
  296. esac
  297. }
  298. function icecast_set_stream_name {
  299. data=$(tempfile 2>/dev/null)
  300. trap "rm -f $data" 0 1 2 5 15
  301. dialog --backtitle $"Freedombone Control Panel" \
  302. --title $"Change Icecast stream details" \
  303. --form "\n" 8 60 4 \
  304. $"Stream name:" 1 1 "Example stream name" 1 18 40 1000 \
  305. $"Description:" 2 1 "A short description of your stream" 2 18 40 1000 \
  306. $"Genre:" 3 1 "Example genre" 3 18 40 1000 \
  307. 2> $data
  308. sel=$?
  309. case $sel in
  310. 1) return;;
  311. 255) return;;
  312. esac
  313. stream_name=$(cat $data | sed -n 1p)
  314. stream_description=$(cat $data | sed -n 2p)
  315. stream_genre=$(cat $data | sed -n 3p)
  316. if [ ${#stream_name} -gt 2 ]; then
  317. sed -i "s|<name>.*|<name>${stream_name}</name>|g" /etc/ices2/ices-playlist.xml
  318. fi
  319. if [ ${#stream_description} -gt 2 ]; then
  320. sed -i "s|<description>.*|<description>${stream_description}</description>|g" /etc/ices2/ices-playlist.xml
  321. fi
  322. if [ ${#stream_genre} -gt 2 ]; then
  323. sed -i "s|<genre>.*|<genre>${stream_genre}</genre>|g" /etc/ices2/ices-playlist.xml
  324. fi
  325. rm $data
  326. stop_icecast
  327. start_icecast
  328. }
  329. function configure_interactive_icecast {
  330. while true
  331. do
  332. data=$(tempfile 2>/dev/null)
  333. trap "rm -f $data" 0 1 2 5 15
  334. dialog --backtitle $"Freedombone Control Panel" \
  335. --title $"Icecast" \
  336. --radiolist $"Choose an operation:" 18 70 11 \
  337. 1 $"Import stream files from directory" off \
  338. 2 $"Import stream files from USB drive" off \
  339. 3 $"Manually edit playlist" off \
  340. 4 $"Export stream files to USB drive" off \
  341. 5 $"Format a USB drive for stream file storage" off \
  342. 6 $"Enable login for stream visitors" off \
  343. 7 $"Change password for stream visitors" off \
  344. 8 $"Re-scan playlist" off \
  345. 9 $"Restart stream" off \
  346. 10 $"Set Stream Name/Description/Genre" off \
  347. 11 $"Exit" on 2> $data
  348. sel=$?
  349. case $sel in
  350. 1) break;;
  351. 255) break;;
  352. esac
  353. case $(cat $data) in
  354. 1) icecast_import_from_directory;;
  355. 2) icecast_import_from_usb;;
  356. 3) icecast_edit_playlist;;
  357. 4) icecast_export_to_usb;;
  358. 5) icecast_format_drive;;
  359. 6) icecast_enable_login;;
  360. 7) icecast_change_login;;
  361. 8) clear
  362. echo $'Rescanning Icecast playlist'
  363. icecast_rescan;;
  364. 9) clear
  365. echo $'Restarting Icecast stream'
  366. stop_icecast
  367. start_icecast;;
  368. 10) icecast_set_stream_name;;
  369. 11) break;;
  370. esac
  371. done
  372. }
  373. function upgrade_icecast {
  374. icecast_update_daemon
  375. }
  376. function backup_local_icecast {
  377. if [ ! -d $ICECAST_DIR ]; then
  378. return
  379. fi
  380. stop_icecast
  381. cp /etc/nginx/.icepasswd $ICECAST_DIR
  382. cp /etc/ices2/ices-playlist.xml $ICECAST_DIR
  383. function_check backup_directory_to_usb
  384. backup_directory_to_usb $ICECAST_DIR icecast
  385. rm $ICECAST_DIR/.icepasswd
  386. start_icecast
  387. }
  388. function restore_local_icecast {
  389. if [ ! -d $ICECAST_DIR ]; then
  390. return
  391. fi
  392. stop_icecast
  393. temp_restore_dir=/root/tempicecast
  394. function_check restore_directory_from_usb
  395. restore_directory_from_usb $temp_restore_dir icecast
  396. if [ -d $temp_restore_dir$ICECAST_DIR ]; then
  397. cp -r $temp_restore_dir$ICECAST_DIR $ICECAST_DIR/
  398. else
  399. cp -r $temp_restore_dir/* $ICECAST_DIR/*
  400. fi
  401. cp $ICECAST_DIR/.icepasswd /etc/nginx/.icepasswd
  402. rm $ICECAST_DIR/.icepasswd
  403. cp $ICECAST_DIR/ices-playlist.xml /etc/ices2
  404. rm $ICECAST_DIR/ices-playlist.xml
  405. chown -R icecast2:icecast $ICECAST_DIR
  406. chown -R icecast2:icecast /etc/ices2
  407. start_icecast
  408. rm -rf $temp_restore_dir
  409. }
  410. function backup_remote_icecast {
  411. if [ ! -d $ICECAST_DIR ]; then
  412. return
  413. fi
  414. stop_icecast
  415. cp /etc/nginx/.icepasswd $ICECAST_DIR
  416. cp /etc/ices2/ices-playlist.xml $ICECAST_DIR
  417. function_check backup_directory_to_friend
  418. backup_directory_to_friend $ICECAST_DIR icecast
  419. rm $ICECAST_DIR/.icepasswd
  420. start_icecast
  421. }
  422. function restore_remote_icecast {
  423. if [ ! -d $ICECAST_DIR ]; then
  424. return
  425. fi
  426. stop_icecast
  427. temp_restore_dir=/root/tempicecast
  428. function_check restore_directory_from_friend
  429. restore_directory_from_friend $temp_restore_dir icecast
  430. if [ -d $temp_restore_dir$ICECAST_DIR ]; then
  431. cp -r $temp_restore_dir$ICECAST_DIR $ICECAST_DIR/
  432. else
  433. cp -r $temp_restore_dir/* $ICECAST_DIR/*
  434. fi
  435. cp $ICECAST_DIR/.icepasswd /etc/nginx/.icepasswd
  436. rm $ICECAST_DIR/.icepasswd
  437. cp $ICECAST_DIR/ices-playlist.xml /etc/ices2
  438. rm $ICECAST_DIR/ices-playlist.xml
  439. chown -R icecast2:icecast $ICECAST_DIR
  440. start_icecast
  441. rm -rf $temp_restore_dir
  442. }
  443. function remove_icecast {
  444. nginx_dissite icecast
  445. sed -i '/start_icecast/d' /etc/crontab
  446. stop_icecast
  447. systemctl disable icecast2
  448. rm /etc/systemd/system/icecast2.service
  449. rm /usr/bin/start_icecast
  450. rm /usr/bin/stop_icecast
  451. if [ -f /etc/nginx/sites-available/icecast ]; then
  452. rm /etc/nginx/sites-available/icecast
  453. fi
  454. if [ -d /var/www/icecast ]; then
  455. rm -rf /var/www/icecast
  456. fi
  457. apt-get -yq remove --purge icecast2
  458. if [ -d /etc/icecast2 ]; then
  459. rm -rf /etc/icecast2
  460. fi
  461. if [ -d /etc/ices2 ]; then
  462. rm -rf /etc/ices2
  463. fi
  464. function_check remove_onion_service
  465. remove_onion_service icecast ${ICECAST_ONION_PORT}
  466. sed -i '/icecast/d' $COMPLETION_FILE
  467. }
  468. function install_icecast {
  469. apt-get -yq install software-properties-common debconf-utils
  470. apt-get -yq update
  471. debconf-set-selections <<< "icecast2 icecast2/icecast-setup boolean false"
  472. apt-get -yq install icecast2
  473. apt-get -yq install ices2 ffmpeg apache2-utils
  474. if [ ! -f /etc/icecast2/icecast.xml ]; then
  475. echo $'Icecast not installed'
  476. exit 7923528
  477. fi
  478. if [ ! ${ICECAST_PASSWORD} ]; then
  479. if [ -f ${IMAGE_PASSWORD_FILE} ]; then
  480. ICECAST_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
  481. else
  482. ICECAST_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
  483. fi
  484. fi
  485. ICECAST_ONION_HOSTNAME=$(add_onion_service icecast 80 ${ICECAST_ONION_PORT})
  486. sed -i -e "s|<source-password>[^<]*</source-password>|<source-password>$ICECAST_PASSWORD</source-password>|" \
  487. -e "s|<relay-password>[^<]*</relay-password>|<relay-password>$ICECAST_PASSWORD</relay-password>|" \
  488. -e "s|<admin-password>[^<]*</admin-password>|<admin-password>$ICECAST_PASSWORD</admin-password>|" \
  489. -e "s|<hostname>[^<]*</hostname>|<hostname>$ICECAST_ONION_HOSTNAME</hostname>|" \
  490. /etc/icecast2/icecast.xml
  491. sed -i "s|<clients>.*|<clients>10</clients>|g" /etc/icecast2/icecast.xml
  492. sed -i "s|<port>.*|<port>$ICECAST_PORT</port>|g" /etc/icecast2/icecast.xml
  493. sed -i "s|<admin-user>.*|<admin-user>$MY_USERNAME</admin-user>|g" /etc/icecast2/icecast.xml
  494. sed -i "s|<admin>.*|<admin>$MY_EMAIL_ADDRESS</admin>|g" /etc/icecast2/icecast.xml
  495. sed -i "s|<location>.*|<location>The Interwebs</location>|g" /etc/icecast2/icecast.xml
  496. #sed -i 's|<!-- <bind-address>.*|<bind-address>127.0.0.1</bind-address>|g' /etc/icecast2/icecast.xml
  497. if [ ! -d /var/www/icecast/htdocs ]; then
  498. mkdir -p /var/www/icecast/htdocs
  499. fi
  500. icecast_nginx_site=/etc/nginx/sites-available/icecast
  501. echo 'server {' > $icecast_nginx_site
  502. echo " listen 127.0.0.1:$ICECAST_ONION_PORT default_server;" >> $icecast_nginx_site
  503. echo " server_name $ICECAST_ONION_HOSTNAME;" >> $icecast_nginx_site
  504. echo '' >> $icecast_nginx_site
  505. echo ' # Logs' >> $icecast_nginx_site
  506. echo ' access_log /dev/null;' >> $icecast_nginx_site
  507. echo ' error_log /dev/null;' >> $icecast_nginx_site
  508. echo '' >> $icecast_nginx_site
  509. echo ' location / {' >> $icecast_nginx_site
  510. function_check nginx_limits
  511. nginx_limits $ICECAST_ONION_HOSTNAME '15m'
  512. echo " proxy_pass http://localhost:$ICECAST_PORT;" >> $icecast_nginx_site
  513. echo " #auth_basic \"${ICECAST_LOGIN_TEXT}\";" >> $icecast_nginx_site
  514. echo ' #auth_basic_user_file /etc/nginx/.icepasswd;' >> $icecast_nginx_site
  515. echo ' }' >> $icecast_nginx_site
  516. echo '}' >> $icecast_nginx_site
  517. if [ ! -d /var/log/ices ]; then
  518. mkdir -p /var/log/ices
  519. fi
  520. if [ ! -d /etc/ices2 ]; then
  521. mkdir -p /etc/ices2
  522. fi
  523. echo '<?xml version="1.0"?>' > /etc/ices2/ices-playlist.xml
  524. echo '<ices>' >> /etc/ices2/ices-playlist.xml
  525. echo ' <!-- run in background -->' >> /etc/ices2/ices-playlist.xml
  526. echo ' <background>1</background>' >> /etc/ices2/ices-playlist.xml
  527. echo ' <!-- where logs, etc go. -->' >> /etc/ices2/ices-playlist.xml
  528. echo ' <logpath>/var/log/ices</logpath>' >> /etc/ices2/ices-playlist.xml
  529. echo ' <logfile>ices.log</logfile>' >> /etc/ices2/ices-playlist.xml
  530. echo ' <!-- 1=error,2=warn,3=info,4=debug -->' >> /etc/ices2/ices-playlist.xml
  531. echo ' <loglevel>1</loglevel>' >> /etc/ices2/ices-playlist.xml
  532. echo ' <!-- set this to 1 to log to the console instead of to the file above -->' >> /etc/ices2/ices-playlist.xml
  533. echo ' <consolelog>0</consolelog>' >> /etc/ices2/ices-playlist.xml
  534. echo '' >> /etc/ices2/ices-playlist.xml
  535. echo ' <!-- optional filename to write process id to -->' >> /etc/ices2/ices-playlist.xml
  536. echo ' <!-- <pidfile>/home/ices/ices.pid</pidfile> -->' >> /etc/ices2/ices-playlist.xml
  537. echo '' >> /etc/ices2/ices-playlist.xml
  538. echo ' <stream>' >> /etc/ices2/ices-playlist.xml
  539. echo ' <!-- metadata used for stream listing (not currently used) -->' >> /etc/ices2/ices-playlist.xml
  540. echo ' <metadata>' >> /etc/ices2/ices-playlist.xml
  541. echo ' <name>Example stream name</name>' >> /etc/ices2/ices-playlist.xml
  542. echo ' <genre>Example genre</genre>' >> /etc/ices2/ices-playlist.xml
  543. echo ' <description>A short description of your stream</description>' >> /etc/ices2/ices-playlist.xml
  544. echo ' </metadata>' >> /etc/ices2/ices-playlist.xml
  545. echo '' >> /etc/ices2/ices-playlist.xml
  546. echo ' <!-- input module' >> /etc/ices2/ices-playlist.xml
  547. echo '' >> /etc/ices2/ices-playlist.xml
  548. echo ' The module used here is the playlist module - it has ' >> /etc/ices2/ices-playlist.xml
  549. echo ' "submodules" for different types of playlist. There are' >> /etc/ices2/ices-playlist.xml
  550. echo ' two currently implemented, "basic", which is a simple' >> /etc/ices2/ices-playlist.xml
  551. echo ' file-based playlist, and "script" which invokes a command' >> /etc/ices2/ices-playlist.xml
  552. echo ' to returns a filename to start playing. -->' >> /etc/ices2/ices-playlist.xml
  553. echo '' >> /etc/ices2/ices-playlist.xml
  554. echo ' <input>' >> /etc/ices2/ices-playlist.xml
  555. echo ' <module>playlist</module>' >> /etc/ices2/ices-playlist.xml
  556. echo ' <param name="type">basic</param>' >> /etc/ices2/ices-playlist.xml
  557. echo " <param name=\"file\">$ICECAST_PLAYLIST_FILE</param>" >> /etc/ices2/ices-playlist.xml
  558. echo ' <!-- random play -->' >> /etc/ices2/ices-playlist.xml
  559. echo ' <param name="random">0</param>' >> /etc/ices2/ices-playlist.xml
  560. echo ' <!-- if the playlist get updated that start at the beginning -->' >> /etc/ices2/ices-playlist.xml
  561. echo ' <param name="restart-after-reread">0</param>' >> /etc/ices2/ices-playlist.xml
  562. echo ' <!-- if set to 1 , plays once through, then exits. -->' >> /etc/ices2/ices-playlist.xml
  563. echo ' <param name="once">0</param>' >> /etc/ices2/ices-playlist.xml
  564. echo ' </input>' >> /etc/ices2/ices-playlist.xml
  565. echo '' >> /etc/ices2/ices-playlist.xml
  566. echo ' <!-- Stream instance' >> /etc/ices2/ices-playlist.xml
  567. echo ' You may have one or more instances here. This allows you to ' >> /etc/ices2/ices-playlist.xml
  568. echo ' send the same input data to one or more servers (or to different' >> /etc/ices2/ices-playlist.xml
  569. echo ' mountpoints on the same server). Each of them can have different' >> /etc/ices2/ices-playlist.xml
  570. echo ' parameters. This is primarily useful for a) relaying to multiple' >> /etc/ices2/ices-playlist.xml
  571. echo ' independent servers, and b) encoding/reencoding to multiple' >> /etc/ices2/ices-playlist.xml
  572. echo ' bitrates.' >> /etc/ices2/ices-playlist.xml
  573. echo ' If one instance fails (for example, the associated server goes' >> /etc/ices2/ices-playlist.xml
  574. echo ' down, etc), the others will continue to function correctly.' >> /etc/ices2/ices-playlist.xml
  575. echo ' This example defines two instances as two mountpoints on the' >> /etc/ices2/ices-playlist.xml
  576. echo ' same server. -->' >> /etc/ices2/ices-playlist.xml
  577. echo ' <instance>' >> /etc/ices2/ices-playlist.xml
  578. echo ' <!-- Server details:' >> /etc/ices2/ices-playlist.xml
  579. echo ' You define hostname and port for the server here, along with' >> /etc/ices2/ices-playlist.xml
  580. echo ' the source password and mountpoint. -->' >> /etc/ices2/ices-playlist.xml
  581. echo ' <hostname>localhost</hostname>' >> /etc/ices2/ices-playlist.xml
  582. echo " <port>$ICECAST_PORT</port>" >> /etc/ices2/ices-playlist.xml
  583. echo " <password>$ICECAST_PASSWORD</password>" >> /etc/ices2/ices-playlist.xml
  584. echo ' <mount>/example1.ogg</mount>' >> /etc/ices2/ices-playlist.xml
  585. echo ' <!-- Reconnect parameters:' >> /etc/ices2/ices-playlist.xml
  586. echo ' When something goes wrong (e.g. the server crashes, or the' >> /etc/ices2/ices-playlist.xml
  587. echo ' network drops) and ices disconnects from the server, these' >> /etc/ices2/ices-playlist.xml
  588. echo ' control how often it tries to reconnect, and how many times' >> /etc/ices2/ices-playlist.xml
  589. echo ' it tries to reconnect. Delay is in seconds.' >> /etc/ices2/ices-playlist.xml
  590. echo ' If you set reconnectattempts to -1, it will continue ' >> /etc/ices2/ices-playlist.xml
  591. echo ' indefinately. Suggest setting reconnectdelay to a large value' >> /etc/ices2/ices-playlist.xml
  592. echo ' if you do this.' >> /etc/ices2/ices-playlist.xml
  593. echo ' -->' >> /etc/ices2/ices-playlist.xml
  594. echo ' <reconnectdelay>2</reconnectdelay>' >> /etc/ices2/ices-playlist.xml
  595. echo ' <reconnectattempts>5</reconnectattempts> ' >> /etc/ices2/ices-playlist.xml
  596. echo '' >> /etc/ices2/ices-playlist.xml
  597. echo ' <!-- maxqueuelength:' >> /etc/ices2/ices-playlist.xml
  598. echo ' This describes how long the internal data queues may be. This' >> /etc/ices2/ices-playlist.xml
  599. echo ' basically lets you control how much data gets buffered before' >> /etc/ices2/ices-playlist.xml
  600. echo ' ices decides it cant send to the server fast enough, and ' >> /etc/ices2/ices-playlist.xml
  601. echo ' either shuts down or flushes the queue (dropping the data)' >> /etc/ices2/ices-playlist.xml
  602. echo ' and continues. ' >> /etc/ices2/ices-playlist.xml
  603. echo ' For advanced users only.' >> /etc/ices2/ices-playlist.xml
  604. echo ' -->' >> /etc/ices2/ices-playlist.xml
  605. echo ' <maxqueuelength>80</maxqueuelength>' >> /etc/ices2/ices-playlist.xml
  606. echo '' >> /etc/ices2/ices-playlist.xml
  607. echo ' <!-- Live encoding/reencoding:' >> /etc/ices2/ices-playlist.xml
  608. echo ' Currrently, the parameters given here for encoding MUST' >> /etc/ices2/ices-playlist.xml
  609. echo ' match the input data for channels and sample rate. That ' >> /etc/ices2/ices-playlist.xml
  610. echo ' restriction will be relaxed in the future.' >> /etc/ices2/ices-playlist.xml
  611. echo ' Remove this section if you dont want your files getting reencoded.' >> /etc/ices2/ices-playlist.xml
  612. echo ' -->' >> /etc/ices2/ices-playlist.xml
  613. echo ' <encode> ' >> /etc/ices2/ices-playlist.xml
  614. echo ' <nominal-bitrate>64000</nominal-bitrate>' >> /etc/ices2/ices-playlist.xml
  615. echo ' <samplerate>22050</samplerate>' >> /etc/ices2/ices-playlist.xml
  616. echo ' <channels>1</channels>' >> /etc/ices2/ices-playlist.xml
  617. echo ' </encode>' >> /etc/ices2/ices-playlist.xml
  618. echo ' </instance>' >> /etc/ices2/ices-playlist.xml
  619. echo '' >> /etc/ices2/ices-playlist.xml
  620. echo ' </stream>' >> /etc/ices2/ices-playlist.xml
  621. echo '</ices>' >> /etc/ices2/ices-playlist.xml
  622. sed -i 's|ENABLE=.*|ENABLE=true|g' /etc/default/icecast2
  623. if [ ! -d $ICECAST_DIR ]; then
  624. mkdir $ICECAST_DIR
  625. fi
  626. chown -R icecast2:icecast $ICECAST_DIR
  627. # create a password for users
  628. ICECAST_USER_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
  629. if grep -q "$MY_USERNAME:" /etc/nginx/.icepasswd; then
  630. sed -i "/$MY_USERNAME:/d" /etc/nginx/.icepasswd
  631. fi
  632. echo "$ICECAST_USER_PASSWORD" | htpasswd -i -s -c /etc/nginx/.icepasswd $MY_USERNAME
  633. if [ ! -f /etc/nginx/.icepasswd ]; then
  634. echo $'/etc/nginx/.icepasswd not found'
  635. exit 73528235
  636. fi
  637. ${PROJECT_NAME}-pass -u $MY_USERNAME -a icecast -p "$ICECAST_PASSWORD"
  638. ${PROJECT_NAME}-pass -u $MY_USERNAME -a icecastuser -p "$ICECAST_USER_PASSWORD"
  639. groupadd icecast
  640. useradd -c "Icecast system account" -d /etc/icecast2 -m -r -g icecast icecast2
  641. icecast_update_daemon
  642. nginx_ensite icecast
  643. systemctl restart nginx
  644. icecast_rescan
  645. start_icecast
  646. APP_INSTALLED=1
  647. }
  648. function install_interactive_icecast {
  649. install_icecast
  650. }
  651. # NOTE: deliberately no exit 0