summaryrefslogtreecommitdiff
path: root/sfeed_atom.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2019-04-20 16:21:44 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2019-04-20 16:21:44 +0200
commit493e2e508530aa95d4806e4aca52183794d20ad0 (patch)
tree359d77dc854116d619c93a6acf03c36b7ec6581e /sfeed_atom.c
parenteb9e9a957a75069edecbfcc1872930d07e146a1a (diff)
add sfeed_atom: convert one or more feeds from TSV (back to) Atom
Diffstat (limited to 'sfeed_atom.c')
-rw-r--r--sfeed_atom.c99
1 files changed, 99 insertions, 0 deletions
diff --git a/sfeed_atom.c b/sfeed_atom.c
new file mode 100644
index 0000000..d9ee099
--- /dev/null
+++ b/sfeed_atom.c
@@ -0,0 +1,99 @@
+#include <sys/types.h>
+
+#include <ctype.h>
+#include <err.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <time.h>
+
+#include "util.h"
+
+static time_t comparetime;
+static char *line;
+static size_t linesize;
+
+static void
+printfeed(FILE *fp, const char *feedname)
+{
+ char *fields[FieldLast];
+ struct tm *tm;
+ time_t parsedtime;
+ ssize_t linelen;
+
+ while ((linelen = getline(&line, &linesize, fp)) > 0) {
+ if (line[linelen - 1] == '\n')
+ line[--linelen] = '\0';
+ if (!parseline(line, fields))
+ break;
+
+ parsedtime = 0;
+ if (strtotime(fields[FieldUnixTimestamp], &parsedtime))
+ continue;
+ if (!(tm = localtime(&parsedtime)))
+ err(1, "localtime");
+
+ fputs("<entry>\n\t<title>", stdout);
+ if (feedname[0]) {
+ fputs("[", stdout);
+ xmlencode(feedname, stdout);
+ fputs("] ", stdout);
+ }
+ xmlencode(fields[FieldTitle], stdout);
+ fputs("</title>\n\t<link rel=\"alternate\" href=\"", stdout);
+ xmlencode(fields[FieldLink], stdout);
+ fputs("\" />\n", stdout);
+ if (fields[FieldEnclosure][0]) {
+ fputs("\t<link rel=\"enclosure\" href=\"", stdout);
+ xmlencode(fields[FieldEnclosure], stdout);
+ fputs("\" />\n", stdout);
+ }
+ fprintf(stdout, "\t<published>%04d-%02d-%02dT%02d:%02d:%02dZ</published>\n",
+ tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
+ tm->tm_hour, tm->tm_min, tm->tm_sec);
+ if (fields[FieldAuthor][0]) {
+ fputs("\t<author><name>", stdout);
+ xmlencode(fields[FieldAuthor], stdout);
+ fputs("</name></author>\n", stdout);
+ }
+ fputs("</entry>\n", stdout);
+ }
+}
+
+int
+main(int argc, char *argv[])
+{
+ FILE *fp;
+ char *name;
+ int i;
+
+ if (argc == 1) {
+ if (pledge("stdio", NULL) == -1)
+ err(1, "pledge");
+ } else {
+ if (pledge("stdio rpath", NULL) == -1)
+ err(1, "pledge");
+ }
+
+ fputs("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
+ "<feed xmlns=\"http://www.w3.org/2005/Atom\" xml:lang=\"en\">\n",
+ stdout);
+
+ if (argc == 1) {
+ printfeed(stdin, "");
+ } else {
+ for (i = 1; i < argc; i++) {
+ if (!(fp = fopen(argv[i], "r")))
+ err(1, "fopen: %s", argv[i]);
+ name = ((name = strrchr(argv[i], '/'))) ? name + 1 : argv[i];
+ printfeed(fp, name);
+ if (ferror(fp))
+ err(1, "ferror: %s", argv[i]);
+ fclose(fp);
+ }
+ }
+
+ fputs("</feed>\n", stdout);
+
+ return 0;
+}