freedombone-app-pelican 35KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Pelican static blog
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2014-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. PELICAN_DOMAIN_NAME=
  34. PELICAN_BLOG_CODE=
  35. PELICAN_ONION_PORT=8113
  36. PELICAN_THEMES_REPO="https://github.com/getpelican/pelican-themes"
  37. PELICAN_PLUGINS_REPO="https://github.com/getpelican/pelican-plugins"
  38. DEFAULT_BLOG_TITLE=$"Freedombone Blog"
  39. PELICAN_BLOG_INSTALL_DIR=/etc/blog
  40. PELICAN_CURRENT_BLOG_INDEX=$PELICAN_BLOG_INSTALL_DIR/.blog-index
  41. pelican_variables=(MY_USERNAME
  42. ONION_ONLY
  43. PELICAN_DOMAIN_NAME
  44. PELICAN_BLOG_CODE)
  45. function logging_on_pelican {
  46. echo -n ''
  47. }
  48. function logging_off_pelican {
  49. echo -n ''
  50. }
  51. function install_pelican_website {
  52. if [[ $ONION_ONLY != 'no' ]]; then
  53. echo -n '' > /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  54. return
  55. fi
  56. function_check nginx_http_redirect
  57. nginx_http_redirect $PELICAN_DOMAIN_NAME
  58. echo 'server {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  59. echo ' listen 443 ssl;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  60. echo ' listen [::]:443 ssl;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  61. echo " root /var/www/${PELICAN_DOMAIN_NAME}/htdocs;" >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  62. echo " server_name ${PELICAN_DOMAIN_NAME};" >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  63. echo ' access_log /dev/null;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  64. echo " error_log /dev/null;" >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  65. echo ' index index.html;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  66. echo ' charset utf-8;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  67. function_check nginx_ssl
  68. nginx_ssl $PELICAN_DOMAIN_NAME
  69. function_check nginx_disable_sniffing
  70. nginx_disable_sniffing $PELICAN_DOMAIN_NAME
  71. echo ' add_header Strict-Transport-Security "max-age=0;";' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  72. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  73. echo ' location / {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  74. function_check nginx_limits
  75. nginx_limits $PELICAN_DOMAIN_NAME
  76. echo ' }' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  77. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  78. nginx_keybase ${PELICAN_DOMAIN_NAME}
  79. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  80. echo ' # block these file types' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  81. echo ' location ~* \.(tpl|md|tgz|log|out)$ {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  82. echo ' deny all;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  83. echo ' }' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  84. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  85. echo ' # deny access to all dot files' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  86. echo ' location ~ /\. {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  87. echo ' deny all;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  88. echo ' }' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  89. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  90. echo ' location ~ /(data|conf|bin|inc)/ {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  91. echo ' deny all;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  92. echo ' }' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  93. echo ' location ~ /\.ht {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  94. echo ' deny all;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  95. echo ' }' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  96. echo '}' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  97. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  98. function_check create_site_certificate
  99. create_site_certificate $PELICAN_DOMAIN_NAME 'yes'
  100. }
  101. function install_pelican_website_onion {
  102. echo 'server {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  103. echo " listen 127.0.0.1:${PELICAN_ONION_PORT} default_server;" >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  104. echo " root /var/www/${PELICAN_DOMAIN_NAME}/htdocs;" >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  105. echo " server_name ${PELICAN_DOMAIN_NAME};" >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  106. echo ' access_log /dev/null;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  107. echo " error_log /dev/null;" >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  108. echo ' index index.html;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  109. echo ' charset utf-8;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  110. function_check nginx_disable_sniffing
  111. nginx_disable_sniffing $PELICAN_DOMAIN_NAME
  112. echo ' add_header Strict-Transport-Security "max-age=0;";' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  113. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  114. echo ' location / {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  115. function_check nginx_limits
  116. nginx_limits $PELICAN_DOMAIN_NAME
  117. echo ' }' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  118. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  119. nginx_keybase ${PELICAN_DOMAIN_NAME}
  120. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  121. echo ' # block these file types' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  122. echo ' location ~* \.(tpl|md|tgz|log|out)$ {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  123. echo ' deny all;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  124. echo ' }' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  125. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  126. echo ' # deny access to all dot files' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  127. echo ' location ~ /\. {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  128. echo ' deny all;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  129. echo ' }' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  130. echo '' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  131. echo ' location ~ /(data|conf|bin|inc)/ {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  132. echo ' deny all;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  133. echo ' }' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  134. echo ' location ~ /\.ht {' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  135. echo ' deny all;' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  136. echo ' }' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  137. echo '}' >> /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  138. }
  139. function pelican_editor_config {
  140. if [ ! -f $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican ]; then
  141. echo "(add-hook 'before-save-hook 'delete-trailing-whitespace)" > $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  142. echo '(setq org-support-shift-select t)' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  143. echo '(setq standard-indent 4)' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  144. echo '(setq-default tab-width 4)' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  145. echo '(setq c-basic-offset 4)' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  146. echo '(mouse-wheel-mode t)' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  147. echo '(setq make-backup-files t)' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  148. echo '(setq version-control t)' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  149. echo '(setq backup-directory-alist (quote ((".*" . "~/.emacs_backups/"))))' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  150. echo "(setq default-major-mode 'text-mode)" >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  151. echo "(dolist (hook '(text-mode-hook))" >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  152. echo ' (add-hook hook (lambda () (flyspell-mode 1))))' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  153. echo '(setq-default fill-column 72)' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  154. echo '(setq auto-fill-mode 0)' >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  155. echo "(add-hook 'text-mode-hook 'turn-on-auto-fill)" >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  156. echo "(setq-default auto-fill-function 'do-auto-fill)" >> $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican
  157. fi
  158. }
  159. function pelican_regenerate_blog {
  160. clear
  161. echo ''
  162. echo $'Regenerating blog...'
  163. cd $PELICAN_BLOG_INSTALL_DIR
  164. make html
  165. cp -r $PELICAN_BLOG_INSTALL_DIR/output/* /var/www/$PELICAN_DOMAIN_NAME/htdocs/
  166. chown -R www-data:www-data /var/www/$PELICAN_DOMAIN_NAME/htdocs
  167. }
  168. function pelican_new_blog {
  169. DATESTR=$(date "+%Y-%m-%d %H:%M:%S")
  170. if [ ! -f $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry ]; then
  171. echo $'Title: Blog Post Title' > $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  172. echo $"Date: ${DATESTR}" >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  173. echo $"Author: $(toxid --showuser)" >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  174. echo $'Category: default' >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  175. echo $'Tags: blog, tag' >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  176. echo '' >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  177. echo $'Add your text here' >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  178. echo '' >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  179. echo -n $'To include an image copy it into the /etc/blog/content/images directory, ' >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  180. echo $'then link to it with:' >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  181. echo '' >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  182. echo $'![My image]({filename}images/myimage.jpg)' >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  183. echo '' >> $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  184. fi
  185. if [ -f /usr/bin/emacs ]; then
  186. emacs -q --load $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  187. else
  188. editor $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry
  189. fi
  190. if grep -q $"Add your text here" $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry; then
  191. return
  192. fi
  193. if grep -q $"Blog Post Title" $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry; then
  194. return
  195. fi
  196. if [ ! -f $PELICAN_CURRENT_BLOG_INDEX ]; then
  197. echo '0' > $PELICAN_CURRENT_BLOG_INDEX
  198. fi
  199. # move to the content directory
  200. CURRENT_INDEX=$(cat $PELICAN_CURRENT_BLOG_INDEX)
  201. mv $PELICAN_BLOG_INSTALL_DIR/.new-blog-entry $BLOG_CONTENT_PATH/${CURRENT_INDEX}_post.md
  202. # increment the index
  203. CURRENT_INDEX=$((CURRENT_INDEX + 1))
  204. echo "$CURRENT_INDEX" > $PELICAN_CURRENT_BLOG_INDEX
  205. pelican_regenerate_blog
  206. }
  207. function pelican_edit_blog {
  208. if [ ! -f $PELICAN_CURRENT_BLOG_INDEX ]; then
  209. return
  210. fi
  211. CURRENT_INDEX=$(cat $PELICAN_CURRENT_BLOG_INDEX)
  212. PREVIOUS_INDEX=$((CURRENT_INDEX - 1))
  213. LAST_BLOG_ENTRY=$BLOG_CONTENT_PATH/${PREVIOUS_INDEX}_post.md
  214. if [ ! -f $LAST_BLOG_ENTRY ]; then
  215. return
  216. fi
  217. if [ -f /usr/bin/emacs ]; then
  218. emacs -q --load $PELICAN_BLOG_INSTALL_DIR/.emacs-pelican $LAST_BLOG_ENTRY
  219. else
  220. editor $LAST_BLOG_ENTRY
  221. fi
  222. pelican_regenerate_blog
  223. }
  224. function pelican_delete_blog {
  225. if [ ! -f $PELICAN_CURRENT_BLOG_INDEX ]; then
  226. return
  227. fi
  228. CURRENT_INDEX=$(cat $PELICAN_CURRENT_BLOG_INDEX)
  229. PREVIOUS_INDEX=$((CURRENT_INDEX - 1))
  230. LAST_BLOG_ENTRY=$BLOG_CONTENT_PATH/${PREVIOUS_INDEX}_post.md
  231. if [ ! -f $LAST_BLOG_ENTRY ]; then
  232. return
  233. fi
  234. dialog --title $"Delete the previous blog entry" \
  235. --backtitle $"Freedombone Mesh" \
  236. --defaultno \
  237. --yesno $"\nAre you sure that you wish to delete the previous blog entry?" 8 60
  238. sel=$?
  239. case $sel in
  240. 0) rm $LAST_BLOG_ENTRY
  241. if [ $CURRENT_INDEX -gt 0 ]; then
  242. CURRENT_INDEX=$PREVIOUS_INDEX
  243. echo "$CURRENT_INDEX" > $PELICAN_CURRENT_BLOG_INDEX
  244. else
  245. rm -f $PELICAN_CURRENT_BLOG_INDEX
  246. fi
  247. pelican_regenerate_blog
  248. ;;
  249. esac
  250. }
  251. function pelican_remove_bad_blog_links {
  252. current_theme=$1
  253. if [ -f $PELICAN_BLOG_INSTALL_DIR/themes/$current_theme/static/css/style.css ]; then
  254. sed -i '/googleapi/d' $PELICAN_BLOG_INSTALL_DIR/themes/$current_theme/static/css/style.css
  255. fi
  256. }
  257. function pelican_change_theme {
  258. THEMES=()
  259. for d in $PELICAN_BLOG_INSTALL_DIR/themes/*/ ; do
  260. THEME_NAME=$(echo "$d" | awk -F '/' '{print $6}')
  261. THEMES+=("$THEME_NAME")
  262. done
  263. themelist=""
  264. n=1
  265. theme_index=0
  266. curr_theme_index=
  267. if [ -f $PELICAN_BLOG_INSTALL_DIR/.blog-theme-index ]; then
  268. curr_theme_index=$(cat $PELICAN_BLOG_INSTALL_DIR/.blog-theme-index)
  269. fi
  270. for a in "${THEMES[@]}"
  271. do
  272. is_selected='off'
  273. if [ $curr_theme_index ]; then
  274. if [ $n -eq $curr_theme_index ]; then
  275. is_selected='on'
  276. fi
  277. else
  278. if [[ "$a" == 'nice-blog' ]]; then
  279. is_selected='on'
  280. fi
  281. fi
  282. themelist="$themelist $n $a $is_selected"
  283. n=$[n+1]
  284. theme_index=$[theme_index+1]
  285. done
  286. data=$(tempfile 2>/dev/null)
  287. trap "rm -f $data" 0 1 2 5 15
  288. dialog --backtitle $"Freedombone Mesh" \
  289. --title $"Select Blog Theme" \
  290. --radiolist $'Choose:' \
  291. 80 40 20 $themelist 2> $data
  292. sel=$?
  293. case $sel in
  294. 1) return;;
  295. 255) return;;
  296. esac
  297. CHOSEN_THEME_INDEX=$(cat $data)
  298. echo "$CHOSEN_THEME_INDEX" > $PELICAN_BLOG_INSTALL_DIR/.blog-theme-index
  299. CHOSEN_THEME_INDEX=$((CHOSEN_THEME_INDEX - 1))
  300. CHOSEN_THEME=${THEMES[$CHOSEN_THEME_INDEX]}
  301. pelican_remove_bad_blog_links $CHOSEN_THEME
  302. if grep -q "THEME=" $PELICAN_BLOG_INSTALL_DIR/pelicanconf.py; then
  303. sed -i "s|THEME=.*|THEME='themes/${CHOSEN_THEME}'|g" $PELICAN_BLOG_INSTALL_DIR/pelicanconf.py
  304. else
  305. echo "THEME='themes/${CHOSEN_THEME}'" >> $PELICAN_BLOG_INSTALL_DIR/pelicanconf.py
  306. fi
  307. pelican_regenerate_blog
  308. }
  309. function configure_interactive_pelican {
  310. data=$(tempfile 2>/dev/null)
  311. trap "rm -f $data" 0 1 2 5 15
  312. dialog --backtitle $"Freedombone Configuration" \
  313. --title $"Pelican Blogging" \
  314. --radiolist $"Choose an operation:" 18 50 11 \
  315. 1 $"New blog entry" off \
  316. 2 $"Edit the previous blog entry" off \
  317. 3 $"Delete the previous blog entry" off \
  318. 4 $"Change theme" off \
  319. 5 $"Exit" off 2> $data
  320. sel=$?
  321. case $sel in
  322. 1) return;;
  323. 255) return;;
  324. esac
  325. case $(cat $data) in
  326. 1) pelican_new_blog;;
  327. 2) pelican_edit_blog;;
  328. 3) pelican_delete_blog;;
  329. 4) pelican_change_theme;;
  330. 5) break;;
  331. esac
  332. }
  333. function install_interactive_pelican {
  334. if [ ! $ONION_ONLY ]; then
  335. ONION_ONLY='no'
  336. fi
  337. if [[ $ONION_ONLY != "no" ]]; then
  338. PELICAN_DOMAIN_NAME='pelican.local'
  339. else
  340. PELICAN_DETAILS_COMPLETE=
  341. while [ ! $PELICAN_DETAILS_COMPLETE ]
  342. do
  343. data=$(tempfile 2>/dev/null)
  344. trap "rm -f $data" 0 1 2 5 15
  345. if [[ $DDNS_PROVIDER == "default@freedns.afraid.org" ]]; then
  346. dialog --backtitle $"Freedombone Configuration" \
  347. --title $"Pelican Blog Configuration" \
  348. --form $"\nPlease enter your blog details.\n\nIMPORTANT: This should be a domain name which is supported by Let's Encrypt:" 14 65 2 \
  349. $"Domain:" 1 1 "$(grep 'PELICAN_DOMAIN_NAME' temp.cfg | awk -F '=' '{print $2}')" 1 25 33 40 \
  350. $"Code:" 2 1 "$(grep 'PELICAN_BLOG_CODE' temp.cfg | awk -F '=' '{print $2}')" 2 25 33 255 \
  351. 2> $data
  352. else
  353. dialog --backtitle $"Freedombone Configuration" \
  354. --title $"Pelican Blog Configuration" \
  355. --form $"\nPlease enter your GNU Social details. The background image URL can be left blank.\n\nIMPORTANT: This should be a domain name which is supported by Let's Encrypt:" 14 65 2 \
  356. $"Domain:" 1 1 "$(grep 'PELICAN_DOMAIN_NAME' temp.cfg | awk -F '=' '{print $2}')" 1 25 33 40 \
  357. 2> $data
  358. fi
  359. sel=$?
  360. case $sel in
  361. 1) exit 1;;
  362. 255) exit 1;;
  363. esac
  364. PELICAN_DOMAIN_NAME=$(cat $data | sed -n 1p)
  365. if [ $PELICAN_DOMAIN_NAME ]; then
  366. if [[ $PELICAN_DOMAIN_NAME == "$HUBZILLA_DOMAIN_NAME" ]]; then
  367. PELICAN_DOMAIN_NAME=""
  368. fi
  369. TEST_DOMAIN_NAME=$PELICAN_DOMAIN_NAME
  370. validate_domain_name
  371. if [[ $TEST_DOMAIN_NAME != $PELICAN_DOMAIN_NAME ]]; then
  372. PELICAN_DOMAIN_NAME=
  373. dialog --title $"Domain name validation" --msgbox "$TEST_DOMAIN_NAME" 15 50
  374. else
  375. if [[ $DDNS_PROVIDER == "default@freedns.afraid.org" ]]; then
  376. PELICAN_BLOG_CODE=$(cat $data | sed -n 2p)
  377. validate_freedns_code "$PELICAN_BLOG_CODE"
  378. if [ ! $VALID_CODE ]; then
  379. PELICAN_DOMAIN_NAME=
  380. fi
  381. fi
  382. fi
  383. fi
  384. if [ $PELICAN_DOMAIN_NAME ]; then
  385. PELICAN_DETAILS_COMPLETE="yes"
  386. fi
  387. done
  388. # save the results in the config file
  389. write_config_param "PELICAN_BLOG_CODE" "$PELICAN_BLOG_CODE"
  390. fi
  391. write_config_param "PELICAN_DOMAIN_NAME" "$PELICAN_DOMAIN_NAME"
  392. APP_INSTALLED=1
  393. }
  394. function reconfigure_pelican {
  395. echo -n ''
  396. }
  397. function upgrade_pelican {
  398. echo -n ''
  399. }
  400. function backup_local_pelican {
  401. source_directory=/etc/blog
  402. if [ -d $source_directory ]; then
  403. dest_directory=pelican
  404. function_check backup_directory_to_usb
  405. backup_directory_to_usb $source_directory $dest_directory
  406. fi
  407. source_directory=/var/www/$PELICAN_DOMAIN_NAME/htdocs
  408. if [ -d $source_directory ]; then
  409. dest_directory=pelican-site
  410. function_check backup_directory_to_usb
  411. backup_directory_to_usb $source_directory $dest_directory
  412. fi
  413. }
  414. function restore_local_pelican {
  415. if [ -d /etc/blog ]; then
  416. if [ -d $USB_MOUNT_DLNA/backup/pelican ]; then
  417. temp_restore_dir=/root/temppelican
  418. function_check restore_directory_from_usb
  419. restore_directory_from_usb $temp_restore_dir pelican
  420. if [ -d $temp_restore_dir/etc/blog ]; then
  421. cp -r $temp_restore_dir/etc/blog/* /etc/blog/
  422. else
  423. cp -r $temp_restore_dir/* /etc/blog/
  424. fi
  425. if [ ! "$?" = "0" ]; then
  426. rm -rf $temp_restore_dir
  427. function_check set_user_permissions
  428. set_user_permissions
  429. function_check backup_unmount_drive
  430. backup_unmount_drive
  431. exit 527942
  432. fi
  433. rm -rf $temp_restore_dir
  434. fi
  435. fi
  436. if [ -d /var/www/$PELICAN_DOMAIN_NAME/htdocs ]; then
  437. if [ -d $USB_MOUNT_DLNA/backup/pelican-site ]; then
  438. temp_restore_dir=/root/temppelican-site
  439. function_check restore_directory_from_usb
  440. restore_directory_from_usb $temp_restore_dir pelican-site
  441. if [ -d $temp_restore_dir/var/www/$PELICAN_DOMAIN_NAME/htdocs ]; then
  442. cp -r $temp_restore_dir/var/www/$PELICAN_DOMAIN_NAME/htdocs/* /var/www/$PELICAN_DOMAIN_NAME/htdocs/
  443. else
  444. cp -r $temp_restore_dir/* /var/www/$PELICAN_DOMAIN_NAME/htdocs/
  445. fi
  446. if [ ! "$?" = "0" ]; then
  447. rm -rf $temp_restore_dir
  448. function_check set_user_permissions
  449. set_user_permissions
  450. function_check backup_unmount_drive
  451. backup_unmount_drive
  452. exit 2946282
  453. fi
  454. rm -rf $temp_restore_dir
  455. fi
  456. fi
  457. }
  458. function backup_remote_pelican {
  459. if [ -d /etc/blog ]; then
  460. backup_directory_to_friend /etc/blog pelican
  461. fi
  462. if [ -d /var/www/$PELICAN_DOMAIN_NAME/htdocs ]; then
  463. backup_directory_to_friend /var/www/$PELICAN_DOMAIN_NAME/htdocs pelican-site
  464. fi
  465. }
  466. function restore_remote_pelican {
  467. if [ -d /etc/blog ]; then
  468. if [ -d $SERVER_DIRECTORY/backup/pelican ]; then
  469. temp_restore_dir=/root/temppelican
  470. function_check restore_directory_from_friend
  471. restore_directory_from_friend $temp_restore_dir pelican
  472. if [ -d $temp_restore_dir/etc/blog ]; then
  473. cp -r $temp_restore_dir/etc/blog/* /etc/blog/
  474. else
  475. cp -r $temp_restore_dir/* /etc/blog/
  476. fi
  477. if [ ! "$?" = "0" ]; then
  478. exit 782352
  479. fi
  480. rm -rf $temp_restore_dir
  481. fi
  482. fi
  483. if [ -d /var/www/$PELICAN_DOMAIN_NAME/htdocs ]; then
  484. if [ -d $SERVER_DIRECTORY/backup/pelican-site ]; then
  485. temp_restore_dir=/root/temppelican-site
  486. function_check restore_directory_from_friend
  487. restore_directory_from_friend $temp_restore_dir pelican-site
  488. if [ -d $temp_restore_dir/var/www/$PELICAN_DOMAIN_NAME/htdocs ]; then
  489. cp -r $temp_restore_dir/var/www/$PELICAN_DOMAIN_NAME/htdocs/* /var/www/$PELICAN_DOMAIN_NAME/htdocs/
  490. else
  491. cp -r $temp_restore_dir/* /var/www/$PELICAN_DOMAIN_NAME/htdocs/
  492. fi
  493. if [ ! "$?" = "0" ]; then
  494. exit 76382562
  495. fi
  496. rm -rf $temp_restore_dir
  497. fi
  498. fi
  499. }
  500. function remove_pelican {
  501. if [ -f /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME ]; then
  502. nginx_dissite pelican
  503. rm /etc/nginx/sites-available/$PELICAN_DOMAIN_NAME
  504. if [ -d /var/www/$PELICAN_DOMAIN_NAME ]; then
  505. rm -rf /var/www/$PELICAN_DOMAIN_NAME
  506. fi
  507. systemctl reload nginx
  508. fi
  509. pip uninstall pelican
  510. remove_certs $PELICAN_DOMAIN_NAME
  511. function_check remove_onion_service
  512. remove_onion_service pelican ${PELICAN_ONION_PORT}
  513. remove_app pelican
  514. systemctl restart tor
  515. }
  516. function create_pelican_conf {
  517. STATIC_BLOG_FILE=$1
  518. echo '#!/usr/bin/env python' > $STATIC_BLOG_FILE
  519. echo '# -*- coding: utf-8 -*- #' >> $STATIC_BLOG_FILE
  520. echo 'from __future__ import unicode_literals' >> $STATIC_BLOG_FILE
  521. echo '' >> $STATIC_BLOG_FILE
  522. echo "AUTHOR=u\"$MY_USERNAME\"" >> $STATIC_BLOG_FILE
  523. echo "SITENAME=u'$DEFAULT_BLOG_TITLE'" >> $STATIC_BLOG_FILE
  524. echo "SITEURL=''" >> $STATIC_BLOG_FILE
  525. echo "PATH='content'" >> $STATIC_BLOG_FILE
  526. echo 'TIMEZONE=u"Europe/London"' >> $STATIC_BLOG_FILE
  527. echo "DEFAULT_LANG=u'en'" >> $STATIC_BLOG_FILE
  528. echo '' >> $STATIC_BLOG_FILE
  529. echo 'FEED_ALL_ATOM=None' >> $STATIC_BLOG_FILE
  530. echo 'CATEGORY_FEED_ATOM=None' >> $STATIC_BLOG_FILE
  531. echo 'TRANSLATION_FEED_ATOM=None' >> $STATIC_BLOG_FILE
  532. echo 'AUTHOR_FEED_ATOM=None' >> $STATIC_BLOG_FILE
  533. echo 'AUTHOR_FEED_RSS=None' >> $STATIC_BLOG_FILE
  534. echo '' >> $STATIC_BLOG_FILE
  535. echo 'DEFAULT_PAGINATION=False' >> $STATIC_BLOG_FILE
  536. echo 'RELATIVE_URLS=True' >> $STATIC_BLOG_FILE
  537. echo "THEME='themes/nice-blog'" >> $STATIC_BLOG_FILE
  538. }
  539. function create_pelican_makefile {
  540. STATIC_BLOG_FILE=$1
  541. echo 'PY?=python' > $STATIC_BLOG_FILE
  542. echo 'PELICAN?=pelican' >> $STATIC_BLOG_FILE
  543. echo 'PELICANOPTS=' >> $STATIC_BLOG_FILE
  544. echo '' >> $STATIC_BLOG_FILE
  545. echo 'BASEDIR=$(CURDIR)' >> $STATIC_BLOG_FILE
  546. echo 'INPUTDIR=$(BASEDIR)/content' >> $STATIC_BLOG_FILE
  547. echo "OUTPUTDIR=$PELICAN_BLOG_PATH" >> $STATIC_BLOG_FILE
  548. echo 'CONFFILE=$(BASEDIR)/pelicanconf.py' >> $STATIC_BLOG_FILE
  549. echo 'PUBLISHCONF=$(BASEDIR)/publishconf.py' >> $STATIC_BLOG_FILE
  550. echo '' >> $STATIC_BLOG_FILE
  551. echo 'DEBUG ?= 0' >> $STATIC_BLOG_FILE
  552. echo 'ifeq ($(DEBUG), 1)' >> $STATIC_BLOG_FILE
  553. echo -e '\tPELICANOPTS += -D' >> $STATIC_BLOG_FILE
  554. echo 'endif' >> $STATIC_BLOG_FILE
  555. echo '' >> $STATIC_BLOG_FILE
  556. echo 'RELATIVE ?= 0' >> $STATIC_BLOG_FILE
  557. echo 'ifeq ($(RELATIVE), 1)' >> $STATIC_BLOG_FILE
  558. echo -e '\tPELICANOPTS += --relative-urls' >> $STATIC_BLOG_FILE
  559. echo 'endif' >> $STATIC_BLOG_FILE
  560. echo '' >> $STATIC_BLOG_FILE
  561. echo 'html:' >> $STATIC_BLOG_FILE
  562. echo -e '\t$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)' >> $STATIC_BLOG_FILE
  563. echo '' >> $STATIC_BLOG_FILE
  564. echo 'clean:' >> $STATIC_BLOG_FILE
  565. echo -e '\t[ ! -d $(OUTPUTDIR) ] || rm -rf $(OUTPUTDIR)' >> $STATIC_BLOG_FILE
  566. echo '' >> $STATIC_BLOG_FILE
  567. echo 'regenerate:' >> $STATIC_BLOG_FILE
  568. echo -e '\t$(PELICAN) -r $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)' >> $STATIC_BLOG_FILE
  569. echo '' >> $STATIC_BLOG_FILE
  570. echo 'serve:' >> $STATIC_BLOG_FILE
  571. echo 'ifdef PORT' >> $STATIC_BLOG_FILE
  572. echo -e '\tcd $(OUTPUTDIR) && $(PY) -m pelican.server $(PORT)' >> $STATIC_BLOG_FILE
  573. echo 'else' >> $STATIC_BLOG_FILE
  574. echo -e '\tcd $(OUTPUTDIR) && $(PY) -m pelican.server' >> $STATIC_BLOG_FILE
  575. echo 'endif' >> $STATIC_BLOG_FILE
  576. echo '' >> $STATIC_BLOG_FILE
  577. echo 'serve-global:' >> $STATIC_BLOG_FILE
  578. echo 'ifdef SERVER' >> $STATIC_BLOG_FILE
  579. echo -e '\tcd $(OUTPUTDIR) && $(PY) -m pelican.server 80 $(SERVER)' >> $STATIC_BLOG_FILE
  580. echo 'else' >> $STATIC_BLOG_FILE
  581. echo -e '\tcd $(OUTPUTDIR) && $(PY) -m pelican.server 80 0.0.0.0' >> $STATIC_BLOG_FILE
  582. echo 'endif' >> $STATIC_BLOG_FILE
  583. echo '' >> $STATIC_BLOG_FILE
  584. echo 'devserver:' >> $STATIC_BLOG_FILE
  585. echo 'ifdef PORT' >> $STATIC_BLOG_FILE
  586. echo -e '\t$(BASEDIR)/develop_server.sh restart $(PORT)' >> $STATIC_BLOG_FILE
  587. echo 'else' >> $STATIC_BLOG_FILE
  588. echo -e '\t$(BASEDIR)/develop_server.sh restart' >> $STATIC_BLOG_FILE
  589. echo 'endif' >> $STATIC_BLOG_FILE
  590. echo '' >> $STATIC_BLOG_FILE
  591. echo 'stopserver:' >> $STATIC_BLOG_FILE
  592. echo -e '\t$(BASEDIR)/develop_server.sh stop' >> $STATIC_BLOG_FILE
  593. echo -e '\t@echo "Stopped Pelican and SimpleHTTPServer processes running in background."' >> $STATIC_BLOG_FILE
  594. echo '' >> $STATIC_BLOG_FILE
  595. echo 'publish:' >> $STATIC_BLOG_FILE
  596. echo -e '\t$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)' >> $STATIC_BLOG_FILE
  597. echo '' >> $STATIC_BLOG_FILE
  598. echo '.PHONY: html clean regenerate serve serve-global devserver publish' >> $STATIC_BLOG_FILE
  599. }
  600. function create_pelican_publish_conf {
  601. STATIC_BLOG_FILE=$1
  602. echo '#!/usr/bin/env python' > $STATIC_BLOG_FILE
  603. echo '# -*- coding: utf-8 -*- #' >> $STATIC_BLOG_FILE
  604. echo 'from __future__ import unicode_literals' >> $STATIC_BLOG_FILE
  605. echo '' >> $STATIC_BLOG_FILE
  606. echo 'import os' >> $STATIC_BLOG_FILE
  607. echo 'import sys' >> $STATIC_BLOG_FILE
  608. echo 'sys.path.append(os.curdir)' >> $STATIC_BLOG_FILE
  609. echo 'from pelicanconf import *' >> $STATIC_BLOG_FILE
  610. echo '' >> $STATIC_BLOG_FILE
  611. echo "SITEURL = ''" >> $STATIC_BLOG_FILE
  612. echo 'RELATIVE_URLS = True' >> $STATIC_BLOG_FILE
  613. echo '' >> $STATIC_BLOG_FILE
  614. echo "FEED_ALL_ATOM = 'feeds/all.atom.xml'" >> $STATIC_BLOG_FILE
  615. echo "CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'" >> $STATIC_BLOG_FILE
  616. echo '' >> $STATIC_BLOG_FILE
  617. echo 'DELETE_OUTPUT_DIRECTORY = True' >> $STATIC_BLOG_FILE
  618. }
  619. function pelican_themes {
  620. # Clone themes separately because the themes repo sometimes has bad refs
  621. git clone https://github.com/KenMercusLai/BT3-Flat
  622. git clone https://github.com/abr4xas/Casper2Pelican
  623. git clone https://github.com/alexandrevicenzi/Flex
  624. git clone https://github.com/allenskd/Nuja
  625. git clone https://github.com/ir193/Responsive-Pelican
  626. git clone https://github.com/nairobilug/pelican-alchemy
  627. git clone https://github.com/livibetter-backup/apricot
  628. git clone https://github.com/jody-frankowski/blue-penguin
  629. git clone https://github.com/gregseth/pelican-bgh
  630. git clone https://github.com/blueicefield/pelican-blueidea
  631. git clone https://github.com/demianbrecht/pelican-bold
  632. git clone https://github.com/fly/burrito
  633. git clone https://github.com/yuex/pelican-iliork
  634. git clone https://github.com/tbunnyman/pelican-chunk
  635. git clone https://github.com/hdra/Pelican-Cid
  636. git clone https://github.com/gilsondev/pelican-clean-blog
  637. git clone https://github.com/porterjamesj/crowsfoot
  638. git clone https://github.com/22decembre/dev-random3.git
  639. git clone https://github.com/kura/eevee
  640. git clone https://github.com/talha131/pelican-elegant.git
  641. git clone https://github.com/callmefish/pelican-free-agent
  642. git clone https://github.com/jsliang/pelican-fresh
  643. git clone https://github.com/vaiski/genus
  644. git clone https://github.com/PierrePaul/html5-dopetrope
  645. git clone https://github.com/jvanz/pelican-hyde
  646. git clone https://github.com/erfaan/pelican-theme-irfan
  647. git clone https://github.com/slok/iris
  648. git clone https://github.com/badele/pelican-theme-jesuislibre
  649. git clone https://github.com/mothsART/pelican-lab
  650. git clone https://github.com/siovene/lannisport
  651. git clone https://github.com/lazycoder-ru/lazystrap
  652. git clone https://github.com/chdoig/pelican-bootstrap3-lovers
  653. git clone https://github.com/kplaube/maggner-pelican
  654. git clone https://github.com/cpaulik/martin-pelican
  655. git clone https://github.com/greizgh/pelican-material
  656. git clone https://github.com/eswarm/materialistic-pelican
  657. git clone https://github.com/cprieto/pelican-mediumfox
  658. git clone https://github.com/onuraslan/medius
  659. git clone https://github.com/lucachr/pelican-mg
  660. git clone https://github.com/BYK/pelican-neat
  661. git clone https://github.com/molivier/nest
  662. git clone https://github.com/guilherme-toti/nice-blog
  663. git clone https://github.com/gunchu/nikhil-theme
  664. git clone https://github.com/wilbur-ma/niu-x2
  665. git clone https://github.com/duilio/pelican-octopress-theme
  666. git clone https://github.com/Parbhat/pelican-blue
  667. git clone https://github.com/hdra/pelican-cait
  668. git clone https://github.com/laughk/pelican-hss
  669. git clone https://github.com/wrl/pelican-mockingbird
  670. git clone https://github.com/fle/pelican-simplegrey
  671. git clone https://github.com/fle/pelican-sober
  672. git clone https://github.com/ingwinlu/pelican-twitchy
  673. git clone https://github.com/badele/pelicanthemes-generator
  674. git clone https://github.com/jjimenezlopez/pelipress
  675. git clone https://github.com/xm3ron/pjport
  676. git clone https://github.com/kdeldycke/plumage
  677. git clone https://github.com/habibillah/pujangga
  678. git clone https://github.com/danclaudiupop/pure
  679. git clone https://github.com/wamonite/relapse
  680. git clone https://github.com/ellisonleao/pelican-semantic-ui
  681. git clone https://github.com/kdheepak89/pelican-smoothie
  682. git clone https://github.com/if1live/pelican-sora
  683. git clone https://github.com/redVi/storm
  684. git clone https://github.com/keningle/pelican-sundown
  685. git clone https://github.com/giulivo/pelican-svbhack
  686. git clone https://github.com/wting/pelican-svbtle
  687. git clone https://github.com/frankV/twenty-pelican-html5up
  688. git clone https://github.com/robulouski/voidy-bootstrap
  689. git clone https://github.com/samael500/w3-personal-blog
  690. git clone https://github.com/jarv/water-iris
  691. git clone https://github.com/kplaube/yapeme
  692. # remove any dubious css
  693. for d in */ ; do
  694. THEME_NAME=$(echo "$d" | awk -F '/' '{print $1}')
  695. if [ -d $d/static/css/style.css ]; then
  696. sed -i '/googleapi/d' $d/static/css/style.css
  697. fi
  698. done
  699. }
  700. function mesh_install_pelican {
  701. if [[ $VARIANT != "meshclient" && $VARIANT != "meshusb" && $VARIANT != "usb" ]]; then
  702. return
  703. fi
  704. chroot "$rootdir" apt-get -yq install python-pip
  705. chroot "$rootdir" pip install ipython
  706. chroot "$rootdir" pip install Markdown
  707. chroot "$rootdir" pip install typogrify
  708. chroot "$rootdir" pip install pelican
  709. PELICAN_BLOG_INSTALL_DIR=/home/$MY_USERNAME/CreateBlog
  710. PELICAN_BLOG_PATH=/home/$MY_USERNAME/Public/Blog
  711. if [ ! -d $rootdir$PELICAN_BLOG_INSTALL_DIR ]; then
  712. mkdir -p $rootdir$PELICAN_BLOG_INSTALL_DIR
  713. fi
  714. if [ ! -d $rootdir$PELICAN_BLOG_PATH ]; then
  715. mkdir -p $rootdir$PELICAN_BLOG_PATH
  716. fi
  717. if [ ! -d $rootdir$PELICAN_BLOG_INSTALL_DIR/content/images ]; then
  718. mkdir -p $rootdir$PELICAN_BLOG_INSTALL_DIR/content/images
  719. fi
  720. create_pelican_conf $rootdir$PELICAN_BLOG_INSTALL_DIR/pelicanconf.py
  721. create_pelican_makefile $rootdir$PELICAN_BLOG_INSTALL_DIR/Makefile
  722. create_pelican_publish_conf $rootdir$PELICAN_BLOG_INSTALL_DIR/publishconf.py
  723. mkdir -p $rootdir$PELICAN_BLOG_INSTALL_DIR/themes
  724. cd $rootdir$PELICAN_BLOG_INSTALL_DIR/themes
  725. pelican_themes
  726. #git clone --recursive $PELICAN_PLUGINS_REPO $rootdir$PELICAN_BLOG_INSTALL_DIR/plugins
  727. chroot "$rootdir" chown -R $MY_USERNAME:$MY_USERNAME $PELICAN_BLOG_INSTALL_DIR
  728. chroot "$rootdir" chown -R $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/Public
  729. }
  730. function install_pelican {
  731. if [ $INSTALLING_MESH ]; then
  732. mesh_install_pelican
  733. return
  734. fi
  735. apt-get -yq install python-pip
  736. pip install ipython
  737. pip install Markdown
  738. pip install typogrify
  739. pip install pelican
  740. PELICAN_BLOG_PATH=/var/www/$PELICAN_DOMAIN_NAME/htdocs
  741. if [ ! -d $PELICAN_BLOG_INSTALL_DIR ]; then
  742. mkdir -p $PELICAN_BLOG_INSTALL_DIR
  743. fi
  744. if [ ! -d $PELICAN_BLOG_PATH ]; then
  745. mkdir -p $PELICAN_BLOG_PATH
  746. fi
  747. if [ ! -d $PELICAN_BLOG_INSTALL_DIR/content ]; then
  748. mkdir -p $PELICAN_BLOG_INSTALL_DIR/content
  749. fi
  750. create_pelican_conf $PELICAN_BLOG_INSTALL_DIR/pelicanconf.py
  751. create_pelican_makefile $PELICAN_BLOG_INSTALL_DIR/Makefile
  752. create_pelican_publish_conf $PELICAN_BLOG_INSTALL_DIR/publishconf.py
  753. mkdir -p $PELICAN_THEMES_REPO $PELICAN_BLOG_INSTALL_DIR/themes
  754. cd $PELICAN_THEMES_REPO $PELICAN_BLOG_INSTALL_DIR/themes
  755. pelican_themes
  756. #git clone --recursive $PELICAN_PLUGINS_REPO $PELICAN_BLOG_INSTALL_DIR/plugins
  757. chown -R $MY_USERNAME:$MY_USERNAME $PELICAN_BLOG_INSTALL_DIR
  758. chown -R www-data:www-data $PELICAN_BLOG_PATH
  759. pelican_editor_config
  760. PELICAN_ONION_HOSTNAME=$(add_onion_service pelican 80 ${PELICAN_ONION_PORT})
  761. set_completion_param "pelican onion domain" "$PELICAN_ONION_HOSTNAME"
  762. install_pelican_website
  763. install_pelican_website_onion
  764. pelican_regenerate_blog
  765. if [ ! -d $PELICAN_BLOG_INSTALL_DIR/output ]; then
  766. echo $'Failed to generate pelican blog'
  767. exit 521892
  768. fi
  769. function_check nginx_ensite
  770. nginx_ensite $PELICAN_DOMAIN_NAME
  771. systemctl restart nginx
  772. APP_INSTALLED=1
  773. }
  774. # NOTE: deliberately no exit 0