You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Xml.Linq;
|
|
using FLocal.Common.dataobjects;
|
|
|
|
namespace FLocal.IISHandler.handlers.request {
|
|
class ReplyHandler : AbstractNewMessageHandler {
|
|
|
|
protected override XElement[] Do(WebContext context) {
|
|
// Post post = Post.LoadById(int.Parse(context.httprequest.Form["parent"]));
|
|
//int desiredLayerId = Math.Min(context.session.account.user.getMinAllowedLayer(post.thread.board), int.Parse(context.httprequest.Form["layer"]));
|
|
|
|
Post newPost = Post.LoadById(
|
|
int.Parse(context.httprequest.Form["parent"])
|
|
).Reply(
|
|
context.session.account.user,
|
|
this.getTitle(context),
|
|
this.getBody(context),
|
|
PostLayer.LoadById(int.Parse(context.httprequest.Form["layerId"]))
|
|
);
|
|
|
|
newPost.thread.markAsRead(context.session.account, newPost, newPost);
|
|
|
|
return new XElement[] {
|
|
newPost.thread.board.exportToXml(context, Board.SubboardsOptions.None),
|
|
newPost.exportToXml(context)
|
|
};
|
|
}
|
|
|
|
}
|
|
}
|
|
|