mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
update portable projects
This commit is contained in:
74
ServiceStack/ServiceStackHost.Runtime.cs
Normal file
74
ServiceStack/ServiceStackHost.Runtime.cs
Normal file
@@ -0,0 +1,74 @@
|
||||
// Copyright (c) Service Stack LLC. All Rights Reserved.
|
||||
// License: https://raw.github.com/ServiceStack/ServiceStack/master/license.txt
|
||||
|
||||
|
||||
using MediaBrowser.Model.Services;
|
||||
using ServiceStack.Support.WebHost;
|
||||
|
||||
namespace ServiceStack
|
||||
{
|
||||
public abstract partial class ServiceStackHost
|
||||
{
|
||||
/// <summary>
|
||||
/// Applies the request filters. Returns whether or not the request has been handled
|
||||
/// and no more processing should be done.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public virtual bool ApplyRequestFilters(IRequest req, IResponse res, object requestDto)
|
||||
{
|
||||
if (res.IsClosed) return res.IsClosed;
|
||||
|
||||
//Exec all RequestFilter attributes with Priority < 0
|
||||
var attributes = FilterAttributeCache.GetRequestFilterAttributes(requestDto.GetType());
|
||||
var i = 0;
|
||||
for (; i < attributes.Length && attributes[i].Priority < 0; i++)
|
||||
{
|
||||
var attribute = attributes[i];
|
||||
attribute.RequestFilter(req, res, requestDto);
|
||||
if (res.IsClosed) return res.IsClosed;
|
||||
}
|
||||
|
||||
if (res.IsClosed) return res.IsClosed;
|
||||
|
||||
//Exec global filters
|
||||
foreach (var requestFilter in GlobalRequestFilters)
|
||||
{
|
||||
requestFilter(req, res, requestDto);
|
||||
if (res.IsClosed) return res.IsClosed;
|
||||
}
|
||||
|
||||
//Exec remaining RequestFilter attributes with Priority >= 0
|
||||
for (; i < attributes.Length && attributes[i].Priority >= 0; i++)
|
||||
{
|
||||
var attribute = attributes[i];
|
||||
attribute.RequestFilter(req, res, requestDto);
|
||||
if (res.IsClosed) return res.IsClosed;
|
||||
}
|
||||
|
||||
return res.IsClosed;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Applies the response filters. Returns whether or not the request has been handled
|
||||
/// and no more processing should be done.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public virtual bool ApplyResponseFilters(IRequest req, IResponse res, object response)
|
||||
{
|
||||
if (response != null)
|
||||
{
|
||||
if (res.IsClosed) return res.IsClosed;
|
||||
}
|
||||
|
||||
//Exec global filters
|
||||
foreach (var responseFilter in GlobalResponseFilters)
|
||||
{
|
||||
responseFilter(req, res, response);
|
||||
if (res.IsClosed) return res.IsClosed;
|
||||
}
|
||||
|
||||
return res.IsClosed;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user