CssHandler.cs :  » Bloggers » BlogEngine.NET » BlogEngine.Core » Web » HttpHandlers » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Bloggers » BlogEngine.NET 
BlogEngine.NET » BlogEngine.Core » Web » HttpHandlers » CssHandler.cs
#region Using

using System;
using System.Net;
using System.Web;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using System.IO.Compression;
using System.Web.Caching;

#endregion

namespace BlogEngine.Core.Web.HttpHandlers{
  /// <summary>
  /// Removes whitespace in all stylesheets added to the 
  /// header of the HTML document in site.master. 
  /// </summary>
  public class CssHandler : IHttpHandler
  {
    /// <summary>
    /// Enables processing of HTTP Web requests by a custom 
    /// HttpHandler that implements the <see cref="T:System.Web.IHttpHandler"></see> interface.
    /// </summary>
    /// <param name="context">An <see cref="T:System.Web.HttpContext"></see> object that provides 
    /// references to the intrinsic server objects 
    /// (for example, Request, Response, Session, and Server) used to service HTTP requests.
    /// </param>
    public void ProcessRequest(HttpContext context)
    {
      if (!string.IsNullOrEmpty(context.Request.QueryString["name"]))
      {
        string fileName = context.Request.QueryString["name"].Replace(BlogSettings.Instance.Version(), string.Empty) ;
        string css = string.Empty;

        OnServing(fileName);

        // Check if a .css file was requested
        if (!fileName.EndsWith("css", StringComparison.OrdinalIgnoreCase))
          throw new System.Security.SecurityException("Invalid CSS file extension");

        // In cache?
        if (context.Cache[context.Request.RawUrl] == null)
        {
          // Not found in cache, let's load it up
          if (fileName.StartsWith("http", StringComparison.OrdinalIgnoreCase))
          {
            css = RetrieveRemoteCss(fileName);
          }
          else
          {
            css = RetrieveLocalCss(fileName);
          }
        }
        else
        {
          // Found in cache
          css = (string)context.Cache[context.Request.RawUrl];
        }

        // Make sure css isn't empty
        if (!string.IsNullOrEmpty(css))
        {
          // Configure response headers
          SetHeaders(css.GetHashCode(), context);

          context.Response.Write(css);

          // Check if we should compress content
          if (BlogSettings.Instance.EnableHttpCompression)
           BlogEngine.Core.Web.HttpModules.CompressionModule.CompressResponse(context);

          OnServed(fileName);
        }
        else
        {
          OnBadRequest(fileName);
          context.Response.Status = "404 Bad Request";
        }
      }
    }

    /// <summary>
    /// Strips the whitespace from any .css file.
    /// </summary>
    private static string StripWhitespace(string body)
    {
      body = body.Replace("  ", " ");
      body = body.Replace(Environment.NewLine, String.Empty);
      body = body.Replace("\t", string.Empty);
      body = body.Replace(" {", "{");
      body = body.Replace(" :", ":");
      body = body.Replace(": ", ":");
      body = body.Replace(", ", ",");
      body = body.Replace("; ", ";");
      body = body.Replace(";}", "}");

      // sometimes found when retrieving CSS remotely
      body = body.Replace(@"?", string.Empty);

      //body = Regex.Replace(body, @"/\*[^\*]*\*+([^/\*]*\*+)*/", "$1");
      body = Regex.Replace(body, @"(?<=[>])\s{2,}(?=[<])|(?<=[>])\s{2,}(?=&nbsp;)|(?<=&ndsp;)\s{2,}(?=[<])", String.Empty);

      //Remove comments from CSS
      body = Regex.Replace(body, @"/\*[\d\D]*?\*/", string.Empty);

      return body;
    }

    /// <summary>
    /// This will make the browser and server keep the output
    /// in its cache and thereby improve performance.
    /// </summary>
        private static void SetHeaders(int hash, HttpContext context)
        {
            context.Response.ContentType = "text/css";
            context.Response.Cache.VaryByHeaders["Accept-Encoding"] = true;

            context.Response.Cache.SetExpires(DateTime.Now.ToUniversalTime().AddDays(7));
            context.Response.Cache.SetMaxAge(new TimeSpan(7, 0, 0, 0));
            context.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);

            string etag = "\"" + hash.ToString() + "\"";
            string incomingEtag = context.Request.Headers["If-None-Match"];

