summaryrefslogtreecommitdiff
path: root/sfeed.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2019-05-02 20:22:57 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2019-05-02 20:22:57 +0200
commit84234e131aa58e31b1027abe18819beb8a637f31 (patch)
tree34e228caa9fe30d9497bf531191280aa3458b910 /sfeed.c
parentca6227c6dd5044f4831769d1cce20f203e064d65 (diff)
sfeed: improve content type (attribute) handling
- handle type attribute for MRSS media:description, media:description type="plain" is now parsed properly. - handle default content-types per tag now. - when multiple content-like fields are specified use the proper content-type. - be flexible about type attribute handling. - minor code tweaks.
Diffstat (limited to 'sfeed.c')
-rw-r--r--sfeed.c70
1 files changed, 44 insertions, 26 deletions
diff --git a/sfeed.c b/sfeed.c
index 8c91a03..c7e7822 100644
--- a/sfeed.c
+++ b/sfeed.c
@@ -116,8 +116,8 @@ static void xmltagend(XMLParser *, const char *, size_t, int);
static void xmltagstart(XMLParser *, const char *, size_t);
static void xmltagstartparsed(XMLParser *, const char *, size_t, int);
-/* map tag name to tagid */
-/* RSS, alphabetical order */
+/* map tag name to TagId type */
+/* RSS, must be alphabetical order */
static FeedTag rsstags[] = {
{ STRP("author"), RSSTagAuthor },
{ STRP("content:encoded"), RSSTagContentEncoded },
@@ -132,7 +132,7 @@ static FeedTag rsstags[] = {
{ STRP("pubdate"), RSSTagPubdate },
{ STRP("title"), RSSTagTitle }
};
-/* Atom, alphabetical order */
+/* Atom, must be alphabetical order */
static FeedTag atomtags[] = {
/* <author><name></name></author> */
{ STRP("author"), AtomTagAuthor },
@@ -147,8 +147,7 @@ static FeedTag atomtags[] = {
{ STRP("updated"), AtomTagUpdated }
};
-/* map tagid type to RSS/Atom field
- NOTE: all tags must be defined */
+/* map TagId type to RSS/Atom field, all tags must be defined */
static int fieldmap[TagLast] = {
[TagUnknown] = -1,
/* RSS */
@@ -627,6 +626,27 @@ xmlattr(XMLParser *p, const char *t, size_t tl, const char *n, size_t nl,
return;
}
+ if (ctx.feedtype == FeedTypeNone)
+ return;
+
+ /* content-type may be: Atom: text, xhtml, html or mime-type.
+ MRSS (media:description): plain, html. */
+ if (ISCONTENTTAG(ctx)) {
+ if (isattr(n, nl, STRP("type"))) {
+ if (isattr(v, vl, STRP("html")) ||
+ isattr(v, vl, STRP("xhtml")) ||
+ isattr(v, vl, STRP("text/html")) ||
+ isattr(v, vl, STRP("text/xhtml"))) {
+ ctx.contenttype = ContentTypeHTML;
+ } else if (isattr(v, vl, STRP("text")) ||
+ isattr(v, vl, STRP("plain")) ||
+ isattr(v, vl, STRP("text/plain"))) {
+ ctx.contenttype = ContentTypePlain;
+ }
+ }
+ return;
+ }
+
if (ctx.feedtype == FeedTypeRSS) {
if (ctx.tagid == RSSTagEnclosure &&
isattr(n, nl, STRP("url")) && ctx.field) {
@@ -637,16 +657,7 @@ xmlattr(XMLParser *p, const char *t, size_t tl, const char *n, size_t nl,
rssidpermalink = 0;
}
} else if (ctx.feedtype == FeedTypeAtom) {
- if (ISCONTENTTAG(ctx)) {
- if (isattr(n, nl, STRP("type")) &&
- (isattr(v, vl, STRP("xhtml")) ||
- isattr(v, vl, STRP("text/xhtml")) ||
- isattr(v, vl, STRP("html")) ||
- isattr(v, vl, STRP("text/html"))))
- {
- ctx.contenttype = ContentTypeHTML;
- }
- } else if (ctx.tagid == AtomTagLink &&
+ if (ctx.tagid == AtomTagLink &&
isattr(n, nl, STRP("rel"))) {
/* empty or "alternate": other types could be
"enclosure", "related", "self" or "via" */
@@ -707,7 +718,7 @@ xmldata(XMLParser *p, const char *s, size_t len)
/* add only data from <name> inside <author> tag
* or any other non-<author> tag */
- if (ctx.tagid != AtomTagAuthor || istag(p->tag, p->taglen, "name", 4))
+ if (ctx.tagid != AtomTagAuthor || istag(p->tag, p->taglen, STRP("name")))
string_append(ctx.field, s, len);
}
@@ -744,17 +755,10 @@ xmltagstart(XMLParser *p, const char *t, size_t tl)
/* start of RSS or Atom item / entry */
if (ctx.feedtype == FeedTypeNone) {
- if (istag(t, tl, STRP("entry"))) {
- /* Atom */
+ if (istag(t, tl, STRP("entry")))
ctx.feedtype = FeedTypeAtom;
- /* default content type for Atom */
- ctx.contenttype = ContentTypePlain;
- } else if (istag(t, tl, STRP("item"))) {
- /* RSS */
+ else if (istag(t, tl, STRP("item")))
ctx.feedtype = FeedTypeRSS;
- /* default content type for RSS */
- ctx.contenttype = ContentTypeHTML;
- }
return;
}
@@ -782,7 +786,21 @@ xmltagstart(XMLParser *p, const char *t, size_t tl)
return;
}
- ctx.iscontenttag = (fieldmap[ctx.tagid] == FeedFieldContent);
+ if (fieldmap[ctx.tagid] == FeedFieldContent) {
+ /* handle default content-type per tag, Atom, RSS, MRSS. */
+ switch (tagid) {
+ case RSSTagContentEncoded:
+ case RSSTagDescription:
+ ctx.contenttype = ContentTypeHTML;
+ break;
+ default:
+ ctx.contenttype = ContentTypePlain;
+ }
+ ctx.iscontenttag = 1;
+ } else {
+ ctx.iscontenttag = 0;
+ }
+
ctx.field = &(ctx.fields[fieldmap[ctx.tagid]].str);
ctx.fields[fieldmap[ctx.tagid]].tagid = tagid;
/* clear field */