freedombone-app-ipfs 18KB

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