freedombone-app-cryptpad 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # cryptpad application
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2017 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='full full-vim writer'
  31. IN_DEFAULT_INSTALL=0
  32. SHOW_ON_ABOUT=1
  33. SHOW_ICANN_ADDRESS_ON_ABOUT=0
  34. CRYPTPAD_ONION_PORT=8119
  35. CRYPTPAD_PORT=9003
  36. CRYPTPAD_REPO="https://github.com/xwiki-labs/cryptpad"
  37. CRYPTPAD_COMMIT='52d344c3d1404d75d2bf4ae8845e5c024e85ec7f'
  38. CRYPTPAD_DIR=/etc/cryptpad
  39. cryptpad_variables=(ONION_ONLY)
  40. function logging_on_cryptpad {
  41. echo -n ''
  42. }
  43. function logging_off_cryptpad {
  44. echo -n ''
  45. }
  46. function remove_user_cryptpad {
  47. remove_username="$1"
  48. }
  49. function add_user_cryptpad {
  50. new_username="$1"
  51. new_user_password="$2"
  52. echo '0'
  53. }
  54. function install_interactive_cryptpad {
  55. echo -n ''
  56. APP_INSTALLED=1
  57. }
  58. function change_password_cryptpad {
  59. curr_username="$1"
  60. new_user_password="$2"
  61. }
  62. function reconfigure_cryptpad {
  63. if [ -d $CRYPTPAD_DIR/datastore ]; then
  64. rm -rf $CRYPTPAD_DIR/datastore
  65. fi
  66. }
  67. function upgrade_cryptpad {
  68. CURR_CRYPTPAD_COMMIT=$(get_completion_param "cryptpad commit")
  69. if [[ "$CURR_CRYPTPAD_COMMIT" == "$CRYPTPAD_COMMIT" ]]; then
  70. return
  71. fi
  72. systemctl stop cryptpad
  73. # update to the next commit
  74. function_check set_repo_commit
  75. set_repo_commit $CRYPTPAD_DIR "cryptpad commit" "$CRYPTPAD_COMMIT" $CRYPTPAD_REPO
  76. cd $CRYPTPAD_DIR
  77. npm install
  78. chown -R cryptpad:cryptpad $CRYPTPAD_DIR
  79. su -c 'bower install' - cryptpad
  80. systemctl start cryptpad
  81. }
  82. function backup_local_cryptpad {
  83. source_directory=$CRYPTPAD_DIR/datastore
  84. if [ -d $source_directory ]; then
  85. systemctl stop cryptpad
  86. dest_directory=cryptpad
  87. function_check suspend_site
  88. suspend_site cryptpad
  89. function_check backup_directory_to_usb
  90. backup_directory_to_usb $source_directory $dest_directory
  91. function_check restart_site
  92. restart_site
  93. systemctl start cryptpad
  94. fi
  95. }
  96. function restore_local_cryptpad {
  97. if [ -d $CRYPTPAD_DIR ]; then
  98. systemctl stop cryptpad
  99. temp_restore_dir=/root/tempcryptpad
  100. function_check restore_directory_from_usb
  101. restore_directory_from_usb $temp_restore_dir cryptpad
  102. if [ ! -d $temp_restore_dir$CRYPTPAD_DIR/datastore ]; then
  103. if [ -d $temp_restore_dir ]; then
  104. cp -r $temp_restore_dir/* $CRYPTPAD_DIR/datastore/
  105. else
  106. systemctl start cryptpad
  107. echo 'Failed to restore cryptpad'
  108. rm -rf $temp_restore_dir
  109. exit 8736529
  110. fi
  111. else
  112. cp -r $temp_restore_dir$CRYPTPAD_DIR/datastore/* $CRYPTPAD_DIR/datastore/
  113. fi
  114. rm -rf $temp_restore_dir
  115. systemctl start cryptpad
  116. fi
  117. }
  118. function backup_remote_cryptpad {
  119. if grep -q "cryptpad domain" $COMPLETION_FILE; then
  120. temp_backup_dir=$CRYPTPAD_DIR/datastore
  121. if [ -d $temp_backup_dir ]; then
  122. systemctl stop cryptpad
  123. function_check suspend_site
  124. suspend_site cryptpad
  125. echo $"Backing up Cryptpad installation"
  126. function_check backup_directory_to_friend
  127. backup_directory_to_friend $temp_backup_dir cryptpad
  128. function_check restart_site
  129. restart_site
  130. systemctl start cryptpad
  131. else
  132. echo $"cryptpad domain specified but not found in ${temp_backup_dir}"
  133. fi
  134. fi
  135. }
  136. function restore_remote_cryptpad {
  137. if [ -d $CRYPTPAD_DIR ]; then
  138. systemctl stop cryptpad
  139. temp_restore_dir=/root/tempcryptpad
  140. function_check restore_directory_from_usb
  141. restore_directory_from_friend $temp_restore_dir cryptpad
  142. if [ ! -d $temp_restore_dir$CRYPTPAD_DIR/datastore ]; then
  143. if [ -d $temp_restore_dir ]; then
  144. cp -r $temp_restore_dir/* $CRYPTPAD_DIR/datastore/
  145. else
  146. systemctl start cryptpad
  147. echo 'Failed to restore cryptpad'
  148. rm -rf $temp_restore_dir
  149. return
  150. fi
  151. else
  152. cp -r $temp_restore_dir$CRYPTPAD_DIR/datastore/* $CRYPTPAD_DIR/datastore/
  153. fi
  154. rm -rf $temp_restore_dir
  155. systemctl start cryptpad
  156. fi
  157. }
  158. function remove_cryptpad {
  159. systemctl stop cryptpad
  160. systemctl disable cryptpad
  161. if [ -f /etc/systemd/system/cryptpad.service ]; then
  162. rm /etc/systemd/system/cryptpad.service
  163. fi
  164. systemctl daemon-reload
  165. function_check remove_nodejs
  166. remove_nodejs cryptpad
  167. nginx_dissite cryptpad
  168. if [ -d $CRYPTPAD_DIR ]; then
  169. rm -rf $CRYPTPAD_DIR
  170. fi
  171. if [ -f /etc/nginx/sites-available/cryptpad ]; then
  172. rm /etc/nginx/sites-available/cryptpad
  173. fi
  174. function_check remove_onion_service
  175. remove_onion_service cryptpad ${CRYPTPAD_ONION_PORT}
  176. remove_app cryptpad
  177. remove_completion_param install_cryptpad
  178. sed -i '/cryptpad/d' $COMPLETION_FILE
  179. userdel -r cryptpad
  180. }
  181. function mesh_install_cryptpad {
  182. if [[ $VARIANT != "meshclient" && $VARIANT != "meshusb" ]]; then
  183. return
  184. fi
  185. if [ ! -d $rootdir/var/www/cryptpad ]; then
  186. mkdir $rootdir/var/www/cryptpad
  187. fi
  188. if [ -d $rootdir$CRYPTPAD_DIR ]; then
  189. rm -rf $rootdir$CRYPTPAD_DIR
  190. fi
  191. git_clone $CRYPTPAD_REPO $rootdir$CRYPTPAD_DIR
  192. if [ ! -d $rootdir$CRYPTPAD_DIR ]; then
  193. echo $'Unable to clone cryptpad repo'
  194. exit 783251
  195. fi
  196. # an unprivileged user to run as
  197. chroot "$rootdir" useradd -d $CRYPTPAD_DIR/ cryptpad
  198. cd $rootdir$CRYPTPAD_DIR
  199. git checkout $CRYPTPAD_COMMIT -b $CRYPTPAD_COMMIT
  200. chroot "$rootdir" chown -R cryptpad:cryptpad $CRYPTPAD_DIR
  201. cryptpad_nginx_site=$rootdir/etc/nginx/sites-available/cryptpad
  202. echo 'server {' > $cryptpad_nginx_site
  203. echo " listen 80 default_server;" >> $cryptpad_nginx_site
  204. echo " server_name P${PEER_ID}.local;" >> $cryptpad_nginx_site
  205. echo '' >> $cryptpad_nginx_site
  206. echo ' # Logs' >> $cryptpad_nginx_site
  207. echo ' access_log /dev/null;' >> $cryptpad_nginx_site
  208. echo ' error_log /dev/null;' >> $cryptpad_nginx_site
  209. echo '' >> $cryptpad_nginx_site
  210. echo ' # Root' >> $cryptpad_nginx_site
  211. echo " root $CRYPTPAD_DIR;" >> $cryptpad_nginx_site
  212. echo '' >> $cryptpad_nginx_site
  213. echo ' index index.html;' >> $cryptpad_nginx_site
  214. echo '' >> $cryptpad_nginx_site
  215. echo ' add_header X-XSS-Protection "1; mode=block";' >> $cryptpad_nginx_site
  216. echo ' add_header X-Content-Type-Options nosniff;' >> $cryptpad_nginx_site
  217. echo ' add_header X-Frame-Options SAMEORIGIN;' >> $cryptpad_nginx_site
  218. echo '' >> $cryptpad_nginx_site
  219. echo ' if ($uri = /pad/inner.html) {' >> $cryptpad_nginx_site
  220. echo " set \$scriptSrc \"'self' 'unsafe-eval' 'unsafe-inline'\";" >> $cryptpad_nginx_site
  221. echo ' }' >> $cryptpad_nginx_site
  222. echo '' >> $cryptpad_nginx_site
  223. echo ' location = /cryptpad_websocket {' >> $cryptpad_nginx_site
  224. echo " proxy_pass http://localhost:$CRYPTPAD_PORT;" >> $cryptpad_nginx_site
  225. echo ' proxy_set_header X-Real-IP $remote_addr;' >> $cryptpad_nginx_site
  226. echo ' proxy_set_header Host $host;' >> $cryptpad_nginx_site
  227. echo ' proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;' >> $cryptpad_nginx_site
  228. echo '' >> $cryptpad_nginx_site
  229. echo ' # WebSocket support (nginx 1.4)' >> $cryptpad_nginx_site
  230. echo ' proxy_http_version 1.1;' >> $cryptpad_nginx_site
  231. echo ' proxy_set_header Upgrade $http_upgrade;' >> $cryptpad_nginx_site
  232. echo ' proxy_set_header Connection upgrade;' >> $cryptpad_nginx_site
  233. echo ' }' >> $cryptpad_nginx_site
  234. echo '' >> $cryptpad_nginx_site
  235. echo ' location ^~ /customize.dist/ {' >> $cryptpad_nginx_site
  236. echo ' # This is needed in order to prevent infinite recursion between /customize/ and the root' >> $cryptpad_nginx_site
  237. echo ' }' >> $cryptpad_nginx_site
  238. echo ' location ^~ /customize/ {' >> $cryptpad_nginx_site
  239. echo ' rewrite ^/customize/(.*)$ $1 break;' >> $cryptpad_nginx_site
  240. echo ' try_files /customize/$uri /customize.dist/$uri;' >> $cryptpad_nginx_site
  241. echo ' }' >> $cryptpad_nginx_site
  242. echo ' location = /api/config {' >> $cryptpad_nginx_site
  243. echo ' default_type text/javascript;' >> $cryptpad_nginx_site
  244. echo ' rewrite ^.*$ /customize/api/config break;' >> $cryptpad_nginx_site
  245. echo ' }' >> $cryptpad_nginx_site
  246. echo '' >> $cryptpad_nginx_site
  247. echo ' location ^~ /blob/ {' >> $cryptpad_nginx_site
  248. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  249. echo ' }' >> $cryptpad_nginx_site
  250. echo '' >> $cryptpad_nginx_site
  251. echo ' location ^~ /register/ {' >> $cryptpad_nginx_site
  252. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  253. echo ' }' >> $cryptpad_nginx_site
  254. echo '' >> $cryptpad_nginx_site
  255. echo ' location ^~ /login/ {' >> $cryptpad_nginx_site
  256. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  257. echo ' }' >> $cryptpad_nginx_site
  258. echo '' >> $cryptpad_nginx_site
  259. echo ' location ^~ /about.html {' >> $cryptpad_nginx_site
  260. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  261. echo ' }' >> $cryptpad_nginx_site
  262. echo '' >> $cryptpad_nginx_site
  263. echo ' location ^~ /contact.html {' >> $cryptpad_nginx_site
  264. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  265. echo ' }' >> $cryptpad_nginx_site
  266. echo '' >> $cryptpad_nginx_site
  267. echo ' location ^~ /what-is-cryptpad.html {' >> $cryptpad_nginx_site
  268. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  269. echo ' }' >> $cryptpad_nginx_site
  270. echo '' >> $cryptpad_nginx_site
  271. echo ' location ~ ^/(register|login|settings|user|pad|drive|poll|slide|code|whiteboard|file|media)$ {' >> $cryptpad_nginx_site
  272. echo ' rewrite ^(.*)$ $1/ redirect;' >> $cryptpad_nginx_site
  273. echo ' }' >> $cryptpad_nginx_site
  274. echo '' >> $cryptpad_nginx_site
  275. echo ' try_files /www/$uri /www/$uri/index.html /customize/$uri;' >> $cryptpad_nginx_site
  276. echo '}' >> $cryptpad_nginx_site
  277. cd $rootdir$CRYPTPAD_DIR
  278. get_npm_arch
  279. cat <<EOF > $rootdir/usr/bin/install_cryptpad
  280. #!/bin/bash
  281. cd $CRYPTPAD_DIR
  282. npm install --arch=$NPM_ARCH --build-from-source
  283. npm install --arch=$NPM_ARCH -g bower@1.8.0
  284. chown -R cryptpad:cryptpad $CRYPTPAD_DIR
  285. su -c 'bower install' - cryptpad
  286. cp config.example.js config.js
  287. EOF
  288. chmod +x $rootdir/usr/bin/install_cryptpad
  289. chroot "$rootdir" /usr/bin/install_cryptpad
  290. if [ ! -f $rootdir$CRYPTPAD_DIR/config.js ]; then
  291. echo $'Cryptpad config file not found'
  292. exit 628252
  293. fi
  294. rm $rootdir/usr/bin/install_cryptpad
  295. sed -i "s|httpPort:.*|httpPort: $CRYPTPAD_PORT,|g" $rootdir$CRYPTPAD_DIR/config.js
  296. sed -i "s|// domain:|domain:|g" $rootdir$CRYPTPAD_DIR/config.js
  297. sed -i 's|openFileLimit:.*|openFileLimit: 1024,|g' $rootdir$CRYPTPAD_DIR/config.js
  298. sed -i "s|domain:.*|domain: 'http://P${PEER_ID}.local',|g" $rootdir$CRYPTPAD_DIR/config.js
  299. chroot "$rootdir" chown -R cryptpad:cryptpad $CRYPTPAD_DIR
  300. # daemon
  301. echo '[Unit]' > $rootdir/etc/systemd/system/cryptpad.service
  302. echo 'Description=Cryptpad' >> $rootdir/etc/systemd/system/cryptpad.service
  303. echo 'After=syslog.target' >> $rootdir/etc/systemd/system/cryptpad.service
  304. echo 'After=network.target' >> $rootdir/etc/systemd/system/cryptpad.service
  305. echo '' >> $rootdir/etc/systemd/system/cryptpad.service
  306. echo '[Service]' >> $rootdir/etc/systemd/system/cryptpad.service
  307. echo 'User=cryptpad' >> $rootdir/etc/systemd/system/cryptpad.service
  308. echo 'Group=cryptpad' >> $rootdir/etc/systemd/system/cryptpad.service
  309. echo "WorkingDirectory=$CRYPTPAD_DIR" >> $rootdir/etc/systemd/system/cryptpad.service
  310. echo "ExecStart=/usr/local/bin/node $CRYPTPAD_DIR/server.js" >> $rootdir/etc/systemd/system/cryptpad.service
  311. echo 'Environment=PATH=/usr/bin:/usr/local/bin' >> $rootdir/etc/systemd/system/cryptpad.service
  312. echo 'Environment=NODE_ENV=production' >> $rootdir/etc/systemd/system/cryptpad.service
  313. echo 'Restart=on-failure' >> $rootdir/etc/systemd/system/cryptpad.service
  314. echo '' >> $rootdir/etc/systemd/system/cryptpad.service
  315. echo '[Install]' >> $rootdir/etc/systemd/system/cryptpad.service
  316. echo 'WantedBy=multi-user.target' >> $rootdir/etc/systemd/system/cryptpad.service
  317. chroot "$rootdir" systemctl enable cryptpad.service
  318. }
  319. function install_cryptpad_main {
  320. if [[ $(app_is_installed cryptpad_main) == "1" ]]; then
  321. return
  322. fi
  323. if [ ! -d /var/www/cryptpad ]; then
  324. mkdir /var/www/cryptpad
  325. fi
  326. if [ -d $CRYPTPAD_DIR ]; then
  327. rm -rf $CRYPTPAD_DIR
  328. fi
  329. if [ -d /repos/cryptpad ]; then
  330. mkdir $CRYPTPAD_DIR
  331. cp -r -p /repos/cryptpad/. $CRYPTPAD_DIR
  332. cd $CRYPTPAD_DIR
  333. git pull
  334. else
  335. function_check git_clone
  336. git_clone $CRYPTPAD_REPO $CRYPTPAD_DIR
  337. fi
  338. if [ ! -d $CRYPTPAD_DIR ]; then
  339. echo $'Unable to clone cryptpad repo'
  340. exit 783251
  341. fi
  342. # an unprivileged user to run as
  343. useradd -d $CRYPTPAD_DIR/ cryptpad
  344. cd $CRYPTPAD_DIR
  345. git checkout $CRYPTPAD_COMMIT -b $CRYPTPAD_COMMIT
  346. set_completion_param "cryptpad commit" "$CRYPTPAD_COMMIT"
  347. chown -R cryptpad:cryptpad $CRYPTPAD_DIR
  348. CRYPTPAD_ONION_HOSTNAME=$(add_onion_service cryptpad 80 ${CRYPTPAD_ONION_PORT})
  349. cryptpad_nginx_site=/etc/nginx/sites-available/cryptpad
  350. echo 'server {' > $cryptpad_nginx_site
  351. echo " listen 127.0.0.1:$CRYPTPAD_ONION_PORT default_server;" >> $cryptpad_nginx_site
  352. echo " server_name $CRYPTPAD_ONION_HOSTNAME;" >> $cryptpad_nginx_site
  353. echo '' >> $cryptpad_nginx_site
  354. echo ' # Logs' >> $cryptpad_nginx_site
  355. echo ' access_log /dev/null;' >> $cryptpad_nginx_site
  356. echo ' error_log /dev/null;' >> $cryptpad_nginx_site
  357. echo '' >> $cryptpad_nginx_site
  358. echo ' # Root' >> $cryptpad_nginx_site
  359. echo " root $CRYPTPAD_DIR;" >> $cryptpad_nginx_site
  360. echo '' >> $cryptpad_nginx_site
  361. echo ' index index.html;' >> $cryptpad_nginx_site
  362. echo '' >> $cryptpad_nginx_site
  363. echo ' add_header X-XSS-Protection "1; mode=block";' >> $cryptpad_nginx_site
  364. echo ' add_header X-Content-Type-Options nosniff;' >> $cryptpad_nginx_site
  365. echo ' add_header X-Frame-Options SAMEORIGIN;' >> $cryptpad_nginx_site
  366. echo '' >> $cryptpad_nginx_site
  367. echo ' if ($uri = /pad/inner.html) {' >> $cryptpad_nginx_site
  368. echo " set \$scriptSrc \"'self' 'unsafe-eval' 'unsafe-inline'\";" >> $cryptpad_nginx_site
  369. echo ' }' >> $cryptpad_nginx_site
  370. echo '' >> $cryptpad_nginx_site
  371. echo ' location = /cryptpad_websocket {' >> $cryptpad_nginx_site
  372. echo " proxy_pass http://localhost:$CRYPTPAD_PORT;" >> $cryptpad_nginx_site
  373. echo ' proxy_set_header X-Real-IP $remote_addr;' >> $cryptpad_nginx_site
  374. echo ' proxy_set_header Host $host;' >> $cryptpad_nginx_site
  375. echo ' proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;' >> $cryptpad_nginx_site
  376. echo '' >> $cryptpad_nginx_site
  377. echo ' # WebSocket support (nginx 1.4)' >> $cryptpad_nginx_site
  378. echo ' proxy_http_version 1.1;' >> $cryptpad_nginx_site
  379. echo ' proxy_set_header Upgrade $http_upgrade;' >> $cryptpad_nginx_site
  380. echo ' proxy_set_header Connection upgrade;' >> $cryptpad_nginx_site
  381. echo ' }' >> $cryptpad_nginx_site
  382. echo '' >> $cryptpad_nginx_site
  383. echo ' location ^~ /customize.dist/ {' >> $cryptpad_nginx_site
  384. echo ' # This is needed in order to prevent infinite recursion between /customize/ and the root' >> $cryptpad_nginx_site
  385. echo ' }' >> $cryptpad_nginx_site
  386. echo ' location ^~ /customize/ {' >> $cryptpad_nginx_site
  387. echo ' rewrite ^/customize/(.*)$ $1 break;' >> $cryptpad_nginx_site
  388. echo ' try_files /customize/$uri /customize.dist/$uri;' >> $cryptpad_nginx_site
  389. echo ' }' >> $cryptpad_nginx_site
  390. echo ' location = /api/config {' >> $cryptpad_nginx_site
  391. echo ' default_type text/javascript;' >> $cryptpad_nginx_site
  392. echo ' rewrite ^.*$ /customize/api/config break;' >> $cryptpad_nginx_site
  393. echo ' }' >> $cryptpad_nginx_site
  394. echo '' >> $cryptpad_nginx_site
  395. echo ' location ^~ /blob/ {' >> $cryptpad_nginx_site
  396. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  397. echo ' }' >> $cryptpad_nginx_site
  398. echo '' >> $cryptpad_nginx_site
  399. echo ' location ^~ /register/ {' >> $cryptpad_nginx_site
  400. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  401. echo ' }' >> $cryptpad_nginx_site
  402. echo '' >> $cryptpad_nginx_site
  403. echo ' location ^~ /login/ {' >> $cryptpad_nginx_site
  404. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  405. echo ' }' >> $cryptpad_nginx_site
  406. echo '' >> $cryptpad_nginx_site
  407. echo ' location ^~ /about.html {' >> $cryptpad_nginx_site
  408. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  409. echo ' }' >> $cryptpad_nginx_site
  410. echo '' >> $cryptpad_nginx_site
  411. echo ' location ^~ /contact.html {' >> $cryptpad_nginx_site
  412. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  413. echo ' }' >> $cryptpad_nginx_site
  414. echo '' >> $cryptpad_nginx_site
  415. echo ' location ^~ /what-is-cryptpad.html {' >> $cryptpad_nginx_site
  416. echo ' try_files $uri =404;' >> $cryptpad_nginx_site
  417. echo ' }' >> $cryptpad_nginx_site
  418. echo '' >> $cryptpad_nginx_site
  419. echo ' location ~ ^/(register|login|settings|user|pad|drive|poll|slide|code|whiteboard|file|media)$ {' >> $cryptpad_nginx_site
  420. echo ' rewrite ^(.*)$ $1/ redirect;' >> $cryptpad_nginx_site
  421. echo ' }' >> $cryptpad_nginx_site
  422. echo '' >> $cryptpad_nginx_site
  423. echo ' try_files /www/$uri /www/$uri/index.html /customize/$uri;' >> $cryptpad_nginx_site
  424. echo '}' >> $cryptpad_nginx_site
  425. function_check nginx_ensite
  426. nginx_ensite cryptpad
  427. install_completed cryptpad_main
  428. }
  429. function install_cryptpad {
  430. function_check install_nodejs
  431. install_nodejs cryptpad
  432. install_cryptpad_main
  433. cd $CRYPTPAD_DIR
  434. npm install
  435. npm install -g bower@1.8.0
  436. chown -R cryptpad:cryptpad $CRYPTPAD_DIR
  437. su -c 'bower install' - cryptpad
  438. cp config.example.js config.js
  439. if [ ! -f config.js ]; then
  440. echo $'Cryptpad config file not found'
  441. exit 628252
  442. fi
  443. sed -i "s|httpPort:.*|httpPort: $CRYPTPAD_PORT,|g" config.js
  444. sed -i "s|// domain:|domain:|g" config.js
  445. sed -i 's|openFileLimit:.*|openFileLimit: 1024,|g' config.js
  446. sed -i "s|domain:.*|domain: 'http://$CRYPTPAD_ONION_HOSTNAME',|g" config.js
  447. chown -R cryptpad:cryptpad $CRYPTPAD_DIR
  448. # daemon
  449. echo '[Unit]' > /etc/systemd/system/cryptpad.service
  450. echo 'Description=Cryptpad' >> /etc/systemd/system/cryptpad.service
  451. echo 'After=syslog.target' >> /etc/systemd/system/cryptpad.service
  452. echo 'After=network.target' >> /etc/systemd/system/cryptpad.service
  453. echo '' >> /etc/systemd/system/cryptpad.service
  454. echo '[Service]' >> /etc/systemd/system/cryptpad.service
  455. echo 'User=cryptpad' >> /etc/systemd/system/cryptpad.service
  456. echo 'Group=cryptpad' >> /etc/systemd/system/cryptpad.service
  457. echo "WorkingDirectory=$CRYPTPAD_DIR" >> /etc/systemd/system/cryptpad.service
  458. echo "ExecStart=/usr/local/bin/node $CRYPTPAD_DIR/server.js" >> /etc/systemd/system/cryptpad.service
  459. echo 'Environment=PATH=/usr/bin:/usr/local/bin' >> /etc/systemd/system/cryptpad.service
  460. echo 'Environment=NODE_ENV=production' >> /etc/systemd/system/cryptpad.service
  461. echo 'Restart=on-failure' >> /etc/systemd/system/cryptpad.service
  462. echo '' >> /etc/systemd/system/cryptpad.service
  463. echo '[Install]' >> /etc/systemd/system/cryptpad.service
  464. echo 'WantedBy=multi-user.target' >> /etc/systemd/system/cryptpad.service
  465. systemctl enable cryptpad.service
  466. systemctl daemon-reload
  467. systemctl start cryptpad.service
  468. sleep 6
  469. if [ ! -d $CRYPTPAD_DIR/customize/api ]; then
  470. mkdir -p $CRYPTPAD_DIR/customize/api
  471. fi
  472. wget 127.0.0.1:$CRYPTPAD_PORT/api/config -O $CRYPTPAD_DIR/customize/api/config
  473. if [ ! -f $CRYPTPAD_DIR/customize/api/config ]; then
  474. echo $'Unable to wget api/config'
  475. exit 89252
  476. fi
  477. chown -R cryptpad:cryptpad $CRYPTPAD_DIR
  478. # install again
  479. cd $CRYPTPAD_DIR
  480. su -c 'bower install' - cryptpad
  481. systemctl restart nginx
  482. APP_INSTALLED=1
  483. }
  484. # NOTE: deliberately there is no "exit 0"