Files
duplicati/Duplicati/WebserverCore/Extensions/WebApplicationExtensions.cs
T

60 lines
2.5 KiB
C#
Raw Normal View History

2025-01-07 09:40:39 +01:00
// Copyright (C) 2025, The Duplicati Team
// https://duplicati.com, hello@duplicati.com
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
2024-03-15 16:51:01 +01:00
using System.Reflection;
using Duplicati.WebserverCore.Abstractions;
using Duplicati.WebserverCore.Middlewares;
2024-03-15 16:51:01 +01:00
namespace Duplicati.WebserverCore.Extensions;
public static class WebApplicationExtensions
{
2025-01-18 11:03:52 +01:00
public static WebApplication AddEndpoints(this WebApplication application, bool useCors)
2024-03-15 16:51:01 +01:00
{
2025-01-18 11:03:52 +01:00
return AddV1(application, useCors);
2024-03-15 16:51:01 +01:00
}
2025-01-18 11:03:52 +01:00
private static WebApplication AddV1(WebApplication application, bool useCors)
2024-03-15 16:51:01 +01:00
{
2024-06-07 15:56:43 +02:00
var mapperInterfaceType = typeof(IEndpointV1);
2024-03-15 16:51:01 +01:00
var endpoints =
typeof(WebApplicationExtensions).Assembly.DefinedTypes
.Where(t => t.ImplementedInterfaces.Contains(mapperInterfaceType))
.ToArray();
2024-09-06 10:50:06 +02:00
var group = application.MapGroup("/api/v1")
.AddEndpointFilter<LanguageFilter>()
.AddEndpointFilter<HostnameFilter>();
2024-03-15 16:51:01 +01:00
if (!string.IsNullOrWhiteSpace(PreSharedKeyFilter.PreSharedKey))
group = group.AddEndpointFilter<PreSharedKeyFilter>();
2025-01-18 11:03:52 +01:00
if (useCors)
group.RequireCors(DuplicatiWebserver.CorsPolicyName);
2024-03-15 16:51:01 +01:00
foreach (var endpoint in endpoints)
{
2024-06-07 15:56:43 +02:00
var methodMap = endpoint.GetMethod(nameof(IEndpointV1.Map), BindingFlags.Static | BindingFlags.Public);
2024-03-15 16:51:01 +01:00
methodMap!.Invoke(null, [group]);
}
return application;
}
}