aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/SwaggerService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-10 09:41:24 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-10 09:41:24 -0500
commit227dd0a42d398978ca085a607345a7877de87950 (patch)
tree19f3d394d5be259fd32ea04e4f966082372e1715 /Emby.Server.Implementations/HttpServer/SwaggerService.cs
parentc1ae3ec2ce803b16fa9ecc0981865aa7c9be172b (diff)
rework result factory
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/SwaggerService.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/SwaggerService.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/HttpServer/SwaggerService.cs b/Emby.Server.Implementations/HttpServer/SwaggerService.cs
index 3c181e425..d41946645 100644
--- a/Emby.Server.Implementations/HttpServer/SwaggerService.cs
+++ b/Emby.Server.Implementations/HttpServer/SwaggerService.cs
@@ -6,15 +6,16 @@ using MediaBrowser.Model.Services;
namespace Emby.Server.Implementations.HttpServer
{
- public class SwaggerService : IHasResultFactory, IService
+ public class SwaggerService : IService, IRequiresRequest
{
private readonly IServerApplicationPaths _appPaths;
private readonly IFileSystem _fileSystem;
- public SwaggerService(IServerApplicationPaths appPaths, IFileSystem fileSystem)
+ public SwaggerService(IServerApplicationPaths appPaths, IFileSystem fileSystem, IHttpResultFactory resultFactory)
{
_appPaths = appPaths;
_fileSystem = fileSystem;
+ _resultFactory = resultFactory;
}
/// <summary>
@@ -28,14 +29,14 @@ namespace Emby.Server.Implementations.HttpServer
var requestedFile = Path.Combine(swaggerDirectory, request.ResourceName.Replace('/', _fileSystem.DirectorySeparatorChar));
- return ResultFactory.GetStaticFileResult(Request, requestedFile).Result;
+ return _resultFactory.GetStaticFileResult(Request, requestedFile).Result;
}
/// <summary>
/// Gets or sets the result factory.
/// </summary>
/// <value>The result factory.</value>
- public IHttpResultFactory ResultFactory { get; set; }
+ private readonly IHttpResultFactory _resultFactory;
/// <summary>
/// Gets or sets the request context.