freedombone-app-peertube 23KB

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