freedombone-app-friendica 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633
  1. #!/bin/bash
  2. # _____ _ _
  3. # | __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
  4. # | __| _| -_| -_| . | . | | . | . | | -_|
  5. # |__| |_| |___|___|___|___|_|_|_|___|___|_|_|___|
  6. #
  7. # Freedom in the Cloud
  8. #
  9. # Friendica application
  10. #
  11. # License
  12. # =======
  13. #
  14. # Copyright (C) 2018 Bob Mottram <bob@freedombone.net>
  15. #
  16. # This program is free software: you can redistribute it and/or modify
  17. # it under the terms of the GNU Affero General Public License as published by
  18. # the Free Software Foundation, either version 3 of the License, or
  19. # (at your option) any later version.
  20. #
  21. # This program is distributed in the hope that it will be useful,
  22. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. # GNU Affero General Public License for more details.
  25. #
  26. # You should have received a copy of the GNU Affero General Public License
  27. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  28. VARIANTS='full full-vim social'
  29. IN_DEFAULT_INSTALL=0
  30. SHOW_ON_ABOUT=1
  31. FRIENDICA_DOMAIN_NAME=
  32. FRIENDICA_CODE=
  33. FRIENDICA_ONION_PORT=8114
  34. FRIENDICA_REPO="https://github.com/friendica/friendica"
  35. FRIENDICA_ADDONS_REPO="https://github.com/friendica/friendica-addons"
  36. FRIENDICA_ADMIN_PASSWORD=
  37. FRIENDICA_COMMIT='b5a42c5b31fae5315bacd37769eba20ab2345aaa'
  38. FRIENDICA_ADDONS_COMMIT='7cb9dbdda7f227462895c07be3c968405561d40e'
  39. FRIENDICA_SHORT_DESCRIPTION=$'Friendica'
  40. FRIENDICA_DESCRIPTION=$'Friendica federated social network'
  41. FRIENDICA_ICON_URL=
  42. FRIENDICA_MOBILE_APP_URL=
  43. friendica_variables=(ONION_ONLY
  44. FRIENDICA_DOMAIN_NAME
  45. FRIENDICA_CODE
  46. DDNS_PROVIDER
  47. MY_USERNAME
  48. FRIENDICA_REPO
  49. FRIENDICA_ADDONS_REPO)
  50. function logging_on_friendica {
  51. echo -n ''
  52. }
  53. function logging_off_friendica {
  54. echo -n ''
  55. }
  56. function remove_user_friendica {
  57. remove_username="$1"
  58. "${PROJECT_NAME}-pass" -u "$remove_username" --rmapp friendica
  59. }
  60. function add_user_friendica {
  61. if [[ $(app_is_installed friendica) == "0" ]]; then
  62. echo '0'
  63. return
  64. fi
  65. new_username="$1"
  66. new_user_password="$2"
  67. "${PROJECT_NAME}-pass" -u "$new_username" -a friendica -p "$new_user_password"
  68. echo '0'
  69. }
  70. function friendica_renew_cert {
  71. dialog --title $"Renew SSL certificate" \
  72. --backtitle $"Freedombone Control Panel" \
  73. --yesno $"\\nThis will renew a letsencrypt certificate. Select 'yes' to continue" 16 60
  74. sel=$?
  75. case $sel in
  76. 1) return;;
  77. 255) return;;
  78. esac
  79. FRIENDICA_DOMAIN_NAME=$(get_completion_param "friendica domain")
  80. if [ ! -d "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs" ]; then
  81. dialog --title $"Renew SSL certificate" \
  82. --msgbox $"Friendica install directory not found" 6 40
  83. return
  84. fi
  85. if ! "${PROJECT_NAME}-renew-cert" -h "$FRIENDICA_DOMAIN_NAME" -p 'letsencrypt'; then
  86. any_key
  87. else
  88. dialog --title $"Renew SSL certificate" \
  89. --msgbox $"Friendica certificate has been renewed" 6 40
  90. fi
  91. }
  92. function friendica_channel_directory_server {
  93. if ! grep -q "friendica domain" "$COMPLETION_FILE"; then
  94. dialog --title $"Friendica channel directory server" \
  95. --msgbox $"Friendica is not installed on this system" 6 40
  96. return
  97. fi
  98. FRIENDICA_DOMAIN_NAME=$(get_completion_param "friendica domain")
  99. if [ ! -d "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs" ]; then
  100. dialog --title $"Friendica channel directory server" \
  101. --msgbox $"Friendica install directory not found" 6 40
  102. return
  103. fi
  104. CURR_DIR_SERVER=$(grep directory "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs/.htconfig.php" | awk -F "'" '{print $6}')
  105. data=$(mktemp 2>/dev/null)
  106. dialog --title $"Friendica channel directory server" \
  107. --backtitle $"Freedombone Control Panel" \
  108. --inputbox $"When you click on 'channel directory' this is where Friendica will obtain its list from" 8 60 "$CURR_DIR_SERVER" 2>"$data"
  109. sel=$?
  110. case $sel in
  111. 0)
  112. friendica_domain_server=$(<"$data")
  113. if [[ "$friendica_domain_server" != *"."* ]]; then
  114. rm -f "$data"
  115. return
  116. fi
  117. if [[ "$friendica_domain_server" != "http"* ]]; then
  118. dialog --title $"Friendica channel directory server" \
  119. --msgbox $"Invalid domain - include the https://" 6 40
  120. rm -f "$data"
  121. return
  122. fi
  123. sed -i "s|\['directory'\] = .*|\['directory'\] = \'$friendica_domain_server\';|g" "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs/.htconfig.php"
  124. dialog --title $"Friendica channel directory server" \
  125. --msgbox $"Domain channel directory server changed to $friendica_domain_server" 6 40
  126. ;;
  127. esac
  128. rm -f "$data"
  129. }
  130. function friendica_close_registrations {
  131. sed -i "s|REGISTER_OPEN|REGISTER_CLOSED|g" "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs/.htconfig.php"
  132. dialog --title $"Friendica Account Registrations" \
  133. --msgbox $"New registrations are now closed" 6 40
  134. }
  135. function friendica_allow_registrations {
  136. sed -i "s|REGISTER_CLOSED|REGISTER_OPEN|g" "/var/www/$FRIENDICA_DOMAIN_NAME/htdocs/.htconfig.php"
  137. dialog --title $"Friendica Account Registrations" \
  138. --msgbox $"New registrations are permitted" 6 40
  139. }
  140. function configure_interactive_friendica {
  141. W=(1 $"Set channel directory server"
  142. 2 $"Renew SSL certificate"
  143. 3 $"Close new account registrations"
  144. 4 $"Allow new account registrations")
  145. while true
  146. do
  147. # shellcheck disable=SC2068
  148. selection=$(dialog --backtitle $"Freedombone Administrator Control Panel" --title $"Friendica" --menu $"Choose an operation, or ESC to exit:" 14 60 4 "${W[@]}" 3>&2 2>&1 1>&3)
  149. if [ ! "$selection" ]; then
  150. break
  151. fi
  152. case $selection in
  153. 1) friendica_channel_directory_server;;
  154. 2) friendica_renew_cert;;
  155. 3) friendica_close_registrations;;
  156. 4) friendica_allow_registrations;;
  157. esac
  158. done
  159. }
  160. function install_interactive_friendica {
  161. if [[ $ONION_ONLY != "no" ]]; then
  162. return
  163. fi
  164. function_check interactive_site_details
  165. interactive_site_details friendica
  166. APP_INSTALLED=1
  167. }
  168. function change_password_friendica {
  169. #FRIENDICA_USERNAME="$1"
  170. FRIENDICA_PASSWORD="$2"
  171. if [ ${#FRIENDICA_PASSWORD} -lt 8 ]; then
  172. echo $'Friendica password is too short'
  173. return
  174. fi
  175. # TODO: This doesn't actually change the password
  176. #${PROJECT_NAME}-pass -u $FRIENDICA_USERNAME -a friendica -p "$FRIENDICA_PASSWORD"
  177. }
  178. function friendica_create_database {
  179. if [ -f "$IMAGE_PASSWORD_FILE" ]; then
  180. FRIENDICA_ADMIN_PASSWORD="$(printf "%s" "$(cat "$IMAGE_PASSWORD_FILE")")"
  181. fi
  182. if [ ! "$FRIENDICA_ADMIN_PASSWORD" ]; then
  183. FRIENDICA_ADMIN_PASSWORD="$(create_password "${MINIMUM_PASSWORD_LENGTH}")"
  184. fi
  185. "${PROJECT_NAME}-pass" -u "$MY_USERNAME" -a friendica -p "$FRIENDICA_ADMIN_PASSWORD"
  186. if [ ! "$FRIENDICA_ADMIN_PASSWORD" ]; then
  187. return
  188. fi
  189. function_check create_database
  190. create_database friendica "$FRIENDICA_ADMIN_PASSWORD"
  191. }
  192. function reconfigure_friendica {
  193. echo -n ''
  194. }
  195. function upgrade_friendica {
  196. CURR_FRIENDICA_COMMIT=$(get_completion_param "friendica commit")
  197. if [[ "$CURR_FRIENDICA_COMMIT" == "$FRIENDICA_COMMIT" ]]; then
  198. return
  199. fi
  200. FRIENDICA_PATH=/var/www/$FRIENDICA_DOMAIN_NAME/htdocs
  201. function_check set_repo_commit
  202. set_repo_commit "$FRIENDICA_PATH" "friendica commit" "$FRIENDICA_COMMIT" $FRIENDICA_REPO
  203. set_repo_commit "$FRIENDICA_PATH/addon" "friendica addons commit" "$FRIENDICA_ADDONS_COMMIT" $FRIENDICA_ADDONS_REPO
  204. }
  205. function backup_local_friendica {
  206. friendica_path="/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs"
  207. if [ -d "$friendica_path" ]; then
  208. function_check backup_database_to_usb
  209. backup_database_to_usb friendica
  210. backup_directory_to_usb "$friendica_path" friendica
  211. fi
  212. }
  213. function restore_local_friendica {
  214. temp_restore_dir=/root/tempfriendica
  215. friendica_dir=/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs
  216. function_check friendica_create_database
  217. friendica_create_database
  218. restore_database friendica "${FRIENDICA_DOMAIN_NAME}"
  219. if [ -d "$USB_MOUNT/backup/friendica" ]; then
  220. if [ ! -d "$friendica_dir/store/[data]/smarty3" ]; then
  221. mkdir -p "$friendica_dir/store/[data]/smarty3"
  222. fi
  223. chmod 1777 "$friendica_dir/store/[data]/smarty3"
  224. chown -R www-data:www-data "$friendica_dir/"*
  225. if [ -d $temp_restore_dir ]; then
  226. rm -rf $temp_restore_dir
  227. fi
  228. MARIADB_PASSWORD=$("${PROJECT_NAME}-pass" -u root -a mariadb)
  229. FRIENDICA_PATH=/var/www/$FRIENDICA_DOMAIN_NAME/htdocs
  230. sed -i "s|\$db_pass =.*|\$db_pass = '${MARIADB_PASSWORD}';|g" "$FRIENDICA_PATH/.htconfig.php"
  231. MARIADB_PASSWORD=
  232. fi
  233. }
  234. function backup_remote_friendica {
  235. temp_backup_dir="/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs"
  236. if [ -d "$temp_backup_dir" ]; then
  237. suspend_site "${FRIENDICA_DOMAIN_NAME}"
  238. backup_database_to_friend friendica
  239. echo "Backing up Friendica installation"
  240. backup_directory_to_friend "$temp_backup_dir" friendica
  241. restart_site
  242. echo "Backup of Friendica complete"
  243. else
  244. echo $"Friendica domain specified but not found in /var/www/${FRIENDICA_DOMAIN_NAME}"
  245. exit 2578
  246. fi
  247. }
  248. function restore_remote_friendica {
  249. function_check restore_database_from_friend
  250. function_check friendica_create_database
  251. friendica_create_database
  252. restore_database_from_friend friendica "${FRIENDICA_DOMAIN_NAME}"
  253. if [ -d "$SERVER_DIRECTORY/backup/friendica" ]; then
  254. if [ ! -d "/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs/store/[data]/smarty3" ]; then
  255. mkdir -p "/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs/store/[data]/smarty3"
  256. fi
  257. chmod 1777 "/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs/store/[data]/smarty3"
  258. chown -R www-data:www-data "/var/www/${FRIENDICA_DOMAIN_NAME}/htdocs/"*
  259. fi
  260. if [ -d /root/tempfriendica ]; then
  261. rm -rf /root/tempfriendica
  262. fi
  263. MARIADB_PASSWORD=$("${PROJECT_NAME}-pass" -u root -a mariadb)
  264. FRIENDICA_PATH="/var/www/$FRIENDICA_DOMAIN_NAME/htdocs"
  265. sed -i "s|\$db_pass =.*|\$db_pass = '${MARIADB_PASSWORD}';|g" "$FRIENDICA_PATH/.htconfig.php"
  266. MARIADB_PASSWORD=
  267. }
  268. function remove_friendica {
  269. if [ ${#FRIENDICA_DOMAIN_NAME} -eq 0 ]; then
  270. return
  271. fi
  272. nginx_dissite "$FRIENDICA_DOMAIN_NAME"
  273. remove_certs "${FRIENDICA_DOMAIN_NAME}"
  274. if [ -d "/var/www/$FRIENDICA_DOMAIN_NAME" ]; then
  275. rm -rf "/var/www/$FRIENDICA_DOMAIN_NAME"
  276. fi
  277. if [ -f "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME" ]; then
  278. rm "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
  279. fi
  280. function_check drop_database
  281. drop_database friendica
  282. function_check remove_onion_service
  283. remove_onion_service friendica ${FRIENDICA_ONION_PORT}
  284. sed -i '/friendica/d' "$COMPLETION_FILE"
  285. sed -i '/poller.php/d' /etc/crontab
  286. function_check remove_ddns_domain
  287. remove_ddns_domain "$FRIENDICA_DOMAIN_NAME"
  288. }
  289. function install_friendica {
  290. if [ ! "$FRIENDICA_DOMAIN_NAME" ]; then
  291. return
  292. fi
  293. if [[ "$ONION_ONLY" != "no" ]]; then
  294. return
  295. fi
  296. FRIENDICA_PATH="/var/www/$FRIENDICA_DOMAIN_NAME/htdocs"
  297. function_check install_mariadb
  298. install_mariadb
  299. function_check get_mariadb_password
  300. get_mariadb_password
  301. function_check repair_databases_script
  302. repair_databases_script
  303. apt-get -yq install php-common php-cli php-curl php-gd php-mysql php-mcrypt git
  304. apt-get -yq install php-dev imagemagick php-imagick libfcgi0ldbl
  305. apt-get -yq install php-memcached
  306. if [ ! -d "/var/www/$FRIENDICA_DOMAIN_NAME" ]; then
  307. mkdir "/var/www/$FRIENDICA_DOMAIN_NAME"
  308. fi
  309. if [ ! -d "$FRIENDICA_PATH" ]; then
  310. mkdir "$FRIENDICA_PATH"
  311. fi
  312. if [ ! -f "$FRIENDICA_PATH/index.php" ]; then
  313. cd "$INSTALL_DIR" || exit 2346824864
  314. if [ -d /repos/friendica ]; then
  315. mkdir friendica
  316. cp -r -p /repos/friendica/. friendica
  317. cd friendica || exit 24682462
  318. git pull
  319. else
  320. function_check git_clone
  321. git_clone "$FRIENDICA_REPO" friendica
  322. fi
  323. git checkout $FRIENDICA_COMMIT -b $FRIENDICA_COMMIT
  324. set_completion_param "friendica commit" "$FRIENDICA_COMMIT"
  325. rm -rf "$FRIENDICA_PATH"
  326. # shellcheck disable=SC2086
  327. mv friendica $FRIENDICA_PATH
  328. git_clone "$FRIENDICA_ADDONS_REPO" "$FRIENDICA_PATH/addon"
  329. cd "$FRIENDICA_PATH/addon" || exit 34835685
  330. git checkout "$FRIENDICA_ADDONS_COMMIT" -b "$FRIENDICA_ADDONS_COMMIT"
  331. set_completion_param "friendica addons commit" "$FRIENDICA_ADDONS_COMMIT"
  332. chown -R www-data:www-data "$FRIENDICA_PATH"
  333. fi
  334. FRIENDICA_ONION_HOSTNAME=
  335. if [[ $ONION_ONLY != "no" ]]; then
  336. FRIENDICA_ONION_HOSTNAME=$(add_onion_service friendica 80 ${FRIENDICA_ONION_PORT})
  337. fi
  338. friendica_create_database
  339. if ! grep -q "$FRIENDICA_PATH" /etc/crontab; then
  340. echo "12,22,32,42,52 * * * * root cd $FRIENDICA_PATH; /usr/bin/timeout 500 /usr/bin/php include/poller.php" >> /etc/crontab
  341. fi
  342. function_check add_ddns_domain
  343. add_ddns_domain "$FRIENDICA_DOMAIN_NAME"
  344. if [[ "$ONION_ONLY" == "no" ]]; then
  345. function_check nginx_http_redirect
  346. nginx_http_redirect "$FRIENDICA_DOMAIN_NAME"
  347. { echo 'server {';
  348. echo ' listen 443 ssl;';
  349. echo ' #listen [::]:443 ssl;';
  350. echo " root $FRIENDICA_PATH;";
  351. echo " server_name $FRIENDICA_DOMAIN_NAME;";
  352. echo " error_log /dev/null;";
  353. echo ' index index.php;';
  354. echo ' charset utf-8;';
  355. echo ' access_log /dev/null;'; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
  356. function_check nginx_ssl
  357. nginx_ssl "$FRIENDICA_DOMAIN_NAME"
  358. function_check nginx_security_options
  359. nginx_security_options "$FRIENDICA_DOMAIN_NAME"
  360. { echo ' add_header Strict-Transport-Security max-age=15768000;';
  361. echo '';
  362. echo ' # rewrite to front controller as default rule';
  363. echo ' location / {'; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
  364. function_check nginx_limits
  365. nginx_limits "$FRIENDICA_DOMAIN_NAME"
  366. { echo " rewrite ^/(.*) /index.php?q=\$uri&\$args last;";
  367. echo ' }';
  368. echo '';
  369. echo ' # statically serve these file types when possible';
  370. echo ' # otherwise fall back to front controller';
  371. echo ' # allow browser to cache them';
  372. echo ' # added .htm for advanced source code editor library';
  373. echo ' location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|woff|svg)$ {';
  374. echo ' expires 30d;';
  375. echo " try_files \$uri /index.php?q=\$uri&\$args;";
  376. echo ' }';
  377. echo '';
  378. echo ' # block these file types';
  379. echo ' location ~* \.(tpl|md|tgz|log|out)$ {';
  380. echo ' deny all;';
  381. echo ' }';
  382. echo '';
  383. echo ' # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000';
  384. echo ' # or a unix socket';
  385. echo ' location ~* \.php$ {'; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
  386. function_check nginx_limits
  387. nginx_limits "$FRIENDICA_DOMAIN_NAME"
  388. { echo ' # Zero-day exploit defense.';
  389. echo ' # http://forum.nginx.org/read.php?2,88845,page=3';
  390. echo " # Won't work properly (404 error) if the file is not stored on this";
  391. echo " # server, which is entirely possible with php-fpm/php-fcgi.";
  392. echo " # Comment the 'try_files' line out if you set up php-fpm/php-fcgi on";
  393. echo " # another machine. And then cross your fingers that you won't get hacked.";
  394. echo " try_files \$uri \$uri/ /index.php;";
  395. echo ' # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini';
  396. echo ' fastcgi_split_path_info ^(.+\.php)(/.+)$;';
  397. echo ' # With php-cgi alone:';
  398. echo ' # fastcgi_pass 127.0.0.1:9000;';
  399. echo ' # With php-fpm:';
  400. echo ' fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;';
  401. echo ' include fastcgi_params;';
  402. echo ' fastcgi_read_timeout 30;';
  403. echo ' fastcgi_index index.php;';
  404. echo " fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;";
  405. echo ' fastcgi_read_timeout 300;';
  406. echo ' }';
  407. echo '';
  408. echo ' # deny access to all dot files';
  409. echo ' location ~ /\. {';
  410. echo ' deny all;';
  411. echo ' }';
  412. echo '';
  413. echo ' location ~ /\.ht {';
  414. echo ' deny all;';
  415. echo ' }';
  416. echo '}';
  417. echo ''; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
  418. else
  419. { echo 'server {';
  420. echo " listen 127.0.0.1:${FRIENDICA_ONION_PORT} default_server;";
  421. echo " root $FRIENDICA_PATH;";
  422. echo " server_name $FRIENDICA_ONION_HOSTNAME;";
  423. echo " error_log /dev/null;";
  424. echo ' index index.php;';
  425. echo ' charset utf-8;';
  426. echo ' access_log /dev/null;';
  427. echo ' add_header Strict-Transport-Security max-age=15768000;';
  428. echo '';
  429. echo ' # rewrite to front controller as default rule';
  430. echo ' location / {'; } > "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
  431. nginx_limits "$FRIENDICA_DOMAIN_NAME"
  432. nginx_security_options "$FRIENDICA_DOMAIN_NAME"
  433. { echo " rewrite ^/(.*) /index.php?q=\$uri&\$args last;";
  434. echo ' }';
  435. echo '';
  436. echo ' # statically serve these file types when possible';
  437. echo ' # otherwise fall back to front controller';
  438. echo ' # allow browser to cache them';
  439. echo ' # added .htm for advanced source code editor library';
  440. echo ' location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|woff|svg)$ {';
  441. echo ' expires 30d;';
  442. echo " try_files \$uri /index.php?q=\$uri&\$args;";
  443. echo ' }';
  444. echo '';
  445. echo ' # block these file types';
  446. echo ' location ~* \.(tpl|md|tgz|log|out)$ {';
  447. echo ' deny all;';
  448. echo ' }';
  449. echo '';
  450. echo ' # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000';
  451. echo ' # or a unix socket';
  452. echo ' location ~* \.php$ {'; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
  453. nginx_limits "$FRIENDICA_DOMAIN_NAME"
  454. nginx_security_options "$FRIENDICA_DOMAIN_NAME"
  455. { echo ' # Zero-day exploit defense.';
  456. echo ' # http://forum.nginx.org/read.php?2,88845,page=3';
  457. echo " # Won't work properly (404 error) if the file is not stored on this";
  458. echo " # server, which is entirely possible with php-fpm/php-fcgi.";
  459. echo " # Comment the 'try_files' line out if you set up php-fpm/php-fcgi on";
  460. echo " # another machine. And then cross your fingers that you won't get hacked.";
  461. echo " try_files \$uri \$uri/ /index.php;";
  462. echo ' # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini';
  463. echo ' fastcgi_split_path_info ^(.+\.php)(/.+)$;';
  464. echo ' # With php-cgi alone:';
  465. echo ' # fastcgi_pass 127.0.0.1:9000;';
  466. echo ' # With php-fpm:';
  467. echo ' fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;';
  468. echo ' include fastcgi_params;';
  469. echo ' fastcgi_read_timeout 30;';
  470. echo ' fastcgi_index index.php;';
  471. echo " fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;";
  472. echo ' fastcgi_read_timeout 300;';
  473. echo ' }';
  474. echo '';
  475. echo ' # deny access to all dot files';
  476. echo ' location ~ /\. {';
  477. echo ' deny all;';
  478. echo ' }';
  479. echo '';
  480. echo ' location ~ /\.ht {';
  481. echo ' deny all;';
  482. echo ' }';
  483. echo '}'; } >> "/etc/nginx/sites-available/$FRIENDICA_DOMAIN_NAME"
  484. fi
  485. function_check configure_php
  486. configure_php
  487. function_check create_site_certificate
  488. create_site_certificate "$FRIENDICA_DOMAIN_NAME" 'yes'
  489. if [ ! -d "$FRIENDICA_PATH/view/tpl/smarty3" ]; then
  490. mkdir "$FRIENDICA_PATH/view/tpl/smarty3"
  491. fi
  492. if [ ! -d "$FRIENDICA_PATH/store" ]; then
  493. mkdir "$FRIENDICA_PATH/store"
  494. fi
  495. if [ ! -d "$FRIENDICA_PATH/store/[data]" ]; then
  496. mkdir "$FRIENDICA_PATH/store/[data]"
  497. fi
  498. if [ ! -d "$FRIENDICA_PATH/store/[data]/smarty3" ]; then
  499. mkdir "$FRIENDICA_PATH/store/[data]/smarty3"
  500. chmod 1777 "$FRIENDICA_PATH/store/[data]/smarty3"
  501. fi
  502. chmod 1777 "$FRIENDICA_PATH/view/tpl"
  503. chown -R www-data:www-data "$FRIENDICA_PATH/store"
  504. chmod 1777 "$FRIENDICA_PATH/view/tpl/smarty3"
  505. # Ensure that the database gets backed up locally, if remote
  506. # backups are not being used
  507. function_check backup_databases_script_header
  508. backup_databases_script_header
  509. function_check backup_database_local
  510. backup_database_local friendica
  511. chown -R www-data:www-data "$FRIENDICA_PATH"
  512. function_check nginx_ensite
  513. nginx_ensite "$FRIENDICA_DOMAIN_NAME"
  514. # initialize the database
  515. if [ ! -f "$FRIENDICA_PATH/database.sql" ]; then
  516. echo $'No database schema found for friendica'
  517. exit 252782
  518. fi
  519. function_check initialise_database
  520. initialise_database friendica "$FRIENDICA_PATH/database.sql"
  521. # create the config file
  522. { echo '<?php';
  523. echo "\$db_host = 'localhost';";
  524. echo "\$db_user = 'root';";
  525. echo "\$db_pass = '${MARIADB_PASSWORD}';";
  526. echo "\$db_data = 'friendica';";
  527. echo "\$default_timezone = 'Europe/London';"; } > "$FRIENDICA_PATH/.htconfig.php"
  528. if [[ $ONION_ONLY == 'no' ]]; then
  529. echo "\$a->config['system']['baseurl'] = 'https://${FRIENDICA_DOMAIN_NAME}';" >> "$FRIENDICA_PATH/.htconfig.php"
  530. else
  531. echo "\$a->config['system']['baseurl'] = 'http://${FRIENDICA_ONION_HOSTNAME}';" >> "$FRIENDICA_PATH/.htconfig.php"
  532. fi
  533. { echo "\$a->config['sitename'] = \"Friendica\";";
  534. echo "\$a->config['register_policy'] = REGISTER_OPEN;";
  535. echo "\$a->config['register_text'] = '';";
  536. echo "\$a->config['admin_email'] = '${MY_EMAIL_ADDRESS}';";
  537. echo "\$a->config['system']['no_regfullname'] = true;";
  538. echo "\$a->config['max_import_size'] = 200000;";
  539. echo "\$a->config['system']['maximagesize'] = 800000;";
  540. echo "\$a->config['php_path'] = '/usr/bin/php';";
  541. echo "\$a->config['system']['directory'] = 'http://dir.friendi.ca';";
  542. echo "\$a->config['system']['allowed_themes'] = 'quattro,vier,duepuntozero,smoothly';";
  543. echo "\$a->config['system']['theme'] = 'vier';";
  544. echo "\$a->config['system']['huburl'] = '[internal]';";
  545. echo "\$a->config['system']['language'] = 'en';";
  546. echo "\$a->config['system']['rino_encrypt'] = 2;";
  547. echo "\$a->config['system']['allowed_link_protocols'] = array('mailto', 'cid');"; } >> "$FRIENDICA_PATH/.htconfig.php"
  548. chown www-data:www-data "$FRIENDICA_PATH/.htconfig.php"
  549. chmod 755 "$FRIENDICA_PATH/.htconfig.php"
  550. systemctl restart mariadb
  551. systemctl restart php7.0-fpm
  552. systemctl restart nginx
  553. systemctl restart cron
  554. "${PROJECT_NAME}-addemail" -u "$MY_USERNAME" -e "noreply@$FRIENDICA_DOMAIN_NAME" -g friendica --public no
  555. set_completion_param "friendica domain" "${FRIENDICA_DOMAIN_NAME}"
  556. APP_INSTALLED=1
  557. }
  558. # NOTE: deliberately there is no "exit 0"