freedombone-app-ipfs 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # ipfs 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. VARIANTS=''
  31. IN_DEFAULT_INSTALL=0
  32. SHOW_ON_ABOUT=0
  33. IPFS_GO_REPO_BASE="github.com/ipfs/go-ipfs"
  34. IPFS_GO_REPO='https://github.com/ipfs/go-ipfs'
  35. IPFS_COMMIT='6fdfaaf6e4783ae1be7b348e7a6bc0640982c7df'
  36. IPFS_PORT=4001
  37. IPFS_NODE_VERSION='6.2.2'
  38. IPFS_N_VERSION='2.1.4'
  39. IPFS_JS_VERSION='0.14.3'
  40. IPFS_JS_RONIN_VERSION='0.3.11'
  41. IPFS_KEY_LENGTH=2048
  42. IPFS_GO_VERSION=0.4.2
  43. ipfs_variables=(IPFS_GO_VERSION
  44. IPFS_KEY_LENGTH
  45. IPFS_PORT)
  46. function logging_on_ipfs {
  47. echo -n ''
  48. }
  49. function logging_off_ipfs {
  50. echo -n ''
  51. }
  52. function install_interactive_ipfs {
  53. echo -n ''
  54. APP_INSTALLED=1
  55. }
  56. function reconfigure_ipfs {
  57. echo -n ''
  58. }
  59. function upgrade_ipfs_go {
  60. CURR_IPFS_COMMIT=$(get_completion_param "ipfs commit")
  61. if [[ "$CURR_IPFS_COMMIT" == "$IPFS_COMMIT" ]]; then
  62. return
  63. fi
  64. if [[ $(app_is_installed ipfs_go) == "0" ]]; then
  65. return
  66. fi
  67. function_check set_repo_commit
  68. set_repo_commit $GOPATH/src/github.com/ipfs/go-ipfs "ipfs commit" "$IPFS_COMMIT" $IPFS_REPO
  69. }
  70. function upgrade_ipfs_js {
  71. if [[ $(app_is_installed ipfs_js) == "0" ]]; then
  72. return
  73. fi
  74. npm cache clean -f
  75. npm install -g n
  76. n ${IPFS_NODE_VERSION}
  77. npm install ronin@${IPFS_JS_RONIN_VERSION} --global
  78. npm install ipfs@${IPFS_JS_VERSION} --global
  79. }
  80. function upgrade_ipfs {
  81. upgrade_ipfs_js
  82. upgrade_ipfs_go
  83. }
  84. function backup_local_ipfs {
  85. if ! grep -q "Admin user" $COMPLETION_FILE; then
  86. return
  87. fi
  88. ADMIN_USERNAME=$(get_completion_param "Admin user")
  89. source_directory=/home/$ADMIN_USERNAME/.ipfs
  90. if [ -d $source_directory ]; then
  91. dest_directory=ipfs
  92. function_check backup_directory_to_usb
  93. backup_directory_to_usb $source_directory $dest_directory
  94. fi
  95. }
  96. function restore_local_ipfs {
  97. if ! grep -q "Admin user" $COMPLETION_FILE; then
  98. return
  99. fi
  100. if [ -d $USB_MOUNT/backup/ipfs ]; then
  101. echo $"Restoring IPFS"
  102. temp_restore_dir=/root/tempipfs
  103. function_check restore_directory_from_usb
  104. restore_directory_from_usb $temp_restore_dir ipfs
  105. ADMIN_USERNAME=$(get_completion_param "Admin user")
  106. cp -rf $temp_restore_dir/home/$ADMIN_USERNAME/.ipfs/* /home/$ADMIN_USERNAME/.ipfs
  107. if [ ! "$?" = "0" ]; then
  108. rm -rf $temp_restore_dir
  109. function_check set_user_permissions
  110. set_user_permissions
  111. function_check backup_unmount_drive
  112. backup_unmount_drive
  113. exit 27627
  114. fi
  115. rm -rf $temp_restore_dir
  116. echo $"Restore of IPFS complete"
  117. fi
  118. }
  119. function backup_remote_ipfs {
  120. if ! grep -q "Admin user" $COMPLETION_FILE; then
  121. return
  122. fi
  123. ADMIN_USERNAME=$(get_completion_param "Admin user")
  124. if [ -d /home/$ADMIN_USERNAME/.ipfs ]; then
  125. echo $"Backing up IPFS"
  126. backup_directory_to_friend /home/$ADMIN_USERNAME/.ipfs ipfs
  127. echo $"Backup of IPFS complete"
  128. fi
  129. }
  130. function restore_remote_ipfs {
  131. if [ -d $SERVER_DIRECTORY/backup/ipfs ]; then
  132. echo $"Restoring IPFS"
  133. temp_restore_dir=/root/tempipfs
  134. function_check restore_directory_from_friend
  135. restore_directory_from_friend $temp_restore_dir ipfs
  136. cp -rf $temp_restore_dir/home/$ADMIN_USERNAME/.ipfs/* /home/$ADMIN_USERNAME/.ipfs
  137. if [ ! "$?" = "0" ]; then
  138. function_check set_user_permissions
  139. set_user_permissions
  140. rm -rf $temp_restore_dir
  141. exit 276357
  142. fi
  143. rm -rf $temp_restore_dir
  144. echo $"Restore of IPFS complete"
  145. fi
  146. }
  147. function remove_ipfs_go {
  148. systemctl stop ipfs
  149. systemctl disable ipfs
  150. systemctl daemon-reload
  151. rm /etc/systemd/system/ipfs.service
  152. systemctl daemon-reload
  153. rm -rf $GOPATH/src/github.com/ipfs
  154. firewall_remove $IPFS_PORT tcp
  155. remove_completion_param install_ipfs
  156. remove_completion_param configure_firewall_for_ipfs
  157. sed -i '/ipfs/d' $COMPLETION_FILE
  158. }
  159. function remove_ipfs_js {
  160. systemctl stop ipfs
  161. systemctl disable ipfs
  162. rm /etc/systemd/system/ipfs.service
  163. systemctl daemon-reload
  164. npm uninstall ipfs --global
  165. npm uninstall ronin --global
  166. firewall_remove $IPFS_PORT tcp
  167. sed -i '/install_ipfs/d' $COMPLETION_FILE
  168. sed -i '/ipfs/d' $COMPLETION_FILE
  169. sed -i '/configure_firewall_for_ipfs/d' $COMPLETION_FILE
  170. }
  171. function remove_ipfs {
  172. remove_ipfs_js
  173. remove_ipfs_go
  174. }
  175. function configure_firewall_for_ipfs {
  176. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  177. return
  178. fi
  179. if [[ $ONION_ONLY != "no" ]]; then
  180. return
  181. fi
  182. firewall_add IPFS $IPFS_PORT tcp
  183. mark_completed $FUNCNAME
  184. }
  185. function mesh_install_ipfs_js {
  186. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  187. return
  188. fi
  189. chroot ${rootdir} apt-get -yq install nodejs curl
  190. chroot ${rootdir} apt-get -yq install libpam0g-dev fuse
  191. if [ ! -f ${rootdir}/usr/bin/nodejs ]; then
  192. echo $'nodejs was not installed'
  193. exit 63962
  194. fi
  195. cat <<EOF > ${rootdir}/root/install-ipfs.sh
  196. #!/bin/bash
  197. PATH="/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/bin"
  198. NODE_PATH="/usr/lib/node_modules"
  199. cp /usr/bin/nodejs /usr/local/bin/node
  200. cp /usr/bin/nodejs /usr/bin/node
  201. /usr/bin/curl -0 -L https://npmjs.org/install.sh | sh
  202. npm install -g n@${IPFS_N_VERSION} --save
  203. n ${IPFS_NODE_VERSION}
  204. npm install -g ronin@${IPFS_JS_RONIN_VERSION} --save
  205. npm install -g ipfs@${IPFS_JS_VERSION} --save
  206. exit 0
  207. EOF
  208. chroot ${rootdir} /bin/chmod +x /root/install-ipfs.sh
  209. chroot ${rootdir} /root/install-ipfs.sh
  210. rm -f ${rootdir}/root/install-ipfs.sh
  211. IPFS_PATH=/usr/bin
  212. if [ ! -f ${rootdir}$IPFS_PATH/jsipfs ]; then
  213. exit 637292
  214. fi
  215. # directories to mount to
  216. if [ ! -d ${rootdir}/ipfs ]; then
  217. chroot ${rootdir} /bin/mkdir /ipfs
  218. chroot ${rootdir} /bin/mkdir /ipns
  219. chroot ${rootdir} /bin/chown $MY_USERNAME:$MY_USERNAME /ipfs
  220. chroot ${rootdir} /bin/chown $MY_USERNAME:$MY_USERNAME /ipns
  221. fi
  222. if [ -f ${rootdir}/etc/fuse.conf ]; then
  223. chroot ${rootdir} /bin/chown $MY_USERNAME:$MY_USERNAME /etc/fuse.conf
  224. fi
  225. if [ -f ${rootdir}/dev/fuse ]; then
  226. chroot ${rootdir} /bin/chown $MY_USERNAME:$MY_USERNAME /dev/fuse
  227. fi
  228. IPFS_DAEMON_NAME=ipfs
  229. IPFS_DAEMON_FILE=${rootdir}/etc/systemd/system/${IPFS_DAEMON_NAME}.service
  230. echo '[Unit]' > $IPFS_DAEMON_FILE
  231. echo 'Description=IPFS javascript daemon' >> $IPFS_DAEMON_FILE
  232. echo 'After=syslog.target' >> $IPFS_DAEMON_FILE
  233. echo 'After=network.target' >> $IPFS_DAEMON_FILE
  234. echo '' >> $IPFS_DAEMON_FILE
  235. echo '[Service]' >> $IPFS_DAEMON_FILE
  236. echo 'Type=simple' >> $IPFS_DAEMON_FILE
  237. echo "User=$MY_USERNAME" >> $IPFS_DAEMON_FILE
  238. echo "Group=$MY_USERNAME" >> $IPFS_DAEMON_FILE
  239. echo "WorkingDirectory=/home/$MY_USERNAME" >> $IPFS_DAEMON_FILE
  240. echo "ExecStart=${IPFS_PATH}/jsipfs daemon --mount" >> $IPFS_DAEMON_FILE
  241. echo 'Restart=on-failure' >> $IPFS_DAEMON_FILE
  242. echo "Environment=\"USER=$MY_USERNAME\" \"HOME=/home/$MY_USERNAME\"" >> $IPFS_DAEMON_FILE
  243. echo '' >> $IPFS_DAEMON_FILE
  244. echo '[Install]' >> $IPFS_DAEMON_FILE
  245. echo 'WantedBy=multi-user.target' >> $IPFS_DAEMON_FILE
  246. chroot ${rootdir} systemctl enable ${IPFS_DAEMON_NAME}
  247. mark_completed $FUNCNAME
  248. }
  249. function install_ipfs_js {
  250. if [ $INSTALLING_MESH ]; then
  251. mesh_install_ipfs_js
  252. return
  253. fi
  254. if [[ $(app_is_installed ipfs_js) == "1" ]]; then
  255. return
  256. fi
  257. apt-get -yq install nodejs
  258. apt-get -yq install npm
  259. apt-get -yq install libpam0g-dev fuse
  260. if [ ! -f /usr/bin/nodejs ]; then
  261. echo $'nodejs was not installed'
  262. exit 63962
  263. fi
  264. cp /usr/bin/nodejs /usr/local/bin/node
  265. cp /usr/bin/nodejs /usr/bin/node
  266. /usr/bin/curl -0 -L https://npmjs.org/install.sh | sh
  267. /usr/local/bin/npm install -g n@${IPFS_N_VERSION}
  268. /usr/local/bin/n ${IPFS_NODE_VERSION}
  269. /usr/local/bin/npm install -g ronin@${IPFS_JS_RONIN_VERSION}
  270. /usr/local/bin/npm install -g ipfs@${IPFS_JS_VERSION}
  271. IPFS_PATH=/usr/bin
  272. if [ ! -f $IPFS_PATH/jsipfs ]; then
  273. exit 637292
  274. fi
  275. # initialise
  276. su -c "$IPFS_PATH/jsipfs init -b $IPFS_KEY_LENGTH" - $MY_USERNAME
  277. if [ ! -d /home/$MY_USERNAME/.ipfs ]; then
  278. echo "IPFS could not be initialised for user $MY_USERNAME"
  279. exit 7358
  280. fi
  281. # directories to mount to
  282. if [ ! -d /ipfs ]; then
  283. mkdir /ipfs
  284. mkdir /ipns
  285. chown $MY_USERNAME:$MY_USERNAME /ipfs
  286. chown $MY_USERNAME:$MY_USERNAME /ipns
  287. fi
  288. if [ -f /etc/fuse.conf ]; then
  289. chown $MY_USERNAME:$MY_USERNAME /etc/fuse.conf
  290. fi
  291. if [ -f /dev/fuse ]; then
  292. chown $MY_USERNAME:$MY_USERNAME /dev/fuse
  293. fi
  294. IPFS_DAEMON_NAME=ipfs
  295. IPFS_DAEMON_FILE=/etc/systemd/system/${IPFS_DAEMON_NAME}.service
  296. echo '[Unit]' > $IPFS_DAEMON_FILE
  297. echo 'Description=IPFS javascript daemon' >> $IPFS_DAEMON_FILE
  298. echo 'After=syslog.target' >> $IPFS_DAEMON_FILE
  299. echo 'After=network.target' >> $IPFS_DAEMON_FILE
  300. echo '' >> $IPFS_DAEMON_FILE
  301. echo '[Service]' >> $IPFS_DAEMON_FILE
  302. echo 'Type=simple' >> $IPFS_DAEMON_FILE
  303. echo "User=$MY_USERNAME" >> $IPFS_DAEMON_FILE
  304. echo "Group=$MY_USERNAME" >> $IPFS_DAEMON_FILE
  305. echo "WorkingDirectory=/home/$MY_USERNAME" >> $IPFS_DAEMON_FILE
  306. echo "ExecStart=${IPFS_PATH}/jsipfs daemon --mount" >> $IPFS_DAEMON_FILE
  307. echo 'Restart=on-failure' >> $IPFS_DAEMON_FILE
  308. echo "Environment=\"USER=$MY_USERNAME\" \"HOME=/home/$MY_USERNAME\"" >> $IPFS_DAEMON_FILE
  309. echo '' >> $IPFS_DAEMON_FILE
  310. echo '[Install]' >> $IPFS_DAEMON_FILE
  311. echo 'WantedBy=multi-user.target' >> $IPFS_DAEMON_FILE
  312. systemctl enable ${IPFS_DAEMON_NAME}
  313. systemctl daemon-reload
  314. systemctl restart ${IPFS_DAEMON_NAME}
  315. if [ -d /etc/avahi ]; then
  316. su -c "echo $($IPFS_PATH/jsipfs id | grep '\"ID\":' | awk -F '\"' '{print $4}') > /tmp/ipfsid" - $MY_USERNAME
  317. if [ ! -f /tmp/ipfsid ]; then
  318. echo 'No IPFS identity was created'
  319. exit 37895
  320. fi
  321. IPFS_PEER_ID=$(cat /tmp/ipfsid)
  322. if [ ${#IPFS_PEER_ID} -lt 10 ]; then
  323. echo 'Invalid IPFS peer ID'
  324. echo "$IPFS_PEER_ID"
  325. exit 74782
  326. fi
  327. rm /tmp/ipfsid
  328. fi
  329. function_check configure_firewall_for_ipfs
  330. configure_firewall_for_ipfs
  331. install_completed ipfs_js
  332. }
  333. function mesh_install_ipfs_go {
  334. chroot ${rootdir} apt-get -yq install libpam0g-dev fuse wget
  335. mesh_upgrade_golang
  336. IPFS_ARCH=
  337. IPFS_PATH=/usr/bin
  338. if [ ! -d $rootdir$INSTALL_DIR/ipfs ]; then
  339. mkdir -p $rootdir$INSTALL_DIR/ipfs
  340. fi
  341. cd $rootdir$INSTALL_DIR/ipfs
  342. if [[ $ARCHITECTURE == *"386" || $ARCHITECTURE == *"686" ]]; then
  343. IPFS_ARCH=386
  344. fi
  345. if [[ $ARCHITECTURE == *"amd64" || $ARCHITECTURE == "x86_64" ]]; then
  346. IPFS_ARCH=amd64
  347. fi
  348. if [[ $ARCHITECTURE == *"arm"* ]]; then
  349. IPFS_ARCH=arm
  350. fi
  351. if [ ! $IPFS_ARCH ]; then
  352. echo $'No architecture specified'
  353. ARCHITECTURE=$(uname -m)
  354. if [[ $ARCHITECTURE == "arm"* ]]; then
  355. IPFS_ARCH=arm
  356. echo $"Using $IPFS_ARCH"
  357. fi
  358. if [[ $ARCHITECTURE == "amd"* || $ARCHITECTURE == "x86_64" ]]; then
  359. IPFS_ARCH=amd64
  360. echo $"Using $IPFS_ARCH"
  361. fi
  362. if [[ $ARCHITECTURE == *"386" || $ARCHITECTURE == *"686" ]]; then
  363. IPFS_ARCH=386
  364. echo $"Using $IPFS_ARCH"
  365. fi
  366. fi
  367. IPFS_FILE=go-ipfs_v${IPFS_GO_VERSION}_linux-${IPFS_ARCH}.tar.gz
  368. wget https://ipfs.io/ipns/dist.ipfs.io/go-ipfs/v${IPFS_GO_VERSION}/${IPFS_FILE}
  369. if [ ! -f $rootdir$INSTALL_DIR/ipfs/${IPFS_FILE} ]; then
  370. echo $'IPFS package could not be downloaded'
  371. exit 63725
  372. fi
  373. tar -xzvf ${IPFS_FILE}
  374. if [ ! -f $rootdir$INSTALL_DIR/ipfs/go-ipfs/ipfs ]; then
  375. echo $"ipfs was not found in downloaded package"
  376. exit 638235
  377. fi
  378. chroot "$rootdir" /bin/cp $INSTALL_DIR/ipfs/go-ipfs/ipfs $IPFS_PATH
  379. if [ ! -f $rootdir$IPFS_PATH/ipfs ]; then
  380. echo $'IPFS was not installed'
  381. exit 63722
  382. fi
  383. IPFS_USER_DAEMON=${rootdir}/home/${MY_USERNAME}/.config/systemd/user/ipfs.service
  384. mkdir -p ${rootdir}/home/${MY_USERNAME}/.config/systemd/user
  385. echo '[Unit]' > $IPFS_USER_DAEMON
  386. echo 'Description=IPFS go daemon' >> $IPFS_USER_DAEMON
  387. echo '' >> $IPFS_USER_DAEMON
  388. echo '[Service]' >> $IPFS_USER_DAEMON
  389. echo "ExecStart=$IPFS_PATH/ipfs daemon" >> $IPFS_USER_DAEMON
  390. echo 'Restart=on-failure' >> $IPFS_USER_DAEMON
  391. echo 'RestartSec=10' >> $IPFS_USER_DAEMON
  392. echo '' >> $IPFS_USER_DAEMON
  393. echo '[Install]' >> $IPFS_USER_DAEMON
  394. echo 'WantedBy=default.target' >> $IPFS_USER_DAEMON
  395. chroot ${rootdir} /bin/chown -R $MY_USERNAME:$MY_USERNAME /home/${MY_USERNAME}/.config
  396. }
  397. function install_ipfs_go {
  398. if [ $INSTALLING_MESH ]; then
  399. mesh_install_ipfs_go
  400. return
  401. fi
  402. if [[ $(app_is_installed ipfs_go) == "1" ]]; then
  403. return
  404. fi
  405. apt-get -yq install golang libpam0g-dev fuse
  406. if [ ! -d /home/git ]; then
  407. # add a gogs user account
  408. adduser --disabled-login --gecos 'Gogs' git
  409. if [ ! -d /home/git ]; then
  410. echo $"/home/git directory not created"
  411. exit 735272
  412. fi
  413. # install Go
  414. if ! grep -q "export GOPATH=" ~/.bashrc; then
  415. echo "export GOPATH=$GOPATH" >> ~/.bashrc
  416. else
  417. sed -i "s|export GOPATH=.*|export GOPATH=$GOPATH|g" ~/.bashrc
  418. fi
  419. systemctl set-environment GOPATH=$GOPATH
  420. if ! grep -q "systemctl set-environment GOPATH=" ~/.bashrc; then
  421. echo "systemctl set-environment GOPATH=$GOPATH" >> ~/.bashrc
  422. else
  423. sed -i "s|systemctl set-environment GOPATH=.*|systemctl set-environment GOPATH=$GOPATH|g" ~/.bashrc
  424. fi
  425. if [ ! -d $GOPATH ]; then
  426. mkdir -p $GOPATH
  427. fi
  428. fi
  429. IPFS_PATH=$GOPATH/bin
  430. export PATH="$GOPATH/bin:$PATH:"
  431. if ! grep -q 'GOPATH/bin' ~/.bashrc; then
  432. echo 'export PATH="$GOPATH/bin:$PATH:";' >> ~/.bashrc
  433. else
  434. sed -i "s|systemctl set-environment GOPATH=.*|systemctl set-environment GOPATH=$GOPATH|g" ~/.bashrc
  435. fi
  436. # set gopath for the user
  437. if ! grep -q "GOPATH=" /home/$MY_USERNAME/.bashrc; then
  438. echo "export GOPATH=$GOPATH" >> /home/$MY_USERNAME/.bashrc
  439. echo 'export PATH="$GOPATH/bin:$PATH:";' >> /home/$MY_USERNAME/.bashrc
  440. else
  441. sed -i "s|export GOPATH=.*|export GOPATH=$GOPATH|g" /home/$MY_USERNAME/.bashrc
  442. fi
  443. chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/.bashrc
  444. go get -u ${IPFS_GO_REPO_BASE}/cmd/ipfs
  445. if [ ! "$?" = "0" ]; then
  446. exit 8242
  447. fi
  448. if [ ! -d $GOPATH/src/$IPFS_GO_REPO_BASE ]; then
  449. echo $'go get failed to get ipfs'
  450. exit 63923
  451. fi
  452. cd $GOPATH/src/$IPFS_GO_REPO_BASE
  453. git checkout $IPFS_COMMIT -b $IPFS_COMMIT
  454. if [ ! "$?" = "0" ]; then
  455. exit 735639
  456. fi
  457. set_completion_param "ipfs commit" "$IPFS_COMMIT"
  458. make install
  459. if [ ! "$?" = "0" ]; then
  460. exit 547242
  461. fi
  462. # initialise
  463. su -c "$IPFS_PATH/ipfs init -b 2048" - $MY_USERNAME
  464. if [ ! -d /home/$MY_USERNAME/.ipfs ]; then
  465. echo "IPFS could not be initialised for user $MY_USERNAME"
  466. exit 7358
  467. fi
  468. # directories to mount to
  469. if [ ! -d /ipfs ]; then
  470. mkdir /ipfs
  471. mkdir /ipns
  472. chown $MY_USERNAME:$MY_USERNAME /ipfs
  473. chown $MY_USERNAME:$MY_USERNAME /ipns
  474. fi
  475. if [ -f /etc/fuse.conf ]; then
  476. chown $MY_USERNAME:$MY_USERNAME /etc/fuse.conf
  477. fi
  478. if [ -f /dev/fuse ]; then
  479. chown $MY_USERNAME:$MY_USERNAME /dev/fuse
  480. fi
  481. echo '[Unit]' > /etc/systemd/system/ipfs.service
  482. echo 'Description=IPFS go daemon' >> /etc/systemd/system/ipfs.service
  483. echo 'After=syslog.target' >> /etc/systemd/system/ipfs.service
  484. echo 'After=network.target' >> /etc/systemd/system/ipfs.service
  485. echo '' >> /etc/systemd/system/ipfs.service
  486. echo '[Service]' >> /etc/systemd/system/ipfs.service
  487. echo 'Type=simple' >> /etc/systemd/system/ipfs.service
  488. echo "User=$MY_USERNAME" >> /etc/systemd/system/ipfs.service
  489. echo "Group=$MY_USERNAME" >> /etc/systemd/system/ipfs.service
  490. echo "WorkingDirectory=/home/$MY_USERNAME" >> /etc/systemd/system/ipfs.service
  491. echo "ExecStart=$IPFS_PATH/ipfs daemon --mount" >> /etc/systemd/system/ipfs.service
  492. echo 'Restart=on-failure' >> /etc/systemd/system/ipfs.service
  493. echo "Environment=\"USER=$MY_USERNAME\" \"HOME=/home/$MY_USERNAME\" \"GOPATH=$GOPATH\" \"GVM_ROOT=$GVM_HOME\"" >> /etc/systemd/system/ipfs.service
  494. echo '' >> /etc/systemd/system/ipfs.service
  495. echo '[Install]' >> /etc/systemd/system/ipfs.service
  496. echo 'WantedBy=multi-user.target' >> /etc/systemd/system/ipfs.service
  497. systemctl enable ipfs
  498. systemctl daemon-reload
  499. systemctl restart ipfs
  500. if [ -d /etc/avahi ]; then
  501. su -c "echo $($IPFS_PATH/ipfs id | grep '\"ID\":' | awk -F '\"' '{print $4}') > /tmp/ipfsid" - $MY_USERNAME
  502. if [ ! -f /tmp/ipfsid ]; then
  503. echo 'No IPFS identity was created'
  504. exit 37895
  505. fi
  506. IPFS_PEER_ID=$(cat /tmp/ipfsid)
  507. if [ ${#IPFS_PEER_ID} -lt 10 ]; then
  508. echo 'Invalid IPFS peer ID'
  509. echo "$IPFS_PEER_ID"
  510. exit 74782
  511. fi
  512. # Add an avahi service
  513. function_check create_avahi_service
  514. create_avahi_service ipfs_id "ipfs_id" 'udp' $IPFS_PORT "$IPFS_PEER_ID:none"
  515. rm /tmp/ipfsid
  516. fi
  517. function_check configure_firewall_for_ipfs
  518. configure_firewall_for_ipfs
  519. install_completed ipfs_go
  520. }
  521. function install_ipfs {
  522. #install_ipfs_js
  523. install_ipfs_go
  524. APP_INSTALLED=1
  525. }