0

我正在编写一个 CMS 系统,在阅读并完成了一些示例之后,我决定使用HttpHandlerFactory来执行我需要的操作。

关键是我们的网站通常是复制和注册过程的混合体。因此,我目前需要使用 aspx 的默认 HttpHandler 来呈现物理注册页面,直到我也能找到一种对它们进行内容管理的方法。

创建处理程序类后,我将以下内容添加到我的网站的网络配置中

<add verb="*" path="*.aspx" type="Web.Helpers.HttpCMSHandlerFactory, Web.Helpers"/>

由于上面的路径处理物理和 cms 驱动的页面,通过代码中的小检查,我能够查看页面是否物理存在,然后可以呈现所需的页面。

    public IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated)
    {
        string pageName = Path.GetFileNameWithoutExtension(context.Request.PhysicalPath);
        context.Items.Add("PageName", pageName);
        //DirectoryInfo di = new DirectoryInfo(context.Request.MapPath(context.Request.ApplicationPath));
        FileInfo fi = new FileInfo(context.Request.MapPath(context.Request.CurrentExecutionFilePath));
        //var file = fi.Where(x => string.Equals(x.Name, string.Concat(pageName, ".aspx"), StringComparison.InvariantCultureIgnoreCase)).SingleOrDefault();
        if (fi.Exists == false)
        {
           // think I had this the wrong way around, the url should come first with the renderer page second
            return PageParser.GetCompiledPageInstance(url, context.Server.MapPath("~/CMSPage.aspx"), context);
        }
        else
        {
            return PageParser.GetCompiledPageInstance(context.Request.CurrentExecutionFilePath, fi.FullName, context);
        }
    }

我的问题是我应该PageParser.GetCompiledPageInstance在有物理页面时使用其他东西吗?

更新:由于上述我已经继续为图像开发和 HttpHandler ,它再次按照相同的原理工作,如果图像存在则使用它,否则从数据库中提供服务。png 文件有一些问题,但以下过程适用于显示的文件格式。

        byte[] image = null;
        if (File.Exists(context.Request.PhysicalPath))
        {
            FileStream fs = new FileStream(context.Request.PhysicalPath, FileMode.Open, FileAccess.Read);
            BinaryReader br = new BinaryReader(fs);

            image = br.ReadBytes((int)fs.Length);
        }
        else
        {
            IKernel kernel = new StandardKernel(new ServiceModule());
            var cmsImageService = kernel.Get<IContentManagementService>();
            var framework = FrameworkSetup.GetSetFrameworkSettings();
            image = cmsImageService.GetImage(Path.GetFileName(context.Request.PhysicalPath), framework.EventId);
        }

        var contextType = "image/jpg";
        var format = ImageFormat.Jpeg;

        switch (Path.GetExtension(context.Request.PhysicalPath).ToLower())
        {
            case ".gif":
                contextType = "image/gif";
                format = ImageFormat.Gif;
                goto default;
            case ".jpeg":
            case ".jpg":
                contextType = "image/jpeg";
                format = ImageFormat.Jpeg;
                goto default;
            case ".png":
                contextType = "image/png";
                format = ImageFormat.Png;
                goto default;
            default:
                context.Cache.Insert(context.Request.PhysicalPath, image);
                context.Response.ContentType = contextType;
                context.Response.BinaryWrite(image);
                context.Response.Flush();
                break;
        }
4

1 回答 1

1

我不确定这是否完全回答了您的问题...我还构建了一个由 HttpHandler 驱动的 ASP.NET CMS,它还允许物理 .aspx 页面。由于我只有少量的物理 .aspx 文件和位置,因此管理执行的最简单方法是通过 web.config。

首先,我将网站(一般而言)配置为使用我的处理程序 - 除了登录页面(例如):

<add verb="*" path="login.aspx" type="System.Web.UI.PageHandlerFactory"/>
<add verb="*" path="Register.aspx" type="System.Web.UI.PageHandlerFactory"/>
<add verb="*" path="*.aspx" type="Morphfolia.PublishingSystem.HttpHandlers.DefaultHandler, Morphfolia.PublishingSystem"/>

您可以做的另一件事是通过 隔离location,因此对于网站的这一部分,我选择使用开箱即用的 ASP.NET 处理程序,该处理程序通常处理“经典”ASP.NET 请求:

<location path="Morphfolia/_publishing">
  <system.web>
    <httpHandlers>
      <add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory"/>
    </httpHandlers>
  </system.web>
</location>
于 2010-10-04T21:37:40.573 回答