summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2019-12-30 01:23:03 +1030
committerDaniel Jones <admin@danieljon.es>2019-12-30 01:23:03 +1030
commit1bc7d1547275671f3243ea16cacad0aea6cef649 (patch)
treebe3720bd811c5e4279d290b8a6f094a8952e839a
parent93a4e3f741a8e37967915fd8b51f651992662d76 (diff)
downloadwebsitegenerator-1bc7d1547275671f3243ea16cacad0aea6cef649.tar.gz
websitegenerator-1bc7d1547275671f3243ea16cacad0aea6cef649.zip
generate most pages except posts
-rw-r--r--config.h54
-rw-r--r--pages.c205
-rw-r--r--pages.h8
3 files changed, 262 insertions, 5 deletions
diff --git a/config.h b/config.h
index d28ce62..e9374bb 100644
--- a/config.h
+++ b/config.h
@@ -36,14 +36,66 @@ static const char *content_string = "{CONTENT}";
static const char *info_string = "{INFO}";
static const char *time_string = "{TIME}";
static const char *template_file = "template.txt";
+
+/* frontpage */
static const char *frontpage_title = "Index";
static const char *frontpage_info = "<h1>Index</h1>";
static const char *frontpage_index = "content/index.txt";
static const char *frontpage_index_output = "index.html";
+/* opinions */
+static const char *opinions_title = "Opinions";
+static const char *opinions_info = "<h1>Opinions</h1>Thoughts and opinions on various subjects and media that I have consumed.<br><br>";
+static const char *opinions_content = "content/opinions/index.txt";
+static const char *opinions_content_output = "opinions/index.html";
+
+/* opinions-anime */
+static const char *opinions_anime_title = "Anime";
+static const char *opinions_anime_info = "<h1>Anime</h1>Thoughts on some of my favourite anime series. Spoilers ahead.<br><br>";
+static const char *opinions_anime_content = "content/opinions/anime.txt";
+static const char *opinions_anime_content_output = "opinions/anime.html";
+
+/* opinions_everything */
+static const char *opinions_everything_title = "Everything else";
+static const char *opinions_everything_info = "<h1>Everything else</h1>Thoughts on everything else that I need to get off my chest.<br><br>";
+static const char *opinions_everything_content = "content/opinions/everything.txt";
+static const char *opinions_everything_content_output = "opinions/everything.html";
+
+/* likes */
+static const char *likes_title = "Things I like";
+static const char *likes_info = "<h1>Things that I like</h1>These are my opinions.<br>I don't much care how you feel about them.<br><br>";
+static const char *likes_content = "content/like.txt";
+static const char *likes_content_output = "like.html";
+
+/* dislikes */
+static const char *dislikes_title = "Things I dislike";
+static const char *dislikes_info = "<h1>Things that I dislike</h1>These are my opinions.<br>I don't much care how you feel about them.<br><br>";
+static const char *dislikes_content = "content/dislike.txt";
+static const char *dislikes_content_output = "dislike.html";
+
+/* interesting */
+static const char *interesting_title = "Interesting";
+static const char *interesting_info = "<h1>Interesting</h1> Things that are interesting or entertaining to me.<br><br>";
+static const char *interesting_content = "content/interesting.txt";
+static const char *interesting_content_output = "interesting.html";
+
+/* portfolio */
+static const char *portfolio_title = "Daniel's projects";
+static const char *portfolio_info = "<h1>Projects</h1> Detailing a number of my personal projects <br><br>";
+static const char *portfolio_content = "content/portfolio.txt";
+static const char *portfolio_content_output = "portfolio.html";
+
/* each page to be generated go into this array */
static const struct page pages[] = {
/* function flags */
- {frontpage, NONE},
+ {frontpage, NONE},
+ {likespage, NONE},
+ {dislikespage, NONE},
+ {interestingpage, NONE},
+ {opinionspage, NONE},
+ {opinions_animepage, NONE},
+ {opinions_everythingpage, NONE},
+ {portfoliopage, NONE},
};
+
#endif
diff --git a/pages.c b/pages.c
index d9e2e8f..635ad15 100644
--- a/pages.c
+++ b/pages.c
@@ -20,10 +20,15 @@ int
createfile(const char *file)
{
/*
- * create file at location 'file' using the template
+ * create file at location 'output_dir'/file' using the template
* overwrite if it exists
* assume the caller has put us in the base directory already
*/
+
+ /*
+ * FIXME: if trying to create a file with subdirectories it will not work
+ * one day tokenise the file path and make them
+ */
struct stat sb = {0};
@@ -46,6 +51,7 @@ createfile(const char *file)
FILE *out = fopen(filename, "w");
if (!out)
{
+ fprintf(stderr, "Error opening file: %s\n", strerror(errno));
fprintf(stderr, "unable to open file '%s', unrecoverable failure\n", filename);
return 0;
}
@@ -53,6 +59,7 @@ createfile(const char *file)
FILE *in = fopen(template_file, "r");
if (!in)
{
+ fprintf(stderr, "Error opening file: %s\n", strerror(errno));
fprintf(stderr, "unable to open file '%s', unrecoverable failure\n", filename);
fclose(out);
return 0;
@@ -93,6 +100,7 @@ findstring(const char *file, const char *str)
FILE *in = fopen(filename, "r");
if (!in)
{
+ fprintf(stderr, "Error opening file: %s\n", strerror(errno));
fprintf(stderr, "unable to open file '%s', unrecoverable failure\n", filename);
return -1;
}
@@ -150,6 +158,7 @@ deletebytes(const char *file, long offset, size_t bytes)
FILE *in = fopen(filename, "r");
if (!in)
{
+ fprintf(stderr, "Error opening file: %s\n", strerror(errno));
fprintf(stderr, "unable to open file '%s', unrecoverable failure\n", filename);
return 0;
}
@@ -157,6 +166,7 @@ deletebytes(const char *file, long offset, size_t bytes)
FILE *out = fopen("tmp.tmp", "w");
if (!out)
{
+ fprintf(stderr, "Error opening file: %s\n", strerror(errno));
fprintf(stderr, "unable to open temporary file, unrecoverable failure\n");
fclose(in);
return 0;
@@ -221,6 +231,7 @@ writeatbyte(const char *dest, struct fileorstring *source, long offset)
FILE *tmp = fopen("tmp.tmp", "w");
if (!tmp)
{
+ fprintf(stderr, "Error opening file: %s\n", strerror(errno));
fprintf(stderr, "unable to open temp file, unrecoverable failure\n");
fclose(in);
return 0;
@@ -232,6 +243,7 @@ writeatbyte(const char *dest, struct fileorstring *source, long offset)
src = fopen(source->file, "r");
if (!src)
{
+ fprintf(stderr, "Error opening file: %s\n", strerror(errno));
fprintf(stderr, "unable to open file '%s', unrecoverable failure\n", source->file);
fclose(in);
fclose(tmp);
@@ -255,6 +267,7 @@ writeatbyte(const char *dest, struct fileorstring *source, long offset)
{
if (curpos == offset)
{
+ /* if we have a file open to get bytes to write from */
if (src != NULL)
{
while ((t = fgetc(src)) != EOF)
@@ -267,6 +280,7 @@ writeatbyte(const char *dest, struct fileorstring *source, long offset)
fputc(t, tmp);
}
}
+ /* otherwise we read from source->str */
else
{
while ((t = source->str[i]) != '\0')
@@ -310,14 +324,14 @@ replaceinpage(const char *outfile, const char *toreplace, struct fileorstring *s
long substrpos = -1;
- substrpos = findstring(frontpage_index_output, toreplace);
+ substrpos = findstring(outfile, toreplace);
if (substrpos < 0)
{
return 0;
}
- if (!deletebytes(frontpage_index_output, substrpos, strlen(toreplace)))
+ if (!deletebytes(outfile, substrpos, strlen(toreplace)))
{
return 0;
}
@@ -369,7 +383,7 @@ frontpage(int flags)
struct fileorstring index = {frontpage_index, NULL};
struct fileorstring title = {NULL, frontpage_title};
struct fileorstring info = {NULL, frontpage_info};
- struct fileorstring time = {NULL, gettime(date, 255)};
+ struct fileorstring time = {NULL, gettime(date, sizeof(date))};
if (!replaceinpage(frontpage_index_output, content_string, &index) ||
!replaceinpage(frontpage_index_output, title_string, &title) ||
!replaceinpage(frontpage_index_output, info_string, &info) ||
@@ -381,3 +395,186 @@ frontpage(int flags)
return 1;
}
+
+int
+likespage(int flags)
+{
+ if (!createfile(likes_content_output))
+ {
+ fprintf(stderr, "unable to generate likespage\n");
+ return 0;
+ }
+
+ char date[255];
+ struct fileorstring index = {likes_content, NULL};
+ struct fileorstring title = {NULL, likes_title};
+ struct fileorstring info = {NULL, likes_info};
+ struct fileorstring time = {NULL, gettime(date, sizeof(date))};
+ if (!replaceinpage(likes_content_output, content_string, &index) ||
+ !replaceinpage(likes_content_output, title_string, &title) ||
+ !replaceinpage(likes_content_output, info_string, &info) ||
+ !replaceinpage(likes_content_output, time_string, &time))
+ {
+ fprintf(stderr, "unable to generate likespage\n");
+ return 0;
+ }
+
+ return 1;
+}
+
+int
+dislikespage(int flags)
+{
+ if (!createfile(dislikes_content_output))
+ {
+ fprintf(stderr, "unable to generate dislikespage\n");
+ return 0;
+ }
+
+ char date[255];
+ struct fileorstring index = {dislikes_content, NULL};
+ struct fileorstring title = {NULL, dislikes_title};
+ struct fileorstring info = {NULL, dislikes_info};
+ struct fileorstring time = {NULL, gettime(date, sizeof(date))};
+ if (!replaceinpage(dislikes_content_output, content_string, &index) ||
+ !replaceinpage(dislikes_content_output, title_string, &title) ||
+ !replaceinpage(dislikes_content_output, info_string, &info) ||
+ !replaceinpage(dislikes_content_output, time_string, &time))
+ {
+ fprintf(stderr, "unable to generate dislikespage\n");
+ return 0;
+ }
+
+ return 1;
+}
+
+int
+interestingpage(int flags)
+{
+ if (!createfile(interesting_content_output))
+ {
+ fprintf(stderr, "unable to generate interestingspage\n");
+ return 0;
+ }
+
+ char date[255];
+ struct fileorstring index = {interesting_content, NULL};
+ struct fileorstring title = {NULL, interesting_title};
+ struct fileorstring info = {NULL, interesting_info};
+ struct fileorstring time = {NULL, gettime(date, sizeof(date))};
+ if (!replaceinpage(interesting_content_output, content_string, &index) ||
+ !replaceinpage(interesting_content_output, title_string, &title) ||
+ !replaceinpage(interesting_content_output, info_string, &info) ||
+ !replaceinpage(interesting_content_output, time_string, &time))
+ {
+ fprintf(stderr, "unable to generate interestingpage\n");
+ return 0;
+ }
+
+ return 1;
+}
+
+int
+opinionspage(int flags)
+{
+ if (!createfile(opinions_content_output))
+ {
+ fprintf(stderr, "unable to generate opinionspage\n");
+ return 0;
+ }
+
+ char date[255];
+ struct fileorstring index = {opinions_content, NULL};
+ struct fileorstring title = {NULL, opinions_title};
+ struct fileorstring info = {NULL, opinions_info};
+ struct fileorstring time = {NULL, gettime(date, sizeof(date))};
+ if (!replaceinpage(opinions_content_output, content_string, &index) ||
+ !replaceinpage(opinions_content_output, title_string, &title) ||
+ !replaceinpage(opinions_content_output, info_string, &info) ||
+ !replaceinpage(opinions_content_output, time_string, &time))
+ {
+ fprintf(stderr, "unable to generate opinionspage\n");
+ return 0;
+ }
+
+ return 1;
+}
+
+int
+opinions_animepage(int flags)
+{
+ if (!createfile(opinions_anime_content_output))
+ {
+ fprintf(stderr, "unable to generate opinions_animepage\n");
+ return 0;
+ }
+
+ char date[255];
+ struct fileorstring index = {opinions_anime_content, NULL};
+ struct fileorstring title = {NULL, opinions_anime_title};
+ struct fileorstring info = {NULL, opinions_anime_info};
+ struct fileorstring time = {NULL, gettime(date, sizeof(date))};
+ if (!replaceinpage(opinions_anime_content_output, content_string, &index) ||
+ !replaceinpage(opinions_anime_content_output, title_string, &title) ||
+ !replaceinpage(opinions_anime_content_output, info_string, &info) ||
+ !replaceinpage(opinions_anime_content_output, time_string, &time))
+ {
+ fprintf(stderr, "unable to generate opinions_animepage\n");
+ return 0;
+ }
+
+ return 1;
+}
+
+int
+opinions_everythingpage(int flags)
+{
+ if (!createfile(opinions_everything_content_output))
+ {
+ fprintf(stderr, "unable to generate opinions_everythingpage\n");
+ return 0;
+ }
+
+ char date[255];
+ struct fileorstring index = {opinions_everything_content, NULL};
+ struct fileorstring title = {NULL, opinions_everything_title};
+ struct fileorstring info = {NULL, opinions_everything_info};
+ struct fileorstring time = {NULL, gettime(date, sizeof(date))};
+ if (!replaceinpage(opinions_everything_content_output, content_string, &index) ||
+ !replaceinpage(opinions_everything_content_output, title_string, &title) ||
+ !replaceinpage(opinions_everything_content_output, info_string, &info) ||
+ !replaceinpage(opinions_everything_content_output, time_string, &time))
+ {
+ fprintf(stderr, "unable to generate opinions_everythingpage\n");
+ return 0;
+ }
+
+ return 1;
+}
+
+int
+portfoliopage(int flags)
+{
+ if (!createfile(portfolio_content_output))
+ {
+ fprintf(stderr, "unable to generate portfoliopage\n");
+ return 0;
+ }
+
+ char date[255];
+ struct fileorstring index = {portfolio_content, NULL};
+ struct fileorstring title = {NULL, portfolio_title};
+ struct fileorstring info = {NULL, portfolio_info};
+ struct fileorstring time = {NULL, gettime(date, sizeof(date))};
+ if (!replaceinpage(portfolio_content_output, content_string, &index) ||
+ !replaceinpage(portfolio_content_output, title_string, &title) ||
+ !replaceinpage(portfolio_content_output, info_string, &info) ||
+ !replaceinpage(portfolio_content_output, time_string, &time))
+ {
+ fprintf(stderr, "unable to generate portfoliopage\n");
+ return 0;
+ }
+
+ return 1;
+}
+
diff --git a/pages.h b/pages.h
index 5beb835..5f214d8 100644
--- a/pages.h
+++ b/pages.h
@@ -21,6 +21,7 @@
#include <unistd.h>
#include <sys/stat.h>
#include <time.h>
+#include <errno.h>
struct fileorstring
{
@@ -39,5 +40,12 @@ int createtmpfile(const char *name, const char *content, size_t size);
/* generators (to be put into the pages array) */
int frontpage(int flags);
+int likespage(int flags);
+int dislikespage(int flags);
+int interestingpage(int flags);
+int opinionspage(int flags);
+int opinions_animepage(int flags);
+int opinions_everythingpage(int flags);
+int portfoliopage(int flags);
#endif