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

74 lines
3.4 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 Duplicati.Library.IO;
using Duplicati.Library.RestAPI;
using Duplicati.Library.RestAPI.Abstractions;
using Duplicati.Server;
2024-06-09 22:00:34 +02:00
using Duplicati.Server.Database;
2024-03-15 16:51:01 +01:00
using Duplicati.Server.Serialization;
using Duplicati.WebserverCore.Abstractions;
using Duplicati.WebserverCore.Abstractions.Notifications;
2024-06-19 13:54:10 +02:00
using Duplicati.WebserverCore.Middlewares;
2024-03-15 16:51:01 +01:00
using Duplicati.WebserverCore.Notifications;
using Duplicati.WebserverCore.Services;
using Duplicati.WebserverCore.Services.Settings;
2024-06-07 15:56:43 +02:00
using WebserverCore.Services;
2024-03-15 16:51:01 +01:00
namespace Duplicati.WebserverCore.Extensions;
public static class ServiceCollectionsExtensions
{
2024-06-09 22:00:34 +02:00
public static IServiceCollection AddDuplicati(this IServiceCollection services, Connection connection)
2024-03-15 16:51:01 +01:00
{
//old part
2024-06-09 22:00:34 +02:00
services
.AddSingleton<LiveControls>()
.AddSingleton(Serializer.JsonSettings)
.AddSingleton<UpdatePollThread>()
.AddSingleton<EventPollNotify>()
.AddSingleton<Scheduler>()
.AddSingleton(connection);
2024-03-15 16:51:01 +01:00
//transitional part - services that act as a proxy to old part for various reasons (not accessible in assembly i.e.)
services.AddSingleton<ILiveControls>(c => c.GetRequiredService<LiveControls>());
//new part
2024-06-19 13:54:10 +02:00
services
.AddSingleton<ISettingsService, SettingsService>()
.AddTransient<IStatusService, StatusService>()
.AddTransient<IUpdateService, UpdateService>()
.AddSingleton<INotificationUpdateService, NotificationUpdateService>()
.AddSingleton<IWorkerThreadsManager, WorkerThreadsManager>()
.AddSingleton<IScheduler, SchedulerService>()
.AddSingleton<IWebsocketAccessor, WebsocketAccessor>()
.AddTransient<ILanguageService, LanguageService>()
.AddSingleton<ICommandlineRunService, CommandlineRunService>()
.AddTransient<IJWTTokenProvider, JWTTokenProvider>()
.AddTransient<ITokenFamilyStore, TokenFamilyStore>()
.AddTransient<ILoginProvider, LoginProvider>()
.AddSingleton<IRemoteController, RemoteControllerService>()
.AddSingleton<IRemoteControllerRegistration, RemoteControllerRegistrationService>()
.AddSingleton<ISystemInfoProvider, SystemInfoProvider>();
2024-03-15 16:51:01 +01:00
return services;
}
}