Files
duplicati/Duplicati/WebserverCore/Extensions/WebApplicationExtensions.cs
Kenneth Skovhede 9f79025744 Removed HttpServer.
Re-implemented everything using ASP.NET.
Changed some requests to use JSON instead of FORM data.
Some work towards deleting the FIXMEGlobal instance.
Auth is missing, XSRF does not work correctly.
2024-06-07 15:56:43 +02:00

37 lines
1.2 KiB
C#

using System.Reflection;
using Duplicati.WebserverCore.Abstractions;
namespace Duplicati.WebserverCore.Extensions;
public static class WebApplicationExtensions
{
public static WebApplication AddEndpoints(this WebApplication application)
{
return AddV1(application);
}
private static WebApplication AddV1(WebApplication application)
{
var mapperInterfaceType = typeof(IEndpointV1);
var endpoints =
typeof(WebApplicationExtensions).Assembly.DefinedTypes
.Where(t => t.ImplementedInterfaces.Contains(mapperInterfaceType))
.ToArray();
if (endpoints.Length == 0)
{
return application;
}
foreach (var endpoint in endpoints)
{
var group = application.MapGroup("/api/v1")
//TODO: make this work with clean environment - can we enable this by disable globally until user sets up some password?
//.RequireAuthorization()
;
var methodMap = endpoint.GetMethod(nameof(IEndpointV1.Map), BindingFlags.Static | BindingFlags.Public);
methodMap!.Invoke(null, [group]);
}
return application;
}
}