summaryrefslogtreecommitdiff
path: root/seen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'seen.sh')
-rwxr-xr-xseen.sh38
1 files changed, 31 insertions, 7 deletions
diff --git a/seen.sh b/seen.sh
index b6e68c9..5e12b2d 100755
--- a/seen.sh
+++ b/seen.sh
@@ -11,7 +11,6 @@ usage() {
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 (!)"
@@ -25,22 +24,20 @@ if [ "$1" = "--clear" ]; then
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 ..."
+ echo
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
+# ---HTML---
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
@@ -56,8 +53,35 @@ do
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}@" \
+ 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
+# ---RSS---
+# Set the defaults
+rssEnabled="n"
+rssBlogTitle="blog"
+rssBlogDescription="It's a blog"
+. "./rss.cfg" # Override the defaults
+if [ "${rssEnabled}" = "n" ]; then
+ echo "-> [$(date +%R)] RSS is disabled, skipping..."
+ exit 0
+fi
+# Header of the RSS XML file
+printf '%s\n' '<rss version="2.0">' > "www/rss.xml"
+printf '%s\n' '<channel>' >> "www/rss.xml"
+printf '%s\n' "<title>${rssBlogTitle}</title>" >> "www/rss.xml"
+printf '%s\n' "<link>BLANK</link>" >> "www/rss.xml"
+printf '%s\n' "<description>$rssBlogDescription</description>" >> "www/rss.xml"
+for line in ${articles} # Items
+do
+ echo "-> [$(date +%R)] Inserting XML ${line} item ..."
+ . "articles/${line}.cfg"
+ printf '%s\n' '<item>' >> "www/rss.xml"
+ printf '%s\n' "<title>${name}</title>" >> "www/rss.xml"
+ printf '%s\n' "<description>$(cat articles/${line}.md)</description>" >> "www/rss.xml"
+ printf '%s\n' '</item>' >> "www/rss.xml"
+done
+# Footer of the RSS XML file
+printf '%s\n' '</channel>' >> "www/rss.xml"
+printf '%s\n' '</rss>' >> "www/rss.xml"