freedombone-utils-nodejs 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # nodejs functions
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2014-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. # For reasons unknown we initially have to upgrade to an intermediate version
  31. # before getting to the version we want
  32. VARIANTS='mesh'
  33. # change these versions at your peril. Things will often crash if you don't
  34. # have specifically the correct versions
  35. NODEJS_VERSION='6.9.0'
  36. NODEJS_N_VERSION='2.1.4'
  37. NPM_VERSION='4.0.5'
  38. # This file keeps track of the apps needing nodejs
  39. # so that it can be removed if tere are no apps which need it
  40. NODEJS_INSTALLED_APPS_FILE=$HOME/.nodejs-apps
  41. function mesh_install_nodejs {
  42. chroot "${rootdir}" apt-get -yq install nodejs
  43. chroot "${rootdir}" apt-get -yq install npm curl
  44. if [ ! -f ${rootdir}/usr/bin/nodejs ]; then
  45. echo $'nodejs was not installed'
  46. exit 63962
  47. fi
  48. cat <<EOF > ${rootdir}/root/install-nodejs.sh
  49. #!/bin/bash
  50. PATH="/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/bin"
  51. NODE_PATH="/usr/lib/node_modules"
  52. cp /usr/bin/nodejs /usr/local/bin/node
  53. cp /usr/bin/nodejs /usr/bin/node
  54. /usr/bin/curl -0 -L https://npmjs.org/install.sh | sh
  55. npm install -g n@${NODEJS_N_VERSION} --save
  56. n ${NODEJS_VERSION}
  57. exit 0
  58. EOF
  59. chroot "${rootdir}" chmod +x /root/install-nodejs.sh
  60. chroot "${rootdir}" /root/install-nodejs.sh
  61. if [ ! "$?" = "0" ]; then
  62. chroot "${rootdir}" rm -f /root/install-nodejs.sh
  63. exit 7632572
  64. fi
  65. chroot "${rootdir}" rm -f /root/install-nodejs.sh
  66. }
  67. function remove_nodejs {
  68. if [ ! $1 ]; then
  69. return
  70. fi
  71. if [ ! -f $NODEJS_INSTALLED_APPS_FILE ]; then
  72. remove_app nodejs
  73. return
  74. fi
  75. sed -i "/install_${1}/d" $NODEJS_INSTALLED_APPS_FILE
  76. if ! grep "install_" $NODEJS_INSTALLED_APPS_FILE; then
  77. apt-get -yq remove --purge nodejs
  78. if [ -f /usr/bin/nodejs ]; then
  79. rm /usr/bin/nodejs
  80. fi
  81. if [ -f /usr/local/bin/node ]; then
  82. rm /usr/local/bin/node
  83. fi
  84. if [ -f /usr/bin/node ]; then
  85. rm /usr/bin/node
  86. fi
  87. if [ -d /usr/lib/node_modules ]; then
  88. rm -rf /usr/lib/node_modules
  89. fi
  90. remove_app nodejs
  91. rm $NODEJS_INSTALLED_APPS_FILE
  92. apt-get -yq autoremove
  93. fi
  94. }
  95. function install_nodejs {
  96. if [ $INSTALLING_MESH ]; then
  97. mesh_install_nodejs
  98. return
  99. fi
  100. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  101. return
  102. fi
  103. apt-get -yq install nodejs
  104. apt-get -yq install npm curl
  105. if [ ! -f /usr/bin/nodejs ]; then
  106. echo $'nodejs was not installed'
  107. exit 63962
  108. fi
  109. cat <<EOF > /root/install-nodejs.sh
  110. #!/bin/bash
  111. PATH="/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/bin"
  112. NODE_PATH="/usr/lib/node_modules"
  113. cp /usr/bin/nodejs /usr/local/bin/node
  114. cp /usr/bin/nodejs /usr/bin/node
  115. /usr/bin/curl -0 -L https://npmjs.org/install.sh | sh
  116. npm install -g n@${NODEJS_N_VERSION} --save
  117. n ${NODEJS_VERSION}
  118. npm upgrade -g npm@${NPM_VERSION} --save
  119. npm install -g pug@2.0.0-beta6 --save
  120. npm install -g graceful-fs@4.1.10 --save
  121. npm install -g minimatch@3.0.3 --save
  122. exit 0
  123. EOF
  124. chmod +x /root/install-nodejs.sh
  125. /root/install-nodejs.sh
  126. if [ ! "$?" = "0" ]; then
  127. rm -f /root/install-nodejs.sh
  128. exit 7632572
  129. fi
  130. rm -f /root/install-nodejs.sh
  131. if [ $1 ]; then
  132. if ! grep "install_${1}" $NODEJS_INSTALLED_APPS_FILE; then
  133. echo "install_${1}" >> $NODEJS_INSTALLED_APPS_FILE
  134. fi
  135. fi
  136. mark_completed $FUNCNAME
  137. }
  138. # NOTE: deliberately there is no "exit 0"