using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Xml.Linq; using Web.Core; using FLocal.Common; using FLocal.Common.dataobjects; namespace FLocal.IISHandler.handlers { class PostHandler : AbstractGetHandler { override protected string templateName { get { return "Post.xslt"; } } override protected IEnumerable getSpecificData(WebContext context) { Post post = this.url.post; int lastReadId = 0; if(context.session != null) { lastReadId = post.thread.getLastReadId(context.session.account); } XElement[] result = new XElement[] { new XElement("currentLocation", post.exportToXmlSimpleWithParent(context)), post.thread.exportToXml(context), new XElement("posts", post.exportToXml( context, new XElement("isUnread", (post.id > lastReadId).ToPlainString()) ) ) }; post.thread.incrementViewsCounter(); if(context.session != null) { post.thread.markAsRead(context.session.account, post, post); } return result; } } }