jellyfin/Emby.Server.Implementations/Services/ServiceController.cs

169 lines
6 KiB
C#
Raw Normal View History

2016-11-11 20:55:12 +01:00
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
2017-02-13 02:07:48 +01:00
using Emby.Server.Implementations.HttpServer;
2016-11-11 20:55:12 +01:00
using MediaBrowser.Model.Services;
2017-02-13 02:07:48 +01:00
namespace Emby.Server.Implementations.Services
2016-11-11 20:55:12 +01:00
{
public delegate object ActionInvokerFn(object intance, object request);
public delegate void VoidActionInvokerFn(object intance, object request);
public class ServiceController
{
2019-03-26 19:20:40 +01:00
public void Init(HttpListenerHost appHost, IEnumerable<Type> serviceTypes)
2016-11-11 20:55:12 +01:00
{
foreach (var serviceType in serviceTypes)
2016-11-11 20:55:12 +01:00
{
2017-02-13 02:07:48 +01:00
RegisterService(appHost, serviceType);
2016-11-11 20:55:12 +01:00
}
}
2017-02-13 02:07:48 +01:00
public void RegisterService(HttpListenerHost appHost, Type serviceType)
2016-11-11 20:55:12 +01:00
{
var processedReqs = new HashSet<Type>();
var actions = ServiceExecGeneral.Reset(serviceType);
foreach (var mi in serviceType.GetActions())
{
var requestType = mi.GetParameters()[0].ParameterType;
2019-03-26 19:20:40 +01:00
if (processedReqs.Contains(requestType))
{
continue;
}
2016-11-11 20:55:12 +01:00
processedReqs.Add(requestType);
ServiceExecGeneral.CreateServiceRunnersFor(requestType, actions);
2017-08-19 21:43:35 +02:00
//var returnMarker = GetTypeWithGenericTypeDefinitionOf(requestType, typeof(IReturn<>));
//var responseType = returnMarker != null ?
// GetGenericArguments(returnMarker)[0]
// : mi.ReturnType != typeof(object) && mi.ReturnType != typeof(void) ?
// mi.ReturnType
// : Type.GetType(requestType.FullName + "Response");
2016-11-11 20:55:12 +01:00
2018-09-12 19:26:21 +02:00
RegisterRestPaths(appHost, requestType, serviceType);
2016-11-11 20:55:12 +01:00
2017-08-19 21:43:35 +02:00
appHost.AddServiceInfo(serviceType, requestType);
2017-02-13 03:06:54 +01:00
}
}
2018-09-12 19:26:21 +02:00
public readonly RestPath.RestPathMap RestPathMap = new RestPath.RestPathMap();
2016-11-11 20:55:12 +01:00
2018-09-12 19:26:21 +02:00
public void RegisterRestPaths(HttpListenerHost appHost, Type requestType, Type serviceType)
2016-11-11 20:55:12 +01:00
{
var attrs = appHost.GetRouteAttributes(requestType);
2019-01-13 21:37:13 +01:00
foreach (var attr in attrs)
2016-11-11 20:55:12 +01:00
{
2018-09-12 19:26:21 +02:00
var restPath = new RestPath(appHost.CreateInstance, appHost.GetParseFn, requestType, serviceType, attr.Path, attr.Verbs, attr.IsHidden, attr.Summary, attr.Description);
2016-11-11 20:55:12 +01:00
RegisterRestPath(restPath);
}
}
private static readonly char[] InvalidRouteChars = new[] { '?', '&' };
public void RegisterRestPath(RestPath restPath)
{
2019-03-26 19:20:40 +01:00
if (restPath.Path[0] != '/')
{
2017-02-13 21:54:28 +01:00
throw new ArgumentException(string.Format("Route '{0}' on '{1}' must start with a '/'", restPath.Path, restPath.RequestType.GetMethodName()));
2019-03-26 19:20:40 +01:00
}
2016-11-11 20:55:12 +01:00
if (restPath.Path.IndexOfAny(InvalidRouteChars) != -1)
2019-03-26 19:20:40 +01:00
{
2017-08-31 05:49:38 +02:00
throw new ArgumentException(string.Format("Route '{0}' on '{1}' contains invalid chars. ", restPath.Path, restPath.RequestType.GetMethodName()));
2019-03-26 19:20:40 +01:00
}
2016-11-11 20:55:12 +01:00
2019-03-26 19:20:40 +01:00
if (RestPathMap.TryGetValue(restPath.FirstMatchHashKey, out List<RestPath> pathsAtFirstMatch))
2016-11-11 20:55:12 +01:00
{
2019-03-26 19:20:40 +01:00
pathsAtFirstMatch.Add(restPath);
}
else
{
RestPathMap[restPath.FirstMatchHashKey] = new List<RestPath>() { restPath };
2016-11-11 20:55:12 +01:00
}
}
2018-12-14 20:17:29 +01:00
public RestPath GetRestPathForRequest(string httpMethod, string pathInfo)
2016-11-11 20:55:12 +01:00
{
var matchUsingPathParts = RestPath.GetPathPartsForMatching(pathInfo);
List<RestPath> firstMatches;
var yieldedHashMatches = RestPath.GetFirstMatchHashKeys(matchUsingPathParts);
foreach (var potentialHashMatch in yieldedHashMatches)
{
if (!this.RestPathMap.TryGetValue(potentialHashMatch, out firstMatches))
{
continue;
}
2016-11-11 20:55:12 +01:00
var bestScore = -1;
2018-09-12 19:26:21 +02:00
RestPath bestMatch = null;
2016-11-11 20:55:12 +01:00
foreach (var restPath in firstMatches)
{
2018-12-14 20:17:29 +01:00
var score = restPath.MatchScore(httpMethod, matchUsingPathParts);
2018-09-12 19:26:21 +02:00
if (score > bestScore)
{
bestScore = score;
bestMatch = restPath;
}
2016-11-11 20:55:12 +01:00
}
2018-09-12 19:26:21 +02:00
if (bestScore > 0 && bestMatch != null)
2016-11-11 20:55:12 +01:00
{
2018-09-12 19:26:21 +02:00
return bestMatch;
2016-11-11 20:55:12 +01:00
}
}
var yieldedWildcardMatches = RestPath.GetFirstMatchWildCardHashKeys(matchUsingPathParts);
foreach (var potentialHashMatch in yieldedWildcardMatches)
{
if (!this.RestPathMap.TryGetValue(potentialHashMatch, out firstMatches)) continue;
var bestScore = -1;
2018-09-12 19:26:21 +02:00
RestPath bestMatch = null;
2016-11-11 20:55:12 +01:00
foreach (var restPath in firstMatches)
{
2018-12-14 20:17:29 +01:00
var score = restPath.MatchScore(httpMethod, matchUsingPathParts);
2018-09-12 19:26:21 +02:00
if (score > bestScore)
2016-11-11 20:55:12 +01:00
{
2018-09-12 19:26:21 +02:00
bestScore = score;
bestMatch = restPath;
2016-11-11 20:55:12 +01:00
}
}
2018-09-12 19:26:21 +02:00
if (bestScore > 0 && bestMatch != null)
{
return bestMatch;
}
2016-11-11 20:55:12 +01:00
}
return null;
}
2019-03-26 19:20:40 +01:00
public Task<object> Execute(HttpListenerHost httpHost, object requestDto, IRequest req)
2016-11-11 20:55:12 +01:00
{
var requestType = requestDto.GetType();
req.OperationName = requestType.Name;
2019-03-26 19:20:40 +01:00
var serviceType = httpHost.GetServiceTypeByRequest(requestType);
2016-11-11 20:55:12 +01:00
2019-03-26 19:20:40 +01:00
var service = httpHost.CreateInstance(serviceType);
2016-11-11 20:55:12 +01:00
var serviceRequiresContext = service as IRequiresRequest;
if (serviceRequiresContext != null)
{
serviceRequiresContext.Request = req;
}
//Executes the service and returns the result
2017-05-26 08:48:54 +02:00
return ServiceExecGeneral.Execute(serviceType, req, service, requestDto, requestType.GetMethodName());
2016-11-11 20:55:12 +01:00
}
}
}