2 # pinosaur's blog script
5 website_url="https://www.youtube.com/watch?v=oHg5SJYRHA0/"
6 blog_index_file="blogindex.html"
7 rolling_file="rolling.html"
9 blog_template="template.html"
10 index_template="index_entry.html"
11 rolling_template="rolling_entry.html"
12 rss_template="rss_entry.html"
14 [ ! -z "$EDITOR" ] && EDITOR="vim"
17 read -p "Initialize blog here? [y/n] " ask
18 [ "$ask" != "y" ] && echo "Cancelled init" && exit 0
20 mkdir -p "$data_dir/drafts" "$data_dir/published" "$data_dir/html" "$data_dir/templates" "$data_dir/backups"
21 echo '<p>{{TITLE}}</p>' >> "$data_dir/templates/$index_template"
22 echo -e '<div>\n<h2>{{TITLE}}</h2>\n<p>{{DATE}}</p>\n<p>{{BODY}}</p>\n</div>' >> "$data_dir/templates/$rolling_template"
23 echo -e '<item>\n<title>{{TITLE}}</title>\n<link></link>\n<description><\description>\n<\item>' \
24 >> "$data_dir/templates/$rss_template"
26 echo "Successfully created blog files."
30 backup_name=`mktemp --tmpdir="$data_dir/backups" -d "backup_$(date +'%b-%d')_XXX"`
31 echo "Creating backup, will be placed in $backup_name"
32 cp -r "$data_dir/drafts/" "$backup_name"
33 cp -r "$data_dir/published/" "$backup_name"
37 [ -z "$1" ] && echo "Please give your blog post a name (you should put it inside quotations)" && exit 1
38 sanitized=`echo -n "$1" | sed -e 's/[^A-Za-z0-9 _-]//g'`
39 [ -f "$data_dir/drafts/$sanitized.draft.html" ] && echo "Blog of that name already exists." && exit 1
40 $EDITOR "$data_dir/drafts/$sanitized.draft.html"
45 sed "1i <!-- ID:$1 START -->" |\
46 sed "\$a <!-- ID:$1 END -->" |\
47 sed "s|{{TITLE}}|$1|g;
48 s|{{DATE}}|`date +'%a, %b %d %H:%M'`|g;
49 s|{{URL}}|$website_url/$1|g" |\
50 sed "/{{BODY}}/r $data_dir/drafts/$1" |\
56 options=`ls -1 "$1" | sed 's/\.draft\.html$//;s/\.html$//'`
57 [ -z "$options" ] && echo "No drafts to publish" && exit 0
59 read -p 'Choose an entry by number > ' choice
60 chosen=`ls -1 "$1" | sed -n "$choice p"`
61 [ -z "$chosen" ] && echo "Invalid choice" && exit 1
65 choose "$data_dir/drafts"
66 to_publish=${chosen%.draft.html}
68 cat $blog_template | sub "$to_publish" > "$data_dir/html/$to_publish.html"
70 # make this part less horrendous
71 temp_index="$(mktemp)"
72 cat "$data_dir/templates/$index_template" | sub "$to_publish" >> $temp_index
73 temp_rolling="$(mktemp)"
74 cat "$data_dir/templates/$rolling_template" | sub "$to_publish" >> $temp_rolling
76 cat "$data_dir/templates/$rss_template" | sub "$to_publish" >> $temp_rss
78 # Add new entry to blog index (do something about indent??)
79 sed -i "/<!-- BLOG START -->/r $temp_index" "$blog_index_file"
80 sed -i "/<!-- BLOG START -->/r $temp_rolling" "$rolling_file"
81 sed -i "/<!-- BLOG START -->/r $temp_rss" "$rss_file"
83 mv "$data_dir/drafts/$to_publish.draft.html" "$data_dir/published/"
84 echo "Successfully published $to_publish"
88 choose "$data_dir/published"
89 to_delete=${chosen%.draft.html}
91 mv "$data_dir/published/$to_delete.draft.html" "$data_dir/drafts/" &&\
92 rm "$data_dir/html/$to_delete.html"
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"
97 echo "Successfully deleted $to_delete"
100 # check to see if all required files are present
101 [ -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; }
103 # check if blog dir exists
104 [ ! -d $data_dir ] && init && exit 0
111 h|*) echo -e "=-=-=-=-=-=-= Pb =-=-=-=-=-=-=\nAvailable commands:\nn - new blog post\np - publish existing blog post\nd - deletes published post\nb - creates a backup";;