ASP.NET Core如何确定MIME类型并应用不同的中间件?

时间:2017-08-28 06:54:45

标签: c# asp.net-core asp.net-core-mvc .net-core

我使用ASP.NET Core MVC和.NET Core 2.0。

我有一些静态文件,它们有不同的文件类型,JPEG,PNG,BMP ......

我想根据不同的文件类型应用不同的中间件。

如PNG文件我将使用ImageCompressMiddleware,BMP文件我将使用ImageConvertMiddleware。

ASP.NET Core如何确定MIME类型并应用不同的中间件?

或根据文件扩展名。

2 个答案:

答案 0 :(得分:12)

在configure部分中创建一个FileExtensionContentTypeProvider对象,并为每个MIME类型填充或删除Mapping,如下所示:

public void Configure(IApplicationBuilder app)
{
    // Set up custom content types -associating file extension to MIME type
    var provider = new FileExtensionContentTypeProvider();
    // Add new mappings
    provider.Mappings[".myapp"] = "application/x-msdownload";
    provider.Mappings[".htm3"] = "text/html";
    provider.Mappings[".image"] = "image/png";
    // Replace an existing mapping
    provider.Mappings[".rtf"] = "application/x-msdownload";
    // Remove MP4 videos.
    provider.Mappings.Remove(".mp4");

    app.UseStaticFiles(new StaticFileOptions()
    {
        FileProvider = new PhysicalFileProvider(
            Path.Combine(Directory.GetCurrentDirectory(), @"wwwroot", "images")),
        RequestPath = new PathString("/MyImages"),
        ContentTypeProvider = provider
    });
    .
    .
    .
}

请访问此链接以获取更多信息: microsoft

答案 1 :(得分:3)

静态文件中间件基本上有a very long list of explicit file extension to MIME type mappings。所以MIME类型检测完全基于文件扩展名。

在检测到MIME类型之后但在静态文件中间件实际运行之前,没有一种明确的方法可以挂入中间件。但是,您可以使用StaticFileOptions.OnPrepareResponse回调来挂钩,例如修改标头。这对你来说是否足够取决于你想要做什么。

如果您想进行更复杂的处理,可能更换静态文件中间件,则需要运行自己的MIME类型检测实现。