summaryrefslogtreecommitdiff
path: root/seen.sh
blob: b6e68c96b472e26259a11dec21a1efe2bbcabf64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/sh
#    Seen, a simple static blog generator
#    Copyright (C) 2021 Vitali64 <vitali64pmemail@protonmail.com>
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#    Please see the LICENSE file for more details.
usage() {
	echo "Usage     : ./seen [OPTIONS]"
	echo "--help    : Print this help message"
	echo "--clear   : Remove generated blog"
	echo "--license : Show license"
	echo "--rss     : Create an RSS feed (runs ./rs.sh)"
}
die() {
	echo "-> [$(date +%R)] (!) ERROR: Unexpected error, please report : $1 (!)"
	exit 1
}
echo "Seen, a simple static blog generator" 
if [ "$1" = "--clear" ]; then
	echo "-> [$(date +%R)] Deleting generated blog ..."
	rm -Rf www/* || die "Cannot delete generated blog!"
	exit 0
elif [ "$1" = "--help" ]; then
	usage
	exit 0
elif [ "$1" = "--rss" ]; then
	. "./rs.sh"
	exit 0
elif [ "$1" = "--license" ]; then
	echo "Copyright (C) 2021 Vitali64 <vitali64pmemail@protonmail.com>"
	echo
	cat "./LICENSE"
	exit 0
elif [ "$1" = "" ]; then
	echo "-> [$(date +%R)] No options specified, generating blog ..."
else
	echo "-> [$(date +%R)] (!) ERROR : Invalid option, cannot continue. (!)"
	usage
	exit 1
fi
mkdir -p "www" || die "Cannot create www/ directory: mkdir -p returns an error!" # Create the www/ folder if removed
cat "templates/header.html" > www/index.html || die "Cannot insert header into index.html!" # Erase www/index.html and insert the header
articles="$(find articles/*.md|sed -e 's@.md@@g' -e 's@articles/@@g')" || die "Unknown error" # Detect articles
# Set the defaults
name="(!) no name (!)"
desc="(!) no description (!)"
date="1st January 1970"
for line in ${articles} # In the 'for' loop
do
	. "articles/${line}.cfg" || die "Cannot read ${line}.cfg file!" # Override the defaults
	mkdir "www/articles" -p
	cat "templates/header.html" > "www/articles/${line}.html" || die "Cannot insert header into ${line}.html!" # Erase <article>.html and insert the header
	markdown "articles/${line}.md" >> "www/articles/${line}.html" || hoedown "articles/${line}.md" >> "www/articles/${line}.html" || die "Cannot convert ${line}.md to html!" # Convert the markdown text to html
	cat "templates/footer.html" >> "www/articles/${line}.html" || die "Cannot insert footer into ${line}.html!" # Insert the footer into the article page
	cp -r templates/*.css www/. # Add css files if present
	echo "-> [$(date +%R)] Adding ${line} entry to index.html ..." # Add an entry in index.html
	sed -e "s@path-of-article@articles/${line}@" -e "s@name-of-article@${name}@" \
		-e "s@date-of-article@${date}@" -e "s@description-of-article@${desc}@" \
		"templates/article.html">> "www/index.html" || die "Cannot add entry to index.html!"
done
cat "templates/footer.html" >> "www/index.html" # Insert the footer into the index.html