freedombone-app-dlna 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # DLNA application
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2014-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. function configure_firewall_for_dlna {
  31. if grep -Fxq "configure_firewall_for_dlna" $COMPLETION_FILE; then
  32. return
  33. fi
  34. if [[ $INSTALLED_WITHIN_DOCKER == "yes" ]]; then
  35. # docker does its own firewalling
  36. return
  37. fi
  38. if [[ $SYSTEM_TYPE == "$VARIANT_CLOUD" || $SYSTEM_TYPE == "$VARIANT_MAILBOX" || $SYSTEM_TYPE == "$VARIANT_CHAT" || $SYSTEM_TYPE == "$VARIANT_WRITER" || $SYSTEM_TYPE == "$VARIANT_SOCIAL" ]]; then
  39. return
  40. fi
  41. iptables -A INPUT -p udp --dport 1900 -j ACCEPT
  42. iptables -A INPUT -p tcp --dport 8200 -j ACCEPT
  43. function_check save_firewall_settings
  44. save_firewall_settings
  45. OPEN_PORTS+=('DLNA 1900')
  46. OPEN_PORTS+=('DLNA 8200')
  47. echo 'configure_firewall_for_dlna' >> $COMPLETION_FILE
  48. }
  49. function backup_dlna {
  50. echo ''
  51. }
  52. function remove_dlna {
  53. if ! grep -Fxq "install_dlna" $COMPLETION_FILE; then
  54. return
  55. fi
  56. service minidlna stop
  57. apt-get -y remove --purge minidlna
  58. if [ -f /etc/minidlna.conf ]; then
  59. rm /etc/minidlna.conf
  60. fi
  61. iptables -D INPUT -p udp --dport 1900 -j ACCEPT
  62. iptables -D INPUT -p tcp --dport 8200 -j ACCEPT
  63. function_check save_firewall_settings
  64. save_firewall_settings
  65. sed -i '/install_dlna/d' $COMPLETION_FILE
  66. }
  67. function install_dlna {
  68. if grep -Fxq "install_dlna" $COMPLETION_FILE; then
  69. return
  70. fi
  71. if [[ $SYSTEM_TYPE == "$VARIANT_CLOUD" || $SYSTEM_TYPE == "$VARIANT_MAILBOX" || $SYSTEM_TYPE == "$VARIANT_CHAT" || $SYSTEM_TYPE == "$VARIANT_WRITER" || $SYSTEM_TYPE == "$VARIANT_SOCIAL" || $SYSTEM_TYPE == "$VARIANT_DEVELOPER" || $SYSTEM_TYPE == "$VARIANT_MESH" ]]; then
  72. return
  73. fi
  74. apt-get -y install minidlna
  75. if [ ! -f /etc/minidlna.conf ]; then
  76. echo $"ERROR: minidlna does not appear to have installed. $CHECK_MESSAGE"
  77. exit 55
  78. fi
  79. sed -i "s|media_dir=/var/lib/minidlna|media_dir=A,/home/$MY_USERNAME/Music|g" /etc/minidlna.conf
  80. if ! grep -q "/home/$MY_USERNAME/Pictures" /etc/minidlna.conf; then
  81. echo "media_dir=P,/home/$MY_USERNAME/Pictures" >> /etc/minidlna.conf
  82. fi
  83. if ! grep -q "/home/$MY_USERNAME/Videos" /etc/minidlna.conf; then
  84. echo "media_dir=V,/home/$MY_USERNAME/Videos" >> /etc/minidlna.conf
  85. fi
  86. if ! grep -q "$USB_MOUNT/Music" /etc/minidlna.conf; then
  87. echo "media_dir=A,$USB_MOUNT/Music" >> /etc/minidlna.conf
  88. fi
  89. if ! grep -q "$USB_MOUNT/Pictures" /etc/minidlna.conf; then
  90. echo "media_dir=P,$USB_MOUNT/Pictures" >> /etc/minidlna.conf
  91. fi
  92. if ! grep -q "$USB_MOUNT/Videos" /etc/minidlna.conf; then
  93. echo "media_dir=V,$USB_MOUNT/Videos" >> /etc/minidlna.conf
  94. fi
  95. sed -i 's/#root_container=./root_container=B/g' /etc/minidlna.conf
  96. if [[ $SYSTEM_TYPE != "$VARIANT_MESH" ]]; then
  97. sed -i 's/#network_interface=/network_interface=eth0/g' /etc/minidlna.conf
  98. else
  99. sed -i 's/#network_interface=/network_interface=$WIFI_INTERFACE/g' /etc/minidlna.conf
  100. fi
  101. sed -i "s/#friendly_name=/friendly_name=\"${PROJECT_NAME} Media\"/g" /etc/minidlna.conf
  102. sed -i 's|#db_dir=/var/cache/minidlna|db_dir=/var/cache/minidlna|g' /etc/minidlna.conf
  103. sed -i 's/#inotify=yes/inotify=yes/g' /etc/minidlna.conf
  104. sed -i 's/#notify_interval=895/notify_interval=300/g' /etc/minidlna.conf
  105. sed -i "s|#presentation_url=/|presentation_url=http://localhost:8200|g" /etc/minidlna.conf
  106. service minidlna force-reload
  107. service minidlna reload
  108. sed -i 's/fs.inotify.max_user_watches*/fs.inotify.max_user_watches=65536/g' /etc/sysctl.conf
  109. if ! grep -q "max_user_watches" $COMPLETION_FILE; then
  110. echo 'fs.inotify.max_user_watches=65536' >> /etc/sysctl.conf
  111. fi
  112. /sbin/sysctl -p
  113. function_check configure_firewall_for_dlna
  114. configure_firewall_for_dlna
  115. echo 'install_dlna' >> $COMPLETION_FILE
  116. }
  117. function script_for_attaching_usb_drive {
  118. if grep -Fxq "script_for_attaching_usb_drive" $COMPLETION_FILE; then
  119. return
  120. fi
  121. echo '#!/bin/bash' > /usr/bin/attach-music
  122. echo 'remove-music' >> /usr/bin/attach-music
  123. echo "if [ ! -d $USB_MOUNT ]; then" >> /usr/bin/attach-music
  124. echo " mkdir $USB_MOUNT" >> /usr/bin/attach-music
  125. echo 'fi' >> /usr/bin/attach-music
  126. echo "mount /dev/sda1 $USB_MOUNT" >> /usr/bin/attach-music
  127. echo "chown root:root $USB_MOUNT" >> /usr/bin/attach-music
  128. echo "chown -R minidlna:minidlna $USB_MOUNT/*" >> /usr/bin/attach-music
  129. echo 'service minidlna restart' >> /usr/bin/attach-music
  130. echo 'minidlnad -R' >> /usr/bin/attach-music
  131. chmod +x /usr/bin/attach-music
  132. ln -s /usr/bin/attach-music /usr/bin/attach-usb
  133. ln -s /usr/bin/attach-music /usr/bin/attach-videos
  134. ln -s /usr/bin/attach-music /usr/bin/attach-pictures
  135. ln -s /usr/bin/attach-music /usr/bin/attach-media
  136. echo '#!/bin/bash' > /usr/bin/remove-music
  137. echo "if [ -d $USB_MOUNT ]; then" >> /usr/bin/remove-music
  138. echo " umount $USB_MOUNT" >> /usr/bin/remove-music
  139. echo " rm -rf $USB_MOUNT" >> /usr/bin/remove-music
  140. echo 'fi' >> /usr/bin/remove-music
  141. chmod +x /usr/bin/remove-music
  142. ln -s /usr/bin/remove-music /usr/bin/detach-music
  143. ln -s /usr/bin/remove-music /usr/bin/detach-usb
  144. ln -s /usr/bin/remove-music /usr/bin/remove-usb
  145. ln -s /usr/bin/remove-music /usr/bin/detach-media
  146. ln -s /usr/bin/remove-music /usr/bin/remove-media
  147. ln -s /usr/bin/remove-music /usr/bin/detach-videos
  148. ln -s /usr/bin/remove-music /usr/bin/remove-videos
  149. ln -s /usr/bin/remove-music /usr/bin/detach-pictures
  150. ln -s /usr/bin/remove-music /usr/bin/remove-pictures
  151. echo 'script_for_attaching_usb_drive' >> $COMPLETION_FILE
  152. }
  153. # NOTE: deliberately no exit 0