ServiceStack Razor(自托管),带有嵌入式images/css

本文关键字:嵌入式 images css Razor ServiceStack | 更新日期: 2023-09-27 18:21:16

我有一个使用出色服务堆栈的自托管WebService/WebApplication。

我的视图和图像都嵌入到DLL中。我使用的是GitHub中的ResourceVirtualPathProvider代码。它可以正确地找到索引页和布局,但找不到嵌入的images/css(可能很明显)。

我该如何配置Razor插件来搜索路径提供程序。我已经在调试模式下进行了检查,路径提供程序已经找到了所有的css和图像。他们只是没有被击溃。

编辑

我曾尝试将AppHost的VirtualPathProvider属性设置为与配置RazorFormat插件相同的提供程序,但没有成功。

上次编辑

感谢Mythz的回应,我现在已经完成了这项工作,并提供了以下解决方案:

  1. 首先(我以前也有过),我使用GitHub中的Embedded代码来创建资源虚拟路径提供程序、目录和文件。

  2. 实现了VirtualFileHandler:

    public sealed class VirtualFileHandler : IHttpHandler, IServiceStackHttpHandler
    {
    private IVirtualFile _file;
    
    /// <summary>
    /// Constructor
    /// </summary>
    /// <param name="file">File to serve up</param>
    public VirtualFileHandler(IVirtualFile file)
    {
        _file = file.ThrowIfDefault("file");
    }   // eo ctor
    
    public bool IsReusable { get { return false; } }
    
    public void ProcessRequest(HttpContext context)
    {
        ProcessRequest(new HttpRequestWrapper(null, context.Request),
                       new HttpResponseWrapper(context.Response),
                       null);
    }   // eo ProcessRequest
    public void ProcessRequest(IHttpRequest request, IHttpResponse response, string operationName)
    {
        try
        {
            response.ContentType = ALHEnvironment.GetMimeType(_file.Extension);
            using (Stream reader = _file.OpenRead())
            {
                byte[] data = reader.ReadFully();
                response.SetContentLength(data.Length);
                response.OutputStream.Write(data, 0, data.Length);
                response.OutputStream.Flush();
            }
        }
        catch (System.Net.HttpListenerException ex)
        {
            //Error: 1229 is "An operation was attempted on a nonexistent network connection"
            //This exception occures when http stream is terminated by the web browser.
            if (ex.ErrorCode == 1229)
                return;
            throw;
        }
    }   // eo ProcessRequest
    }   // eo class VirtualFileHandler
    
  3. 在我的配置函数中配置了所有内容(它是静态的,这对我的场景来说是唯一的,但它实际上是从常规AppHost的Configure函数调用的)

    protected static void Configure(WebHostConfiguration config)
    {
        _pathProvider = new MultiVirtualPathProvider(config.AppHost,
                                                     new ResourceVirtualPathProvider(config.AppHost, WebServiceContextBase.Instance.GetType()),
                                                     new ResourceVirtualPathProvider(config.AppHost, typeof(ResourceVirtualPathProvider)));
        config.Plugins.Add(new RazorFormat()
        {
            EnableLiveReload = false,
            VirtualPathProvider = _pathProvider
        });
    
        /*
         * We need to be able to locate other embedded resources other than views, such as CSS, javascript files,
         * and images.  To do this, we implement a CatchAllHandler and locate the resource ourselves
         */
        config.AppHost.CatchAllHandlers.Add((httpMethod, pathInfo, filePath) =>
        {
            IVirtualFile file = _pathProvider.GetFile(pathInfo);
            if (file == null)
                return null;
            return new VirtualFileHandler(file);
        });
    }   // eo Configure
    

ServiceStack Razor(自托管),带有嵌入式images/css

你看过RazorRockstars的自托管版本吗?

RazorFormat不需要了解静态文件,它们只是由ServiceStack本身处理。

您需要将每个静态文件的Build Action设置为Copy if new,以便将它们复制到bin/目录,以便ServiceStack可以找到它们,因为它是托管自托管版本ServiceStack的基本目录。