Archive for rss tag
Behind the scenes at xbox.com – RSS enabling web marketplace
A number of people were requesting additional RSS feeds for the xbox.com web marketplace. (We had just one that included all new arrivals)
Looking across our site as the various lists of products we display today the significant views are:
- Browse games by department
- Search results
- Promotions (e.g. Deal of the week)
- Game detail (shows downloads available beneath it)
- Avatar item browse
These views also have sorting options and a set of filters available for things like product type, game genre, content rating etc.
So we had a couple of options:
- Write controller actions that expose the results of specific queries as RSS
- Introduce a mechanism whereby any of our product result pages can render as RSS including any user-defined filtering
Our web marketplace is written in ASP.NET MVC (like most of xbox.com) so while option 1 sounds simpler MVC really helps us make option 2 more attractive by way of a useful feature called ActionFilters that let us jump in and reshape the way existing actions behave.
ActionFilters
ActionFilters can be applied to either to an individual action method on a controller or to the controller class itself which applies it to all the actions on that controller. They provide hooks into the processing pipeline where you can jump in and perform additional processing.
The most interesting events are:
- OnActionExecuting
- OnActionExecuted
- OnResultExecuting
- OnResultExecuted
Writing our ActionFilter
The first thing we want to do is identify that a request wants the RSS version. One way is to read the accepts header and switch when it requests mime/type but this can be a little trickier to test, another is to append a query parameter on the url which is very easy to test.
Once we’ve identified the incoming request should be for RSS we need to identify the data we want to turn into RSS and repurpose it.
All the views we identified at the start of this post share a common rendering mechanism and each view model subclasses from one of our base models. For simplicity though we’ll imagine an interface that just exposes an IEnumerable<Product> property.
public class RssEnabledAttribute : ActionFilterAttribute
{
public override void OnActionExecuted(ActionExecutedContext filterContext) {
var viewModel = filterContext.Controller.ViewData.Model as IProductResultViewModel;
if (viewModel == null)
return;
var rssFeedTitle = FeedHelper.MakeTitle(viewModel.Results);
filterContext.Controller.ViewData.Add("RssFeedTitle", rssFeedTitle);
var format = filterContext.RequestContext.HttpContext.Request.QueryString["format"];
if (format == "rss" && rssFeedTitle != null) {
var urlHelper = new UrlHelper(filterContext.RequestContext);
var url = QueryStringUtility.RemoveQueryStringParameter(filterContext.RequestContext.HttpContext.Request.Url.ToString(), "format");
var feedItems = FeedHelper.GetSyndicationItems(viewModel.Results, urlHelper);
filterContext.Result = FeedHelper.CreateProductFeed(rssFeedTitle, viewModel.Description, new Uri(url), feedItems);
}
base.OnActionExecuted(filterContext);
}
}
This class relies on our FeedHelper class to achieve three things it needs:
- MakeTitle takes the request details – i.e. which page, type of products, filtering and sorting is selected and makes a title by re-using our breadcrumbs
- GetSyndicationItems takes the IEnumerable<Product> and turns it into IEnumerable<SyndicationItem> by way of a foreach projecting Product into SyndicationItem with some basic HTML formatting, combining the product image and setting the correct category (with a yield thrown in for good measure)
- CreateProductFeed then creates a Syndication feed with the appropriate Copyright and Language set and chooses the formatter – in our case RSS 2.0 but could easily be Atom 1.0, e.g.
public static SyndicationFeedResult CreateProductFeed(string title, string description, Uri link, IEnumerable<SyndicationItem> syndicationItems)
{
var feed = new SyndicationFeed(title, description, link, syndicationItems) {
Copyright = new TextSyndicationContent(String.Format(Resources.FeedCopyrightFormat, DateTime.Now.Year)),
Language = CultureInfo.CurrentUICulture.Name
};
return new FeedResult(new Rss20FeedFormatter(feed, false));
}
The FeedResult class is a simple one that takes the built-in .NET SyndicationFeed class and wires it up to MVC by implementing an ActionResult that writes the XML of the SyndicationFeedFormatter into the response as well as setting the application/rss+xml content type and encoding.
Advertising the feed in the head
Now that we have the ability to serve up RSS we need to let browsers know it exists.
The ActionFilter we wrote above needs to know the title of the RSS feed regardless of whether it is rendering the RSS (which needs a title) or rendering the page (which will need to advertise the RSS title) so it always calculates it and then puts it into the ViewData dictionary with the key RssFeedTitle.
Now finally our site’s master page can check for the existence of that key/value pair and advertise it out with a simple link tag:
var rssFeedTitle = ViewData["RssFeedTitle"] as string;
if (!String.IsNullOrEmpty(rssFeedTitle)) { %>
<link rel="alternate" type="application/rss+xml" title="<%:rssFeedTitle%>" href="<%:Url.ForThisAsRssFeed%>" />
<% }
This code requires just one more thing – a very small UrlHelper which will append “format=rss” to the query string (taking into account whether there existing query parameters or not).
The result of this is we can now just add [RssEnabled] in front of any controller or action to turn on RSS feeds for that portion of our marketplace! :)
[)amien
Creating RSS feeds in ASP.NET MVC
ASP.NET MVC is the technology that brought me to Microsoft and the west-coast and it’s been fun getting to grips with it these last few weeks.
Last week I needed to expose RSS feeds and checked out some examples online but was very disappointed.
If you find yourself contemplating writing code to solve technical problems rather than the specific business domain you work in you owe it to your employer and fellow developers to see what exists before churning out code to solve it.
The primary excuse (and I admit to using it myself) is “X is too bloated, I only need a subset. I can write that quicker than learn their solution.” but a quick reality check:
- Time – code always takes longer than you think
- Bloat – indicates the problem is more complex than you realize
- Growth – todays requirements will grow tomorrow
- Maintenance – fixing code outside your business domain
- Isolation – nobody coming in will know your home-grown solution
The RSS examples I found had their own ‘feed’ and ‘items’ classes and implemented flaky XML rendering by themselves or as MVC view pages.
If these people had spent a little time doing some research they would have discovered .NET’s built in SyndicatedFeed and SyndicatedItem class for content and two classes (Rss20FeedFormatter and Atom10FeedFormatter ) to handle XML generation with correct encoding, formatting and optional fields.
All that is actually required is a small class to wire up these built-in classes to MVC.
using System;
using System.ServiceModel.Syndication;
using System.Text;
using System.Web;
using System.Web.Mvc;
using System.Xml;
namespace MyApplication.Something
{
public class FeedResult : ActionResult
{
public Encoding ContentEncoding { get; set; }
public string ContentType { get; set; }
private readonly SyndicationFeedFormatter feed;
public SyndicationFeedFormatter Feed{
get { return feed; }
}
public FeedResult(SyndicationFeedFormatter feed) {
this.feed = feed;
}
public override void ExecuteResult(ControllerContext context) {
if (context == null)
throw new ArgumentNullException("context");
HttpResponseBase response = context.HttpContext.Response;
response.ContentType = !string.IsNullOrEmpty(ContentType) ? ContentType : "application/rss+xml";
if (ContentEncoding != null)
response.ContentEncoding = ContentEncoding;
if (feed != null)
using (var xmlWriter = new XmlTextWriter(response.Output)) {
xmlWriter.Formatting = Formatting.Indented;
feed.WriteTo(xmlWriter);
}
}
}
}
In a controller that supplies RSS feed simply project your data onto SyndicationItems and create a SyndicationFeed then return a FeedResult with the FeedFormatter of your choice.
public ActionResult NewPosts() {
var blog = data.Blogs.SingleOrDefault();
var postItems = data.Posts.Where(p => p.Blog = blog).OrderBy(p => p.PublishedDate).Take(25)
.Select(p => new SyndicationItem(p.Title, p.Content, new Uri(p.Url)));
var feed = new SyndicationFeed(blog.Title, blog.Description, new Uri(blog.Url) , postItems) {
Copyright = blog.Copyright,
Language = "en-US"
};
return new FeedResult(new Rss20FeedFormatter(feed));
}
This also has a few additional advantages:
- Unit tests can ensure the ActionResult is a FeedResult
- Unit tests can examine the Feed property to examine results without parsing XML
- Switching to Atom format involved just changing the new Rss20FeedFormatter to Atom10FeedFormatter
[)amien