2

下面的代码是 ServiceStack 插件的初始传递,以$locationProvider.html5Mode(true);在 servicestack 自托管时支持 angularjs 配置(如在此处请求:Routing path with ServiceStack and Serving default index.html page when using Angular HTML5mode and Servicestack on backend)。我想我有一个很好的通用解决方案,最后一个问题(除了将其切换为Feature与其他插件一致的命名约定)。

如何在我的 ProcessRequest 中一般处理任何受支持的默认文档类型?现在该函数假定降价。我希望有一个比关闭文件扩展名的 switch 语句更优雅的解决方案。理想情况下,我想调用一些可以继续工作的东西,因为随着时间的推移会支持更多的默认文档类型。

// This code does not yet work, and omits required methods for the sake of brevity.
// I'll update with a link to the final plugin, once I get it working.

Public Class Html5ModeHandler : IPlugin
{
    private String pathInfo = String.Empty;

    public void Register(IAppHost appHost)
    {
        appHost.CatchAllHandlers.Add((string method, string pathInfo, string filepath) =>
                                        Factory(method, pathInfo, filepath));
    }

    private Html5ModeHandler(string pathInfo)
    {
        this.pathInfo = pathInfo;
    }

    Public Html5ModeHandler Factory(method, pathInfo, filepath)
    {
        String root = String.Empty;

        // loop through catchallhandlers
        if (EndpointHost.CatchAllHandlers != null)
        {
            foreach (var httpHandlerResolver in EndpointHost.CatchAllHandlers)
            {
                if (httpHandlerResolver == this.Factory) continue; // avoid infinite loop

                var httpHandler = httpHandlerResolver(httpMethod, pathInfo, filePath);
                if (httpHandler != null)
                    // only handle request if no other handler is available
                    return null;
            }
        }

        if (!(GetHandlerForPathInfo(method,pathInfo, pathInfo,filepath) is NotFoundHttpHandler) )
        {
            // GetHandlerForPathInfo replicates most of the logic from 
            // ServiceStackHttpHandlerFactory.GetHandler and ServiceStackHttpHandlerFactory.GetHandlerForPathInfo
            // Bail if it returns something other than a NotFoundHttpHandler

            return null;
        }

        foreach (var defaultDoc in EndpointHost.Config.DefaultDocuments)
        {
            var defaultFileName = Path.Combine(Directory.GetCurrentDirectory(), defaultDoc);
            if (!File.Exists(defaultFileName)) continue;
            root = root ? root : (String)defaultDoc; // keep the first default document found.
        }

        // support HTML5Mode for Single Page App - override NotFoundHttpHandler with default document
        return new Html5ModeHandler("/" + root);
    }

    public override void ProcessRequest(IHttpRequest httpReq, IHttpResponse httpRes, string operationName)
    {
        // TODO: Generalize to handle any DefaultDocument type 
        MarkdownHandler handler = new MarkdownHandler(this.pathInfo);
        handler.ProcessRequest(httpReq, httpRes, operationName);
    }
}
4

1 回答 1

1

我已经满意地确认没有简单的解决方案。我的ProcessRequest方法目前看起来像这样。

   public override void ProcessRequest(
             IHttpRequest httpReq, IHttpResponse httpRes, string operationName)
    {

        if ( FileFormat == DefaultFileFormat.Markdown ) 
        {
            ProcessMarkdownPage(httpReq, httpRes, operationName);
            return;
        }   

        if ( FileFormat == DefaultFileFormat.Razor ) 
        {
            ProcessRazorPage(httpReq, httpRes, operationName);
            return;
        }

        fi.Refresh();
        if (fi.Exists)
        {
            ProcessStaticPage(httpReq, httpRes, operationName);
            return;
        }

        ProcessServerError(httpReq, httpRes, operationName);

    }   
于 2013-07-10T19:24:05.437 回答