freedombone-app-peertube 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # PeerTube server
  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 media"
  31. IN_DEFAULT_INSTALL=0
  32. SHOW_ON_ABOUT=1
  33. PEERTUBE_DOMAIN_NAME=
  34. PEERTUBE_CODE=
  35. PEERTUBE_REPO="https://github.com/Chocobozzz/PeerTube"
  36. PEERTUBE_COMMIT='62c852b2b40b4f42c32941deb1b1ccd3f17bcd98'
  37. PEERTUBE_ONION_PORT=8136
  38. PEERTUBE_PORT=9000
  39. PEERTUBE_DIR=/etc/peertube
  40. peertube_variables=(PEERTUBE_DOMAIN_NAME
  41. PEERTUBE_CODE
  42. PEERTUBE_ADMIN_PASSWORD
  43. ONION_ONLY
  44. DDNS_PROVIDER
  45. MY_USERNAME
  46. MY_EMAIL_ADDRESS)
  47. function peertube_create_database {
  48. if [ -f $IMAGE_PASSWORD_FILE ]; then
  49. PEERTUBE_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
  50. else
  51. if [ ! $PEERTUBE_ADMIN_PASSWORD ]; then
  52. PEERTUBE_ADMIN_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
  53. fi
  54. fi
  55. if [ ! $PEERTUBE_ADMIN_PASSWORD ]; then
  56. return
  57. fi
  58. systemctl restart postgresql
  59. add_postgresql_user peertube "$PEERTUBE_ADMIN_PASSWORD" encrypted
  60. run_system_query_postgresql "create database peertube;"
  61. # temporarily allow the user to create databases
  62. run_system_query_postgresql "ALTER USER peertube CREATEDB;"
  63. run_system_query_postgresql "ALTER USER peertube SUPERUSER;"
  64. run_system_query_postgresql "GRANT ALL ON ALL tables IN SCHEMA public TO peertube;"
  65. run_system_query_postgresql "GRANT ALL ON ALL sequences IN SCHEMA public TO peertube;"
  66. run_system_query_postgresql "CREATE EXTENSION citext;"
  67. run_system_query_postgresql "set statement_timeout to 40000;"
  68. }
  69. function logging_on_peertube {
  70. echo -n ''
  71. }
  72. function logging_off_peertube {
  73. echo -n ''
  74. }
  75. function remove_user_peertube {
  76. remove_username="$1"
  77. }
  78. function add_user_peertube {
  79. if [[ $(app_is_installed peertube) == "0" ]]; then
  80. echo '0'
  81. return
  82. fi
  83. new_username="$1"
  84. new_user_password="$2"
  85. echo '0'
  86. }
  87. function install_interactive_peertube {
  88. if [ ! $ONION_ONLY ]; then
  89. ONION_ONLY='no'
  90. fi
  91. if [[ $ONION_ONLY != "no" ]]; then
  92. PEERTUBE_DOMAIN_NAME='peertube.local'
  93. write_config_param "PEERTUBE_DOMAIN_NAME" "$PEERTUBE_DOMAIN_NAME"
  94. else
  95. function_check interactive_site_details
  96. interactive_site_details "peertube" "PEERTUBE_DOMAIN_NAME" "PEERTUBE_CODE"
  97. fi
  98. APP_INSTALLED=1
  99. }
  100. function change_password_peertube {
  101. PEERTUBE_USERNAME="$1"
  102. PEERTUBE_PASSWORD="$2"
  103. if [ ${#PEERTUBE_PASSWORD} -lt 8 ]; then
  104. echo $'Peertube password is too short'
  105. return
  106. fi
  107. #${PROJECT_NAME}-pass -u $PEERTUBE_USERNAME -a peertube -p "$PEERTUBE_PASSWORD"
  108. }
  109. function reconfigure_peertube {
  110. echo -n ''
  111. }
  112. function upgrade_peertube {
  113. CURR_PEERTUBE_COMMIT=$(get_completion_param "peertube commit")
  114. if [[ "$CURR_PEERTUBE_COMMIT" == "$PEERTUBE_COMMIT" ]]; then
  115. return
  116. fi
  117. read_config_param PEERTUBE_DOMAIN_NAME
  118. systemctl stop peertube
  119. cd $PEERTUBE_DIR
  120. function_check set_repo_commit
  121. set_repo_commit $PEERTUBE_DIR "peertube commit" "$PEERTUBE_COMMIT" $PEERTUBE_REPO
  122. npm run upgrade-peertube
  123. chown -R peertube:peertube $PEERTUBE_DIR
  124. systemctl start peertube
  125. }
  126. function backup_local_peertube {
  127. PEERTUBE_DOMAIN_NAME='peertube.local'
  128. if grep -q "peertube domain" $COMPLETION_FILE; then
  129. PEERTUBE_DOMAIN_NAME=$(get_completion_param "peertube domain")
  130. fi
  131. systemctl stop peertube
  132. USE_POSTGRESQL=1
  133. function_check backup_database_to_usb
  134. backup_database_to_usb peertube
  135. systemctl start peertube
  136. peertube_path=$PEERTUBE_DIR/videos
  137. if [ -d $peertube_path ]; then
  138. suspend_site ${PEERTUBE_DOMAIN_NAME}
  139. systemctl stop peertube
  140. backup_directory_to_usb $peertube_path peertubevideos
  141. systemctl start peertube
  142. restart_site
  143. fi
  144. }
  145. function restore_local_peertube {
  146. PEERTUBE_DOMAIN_NAME='peertube.local'
  147. if grep -q "peertube domain" $COMPLETION_FILE; then
  148. PEERTUBE_DOMAIN_NAME=$(get_completion_param "peertube domain")
  149. fi
  150. if [ $PEERTUBE_DOMAIN_NAME ]; then
  151. suspend_site ${PEERTUBE_DOMAIN_NAME}
  152. systemctl stop peertube
  153. USE_POSTGRESQL=1
  154. restore_database peertube
  155. temp_restore_dir=/root/temppeertubevideos
  156. function_check restore_directory_from_usb
  157. restore_directory_from_usb $temp_restore_dir peertubevideos
  158. if [ -d $temp_restore_dir ]; then
  159. if [ -d $temp_restore_dir$PEERTUBE_DIR/videos ]; then
  160. cp -r $temp_restore_dir$PEERTUBE_DIR/videos/* $PEERTUBE_DIR/videos/
  161. else
  162. cp -r $temp_restore_dir/* $PEERTUBE_DIR/videos/
  163. fi
  164. chown -R peertube:peertube $PEERTUBE_DIR
  165. rm -rf $temp_restore_dir
  166. fi
  167. systemctl start peertube
  168. restart_site
  169. fi
  170. }
  171. function backup_remote_peertube {
  172. PEERTUBE_DOMAIN_NAME='peertube.local'
  173. if grep -q "peertube domain" $COMPLETION_FILE; then
  174. PEERTUBE_DOMAIN_NAME=$(get_completion_param "peertube domain")
  175. fi
  176. systemctl stop peertube
  177. USE_POSTGRESQL=1
  178. function_check backup_database_to_friend
  179. backup_database_to_friend peertube
  180. systemctl start peertube
  181. temp_backup_dir=$PEERTUBE_DIR/videos
  182. if [ -d $temp_backup_dir ]; then
  183. systemctl stop peertube
  184. suspend_site ${PEERTUBE_DOMAIN_NAME}
  185. backup_directory_to_friend $temp_backup_dir peertubevideos
  186. restart_site
  187. systemctl start peertube
  188. else
  189. echo $"Peertube domain specified but not found in $temp_backup_dir"
  190. exit 6383523
  191. fi
  192. }
  193. function restore_remote_peertube {
  194. PEERTUBE_DOMAIN_NAME='peertube.local'
  195. if grep -q "peertube domain" $COMPLETION_FILE; then
  196. PEERTUBE_DOMAIN_NAME=$(get_completion_param "peertube domain")
  197. fi
  198. suspend_site ${PEERTUBE_DOMAIN_NAME}
  199. systemctl stop peertube
  200. USE_POSTGRESQL=1
  201. function_check restore_database_from_friend
  202. restore_database_from_friend peertube
  203. temp_restore_dir=/root/temppeertubevideos
  204. function_check restore_directory_from_friend
  205. restore_directory_from_friend $temp_restore_dir peertubevideos
  206. if [ -d $temp_restore_dir ]; then
  207. if [ -d $temp_restore_dir$PEERTUBE_DIR/videos ]; then
  208. cp -r $temp_restore_dir$PEERTUBE_DIR/videos/* $PEERTUBE_DIR/videos/
  209. else
  210. cp -r $temp_restore_dir/* $PEERTUBE_DIR/videos/
  211. fi
  212. chown -R peertube: $PEERTUBE_DIR
  213. rm -rf $temp_restore_dir
  214. fi
  215. systemctl start peertube
  216. restart_site
  217. }
  218. function remove_peertube {
  219. if [ ${#PEERTUBE_DOMAIN_NAME} -eq 0 ]; then
  220. return
  221. fi
  222. systemctl stop peertube
  223. systemctl disable peertube
  224. rm /etc/systemd/system/peertube.service
  225. systemctl daemon-reload
  226. function_check remove_nodejs
  227. remove_nodejs peertube
  228. read_config_param "PEERTUBE_DOMAIN_NAME"
  229. nginx_dissite $PEERTUBE_DOMAIN_NAME
  230. remove_certs ${PEERTUBE_DOMAIN_NAME}
  231. if [ -f /etc/nginx/sites-available/$PEERTUBE_DOMAIN_NAME ]; then
  232. rm -f /etc/nginx/sites-available/$PEERTUBE_DOMAIN_NAME
  233. fi
  234. if [ -d /var/www/$PEERTUBE_DOMAIN_NAME ]; then
  235. rm -rf /var/www/$PEERTUBE_DOMAIN_NAME
  236. fi
  237. remove_config_param PEERTUBE_DOMAIN_NAME
  238. remove_config_param PEERTUBE_CODE
  239. function_check remove_onion_service
  240. remove_onion_service peertube ${PEERTUBE_ONION_PORT}
  241. remove_completion_param "install_peertube"
  242. sed -i '/peertube/d' $COMPLETION_FILE
  243. function_check drop_database_postgresql
  244. drop_database_postgresql peertube
  245. groupdel -f peertube
  246. userdel -r peertube
  247. if [ -d $PEERTUBE_DIR ]; then
  248. rm -rf $PEERTUBE_DIR
  249. fi
  250. function_check remove_ddns_domain
  251. remove_ddns_domain $PEERTUBE_DOMAIN_NAME
  252. }
  253. function peertube_setup_web {
  254. peertube_nginx_file=/etc/nginx/sites-available/$PEERTUBE_DOMAIN_NAME
  255. if [[ $ONION_ONLY == "no" ]]; then
  256. echo 'server {' > $peertube_nginx_file
  257. echo ' listen 80;' >> $peertube_nginx_file
  258. echo ' # listen [::]:80;' >> $peertube_nginx_file
  259. echo " server_name $PEERTUBE_DOMAIN_NAME;" >> $peertube_nginx_file
  260. echo ' rewrite ^ https://$server_name$request_uri? permanent;' >> $peertube_nginx_file
  261. echo '}' >> $peertube_nginx_file
  262. echo '' >> $peertube_nginx_file
  263. echo 'server {' >> $peertube_nginx_file
  264. echo ' listen 443 ssl; # spdy; # or http2' >> $peertube_nginx_file
  265. echo ' # listen [::]:443 ssl spdy;' >> $peertube_nginx_file
  266. echo " server_name $PEERTUBE_DOMAIN_NAME;" >> $peertube_nginx_file
  267. echo '' >> $peertube_nginx_file
  268. function_check nginx_ssl
  269. nginx_ssl $PEERTUBE_DOMAIN_NAME mobile
  270. function_check nginx_disable_sniffing
  271. nginx_disable_sniffing $PEERTUBE_DOMAIN_NAME
  272. echo ' add_header Strict-Transport-Security max-age=15768000;' >> $peertube_nginx_site
  273. echo '' >> $peertube_nginx_file
  274. echo ' location / {' >> $peertube_nginx_file
  275. echo " proxy_pass http://localhost:${PEERTUBE_PORT};" >> $peertube_nginx_file
  276. echo ' proxy_set_header X-Real-IP $remote_addr;' >> $peertube_nginx_file
  277. echo ' proxy_set_header Host $host;' >> $peertube_nginx_file
  278. echo ' proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;' >> $peertube_nginx_file
  279. echo '' >> $peertube_nginx_file
  280. echo ' # For the video upload' >> $peertube_nginx_file
  281. echo ' client_max_body_size 2G;' >> $peertube_nginx_file
  282. echo ' }' >> $peertube_nginx_file
  283. echo '' >> $peertube_nginx_file
  284. echo ' location /static/webseed {' >> $peertube_nginx_file
  285. echo " if (\$request_method = 'OPTIONS') {" >> $peertube_nginx_file
  286. echo " add_header 'Access-Control-Allow-Origin' '*';" >> $peertube_nginx_file
  287. echo " add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';" >> $peertube_nginx_file
  288. echo " add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';" >> $peertube_nginx_file
  289. echo " add_header 'Access-Control-Max-Age' 1728000;" >> $peertube_nginx_file
  290. echo " add_header 'Content-Type' 'text/plain charset=UTF-8';" >> $peertube_nginx_file
  291. echo " add_header 'Content-Length' 0;" >> $peertube_nginx_file
  292. echo ' return 204;' >> $peertube_nginx_file
  293. echo ' }' >> $peertube_nginx_file
  294. echo '' >> $peertube_nginx_file
  295. echo " if (\$request_method = 'GET') {" >> $peertube_nginx_file
  296. echo " add_header 'Access-Control-Allow-Origin' '*';" >> $peertube_nginx_file
  297. echo " add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';" >> $peertube_nginx_file
  298. echo " add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';" >> $peertube_nginx_file
  299. echo ' }' >> $peertube_nginx_file
  300. echo '' >> $peertube_nginx_file
  301. echo " alias $PEERTUBE_DIR/videos;" >> $peertube_nginx_file
  302. echo ' }' >> $peertube_nginx_file
  303. echo '' >> $peertube_nginx_file
  304. echo ' # Websocket tracker' >> $peertube_nginx_file
  305. echo ' location /tracker/socket {' >> $peertube_nginx_file
  306. echo ' # Peers send a message to the tracker every 15 minutes' >> $peertube_nginx_file
  307. echo ' # Dont close the websocket before this time' >> $peertube_nginx_file
  308. echo ' proxy_read_timeout 1200s;' >> $peertube_nginx_file
  309. echo ' proxy_set_header Upgrade $http_upgrade;' >> $peertube_nginx_file
  310. echo ' proxy_set_header Connection "upgrade";' >> $peertube_nginx_file
  311. echo ' proxy_http_version 1.1;' >> $peertube_nginx_file
  312. echo ' proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;' >> $peertube_nginx_file
  313. echo ' proxy_set_header Host $host;' >> $peertube_nginx_file
  314. echo " proxy_pass http://localhost:${PEERTUBE_PORT};" >> $peertube_nginx_file
  315. echo ' }' >> $peertube_nginx_file
  316. echo '}' >> $peertube_nginx_file
  317. else
  318. echo -n '' > $peertube_nginx_file
  319. fi
  320. echo 'server {' >> $peertube_nginx_file
  321. echo " listen 127.0.0.1:$PEERTUBE_ONION_PORT default_server;" >> $peertube_nginx_file
  322. echo " server_name $PEERTUBE_ONION_HOSTNAME;" >> $eertube_nginx_file
  323. echo '' >> $peertube_nginx_file
  324. echo ' location / {' >> $peertube_nginx_file
  325. echo " proxy_pass http://localhost:${PEERTUBE_PORT};" >> $peertube_nginx_file
  326. echo ' proxy_set_header X-Real-IP $remote_addr;' >> $peertube_nginx_file
  327. echo ' proxy_set_header Host $host;' >> $peertube_nginx_file
  328. echo ' proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;' >> $peertube_nginx_file
  329. echo '' >> $peertube_nginx_file
  330. echo ' # For the video upload' >> $peertube_nginx_file
  331. echo ' client_max_body_size 2G;' >> $peertube_nginx_file
  332. echo ' }' >> $peertube_nginx_file
  333. echo '' >> $peertube_nginx_file
  334. echo ' location /static/webseed {' >> $peertube_nginx_file
  335. echo " if (\$request_method = 'OPTIONS') {" >> $peertube_nginx_file
  336. echo " add_header 'Access-Control-Allow-Origin' '*';" >> $peertube_nginx_file
  337. echo " add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';" >> $peertube_nginx_file
  338. echo " add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';" >> $peertube_nginx_file
  339. echo " add_header 'Access-Control-Max-Age' 1728000;" >> $peertube_nginx_file
  340. echo " add_header 'Content-Type' 'text/plain charset=UTF-8';" >> $peertube_nginx_file
  341. echo " add_header 'Content-Length' 0;" >> $peertube_nginx_file
  342. echo ' return 204;' >> $peertube_nginx_file
  343. echo ' }' >> $peertube_nginx_file
  344. echo '' >> $peertube_nginx_file
  345. echo " if (\$request_method = 'GET') {" >> $peertube_nginx_file
  346. echo " add_header 'Access-Control-Allow-Origin' '*';" >> $peertube_nginx_file
  347. echo " add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';" >> $peertube_nginx_file
  348. echo " add_header 'Access-Control-Allow-Headers' 'Range,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';" >> $peertube_nginx_file
  349. echo ' }' >> $peertube_nginx_file
  350. echo '' >> $peertube_nginx_file
  351. echo " alias $PEERTUBE_DIR/videos;" >> $peertube_nginx_file
  352. echo ' }' >> $peertube_nginx_file
  353. echo '' >> $peertube_nginx_file
  354. echo ' # Websocket tracker' >> $peertube_nginx_file
  355. echo ' location /tracker/socket {' >> $peertube_nginx_file
  356. echo ' # Peers send a message to the tracker every 15 minutes' >> $peertube_nginx_file
  357. echo ' # Dont close the websocket before this time' >> $peertube_nginx_file
  358. echo ' proxy_read_timeout 1200s;' >> $peertube_nginx_file
  359. echo ' proxy_set_header Upgrade $http_upgrade;' >> $peertube_nginx_file
  360. echo ' proxy_set_header Connection "upgrade";' >> $peertube_nginx_file
  361. echo ' proxy_http_version 1.1;' >> $peertube_nginx_file
  362. echo ' proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;' >> $peertube_nginx_file
  363. echo ' proxy_set_header Host $host;' >> $peertube_nginx_file
  364. echo " proxy_pass http://localhost:${PEERTUBE_PORT};" >> $peertube_nginx_file
  365. echo ' }' >> $peertube_nginx_file
  366. echo '}' >> $peertube_nginx_file
  367. function_check create_site_certificate
  368. create_site_certificate $PEERTUBE_DOMAIN_NAME 'yes'
  369. function_check nginx_ensite
  370. nginx_ensite $PEERTUBE_DOMAIN_NAME
  371. }
  372. function peertube_create_config {
  373. peertube_config_file=$PEERTUBE_DIR/config/production.yaml
  374. echo 'listen:' > $peertube_config_file
  375. echo " port: $PEERTUBE_PORT" >> $peertube_config_file
  376. echo '' >> $peertube_config_file
  377. echo '# Correspond to your reverse proxy "listen" configuration' >> $peertube_config_file
  378. echo 'webserver:' >> $peertube_config_file
  379. echo ' https: true' >> $peertube_config_file
  380. if [[ $ONION_ONLY == 'no' ]]; then
  381. echo " hostname: '$PEERTUBE_DOMAIN_NAME'" >> $peertube_config_file
  382. echo ' port: 443' >> $peertube_config_file
  383. else
  384. echo " hostname: '$PEERTUBE_ONION_HOSTNAME'" >> $peertube_config_file
  385. echo ' port: 80' >> $peertube_config_file
  386. fi
  387. echo '' >> $peertube_config_file
  388. echo '# Your database name will be "peertube"+database.suffix' >> $peertube_config_file
  389. echo 'database:' >> $peertube_config_file
  390. echo " hostname: 'localhost'" >> $peertube_config_file
  391. echo ' port: 5432' >> $peertube_config_file
  392. echo " suffix: ''" >> $peertube_config_file
  393. echo " username: 'peertube'" >> $peertube_config_file
  394. echo " password: '$PEERTUBE_ADMIN_PASSWORD'" >> $peertube_config_file
  395. echo '' >> $peertube_config_file
  396. echo '# From the project root directory' >> $peertube_config_file
  397. echo 'storage:' >> $peertube_config_file
  398. echo " certs: 'certs/'" >> $peertube_config_file
  399. echo " videos: 'videos/'" >> $peertube_config_file
  400. echo " logs: 'logs/'" >> $peertube_config_file
  401. echo " previews: 'previews/'" >> $peertube_config_file
  402. echo " thumbnails: 'thumbnails/'" >> $peertube_config_file
  403. echo " torrents: 'torrents/'" >> $peertube_config_file
  404. echo " cache: 'cache/'" >> $peertube_config_file
  405. echo '' >> $peertube_config_file
  406. echo 'cache:' >> $peertube_config_file
  407. echo ' previews:' >> $peertube_config_file
  408. echo ' size: 10 # Max number of previews you want to cache' >> $peertube_config_file
  409. echo '' >> $peertube_config_file
  410. echo 'admin:' >> $peertube_config_file
  411. echo " email: '$MY_EMAIL_ADDRESS'" >> $peertube_config_file
  412. echo '' >> $peertube_config_file
  413. echo 'signup:' >> $peertube_config_file
  414. echo ' enabled: false' >> $peertube_config_file
  415. echo ; limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited' >> $peertube_config_file
  416. echo '' >> $peertube_config_file
  417. echo 'user:' >> $peertube_config_file
  418. echo ' # Default value of maximum video BYTES the user can upload (does not take into account transcoded files).' >> $peertube_config_file
  419. echo ' # -1 == unlimited' >> $peertube_config_file
  420. echo ' video_quota: -1' >> $peertube_config_file
  421. echo '' >> $peertube_config_file
  422. echo '# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag' >> $peertube_config_file
  423. echo '# Uses a lot of CPU!' >> $peertube_config_file
  424. echo 'transcoding:' >> $peertube_config_file
  425. echo ' enabled: false' >> $peertube_config_file
  426. echo ' threads: 2' >> $peertube_config_file
  427. echo ' resolutions: # Only created if the original video has a higher resolution' >> $peertube_config_file
  428. echo ' 240p: true' >> $peertube_config_file
  429. echo ' 360p: true' >> $peertube_config_file
  430. echo ' 480p: true' >> $peertube_config_file
  431. echo ' 720p: true' >> $peertube_config_file
  432. echo ' 1080p: true' >> $peertube_config_file
  433. }
  434. function install_peertube {
  435. if [ ! $ONION_ONLY ]; then
  436. ONION_ONLY='no'
  437. fi
  438. if [ ! $PEERTUBE_DOMAIN_NAME ]; then
  439. echo $'The peertube domain name was not specified'
  440. exit 783523
  441. fi
  442. apt-get -yq install ffmpeg
  443. function_check install_postgresql
  444. install_postgresql
  445. if [ ! -d /var/www/$PEERTUBE_DOMAIN_NAME/htdocs ]; then
  446. mkdir -p /var/www/$PEERTUBE_DOMAIN_NAME/htdocs
  447. fi
  448. if [ -d $PEERTUBE_DIR ]; then
  449. rm -rf $PEERTUBE_DIR
  450. fi
  451. groupadd peertube
  452. useradd -c "PeerTube system account" -d $PEERTUBE_DIR -m -r -g peertube peertube
  453. peertube_create_database
  454. function_check install_nodejs
  455. install_nodejs peertube
  456. if [ -d /repos/peertube ]; then
  457. mkdir -p $PEERTUBE_DIR
  458. cp -r -p /repos/peertube/. $PEERTUBE_DIR
  459. cd $PEERTUBE_DIR
  460. git pull
  461. else
  462. function_check git_clone
  463. git_clone $PEERTUBE_REPO $PEERTUBE_DIR
  464. fi
  465. cd $PEERTUBE_DIR
  466. git checkout $PEERTUBE_COMMIT -b $PEERTUBE_COMMIT
  467. set_completion_param "peertube commit" "$PEERTUBE_COMMIT"
  468. npm install -g yarn
  469. if [ ! "$?" = "0" ]; then
  470. echo $'Failed to install yarn'
  471. exit 79353234
  472. fi
  473. yarn add -D webpack --network-concurrency 1
  474. yarn install
  475. if [ ! "$?" = "0" ]; then
  476. echo $'Failed to run yarn install'
  477. exit 63754235
  478. fi
  479. npm run build
  480. if [ ! "$?" = "0" ]; then
  481. echo $'Failed to build peertube'
  482. exit 5293593
  483. fi
  484. # revoke the ability to create databases for this user
  485. run_system_query_postgresql "ALTER USER peertube NOSUPERUSER;"
  486. run_system_query_postgresql "ALTER USER peertube NOCREATEDB;"
  487. PEERTUBE_ONION_HOSTNAME=$(add_onion_service peertube 80 ${PEERTUBE_ONION_PORT})
  488. echo '[Unit]' > /etc/systemd/system/peertube.service
  489. echo 'Description=PeerTube Decentralized video streaming platform' >> /etc/systemd/system/peertube.service
  490. echo 'After=syslog.target' >> /etc/systemd/system/peertube.service
  491. echo 'After=network.target' >> /etc/systemd/system/peertube.service
  492. echo '' >> /etc/systemd/system/peertube.service
  493. echo '[Service]' >> /etc/systemd/system/peertube.service
  494. echo 'User=peertube' >> /etc/systemd/system/peertube.service
  495. echo 'Group=peertube' >> /etc/systemd/system/peertube.service
  496. echo "WorkingDirectory=$PEERTUBE_DIR" >> /etc/systemd/system/peertube.service
  497. echo "ExecStart=/usr/local/bin/npm start" >> /etc/systemd/system/peertube.service
  498. echo "ExecStop=/usr/local/bin/npm stop" >> /etc/systemd/system/peertube.service
  499. echo 'StandardOutput=syslog' >> /etc/systemd/system/peertube.service
  500. echo 'StandardError=syslog' >> /etc/systemd/system/peertube.service
  501. echo 'SyslogIdentifier=peertube' >> /etc/systemd/system/peertube.service
  502. echo 'Restart=always' >> /etc/systemd/system/peertube.service
  503. echo "Environment=NODE_ENV=production PORT=${PEERTUBE_PORT}" >> /etc/systemd/system/peertube.service
  504. echo '' >> /etc/systemd/system/peertube.service
  505. echo '[Install]' >> /etc/systemd/system/peertube.service
  506. echo 'WantedBy=multi-user.target' >> /etc/systemd/system/peertube.service
  507. peertube_create_config
  508. chown -R peertube:peertube $PEERTUBE_DIR
  509. peertube_setup_web
  510. ${PROJECT_NAME}-pass -u $MY_USERNAME -a peertube -p "$PEERTUBE_ADMIN_PASSWORD"
  511. function_check add_ddns_domain
  512. add_ddns_domain $PEERTUBE_DOMAIN_NAME
  513. systemctl enable peertube
  514. systemctl daemon-reload
  515. systemctl start peertube
  516. systemctl restart nginx
  517. set_completion_param "peertube domain" "$PEERTUBE_DOMAIN_NAME"
  518. APP_INSTALLED=1
  519. }
  520. # NOTE: deliberately no exit 0