• 某墙尼妹,用个Response.Filter来解决StackExchange.Exceptional中google cdn的问题


    某墙墙了古古路,一些开源的东东里用了古古路CDN,比如Exceptional,Opserver ,导致服务要么慢要么用不了

    必须要替换之

    Exceptional就只要用Response.Filter替换个页面了,因为自己维护个版本还要定期合并什么的,操心

     internal class ResponseStream : MemoryStream
            {
    
                #region ctor
    
                private Stream Output { get; set; }
                public HttpContextBase Context { get; set; }
    
                /// <summary>
                /// 页面输出的Stream Buffer
                /// </summary>
                public List<byte> BytesArray { get; set; }
    
                public ResponseStream(HttpContextBase context)
                {
                    Context = context;
                    Output = context.Response.Filter;
                    context.Response.BufferOutput = true;
                    context.Response.Buffer = true;
                    BytesArray = new List<byte>();
                }
    
                #endregion
    
    
                public override void Write(byte[] buffer, int offset, int count)
                {
                    if (Context.Response.ContentType != "text/html")
                    {
                        Output.Write(buffer, offset, count);
                        return;
                    }
                    BytesArray.AddRange(buffer);
                }
    
                public override void Close()
                {
                    if (BytesArray.Count > 0)
                        CloseByReplace();
                    Output.Close();
                    base.Close();
                }
    
                private void CloseByReplace()
                {
                    var html = Encoding.UTF8.GetString(BytesArray.ToArray(), 0, BytesArray.Count);
                    var sb = new StringBuilder(html);
    
                    sb.Replace("//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js", "http://libs.baidu.com/jquery/1.7.2/jquery.min.js");
                    var outputBytes = Encoding.UTF8.GetBytes(sb.ToString());
                    Output.Write(outputBytes, 0, outputBytes.Length);
                }
    
    
            }

    Action对应的改为:

            public ActionResult Exceptions()
            {
                var context = System.Web.HttpContext.Current;
                context.Response.Filter = new ResponseStream(HttpContext);
                var page = new HandlerFactory().GetHandler(context, Request.RequestType, Request.Url.ToString(),
                    Request.PathInfo);
                page.ProcessRequest(context);
    
                return null;
            }
  • 相关阅读:
    ubuntu 10.04 修改双系统默认启动项
    ubuntu 系统目录结构
    在ubuntu 下搭建 android开发环境
    android 开发包的离线安装方式
    wget 下载ftp整个目录
    Lambda复合条件以及获得EntityFramework 运行后生成的sql 命令
    解决jquery 的datepicker 的本地化以及Today问题
    ubuntu ssh 登录慢问题
    android监控上传小demo之第三步 相片的提交
    临时转mysql编码解决乱码问题
  • 原文地址:https://www.cnblogs.com/chsword/p/StackExchange_Exceptional_response_filter.html
Copyright © 2020-2023  润新知