summaryrefslogtreecommitdiff
path: root/source/rssmeta.d
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2023-10-09 18:11:41 +0100
committerGeorge Abbott <george@gabbott.dev>2023-10-09 18:11:41 +0100
commitc91061498ca9137c0bb2e65765ab15c1439941fd (patch)
treef42b6377f3b8488051836cb5d891e09237860734 /source/rssmeta.d
parent08cec360e16615b1ae157e4926e7317d16765f7e (diff)
Another commit with some more progress
Diffstat (limited to 'source/rssmeta.d')
-rw-r--r--source/rssmeta.d36
1 files changed, 31 insertions, 5 deletions
diff --git a/source/rssmeta.d b/source/rssmeta.d
index 6fec5b4..864503c 100644
--- a/source/rssmeta.d
+++ b/source/rssmeta.d
@@ -1,13 +1,39 @@
// Represents the RssMeta struct, containing the metadata with some fns to
// access it easily.
+import dxml;
+import entry;
+
struct RssMeta
{
- // TODO: add the magic.
+ // TODO
+ // The RssMeta should be a lookup table: we have a key (the filename given
+ // in rssmeta.xml, etc.; and we have a set of values, e.g. the title, link,
+ // etc. values which form the metadata.
+ string metafile;
+ string[Entry] lookup;
+
+ this(string metafile)
+ {
+
+ this.metafile = metafile;
+ if (metafile[-4:] == ".json") {}
+ else if (metafile[-4:] == ".xml") {}
+ else
+ {
+ writeln("Cannot deduce whether metafile is json or xml. Please" ~
+ " ensure it is called either rssmeta.xml or rssmeta.json.");
+ exit(1);
+ }
+ }
// filename: either just name or fully qualified should work.
- string title_of(string filename) const;
- string link_of(string filename) const;
- string pubdate_of(string filename) const;
- string guid_of(string filename) const;
+ string title_of(string filename) const
+ {
+ // TODO: we need to sort out the internal magic of RssMeta first, then
+ // we can just do a lookup on the filename.
+ }
+ string link_of(string filename) const { return ""; }
+ string pubdate_of(string filename) const { return ""; }
+ string guid_of(string filename) const { return ""; }
}