Click here to Skip to main content
15,886,840 members
Articles / Web Development / ASP.NET

Eucalypto - ASP.NET CMS Library using NHibernate

Rate me:
Please Sign up or sign in to vote.
4.84/5 (36 votes)
10 Jun 2009MIT24 min read 319.1K   4.6K   260  
An ASP.NET server library for creating CMS website (forums, articles/wiki, news, users/roles, ...), using NHibernate for data access.
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class Forum_NewMessage : System.Web.UI.Page
{
    private const string MESSAGE_RESPONSE_TAG = "RE: ";

    private string IdParentMessage
    {
        get { return Request["parent"]; }
    }

    protected void Page_Load(object sender, EventArgs e)
    {
        Eucalypto.Forum.Message parentMessage = GetParentMessage();

        if (IsPostBack == false)
        {
            string title = parentMessage.Title;

            if (title.StartsWith(MESSAGE_RESPONSE_TAG))
                newMessage.MessageSubject = title;
            else
                newMessage.MessageSubject = MESSAGE_RESPONSE_TAG + title;

            Eucalypto.Forum.Category forum = parentMessage.Topic.Category;

            if (forum.AttachEnabled)
            {
                newMessage.SetAcceptedExtensions(Eucalypto.Attachment.FileHelper.ReplaceExtensionsSets(forum.AttachExtensions));
                newMessage.SetMaxAttachSize(forum.AttachMaxSize);
                newMessage.EnabledAttach = true;
            }
            else
                newMessage.EnabledAttach = false;
        }

        viewParentMessage.SetMessage(parentMessage);
    }

    private Eucalypto.Forum.Message GetParentMessage()
    {
        return Eucalypto.Forum.ForumManager.GetMessage(IdParentMessage);
    }

    protected void btCancel_Click(object sender, EventArgs e)
    {
        Navigation.Forum_ViewTopic(GetParentMessage().Topic.Id).Redirect(this);
    }

    protected void btSubmit_Click(object sender, EventArgs e)
    {
        try
        {
            Eucalypto.Forum.Message parentMessage = GetParentMessage();
            Eucalypto.Forum.Topic topic = GetParentMessage().Topic;
            Eucalypto.Forum.Category forum = topic.Category;

            //Check permission
            if (Eucalypto.SecurityHelper.CanInsert(Page.User, forum) == false)
                throw new Eucalypto.InvalidPermissionException("insert new message");

            Eucalypto.XHTMLText xhtml = new Eucalypto.XHTMLText();
            xhtml.Load(newMessage.MessageBodyHtml);

            Exception validateError;
            if (xhtml.IsValid(forum.XHtmlMode, out validateError) == false)
                throw new Eucalypto.TextNotValidException(validateError);

            Eucalypto.Attachment.FileInfo attachment = null;
            //Create attachment
            if (newMessage.AttachmentFile.HasFile)
                attachment = new Eucalypto.Attachment.FileInfo(newMessage.AttachmentFile.FileName,
                                                            newMessage.AttachmentFile.PostedFile.ContentType,
                                                            newMessage.AttachmentFile.FileBytes);

            //Insert the message
            Eucalypto.Forum.ForumManager.CreateMessage(topic, IdParentMessage, User.Identity.Name,
                                                    newMessage.MessageSubject,
                                                    xhtml.GetXhtml(),
                                                    attachment);

            Navigation.Forum_ViewTopic(topic.Id).Redirect(this);
        }
        catch (Exception ex)
        {
            ((IErrorMessage)Master).SetError(GetType(), ex);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions