freedombone-mesh-blog 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. if ! zenity --question --title=$'Delete the previous blog entry' --text=$"\nAre you sure that you wish to delete the previous blog entry?" --ok-label=No --cancel-label=Yes --width=300; then
  129. rm $LAST_BLOG_ENTRY
  130. if [ $CURRENT_INDEX -gt 0 ]; then
  131. CURRENT_INDEX=$PREVIOUS_INDEX
  132. echo "$CURRENT_INDEX" > $CURRENT_BLOG_INDEX
  133. else
  134. rm -f $CURRENT_BLOG_INDEX
  135. fi
  136. regenerate_blog
  137. fi
  138. }
  139. function change_theme {
  140. THEMES=()
  141. for d in $BLOG_PATH/themes/*/ ; do
  142. THEME_NAME=$(echo "$d" | awk -F '/' '{print $6}')
  143. THEMES+=("$THEME_NAME")
  144. done
  145. themelist=""
  146. n=1
  147. theme_index=0
  148. curr_theme_index=
  149. if [ -f /home/$USER/.blog-theme-index ]; then
  150. curr_theme_index=$(cat /home/$USER/.blog-theme-index)
  151. fi
  152. for a in "${THEMES[@]}"
  153. do
  154. is_selected='off'
  155. if [ $curr_theme_index ]; then
  156. if [ $n -eq $curr_theme_index ]; then
  157. is_selected='on'
  158. fi
  159. else
  160. if [[ "$a" == 'nice-blog' ]]; then
  161. is_selected='on'
  162. fi
  163. fi
  164. themelist="$themelist $n $a $is_selected"
  165. n=$[n+1]
  166. theme_index=$[theme_index+1]
  167. done
  168. data=$(tempfile 2>/dev/null)
  169. trap "rm -f $data" 0 1 2 5 15
  170. dialog --backtitle $"Freedombone Mesh" \
  171. --title $"Select Blog Theme" \
  172. --radiolist $'Choose:' \
  173. 80 40 20 $themelist 2> $data
  174. sel=$?
  175. case $sel in
  176. 1) exit 1;;
  177. 255) exit 1;;
  178. esac
  179. CHOSEN_THEME_INDEX=$(cat $data)
  180. echo "$CHOSEN_THEME_INDEX" > /home/$USER/.blog-theme-index
  181. CHOSEN_THEME_INDEX=$((CHOSEN_THEME_INDEX - 1))
  182. CHOSEN_THEME=${THEMES[$CHOSEN_THEME_INDEX]}
  183. if grep -q "THEME=" $BLOG_PATH/pelicanconf.py; then
  184. sed -i "s|THEME=.*|THEME='themes/${CHOSEN_THEME}'|g" $BLOG_PATH/pelicanconf.py
  185. else
  186. echo "THEME='themes/${CHOSEN_THEME}'" >> $BLOG_PATH/pelicanconf.py
  187. fi
  188. regenerate_blog
  189. }
  190. function menu_blog {
  191. data=$(zenity --list 1 $"View a blog" 2 $"New blog entry" 3 $"Edit the previous blog entry" 4 $"Delete the previous blog entry" 5 $"Change theme" --column="id" --title $"Blogging" --column=$"Choose an operation:" --hide-column=1 --print-column=1 --height=250)
  192. sel=$?
  193. case $sel in
  194. 1) exit 1;;
  195. 255) exit 1;;
  196. esac
  197. case $data in
  198. 1) view_blog;;
  199. 2) new_blog;;
  200. 3) edit_blog;;
  201. 4) delete_blog;;
  202. 5) change_theme;;
  203. esac
  204. }
  205. menu_blog
  206. exit 0