freedombone-mesh-blog 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Blogging functions for mesh clients
  12. #
  13. # License
  14. # =======
  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. PROJECT_NAME='freedombone'
  29. export TEXTDOMAIN=${PROJECT_NAME}-mesh-blog
  30. export TEXTDOMAINDIR="/usr/share/locale"
  31. IPFS_PATH=/usr/bin
  32. IPFS_COMMAND=$IPFS_PATH/ipfs
  33. IPFS_PUBLIC=/home/$USER/.ipfs-public
  34. BLOG_PATH=~/CreateBlog
  35. BLOG_CONTENT_PATH=$BLOG_PATH/content
  36. CURRENT_BLOG_INDEX=/home/$USER/.blog-index
  37. BLOG_EDITOR='pluma'
  38. DEFAULT_BLOG_TITLE=$"Freedombone Blog"
  39. function ipfs_publish {
  40. DIR_TO_CHECK=/home/$USER/Public
  41. if [ ! -d $DIR_TO_CHECK ]; then
  42. return
  43. fi
  44. echo ''
  45. echo $'Publishing to IPFS. This may take some time...'
  46. OLD_STAT_FILE=/home/$USER/.old_stat.txt
  47. NEW_STAT=$(stat -t $DIR_TO_CHECK)
  48. echo $($IPFS_COMMAND add -rq /home/$USER/Public | tail -n 1) > $IPFS_PUBLIC
  49. echo "$NEW_STAT" > $OLD_STAT_FILE
  50. if [ -f $IPFS_PUBLIC ]; then
  51. IPFS_PUBLIC_ID=$(cat $IPFS_PUBLIC)
  52. $IPFS_COMMAND name publish /ipfs/$IPFS_PUBLIC_ID
  53. fi
  54. }
  55. function regenerate_blog {
  56. clear
  57. echo ''
  58. echo $'Regenerating blog...'
  59. cd $BLOG_PATH
  60. if grep -q "SITENAME=u'${DEFAULT_BLOG_TITLE}'" $BLOG_PATH/pelicanconf.py; then
  61. TOX_NICK=$(toxid --showuser)
  62. BLOG_TITLE=$"${TOX_NICK}'s Blog"
  63. sed -i "s|SITENAME=.*|SITENAME=u\"${BLOG_TITLE}\"|g" $BLOG_PATH/pelicanconf.py
  64. fi
  65. make html
  66. ipfs_publish
  67. }
  68. function view_blog {
  69. freedombone-mesh-visit-site '/Blog'
  70. exit 0
  71. }
  72. function new_blog {
  73. DATESTR=$(date "+%Y-%m-%d %H:%M:%S")
  74. echo $'Title: Blog Post Title' > ~/.new-blog-entry
  75. echo $"Date: ${DATESTR}" >> ~/.new-blog-entry
  76. echo $"Author: $(toxid --showuser)" >> ~/.new-blog-entry
  77. echo $'Category: default' >> ~/.new-blog-entry
  78. echo $'Tags: blog, tag' >> ~/.new-blog-entry
  79. echo '' >> ~/.new-blog-entry
  80. echo $'Add your text here' >> ~/.new-blog-entry
  81. echo '' >> ~/.new-blog-entry
  82. echo -n $'To include an image copy it into the ~/CreateBlog/content/images directory, ' >> ~/.new-blog-entry
  83. echo $'then link to it with:' >> ~/.new-blog-entry
  84. echo '' >> ~/.new-blog-entry
  85. echo $'![My image]({filename}images/myimage.jpg)' >> ~/.new-blog-entry
  86. echo '' >> ~/.new-blog-entry
  87. $BLOG_EDITOR ~/.new-blog-entry
  88. if grep -q $"Add your text here" ~/.new-blog-entry; then
  89. return
  90. fi
  91. if grep -q $"Blog Post Title" ~/.new-blog-entry; then
  92. return
  93. fi
  94. if [ ! -f $CURRENT_BLOG_INDEX ]; then
  95. echo '0' > $CURRENT_BLOG_INDEX
  96. fi
  97. # move to the content directory
  98. CURRENT_INDEX=$(cat $CURRENT_BLOG_INDEX)
  99. mv ~/.new-blog-entry $BLOG_CONTENT_PATH/${CURRENT_INDEX}_post.md
  100. # increment the index
  101. CURRENT_INDEX=$((CURRENT_INDEX + 1))
  102. echo "$CURRENT_INDEX" > $CURRENT_BLOG_INDEX
  103. regenerate_blog
  104. }
  105. function edit_blog {
  106. if [ ! -f $CURRENT_BLOG_INDEX ]; then
  107. return
  108. fi
  109. CURRENT_INDEX=$(cat $CURRENT_BLOG_INDEX)
  110. PREVIOUS_INDEX=$((CURRENT_INDEX - 1))
  111. LAST_BLOG_ENTRY=$BLOG_CONTENT_PATH/${PREVIOUS_INDEX}_post.md
  112. if [ ! -f $LAST_BLOG_ENTRY ]; then
  113. return
  114. fi
  115. $BLOG_EDITOR $LAST_BLOG_ENTRY
  116. regenerate_blog
  117. }
  118. function delete_blog {
  119. if [ ! -f $CURRENT_BLOG_INDEX ]; then
  120. return
  121. fi
  122. CURRENT_INDEX=$(cat $CURRENT_BLOG_INDEX)
  123. PREVIOUS_INDEX=$((CURRENT_INDEX - 1))
  124. LAST_BLOG_ENTRY=$BLOG_CONTENT_PATH/${PREVIOUS_INDEX}_post.md
  125. if [ ! -f $LAST_BLOG_ENTRY ]; then
  126. return
  127. fi
  128. dialog --title $"Delete the previous blog entry" \
  129. --backtitle $"Freedombone Mesh" \
  130. --defaultno \
  131. --yesno $"\nAre you sure that you wish to delete the previous blog entry?" 8 60
  132. sel=$?
  133. case $sel in
  134. 0) rm $LAST_BLOG_ENTRY
  135. if [ $CURRENT_INDEX -gt 0 ]; then
  136. CURRENT_INDEX=$PREVIOUS_INDEX
  137. echo "$CURRENT_INDEX" > $CURRENT_BLOG_INDEX
  138. else
  139. rm -f $CURRENT_BLOG_INDEX
  140. fi
  141. regenerate_blog
  142. ;;
  143. esac
  144. }
  145. function change_theme {
  146. THEMES=()
  147. for d in $BLOG_PATH/themes/*/ ; do
  148. THEME_NAME=$(echo "$d" | awk -F '/' '{print $6}')
  149. THEMES+=("$THEME_NAME")
  150. done
  151. themelist=""
  152. n=1
  153. theme_index=0
  154. curr_theme_index=
  155. if [ -f /home/$USER/.blog-theme-index ]; then
  156. curr_theme_index=$(cat /home/$USER/.blog-theme-index)
  157. fi
  158. for a in "${THEMES[@]}"
  159. do
  160. is_selected='off'
  161. if [ $curr_theme_index ]; then
  162. if [ $n -eq $curr_theme_index ]; then
  163. is_selected='on'
  164. fi
  165. else
  166. if [[ "$a" == 'nice-blog' ]]; then
  167. is_selected='on'
  168. fi
  169. fi
  170. themelist="$themelist $n $a $is_selected"
  171. n=$[n+1]
  172. theme_index=$[theme_index+1]
  173. done
  174. data=$(tempfile 2>/dev/null)
  175. trap "rm -f $data" 0 1 2 5 15
  176. dialog --backtitle $"Freedombone Mesh" \
  177. --title $"Select Blog Theme" \
  178. --radiolist $'Choose:' \
  179. 80 40 20 $themelist 2> $data
  180. sel=$?
  181. case $sel in
  182. 1) exit 1;;
  183. 255) exit 1;;
  184. esac
  185. CHOSEN_THEME_INDEX=$(cat $data)
  186. echo "$CHOSEN_THEME_INDEX" > /home/$USER/.blog-theme-index
  187. CHOSEN_THEME_INDEX=$((CHOSEN_THEME_INDEX - 1))
  188. CHOSEN_THEME=${THEMES[$CHOSEN_THEME_INDEX]}
  189. if grep -q "THEME=" $BLOG_PATH/pelicanconf.py; then
  190. sed -i "s|THEME=.*|THEME='themes/${CHOSEN_THEME}'|g" $BLOG_PATH/pelicanconf.py
  191. else
  192. echo "THEME='themes/${CHOSEN_THEME}'" >> $BLOG_PATH/pelicanconf.py
  193. fi
  194. regenerate_blog
  195. }
  196. function menu_blog {
  197. data=$(tempfile 2>/dev/null)
  198. trap "rm -f $data" 0 1 2 5 15
  199. dialog --backtitle $"Freedombone Mesh" \
  200. --title $"Blogging" \
  201. --radiolist $"Choose an operation:" 19 50 12 \
  202. 1 $"View a blog" on \
  203. 2 $"New blog entry" off \
  204. 3 $"Edit the previous blog entry" off \
  205. 4 $"Delete the previous blog entry" off \
  206. 5 $"Change theme" off \
  207. 6 $"Exit" off 2> $data
  208. sel=$?
  209. case $sel in
  210. 1) exit 1;;
  211. 255) exit 1;;
  212. esac
  213. case $(cat $data) in
  214. 1) view_blog;;
  215. 2) new_blog;;
  216. 3) edit_blog;;
  217. 4) delete_blog;;
  218. 5) change_theme;;
  219. 6) break;;
  220. esac
  221. }
  222. menu_blog
  223. exit 0