Activity RSS for dasBlog

A few months ago I added a ‘Daily Report Email’ feature to dasBlog, so I could have the activity reports (referrers, searches etc) delivered to my mailbox at the end of every day.
I wanted to take this one step further and deliver it via RSS (and dasBlog is a RSS engine after all).

There were a couple of suggested methods raised on the dasBlog developers mailing list; one was using HTTP authentication – I was reluctant to use this as Outlook 2007 does not support authorized feeds. The other suggestion was to obfuscate the URL with a Guid or the like – this was my preferred option.

So, I have been working on it over the past few evenings, got it rolled out to this blog and it seems to be working pretty well.

image

I added a checkbox to the site configuration page, that when checked generates a Guid that is used as part of the path. The ‘activityrss.ashx’ page doesn’t exist at that path (in fact it doesn’t exist at all!), instead there is a HttpHandler for the file ‘activityrss.ashx’ that intercepts any requests for that file and does some processing.

In this processing I check that the requested URL contains the Guid and if so, generate the Activity RSS feed. The content of each feed item is the activity report (similar format to the daily report email).

image

NOTE: This is not in a release yet, if you want it you’ll have to check out the source, patch it with this patch file and compile, deploy it manually.

 

2 thoughts on “Activity RSS for dasBlog

  1. Hrm. Hate to bother you, but I’m having a problem recently with the daily reports being empty. They show the headers/etc, but the count is 0 for everything. This started happening about a week ago, and I’m not sure why. I’ve tried turning it off and back on with no luck. I’m using the latest public DasBlog build. Any ideas?

Leave a Reply

Your email address will not be published. Required fields are marked *