Fun with Feeds (a proof of concept RSS reader)

,

A short while back while working on the WebDAV wiki farm stuff, I realized I had most of the ingredients for a simple RSS reader in TiddlyWiki.

Just to demonstrate what might be possible once we have wikitext affordances for HTTP requests in the core, I spent an hour cobbling this together:

https://saqimtiaz.github.io/sq-tw/temp/feedreader.html

Please note that:

  • this is not meant to be usable, nor do I intend to work on it further
  • it relies on the same wikitext affordances for HTTP requests as the WebDAV work
  • it takes a shortcut and uses XSLT (think CSS for XML) to display the feeds as HTML. A more interesting approach might be to convert each feed item into HTML as a temporary tiddler, allowing to easily save individual feed items of interest.
  • the primary constraint is lack of CORS (cross domain communication) support for many of the servers hosting the RSS feeds, which necessitates use of a proxy server.
1 Like

Nice. A shame about the CORS restriction.

Are there any references for what you’re talking about with “wikitext affordances for HTTP requests”?

The basic idea is to introduce a widget message that initiates an HTTP request, and run actions in the callback for the request. Jeremy and I have both worked in this area and came up with our own implementations, though I have since tried to standardize upon version. There is still some work to be done in terms of error handling and providing more affordances for end users to have an overview over and debug requests.

Example implementation of the widget message handling (subject to change).

Example of invoking a request from wikitext.

Fetching an RSS feed and saving it in a tiddler looks like this:

\define callback()
	\define failureHandler()
	<$action-log status="error fetching the feed"/>
	<$action-setfield $tiddler={{{ [[$:/temp/feedreader/error/]addsuffix<feed-uri>] }}} text={{{ [[There was an error fetching the feed: ]addsuffix<feed-uri>addsuffix[. ]addsuffix<error>] }}} component="Feedreader" tags="$:/tags/Alert"/>
	\end failureHandler
	<$list filter="[<status>match[200]] :filter[<error>is[blank]]" variable="null" emptyMessage=<<failureHandler>> >
		<$action-setfield $tiddler={{{ [[$:/temp/feed/]addsuffix<feed-uri>] }}} text=<<data>> />
	</$list>
\end callback

<$action-sendmessage
	$message="sqtm-http-request"
	method="GET"
	bind-status={{{ [[$:/temp/feedreader/http-status/]addsuffix<feed-uri>] }}}
	oncompletion=<<callback>>
	url=<<feed-uri>>
	var-feed-uri=<<feed-uri>>
>

Thank you @saqimtiaz. I can see many uses for this.

I’m happy that after a few months of doing TW work, I understood almost everything in your sample here. (I’ve only glanced at the JS in the GitHub repos, but since that’s my day-to-day work, I expect to be able to follow that.)

The one thing I’m missing is in the emptyMessage to your <$list> in the callback. I’m probably just misled by working with eager languages like JS, but to me that reads as through we would run the failureHandler regardless of whether the list is empty. I assume this is not true. Does that mean that emptyMessage just has the string "<<failureHandler>>" to be evaluated later if the list turns out to be empty?

Do I have that right? I’ve worked a bit with lazy languages like Haskell, and that’s a familiar concept, but I didn’t realize that TW worked that way. This might help we clear up a lot of vague misperceptions about TW that I knew were wrong but didn’t know why?

Or am I on the wrong track altogether?

I use a plugin for my TiddlyWiki to provide an RSS feed. And this is how I add it to the HTML head.

Been using this for years and it works great!

Oh a reader. sorry miss read the title.

Almost correct. In the code given above, since the emptyMessage is assigned without quotes around the value, it is the value of the macro/variable that is assigned to emptyMessage as a string. That is a subtle distinction but matters in some contexts.

By default, assigning a variable or some wikitext to the attribute of a widget does not invoke/execute that wikitext, the value of the attribute is provided to the widget as a string and the widget determines how it is uses the attribute value.

The $list widget renders the emptyMessage attribute value when there is no output from the filter provided to its filter attribute. The emptyMessage is the else clause if we think of the $list widget as an if else formulation.

That clears it up. I was thinking in JS terms, believing that <$myWidget prop=<<myRef>> /> was equivalent to JS’s myWidget (prop = myRef ()). That’s not the case, and it’s actually more like myWidget (prop = myRef) (and I know function calls are not a precise analogy either.) It will probably take a few tries for this to sink in, but it makes sense.

Thank you for taking the time here and elsewhere to instruct those of us still struggling. Your help is much appreciated!

This is true for both literal and variable widget attributes. For filtered transclusions such as prop={{{ [some filter here] }}}, the filter is run when the widget is rendered and the output assigned as a string as the value of the widget attribute.

Just to clarify since I have had multiple questions about this now, the link above is a TiddlyWiki. Use ctrl + shift + L to change Layouts.

1 Like

@saqimtiaz, I use miniflux and would be so happy to have this in Tiddlywiki. Is this something that you can establish?

I just hoped to use rsshub to write an rss plug-in, but cors first stopped me from this idea. Maybe this is why many rss readers charge a fee. rsshub supports hosting, which should be able to solve the cors problem, but it is not planned to do so for the time being.

vue-rss

Here is an example of vue implementing rss loading on tiddlywiki

2 Likes

In addition, the formats between different RSS are not strictly standardized and unified, and it is necessary to manually adjust the acquisition of some tags.


for tiddlywiki newsletter rss

1 Like

I noticed that some of the examples use https://corsproxy.io/. Note that iOS does not support proxy forwarding.

requestUrl - Developer Documentation I saw someone made a similar RSS plug-in for Obsidian, and they used this API to solve this CORS problem, which seems really convenient. I don’t quite understand the details. Is this a similar approach to forwarding through a proxy? @saqimtiaz

PS:Obsidian’s plugin development documentation looks very good. It would be great if our dev manual could reach this level.

My guess is that this is a custom API implemented via electron and exposed to the client and therefore not subject to the same CORS restrictions as browsers. Working in normal browsers, there is no equivalent option for bypassing CORS.

1 Like