            context.Response.Cache.SetETag(etag);
            context.Response.Cache.SetCacheability(HttpCacheability.Public);

            if (String.Compare(incomingEtag, etag) == 0)
            {
                context.Response.Clear();
                context.Response.StatusCode = (int)System.Net.HttpStatusCode.NotModified;
                context.Response.SuppressContent = true;
            }
        }

    /// <summary>
    /// Retrieves the local CSS from the disk
    /// </summary>
    private static string RetrieveLocalCss(string file)
    {
      string path = HttpContext.Current.Server.MapPath(file);
      string css = string.Empty;
      try
      {
        using (StreamReader reader = new StreamReader(path))
        {
          // load CSS content
          css = reader.ReadToEnd();

          // Optimize CSS content
          css = StripWhitespace(css);

          // Insert into cache
          HttpContext.Current.Cache.Insert(HttpContext.Current.Request.RawUrl, css, new CacheDependency(path));
        }
        return css;
      }
      catch
      { return string.Empty; }
    }

    /// <summary>
    /// Retrieves the specified remote CSS using a WebClient.
    /// </summary>
    /// <param name="file">The remote URL</param>
    private static string RetrieveRemoteCss(string file)
    {
      string css = string.Empty;
      try
      {
        Uri url = new Uri(file, UriKind.Absolute);
        using (WebClient client = new WebClient())
        {
          // Load CSS content
          client.Credentials = CredentialCache.DefaultNetworkCredentials;
          css = client.DownloadString(url);

          // Optimize CSS content
          css = StripWhitespace(css);

          // Insert into cache
          HttpContext.Current.Cache.Insert(HttpContext.Current.Request.RawUrl, css, null, Cache.NoAbsoluteExpiration, new TimeSpan(3, 0, 0, 0));
        }
        return css;
      }
      catch (System.Net.Sockets.SocketException)
      { return string.Empty; }
    }

    //#region Compression

    //private const string GZIP = "gzip";
    //private const string DEFLATE = "deflate";

    //private static void Compress(HttpContext context)
    //{
    //  if (context.Request.UserAgent != null && context.Request.UserAgent.Contains("MSIE 6"))
    //    return;

    //  if (IsEncodingAccepted(GZIP))
    //  {
    //    context.Response.Filter = new GZipStream(context.Response.Filter, CompressionMode.Compress);
    //    SetEncoding(GZIP);
    //  }
    //  else if (IsEncodingAccepted(DEFLATE))
    //  {
    //    context.Response.Filter = new DeflateStream(context.Response.Filter, CompressionMode.Compress);
    //    SetEncoding(DEFLATE);
    //  }
    //}

    ///// <summary>
    ///// Checks the request headers to see if the specified
    ///// encoding is accepted by the client.
    ///// </summary>
    //private static bool IsEncodingAccepted(string encoding)
    //{
    //  return HttpContext.Current.Request.Headers["Accept-encoding"] != null && HttpContext.Current.Request.Headers["Accept-encoding"].Contains(encoding);
    //}

    ///// <summary>
    ///// Adds the specified encoding to the response headers.
    ///// </summary>
    ///// <param name="encoding"></param>
    //private static void SetEncoding(string encoding)
    //{
    //  HttpContext.Current.Response.AppendHeader("Content-encoding", encoding);
    //}

    //#endregion

    /// <summary>
    /// Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler"></see> instance.
    /// </summary>
    /// <value></value>
    /// <returns>true if the <see cref="T:System.Web.IHttpHandler"></see> instance is reusable; otherwise, false.</returns>
    public bool IsReusable
    {
      get { return false; }
    }

    #region Events

    /// <summary>
    /// Occurs when the requested file does not exist;
    /// </summary>
    public static event EventHandler<EventArgs> Serving;
    private static void OnServing(string file)
    {
      if (Serving != null)
      {
        Serving(file, EventArgs.Empty);
      }
    }

    /// <summary>
    /// Occurs when a file is served;
    /// </summary>
    public static event EventHandler<EventArgs> Served;
    private static void OnServed(string file)
    {
      if (Served != null)
      {
        Served(file, EventArgs.Empty);
      }
    }

    /// <summary>
    /// Occurs when the requested file does not exist;
    /// </summary>
    public static event EventHandler<EventArgs> BadRequest;
    private static void OnBadRequest(string file)
    {
      if (BadRequest != null)
      {
        BadRequest(file, EventArgs.Empty);
      }
    }

    #endregion
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.