a79e1c7cc3ba1b16ca9695d0192f34a2a7cb448b
[pb.git] / pb
1 #!/bin/sh
2
3 # pinosaur's blog script
4
5 data_dir="blog"
6 website_url="https://www.youtube.com/watch?v=oHg5SJYRHA0/" 
7
8 blog_index_file="blogindex.html"
9 rolling_file="rolling.html"
10 rss_file="rss.xml"
11
12 blog_template="template.html"
13 index_template="index_entry.html"
14 rolling_template="rolling_entry.html"
15 rss_template="rss_entry.html"
16
17 [ ! -z "$EDITOR" ] && EDITOR="vim"
18
19 init() {
20     read -p "Initialize blog? [y/n] " ask
21     [ "$ask" != "y" ] && exit 0
22
23     mkdir -p "$data_dir/drafts" "$data_dir/published" "$data_dir/html" "$data_dir/templates" 
24
25     echo '<p id="{{TITLE}}">{{TITLE}}</p>' >> "$data_dir/templates/$index_template"
26     echo -e '<div id="{{TITLE}}">\n<h2>{{TITLE}}</h2>\n<p>{{DATE}}</p></div>' >> "$data_dir/templates/$rolling_template"
27     echo -e '<item>\n<title>{{TITLE}}</title>\n<link></link>\n<description><\description>\n<\item>' \
28         >> "$data_dir/templates/$rss_template"
29
30     echo "Created blog files"
31 }
32
33 refresh() {
34
35     read -p "Are you sure you want to refresh? [y/n] " ask
36     [ "$ask" != "y" ] && exit 0
37
38     # delete everything between tokens (remove dupe code)
39     echo -e "$blog_index_file\n$rolling_file\n$rss_file" | xargs sed -i "/<!-- BLOG START -->/,/<!-- BLOG END -->/{/<!-- BLOG START -->/!{/<!-- BLOG END -->/!d}}"
40
41     # deletes all html files and republishes all published files
42
43     echo "Refreshed."
44 }
45
46 new() {
47     [ -z "$1" ] && echo "Please give your blog post a name (you should put it inside quotations)" && exit 1 
48     sanitized=`echo -n "$1" | sed -e 's/[^A-Za-z0-9 _-]//g'| sed -e 's/ /-/g'`
49     $EDITOR "$data_dir/drafts/$sanitized.draft.html"
50 }
51
52 sub() {
53     cat - |\
54         sed "s|{{TITLE}}|$1|g;
55             s|{{DATE}}|`date +'%a, %b %d %H:%M'`|g;
56             s|{{URL}}|$website_url/$1|g" |\
57         sed "/{{BODY}}/r $data_dir/drafts/$1" |\
58         sed "/{{BODY}}/d" 
59 }
60
61 # $1 is directory
62 choose() { # working on abstraction
63     options=`ls -1 "$1" | sed 's/\.draft\.html$//;s/\.html$//'` 
64     [ -z "$options" ] && echo "No drafts to publish" && exit 0
65     echo "$options" | nl
66     read -p 'Choose an entry by number > ' choice
67     chosen=`ls -1 "$1" | sed -n "$choice p"`
68     [ -z "$chosen" ] && echo "Invalid choice" && exit 1
69 }
70
71 publish() {
72     
73     choose "$data_dir/drafts"
74     to_publish=${chosen%.draft.html}
75
76     cat $blog_template | sub "$to_publish" \
77        > "$data_dir/html/$to_publish.html" 
78
79     # Add new entry to blog index (do something about indent??)
80     sed -i "/<!-- BLOG START -->/ a\
81         <!-- ID:$to_publish START -->\n`cat "$data_dir/templates/$index_template" | sub "$to_publish"`\n<!-- ID:$to_publish END -->" "$blog_index_file"
82
83     mv "$data_dir/drafts/$to_publish.draft.html" "$data_dir/published/"
84
85 }
86
87 delete() {
88     choose "$data_dir/published"
89     to_delete=${chosen%.draft.html}
90
91     mv "$data_dir/published/$to_delete.draft.html" "$data_dir/drafts/" &&\
92         rm "$data_dir/html/$to_delete.html"
93
94     # remove entries from files 
95     echo -e "$blog_index_file\n$rolling_file\n$rss_file" | xargs sed -i "/<!-- ID:$to_delete START -->/,/<!-- ID:$to_delete END -->/ d"
96
97 }
98
99 # check to see if all required files are present
100 [ -f $blog_index_file ] && [ -f $rolling_file ] && [ -f $blog_template ] && [ -f $rss_file ] || { echo "You are missing a file, please check that you have $blog_index_file, $template_file, $rolling_file and $rss_file in your home directory" && exit 1; }
101
102 # possibly also check to see if index and rolling have the proper headers
103
104
105 # check if blog dir exists
106 [ ! -d $data_dir ]  && init
107
108 case $1 in
109     i|init) init;;
110     n|new) new "$2";;
111     p|publish) publish;;
112     d|delete) delete;;
113     r|refresh) refresh;;
114     h|*) echo "helper";;
115 esac
116