Merge pull request #623 from wtayl0r/inject-logger-factories
Replaced injections of ILogger with ILoggerFactory
This commit is contained in:
commit
d16f38dbe1
|
@ -13,6 +13,7 @@
|
||||||
- [LeoVerto](https://github.com/LeoVerto)
|
- [LeoVerto](https://github.com/LeoVerto)
|
||||||
- [grafixeyehero](https://github.com/grafixeyehero)
|
- [grafixeyehero](https://github.com/grafixeyehero)
|
||||||
- [cvium](https://github.com/cvium)
|
- [cvium](https://github.com/cvium)
|
||||||
|
- [wtayl0r](https://github.com/wtayl0r)
|
||||||
|
|
||||||
# Emby Contributors
|
# Emby Contributors
|
||||||
|
|
||||||
|
|
|
@ -32,16 +32,17 @@ namespace Emby.Dlna
|
||||||
|
|
||||||
private readonly Dictionary<string, Tuple<InternalProfileInfo, DeviceProfile>> _profiles = new Dictionary<string, Tuple<InternalProfileInfo, DeviceProfile>>(StringComparer.Ordinal);
|
private readonly Dictionary<string, Tuple<InternalProfileInfo, DeviceProfile>> _profiles = new Dictionary<string, Tuple<InternalProfileInfo, DeviceProfile>>(StringComparer.Ordinal);
|
||||||
|
|
||||||
public DlnaManager(IXmlSerializer xmlSerializer,
|
public DlnaManager(
|
||||||
|
IXmlSerializer xmlSerializer,
|
||||||
IFileSystem fileSystem,
|
IFileSystem fileSystem,
|
||||||
IApplicationPaths appPaths,
|
IApplicationPaths appPaths,
|
||||||
ILogger logger,
|
ILoggerFactory loggerFactory,
|
||||||
IJsonSerializer jsonSerializer, IServerApplicationHost appHost, IAssemblyInfo assemblyInfo)
|
IJsonSerializer jsonSerializer, IServerApplicationHost appHost, IAssemblyInfo assemblyInfo)
|
||||||
{
|
{
|
||||||
_xmlSerializer = xmlSerializer;
|
_xmlSerializer = xmlSerializer;
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_appPaths = appPaths;
|
_appPaths = appPaths;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger("Dlna");
|
||||||
_jsonSerializer = jsonSerializer;
|
_jsonSerializer = jsonSerializer;
|
||||||
_appHost = appHost;
|
_appHost = appHost;
|
||||||
_assemblyInfo = assemblyInfo;
|
_assemblyInfo = assemblyInfo;
|
||||||
|
|
|
@ -52,9 +52,13 @@ namespace Emby.Dlna.Ssdp
|
||||||
private readonly ISocketFactory _socketFactory;
|
private readonly ISocketFactory _socketFactory;
|
||||||
private ISsdpCommunicationsServer _commsServer;
|
private ISsdpCommunicationsServer _commsServer;
|
||||||
|
|
||||||
public DeviceDiscovery(ILogger logger, IServerConfigurationManager config, ISocketFactory socketFactory, ITimerFactory timerFactory)
|
public DeviceDiscovery(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IServerConfigurationManager config,
|
||||||
|
ISocketFactory socketFactory,
|
||||||
|
ITimerFactory timerFactory)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(DeviceDiscovery));
|
||||||
_config = config;
|
_config = config;
|
||||||
_socketFactory = socketFactory;
|
_socketFactory = socketFactory;
|
||||||
_timerFactory = timerFactory;
|
_timerFactory = timerFactory;
|
||||||
|
|
|
@ -53,14 +53,15 @@ namespace Emby.Drawing
|
||||||
private readonly Func<ILibraryManager> _libraryManager;
|
private readonly Func<ILibraryManager> _libraryManager;
|
||||||
private readonly Func<IMediaEncoder> _mediaEncoder;
|
private readonly Func<IMediaEncoder> _mediaEncoder;
|
||||||
|
|
||||||
public ImageProcessor(ILogger logger,
|
public ImageProcessor(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
IServerApplicationPaths appPaths,
|
IServerApplicationPaths appPaths,
|
||||||
IFileSystem fileSystem,
|
IFileSystem fileSystem,
|
||||||
IJsonSerializer jsonSerializer,
|
IJsonSerializer jsonSerializer,
|
||||||
IImageEncoder imageEncoder,
|
IImageEncoder imageEncoder,
|
||||||
Func<ILibraryManager> libraryManager, ITimerFactory timerFactory, Func<IMediaEncoder> mediaEncoder)
|
Func<ILibraryManager> libraryManager, ITimerFactory timerFactory, Func<IMediaEncoder> mediaEncoder)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(ImageProcessor));
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_jsonSerializer = jsonSerializer;
|
_jsonSerializer = jsonSerializer;
|
||||||
_imageEncoder = imageEncoder;
|
_imageEncoder = imageEncoder;
|
||||||
|
|
|
@ -23,9 +23,14 @@ namespace Emby.Drawing
|
||||||
private readonly IFileSystem _fileSystem;
|
private readonly IFileSystem _fileSystem;
|
||||||
private static ILocalizationManager _localizationManager;
|
private static ILocalizationManager _localizationManager;
|
||||||
|
|
||||||
public SkiaEncoder(ILogger logger, IApplicationPaths appPaths, Func<IHttpClient> httpClientFactory, IFileSystem fileSystem, ILocalizationManager localizationManager)
|
public SkiaEncoder(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IApplicationPaths appPaths,
|
||||||
|
Func<IHttpClient> httpClientFactory,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
ILocalizationManager localizationManager)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger("ImageEncoder");
|
||||||
_appPaths = appPaths;
|
_appPaths = appPaths;
|
||||||
_httpClientFactory = httpClientFactory;
|
_httpClientFactory = httpClientFactory;
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
|
|
|
@ -16,9 +16,12 @@ namespace Emby.Server.Implementations.Activity
|
||||||
private readonly ILogger _logger;
|
private readonly ILogger _logger;
|
||||||
private readonly IUserManager _userManager;
|
private readonly IUserManager _userManager;
|
||||||
|
|
||||||
public ActivityManager(ILogger logger, IActivityRepository repo, IUserManager userManager)
|
public ActivityManager(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IActivityRepository repo,
|
||||||
|
IUserManager userManager)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(ActivityManager));
|
||||||
_repo = repo;
|
_repo = repo;
|
||||||
_userManager = userManager;
|
_userManager = userManager;
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,8 +18,8 @@ namespace Emby.Server.Implementations.Activity
|
||||||
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
|
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
|
||||||
protected IFileSystem FileSystem { get; private set; }
|
protected IFileSystem FileSystem { get; private set; }
|
||||||
|
|
||||||
public ActivityRepository(ILogger logger, IServerApplicationPaths appPaths, IFileSystem fileSystem)
|
public ActivityRepository(ILoggerFactory loggerFactory, IServerApplicationPaths appPaths, IFileSystem fileSystem)
|
||||||
: base(logger)
|
: base(loggerFactory.CreateLogger(nameof(ActivityRepository)))
|
||||||
{
|
{
|
||||||
DbFilePath = Path.Combine(appPaths.DataPath, "activitylog.db");
|
DbFilePath = Path.Combine(appPaths.DataPath, "activitylog.db");
|
||||||
FileSystem = fileSystem;
|
FileSystem = fileSystem;
|
||||||
|
|
|
@ -263,7 +263,7 @@ namespace Emby.Server.Implementations
|
||||||
|
|
||||||
protected virtual IResourceFileManager CreateResourceFileManager()
|
protected virtual IResourceFileManager CreateResourceFileManager()
|
||||||
{
|
{
|
||||||
return new ResourceFileManager(HttpResultFactory, LoggerFactory.CreateLogger("ResourceManager"), FileSystemManager);
|
return new ResourceFileManager(HttpResultFactory, LoggerFactory, FileSystemManager);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -378,7 +378,7 @@ namespace Emby.Server.Implementations
|
||||||
// hack alert, until common can target .net core
|
// hack alert, until common can target .net core
|
||||||
BaseExtensions.CryptographyProvider = CryptographyProvider;
|
BaseExtensions.CryptographyProvider = CryptographyProvider;
|
||||||
|
|
||||||
XmlSerializer = new MyXmlSerializer(fileSystem, loggerFactory.CreateLogger("XmlSerializer"));
|
XmlSerializer = new MyXmlSerializer(fileSystem, loggerFactory);
|
||||||
|
|
||||||
NetworkManager = networkManager;
|
NetworkManager = networkManager;
|
||||||
networkManager.LocalSubnetsFn = GetConfiguredLocalSubnets;
|
networkManager.LocalSubnetsFn = GetConfiguredLocalSubnets;
|
||||||
|
@ -450,7 +450,7 @@ namespace Emby.Server.Implementations
|
||||||
{
|
{
|
||||||
if (_deviceId == null)
|
if (_deviceId == null)
|
||||||
{
|
{
|
||||||
_deviceId = new DeviceId(ApplicationPaths, LoggerFactory.CreateLogger("SystemId"), FileSystemManager);
|
_deviceId = new DeviceId(ApplicationPaths, LoggerFactory, FileSystemManager);
|
||||||
}
|
}
|
||||||
|
|
||||||
return _deviceId.Value;
|
return _deviceId.Value;
|
||||||
|
@ -709,11 +709,6 @@ namespace Emby.Server.Implementations
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private IJsonSerializer CreateJsonSerializer()
|
|
||||||
{
|
|
||||||
return new JsonSerializer(FileSystemManager, LoggerFactory.CreateLogger("JsonSerializer"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Init()
|
public void Init()
|
||||||
{
|
{
|
||||||
HttpPort = ServerConfigurationManager.Configuration.HttpServerPortNumber;
|
HttpPort = ServerConfigurationManager.Configuration.HttpServerPortNumber;
|
||||||
|
@ -726,7 +721,7 @@ namespace Emby.Server.Implementations
|
||||||
HttpsPort = ServerConfiguration.DefaultHttpsPort;
|
HttpsPort = ServerConfiguration.DefaultHttpsPort;
|
||||||
}
|
}
|
||||||
|
|
||||||
JsonSerializer = CreateJsonSerializer();
|
JsonSerializer = new JsonSerializer(FileSystemManager);
|
||||||
|
|
||||||
if (Plugins != null)
|
if (Plugins != null)
|
||||||
{
|
{
|
||||||
|
@ -751,7 +746,7 @@ namespace Emby.Server.Implementations
|
||||||
|
|
||||||
protected virtual IHttpClient CreateHttpClient()
|
protected virtual IHttpClient CreateHttpClient()
|
||||||
{
|
{
|
||||||
return new HttpClientManager.HttpClientManager(ApplicationPaths, LoggerFactory.CreateLogger("HttpClient"), FileSystemManager, () => ApplicationUserAgent);
|
return new HttpClientManager.HttpClientManager(ApplicationPaths, LoggerFactory, FileSystemManager, () => ApplicationUserAgent);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IStreamHelper StreamHelper { get; set; }
|
public static IStreamHelper StreamHelper { get; set; }
|
||||||
|
@ -784,7 +779,7 @@ namespace Emby.Server.Implementations
|
||||||
IsoManager = new IsoManager();
|
IsoManager = new IsoManager();
|
||||||
RegisterSingleInstance(IsoManager);
|
RegisterSingleInstance(IsoManager);
|
||||||
|
|
||||||
TaskManager = new TaskManager(ApplicationPaths, JsonSerializer, LoggerFactory.CreateLogger("TaskManager"), FileSystemManager, SystemEvents);
|
TaskManager = new TaskManager(ApplicationPaths, JsonSerializer, LoggerFactory, FileSystemManager, SystemEvents);
|
||||||
RegisterSingleInstance(TaskManager);
|
RegisterSingleInstance(TaskManager);
|
||||||
|
|
||||||
RegisterSingleInstance(XmlSerializer);
|
RegisterSingleInstance(XmlSerializer);
|
||||||
|
@ -801,10 +796,10 @@ namespace Emby.Server.Implementations
|
||||||
|
|
||||||
RegisterSingleInstance(CryptographyProvider);
|
RegisterSingleInstance(CryptographyProvider);
|
||||||
|
|
||||||
SocketFactory = new SocketFactory(LoggerFactory.CreateLogger("SocketFactory"));
|
SocketFactory = new SocketFactory();
|
||||||
RegisterSingleInstance(SocketFactory);
|
RegisterSingleInstance(SocketFactory);
|
||||||
|
|
||||||
InstallationManager = new InstallationManager(LoggerFactory.CreateLogger("InstallationManager"), this, ApplicationPaths, HttpClient, JsonSerializer, ServerConfigurationManager, FileSystemManager, CryptographyProvider, PackageRuntime);
|
InstallationManager = new InstallationManager(LoggerFactory, this, ApplicationPaths, HttpClient, JsonSerializer, ServerConfigurationManager, FileSystemManager, CryptographyProvider, PackageRuntime);
|
||||||
RegisterSingleInstance(InstallationManager);
|
RegisterSingleInstance(InstallationManager);
|
||||||
|
|
||||||
ZipClient = new ZipClient(FileSystemManager);
|
ZipClient = new ZipClient(FileSystemManager);
|
||||||
|
@ -821,7 +816,7 @@ namespace Emby.Server.Implementations
|
||||||
IAssemblyInfo assemblyInfo = new AssemblyInfo();
|
IAssemblyInfo assemblyInfo = new AssemblyInfo();
|
||||||
RegisterSingleInstance(assemblyInfo);
|
RegisterSingleInstance(assemblyInfo);
|
||||||
|
|
||||||
LocalizationManager = new LocalizationManager(ServerConfigurationManager, FileSystemManager, JsonSerializer, LoggerFactory.CreateLogger("LocalizationManager"), assemblyInfo, new TextLocalizer());
|
LocalizationManager = new LocalizationManager(ServerConfigurationManager, FileSystemManager, JsonSerializer, LoggerFactory, assemblyInfo, new TextLocalizer());
|
||||||
StringExtensions.LocalizationManager = LocalizationManager;
|
StringExtensions.LocalizationManager = LocalizationManager;
|
||||||
RegisterSingleInstance(LocalizationManager);
|
RegisterSingleInstance(LocalizationManager);
|
||||||
|
|
||||||
|
@ -837,23 +832,24 @@ namespace Emby.Server.Implementations
|
||||||
// This is only needed for disposal purposes. If removing this, make sure to have the manager handle disposing it
|
// This is only needed for disposal purposes. If removing this, make sure to have the manager handle disposing it
|
||||||
RegisterSingleInstance(UserRepository);
|
RegisterSingleInstance(UserRepository);
|
||||||
|
|
||||||
var displayPreferencesRepo = new SqliteDisplayPreferencesRepository(LoggerFactory.CreateLogger("SqliteDisplayPreferencesRepository"), JsonSerializer, ApplicationPaths, FileSystemManager);
|
var displayPreferencesRepo = new SqliteDisplayPreferencesRepository(LoggerFactory, JsonSerializer, ApplicationPaths, FileSystemManager);
|
||||||
DisplayPreferencesRepository = displayPreferencesRepo;
|
DisplayPreferencesRepository = displayPreferencesRepo;
|
||||||
RegisterSingleInstance(DisplayPreferencesRepository);
|
RegisterSingleInstance(DisplayPreferencesRepository);
|
||||||
|
|
||||||
var itemRepo = new SqliteItemRepository(ServerConfigurationManager, this, JsonSerializer, LoggerFactory.CreateLogger("SqliteItemRepository"), assemblyInfo, FileSystemManager, EnvironmentInfo, TimerFactory);
|
var itemRepo = new SqliteItemRepository(ServerConfigurationManager, this, JsonSerializer, LoggerFactory, assemblyInfo, FileSystemManager, EnvironmentInfo, TimerFactory);
|
||||||
ItemRepository = itemRepo;
|
ItemRepository = itemRepo;
|
||||||
RegisterSingleInstance(ItemRepository);
|
RegisterSingleInstance(ItemRepository);
|
||||||
|
|
||||||
AuthenticationRepository = GetAuthenticationRepository();
|
AuthenticationRepository = GetAuthenticationRepository();
|
||||||
RegisterSingleInstance(AuthenticationRepository);
|
RegisterSingleInstance(AuthenticationRepository);
|
||||||
|
|
||||||
UserManager = new UserManager(LoggerFactory.CreateLogger("UserManager"), ServerConfigurationManager, UserRepository, XmlSerializer, NetworkManager, () => ImageProcessor, () => DtoService, this, JsonSerializer, FileSystemManager, CryptographyProvider);
|
UserManager = new UserManager(LoggerFactory, ServerConfigurationManager, UserRepository, XmlSerializer, NetworkManager, () => ImageProcessor, () => DtoService, this, JsonSerializer, FileSystemManager, CryptographyProvider);
|
||||||
RegisterSingleInstance(UserManager);
|
RegisterSingleInstance(UserManager);
|
||||||
|
|
||||||
LibraryManager = new LibraryManager(this, Logger, TaskManager, UserManager, ServerConfigurationManager, UserDataManager, () => LibraryMonitor, FileSystemManager, () => ProviderManager, () => UserViewManager);
|
LibraryManager = new LibraryManager(this, LoggerFactory, TaskManager, UserManager, ServerConfigurationManager, UserDataManager, () => LibraryMonitor, FileSystemManager, () => ProviderManager, () => UserViewManager);
|
||||||
RegisterSingleInstance(LibraryManager);
|
RegisterSingleInstance(LibraryManager);
|
||||||
|
|
||||||
|
// TODO wtaylor: investigate use of second music manager
|
||||||
var musicManager = new MusicManager(LibraryManager);
|
var musicManager = new MusicManager(LibraryManager);
|
||||||
RegisterSingleInstance<IMusicManager>(new MusicManager(LibraryManager));
|
RegisterSingleInstance<IMusicManager>(new MusicManager(LibraryManager));
|
||||||
|
|
||||||
|
@ -866,7 +862,7 @@ namespace Emby.Server.Implementations
|
||||||
Certificate = GetCertificate(CertificateInfo);
|
Certificate = GetCertificate(CertificateInfo);
|
||||||
|
|
||||||
HttpServer = new HttpListenerHost(this,
|
HttpServer = new HttpListenerHost(this,
|
||||||
LoggerFactory.CreateLogger("HttpServer"),
|
LoggerFactory,
|
||||||
ServerConfigurationManager,
|
ServerConfigurationManager,
|
||||||
"web/index.html",
|
"web/index.html",
|
||||||
NetworkManager,
|
NetworkManager,
|
||||||
|
@ -886,37 +882,37 @@ namespace Emby.Server.Implementations
|
||||||
var encryptionManager = new EncryptionManager();
|
var encryptionManager = new EncryptionManager();
|
||||||
RegisterSingleInstance<IEncryptionManager>(encryptionManager);
|
RegisterSingleInstance<IEncryptionManager>(encryptionManager);
|
||||||
|
|
||||||
DeviceManager = new DeviceManager(AuthenticationRepository, JsonSerializer, LibraryManager, LocalizationManager, UserManager, FileSystemManager, LibraryMonitor, ServerConfigurationManager, LoggerFactory.CreateLogger("DeviceManager"), NetworkManager);
|
DeviceManager = new DeviceManager(AuthenticationRepository, JsonSerializer, LibraryManager, LocalizationManager, UserManager, FileSystemManager, LibraryMonitor, ServerConfigurationManager, LoggerFactory, NetworkManager);
|
||||||
RegisterSingleInstance(DeviceManager);
|
RegisterSingleInstance(DeviceManager);
|
||||||
|
|
||||||
MediaSourceManager = new MediaSourceManager(ItemRepository, ApplicationPaths, LocalizationManager, UserManager, LibraryManager, LoggerFactory.CreateLogger("MediaSourceManager"), JsonSerializer, FileSystemManager, UserDataManager, TimerFactory, () => MediaEncoder);
|
MediaSourceManager = new MediaSourceManager(ItemRepository, ApplicationPaths, LocalizationManager, UserManager, LibraryManager, LoggerFactory, JsonSerializer, FileSystemManager, UserDataManager, TimerFactory, () => MediaEncoder);
|
||||||
RegisterSingleInstance(MediaSourceManager);
|
RegisterSingleInstance(MediaSourceManager);
|
||||||
|
|
||||||
SubtitleManager = new SubtitleManager(LoggerFactory.CreateLogger("SubtitleManager"), FileSystemManager, LibraryMonitor, MediaSourceManager, ServerConfigurationManager, LocalizationManager);
|
SubtitleManager = new SubtitleManager(LoggerFactory, FileSystemManager, LibraryMonitor, MediaSourceManager, ServerConfigurationManager, LocalizationManager);
|
||||||
RegisterSingleInstance(SubtitleManager);
|
RegisterSingleInstance(SubtitleManager);
|
||||||
|
|
||||||
ProviderManager = new ProviderManager(HttpClient, SubtitleManager, ServerConfigurationManager, LibraryMonitor, LoggerFactory, FileSystemManager, ApplicationPaths, () => LibraryManager, JsonSerializer);
|
ProviderManager = new ProviderManager(HttpClient, SubtitleManager, ServerConfigurationManager, LibraryMonitor, LoggerFactory, FileSystemManager, ApplicationPaths, () => LibraryManager, JsonSerializer);
|
||||||
RegisterSingleInstance(ProviderManager);
|
RegisterSingleInstance(ProviderManager);
|
||||||
|
|
||||||
DtoService = new DtoService(LoggerFactory.CreateLogger("DtoService"), LibraryManager, UserDataManager, ItemRepository, ImageProcessor, ServerConfigurationManager, FileSystemManager, ProviderManager, () => ChannelManager, this, () => DeviceManager, () => MediaSourceManager, () => LiveTvManager);
|
DtoService = new DtoService(LoggerFactory, LibraryManager, UserDataManager, ItemRepository, ImageProcessor, ServerConfigurationManager, FileSystemManager, ProviderManager, () => ChannelManager, this, () => DeviceManager, () => MediaSourceManager, () => LiveTvManager);
|
||||||
RegisterSingleInstance(DtoService);
|
RegisterSingleInstance(DtoService);
|
||||||
|
|
||||||
ChannelManager = new ChannelManager(UserManager, DtoService, LibraryManager, LoggerFactory.CreateLogger("ChannelManager"), ServerConfigurationManager, FileSystemManager, UserDataManager, JsonSerializer, LocalizationManager, HttpClient, ProviderManager);
|
ChannelManager = new ChannelManager(UserManager, DtoService, LibraryManager, LoggerFactory, ServerConfigurationManager, FileSystemManager, UserDataManager, JsonSerializer, LocalizationManager, HttpClient, ProviderManager);
|
||||||
RegisterSingleInstance(ChannelManager);
|
RegisterSingleInstance(ChannelManager);
|
||||||
|
|
||||||
SessionManager = new SessionManager(UserDataManager, LoggerFactory.CreateLogger("SessionManager"), LibraryManager, UserManager, musicManager, DtoService, ImageProcessor, JsonSerializer, this, HttpClient, AuthenticationRepository, DeviceManager, MediaSourceManager, TimerFactory);
|
SessionManager = new SessionManager(UserDataManager, LoggerFactory, LibraryManager, UserManager, musicManager, DtoService, ImageProcessor, JsonSerializer, this, HttpClient, AuthenticationRepository, DeviceManager, MediaSourceManager, TimerFactory);
|
||||||
RegisterSingleInstance(SessionManager);
|
RegisterSingleInstance(SessionManager);
|
||||||
|
|
||||||
var dlnaManager = new DlnaManager(XmlSerializer, FileSystemManager, ApplicationPaths, LoggerFactory.CreateLogger("Dlna"), JsonSerializer, this, assemblyInfo);
|
var dlnaManager = new DlnaManager(XmlSerializer, FileSystemManager, ApplicationPaths, LoggerFactory, JsonSerializer, this, assemblyInfo);
|
||||||
RegisterSingleInstance<IDlnaManager>(dlnaManager);
|
RegisterSingleInstance<IDlnaManager>(dlnaManager);
|
||||||
|
|
||||||
CollectionManager = new CollectionManager(LibraryManager, ApplicationPaths, LocalizationManager, FileSystemManager, LibraryMonitor, LoggerFactory.CreateLogger("CollectionManager"), ProviderManager);
|
CollectionManager = new CollectionManager(LibraryManager, ApplicationPaths, LocalizationManager, FileSystemManager, LibraryMonitor, LoggerFactory, ProviderManager);
|
||||||
RegisterSingleInstance(CollectionManager);
|
RegisterSingleInstance(CollectionManager);
|
||||||
|
|
||||||
PlaylistManager = new PlaylistManager(LibraryManager, FileSystemManager, LibraryMonitor, LoggerFactory.CreateLogger("PlaylistManager"), UserManager, ProviderManager);
|
PlaylistManager = new PlaylistManager(LibraryManager, FileSystemManager, LibraryMonitor, LoggerFactory, UserManager, ProviderManager);
|
||||||
RegisterSingleInstance(PlaylistManager);
|
RegisterSingleInstance(PlaylistManager);
|
||||||
|
|
||||||
LiveTvManager = new LiveTvManager(this, HttpClient, ServerConfigurationManager, Logger, ItemRepository, ImageProcessor, UserDataManager, DtoService, UserManager, LibraryManager, TaskManager, LocalizationManager, JsonSerializer, ProviderManager, FileSystemManager, () => ChannelManager);
|
LiveTvManager = new LiveTvManager(this, ServerConfigurationManager, LoggerFactory, ItemRepository, ImageProcessor, UserDataManager, DtoService, UserManager, LibraryManager, TaskManager, LocalizationManager, JsonSerializer, ProviderManager, FileSystemManager, () => ChannelManager);
|
||||||
RegisterSingleInstance(LiveTvManager);
|
RegisterSingleInstance(LiveTvManager);
|
||||||
|
|
||||||
UserViewManager = new UserViewManager(LibraryManager, LocalizationManager, UserManager, ChannelManager, LiveTvManager, ServerConfigurationManager);
|
UserViewManager = new UserViewManager(LibraryManager, LocalizationManager, UserManager, ChannelManager, LiveTvManager, ServerConfigurationManager);
|
||||||
|
@ -925,19 +921,19 @@ namespace Emby.Server.Implementations
|
||||||
NotificationManager = new NotificationManager(LoggerFactory, UserManager, ServerConfigurationManager);
|
NotificationManager = new NotificationManager(LoggerFactory, UserManager, ServerConfigurationManager);
|
||||||
RegisterSingleInstance(NotificationManager);
|
RegisterSingleInstance(NotificationManager);
|
||||||
|
|
||||||
RegisterSingleInstance<IDeviceDiscovery>(new DeviceDiscovery(LoggerFactory.CreateLogger("IDeviceDiscovery"), ServerConfigurationManager, SocketFactory, TimerFactory));
|
RegisterSingleInstance<IDeviceDiscovery>(new DeviceDiscovery(LoggerFactory, ServerConfigurationManager, SocketFactory, TimerFactory));
|
||||||
|
|
||||||
ChapterManager = new ChapterManager(LibraryManager, LoggerFactory.CreateLogger("ChapterManager"), ServerConfigurationManager, ItemRepository);
|
ChapterManager = new ChapterManager(LibraryManager, LoggerFactory, ServerConfigurationManager, ItemRepository);
|
||||||
RegisterSingleInstance(ChapterManager);
|
RegisterSingleInstance(ChapterManager);
|
||||||
|
|
||||||
RegisterMediaEncoder(assemblyInfo);
|
RegisterMediaEncoder(assemblyInfo);
|
||||||
|
|
||||||
EncodingManager = new MediaEncoder.EncodingManager(FileSystemManager, Logger, MediaEncoder, ChapterManager, LibraryManager);
|
EncodingManager = new MediaEncoder.EncodingManager(FileSystemManager, LoggerFactory, MediaEncoder, ChapterManager, LibraryManager);
|
||||||
RegisterSingleInstance(EncodingManager);
|
RegisterSingleInstance(EncodingManager);
|
||||||
|
|
||||||
var activityLogRepo = GetActivityLogRepository();
|
var activityLogRepo = GetActivityLogRepository();
|
||||||
RegisterSingleInstance(activityLogRepo);
|
RegisterSingleInstance(activityLogRepo);
|
||||||
RegisterSingleInstance<IActivityManager>(new ActivityManager(LoggerFactory.CreateLogger("ActivityManager"), activityLogRepo, UserManager));
|
RegisterSingleInstance<IActivityManager>(new ActivityManager(LoggerFactory, activityLogRepo, UserManager));
|
||||||
|
|
||||||
var authContext = new AuthorizationContext(AuthenticationRepository, UserManager);
|
var authContext = new AuthorizationContext(AuthenticationRepository, UserManager);
|
||||||
RegisterSingleInstance<IAuthorizationContext>(authContext);
|
RegisterSingleInstance<IAuthorizationContext>(authContext);
|
||||||
|
@ -946,14 +942,14 @@ namespace Emby.Server.Implementations
|
||||||
AuthService = new AuthService(UserManager, authContext, ServerConfigurationManager, SessionManager, NetworkManager);
|
AuthService = new AuthService(UserManager, authContext, ServerConfigurationManager, SessionManager, NetworkManager);
|
||||||
RegisterSingleInstance(AuthService);
|
RegisterSingleInstance(AuthService);
|
||||||
|
|
||||||
SubtitleEncoder = new MediaBrowser.MediaEncoding.Subtitles.SubtitleEncoder(LibraryManager, LoggerFactory.CreateLogger("SubtitleEncoder"), ApplicationPaths, FileSystemManager, MediaEncoder, JsonSerializer, HttpClient, MediaSourceManager, ProcessFactory);
|
SubtitleEncoder = new MediaBrowser.MediaEncoding.Subtitles.SubtitleEncoder(LibraryManager, LoggerFactory, ApplicationPaths, FileSystemManager, MediaEncoder, JsonSerializer, HttpClient, MediaSourceManager, ProcessFactory);
|
||||||
RegisterSingleInstance(SubtitleEncoder);
|
RegisterSingleInstance(SubtitleEncoder);
|
||||||
|
|
||||||
RegisterSingleInstance(CreateResourceFileManager());
|
RegisterSingleInstance(CreateResourceFileManager());
|
||||||
|
|
||||||
displayPreferencesRepo.Initialize();
|
displayPreferencesRepo.Initialize();
|
||||||
|
|
||||||
var userDataRepo = new SqliteUserDataRepository(LoggerFactory.CreateLogger("SqliteUserDataRepository"), ApplicationPaths, FileSystemManager);
|
var userDataRepo = new SqliteUserDataRepository(LoggerFactory, ApplicationPaths);
|
||||||
|
|
||||||
SetStaticProperties();
|
SetStaticProperties();
|
||||||
|
|
||||||
|
@ -1046,7 +1042,7 @@ namespace Emby.Server.Implementations
|
||||||
|
|
||||||
private IImageProcessor GetImageProcessor()
|
private IImageProcessor GetImageProcessor()
|
||||||
{
|
{
|
||||||
return new ImageProcessor(LoggerFactory.CreateLogger("ImageProcessor"), ServerConfigurationManager.ApplicationPaths, FileSystemManager, JsonSerializer, ImageEncoder, () => LibraryManager, TimerFactory, () => MediaEncoder);
|
return new ImageProcessor(LoggerFactory, ServerConfigurationManager.ApplicationPaths, FileSystemManager, JsonSerializer, ImageEncoder, () => LibraryManager, TimerFactory, () => MediaEncoder);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected virtual FFMpegInstallInfo GetFfmpegInstallInfo()
|
protected virtual FFMpegInstallInfo GetFfmpegInstallInfo()
|
||||||
|
@ -1105,7 +1101,7 @@ namespace Emby.Server.Implementations
|
||||||
var hasExternalEncoder = string.Equals(info.Version, "external", StringComparison.OrdinalIgnoreCase);
|
var hasExternalEncoder = string.Equals(info.Version, "external", StringComparison.OrdinalIgnoreCase);
|
||||||
|
|
||||||
var mediaEncoder = new MediaBrowser.MediaEncoding.Encoder.MediaEncoder(
|
var mediaEncoder = new MediaBrowser.MediaEncoding.Encoder.MediaEncoder(
|
||||||
LoggerFactory.CreateLogger("MediaEncoder"),
|
LoggerFactory,
|
||||||
JsonSerializer,
|
JsonSerializer,
|
||||||
encoderPath,
|
encoderPath,
|
||||||
probePath,
|
probePath,
|
||||||
|
@ -1134,7 +1130,7 @@ namespace Emby.Server.Implementations
|
||||||
/// <returns>Task{IUserRepository}.</returns>
|
/// <returns>Task{IUserRepository}.</returns>
|
||||||
private IUserRepository GetUserRepository()
|
private IUserRepository GetUserRepository()
|
||||||
{
|
{
|
||||||
var repo = new SqliteUserRepository(LoggerFactory.CreateLogger("SqliteUserRepository"), ApplicationPaths, JsonSerializer);
|
var repo = new SqliteUserRepository(LoggerFactory, ApplicationPaths, JsonSerializer);
|
||||||
|
|
||||||
repo.Initialize();
|
repo.Initialize();
|
||||||
|
|
||||||
|
@ -1143,7 +1139,7 @@ namespace Emby.Server.Implementations
|
||||||
|
|
||||||
private IAuthenticationRepository GetAuthenticationRepository()
|
private IAuthenticationRepository GetAuthenticationRepository()
|
||||||
{
|
{
|
||||||
var repo = new AuthenticationRepository(LoggerFactory.CreateLogger("AuthenticationRepository"), ServerConfigurationManager);
|
var repo = new AuthenticationRepository(LoggerFactory, ServerConfigurationManager);
|
||||||
|
|
||||||
repo.Initialize();
|
repo.Initialize();
|
||||||
|
|
||||||
|
@ -1152,7 +1148,7 @@ namespace Emby.Server.Implementations
|
||||||
|
|
||||||
private IActivityRepository GetActivityLogRepository()
|
private IActivityRepository GetActivityLogRepository()
|
||||||
{
|
{
|
||||||
var repo = new ActivityRepository(LoggerFactory.CreateLogger("ActivityRepository"), ServerConfigurationManager.ApplicationPaths, FileSystemManager);
|
var repo = new ActivityRepository(LoggerFactory, ServerConfigurationManager.ApplicationPaths, FileSystemManager);
|
||||||
|
|
||||||
repo.Initialize();
|
repo.Initialize();
|
||||||
|
|
||||||
|
|
|
@ -45,12 +45,23 @@ namespace Emby.Server.Implementations.Channels
|
||||||
|
|
||||||
private readonly ILocalizationManager _localization;
|
private readonly ILocalizationManager _localization;
|
||||||
|
|
||||||
public ChannelManager(IUserManager userManager, IDtoService dtoService, ILibraryManager libraryManager, ILogger logger, IServerConfigurationManager config, IFileSystem fileSystem, IUserDataManager userDataManager, IJsonSerializer jsonSerializer, ILocalizationManager localization, IHttpClient httpClient, IProviderManager providerManager)
|
public ChannelManager(
|
||||||
|
IUserManager userManager,
|
||||||
|
IDtoService dtoService,
|
||||||
|
ILibraryManager libraryManager,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IServerConfigurationManager config,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
IUserDataManager userDataManager,
|
||||||
|
IJsonSerializer jsonSerializer,
|
||||||
|
ILocalizationManager localization,
|
||||||
|
IHttpClient httpClient,
|
||||||
|
IProviderManager providerManager)
|
||||||
{
|
{
|
||||||
_userManager = userManager;
|
_userManager = userManager;
|
||||||
_dtoService = dtoService;
|
_dtoService = dtoService;
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(ChannelManager));
|
||||||
_config = config;
|
_config = config;
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_userDataManager = userDataManager;
|
_userDataManager = userDataManager;
|
||||||
|
|
|
@ -34,12 +34,19 @@ namespace Emby.Server.Implementations.Collections
|
||||||
public event EventHandler<CollectionModifiedEventArgs> ItemsAddedToCollection;
|
public event EventHandler<CollectionModifiedEventArgs> ItemsAddedToCollection;
|
||||||
public event EventHandler<CollectionModifiedEventArgs> ItemsRemovedFromCollection;
|
public event EventHandler<CollectionModifiedEventArgs> ItemsRemovedFromCollection;
|
||||||
|
|
||||||
public CollectionManager(ILibraryManager libraryManager, IApplicationPaths appPaths, ILocalizationManager localizationManager, IFileSystem fileSystem, ILibraryMonitor iLibraryMonitor, ILogger logger, IProviderManager providerManager)
|
public CollectionManager(
|
||||||
|
ILibraryManager libraryManager,
|
||||||
|
IApplicationPaths appPaths,
|
||||||
|
ILocalizationManager localizationManager,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
ILibraryMonitor iLibraryMonitor,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IProviderManager providerManager)
|
||||||
{
|
{
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_iLibraryMonitor = iLibraryMonitor;
|
_iLibraryMonitor = iLibraryMonitor;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(CollectionManager));
|
||||||
_providerManager = providerManager;
|
_providerManager = providerManager;
|
||||||
_localizationManager = localizationManager;
|
_localizationManager = localizationManager;
|
||||||
_appPaths = appPaths;
|
_appPaths = appPaths;
|
||||||
|
|
|
@ -20,8 +20,8 @@ namespace Emby.Server.Implementations.Data
|
||||||
{
|
{
|
||||||
protected IFileSystem FileSystem { get; private set; }
|
protected IFileSystem FileSystem { get; private set; }
|
||||||
|
|
||||||
public SqliteDisplayPreferencesRepository(ILogger logger, IJsonSerializer jsonSerializer, IApplicationPaths appPaths, IFileSystem fileSystem)
|
public SqliteDisplayPreferencesRepository(ILoggerFactory loggerFactory, IJsonSerializer jsonSerializer, IApplicationPaths appPaths, IFileSystem fileSystem)
|
||||||
: base(logger)
|
: base(loggerFactory.CreateLogger(nameof(SqliteDisplayPreferencesRepository)))
|
||||||
{
|
{
|
||||||
_jsonSerializer = jsonSerializer;
|
_jsonSerializer = jsonSerializer;
|
||||||
FileSystem = fileSystem;
|
FileSystem = fileSystem;
|
||||||
|
|
|
@ -67,8 +67,16 @@ namespace Emby.Server.Implementations.Data
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="SqliteItemRepository"/> class.
|
/// Initializes a new instance of the <see cref="SqliteItemRepository"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public SqliteItemRepository(IServerConfigurationManager config, IServerApplicationHost appHost, IJsonSerializer jsonSerializer, ILogger logger, IAssemblyInfo assemblyInfo, IFileSystem fileSystem, IEnvironmentInfo environmentInfo, ITimerFactory timerFactory)
|
public SqliteItemRepository(
|
||||||
: base(logger)
|
IServerConfigurationManager config,
|
||||||
|
IServerApplicationHost appHost,
|
||||||
|
IJsonSerializer jsonSerializer,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IAssemblyInfo assemblyInfo,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
IEnvironmentInfo environmentInfo,
|
||||||
|
ITimerFactory timerFactory)
|
||||||
|
: base(loggerFactory.CreateLogger(nameof(SqliteItemRepository)))
|
||||||
{
|
{
|
||||||
if (config == null)
|
if (config == null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,12 +15,11 @@ namespace Emby.Server.Implementations.Data
|
||||||
{
|
{
|
||||||
public class SqliteUserDataRepository : BaseSqliteRepository, IUserDataRepository
|
public class SqliteUserDataRepository : BaseSqliteRepository, IUserDataRepository
|
||||||
{
|
{
|
||||||
private readonly IFileSystem _fileSystem;
|
public SqliteUserDataRepository(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
public SqliteUserDataRepository(ILogger logger, IApplicationPaths appPaths, IFileSystem fileSystem)
|
IApplicationPaths appPaths)
|
||||||
: base(logger)
|
: base(loggerFactory.CreateLogger(nameof(SqliteUserDataRepository)))
|
||||||
{
|
{
|
||||||
_fileSystem = fileSystem;
|
|
||||||
DbFilePath = Path.Combine(appPaths.DataPath, "library.db");
|
DbFilePath = Path.Combine(appPaths.DataPath, "library.db");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,8 +17,11 @@ namespace Emby.Server.Implementations.Data
|
||||||
{
|
{
|
||||||
private readonly IJsonSerializer _jsonSerializer;
|
private readonly IJsonSerializer _jsonSerializer;
|
||||||
|
|
||||||
public SqliteUserRepository(ILogger logger, IServerApplicationPaths appPaths, IJsonSerializer jsonSerializer)
|
public SqliteUserRepository(
|
||||||
: base(logger)
|
ILoggerFactory loggerFactory,
|
||||||
|
IServerApplicationPaths appPaths,
|
||||||
|
IJsonSerializer jsonSerializer)
|
||||||
|
: base(loggerFactory.CreateLogger(nameof(SqliteUserRepository)))
|
||||||
{
|
{
|
||||||
_jsonSerializer = jsonSerializer;
|
_jsonSerializer = jsonSerializer;
|
||||||
|
|
||||||
|
|
|
@ -86,7 +86,10 @@ namespace Emby.Server.Implementations.Devices
|
||||||
|
|
||||||
private string _id;
|
private string _id;
|
||||||
|
|
||||||
public DeviceId(IApplicationPaths appPaths, ILogger logger, IFileSystem fileSystem)
|
public DeviceId(
|
||||||
|
IApplicationPaths appPaths,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IFileSystem fileSystem)
|
||||||
{
|
{
|
||||||
if (fileSystem == null)
|
if (fileSystem == null)
|
||||||
{
|
{
|
||||||
|
@ -94,7 +97,7 @@ namespace Emby.Server.Implementations.Devices
|
||||||
}
|
}
|
||||||
|
|
||||||
_appPaths = appPaths;
|
_appPaths = appPaths;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger("SystemId");
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,14 +47,24 @@ namespace Emby.Server.Implementations.Devices
|
||||||
private readonly object _cameraUploadSyncLock = new object();
|
private readonly object _cameraUploadSyncLock = new object();
|
||||||
private readonly object _capabilitiesSyncLock = new object();
|
private readonly object _capabilitiesSyncLock = new object();
|
||||||
|
|
||||||
public DeviceManager(IAuthenticationRepository authRepo, IJsonSerializer json, ILibraryManager libraryManager, ILocalizationManager localizationManager, IUserManager userManager, IFileSystem fileSystem, ILibraryMonitor libraryMonitor, IServerConfigurationManager config, ILogger logger, INetworkManager network)
|
public DeviceManager(
|
||||||
|
IAuthenticationRepository authRepo,
|
||||||
|
IJsonSerializer json,
|
||||||
|
ILibraryManager libraryManager,
|
||||||
|
ILocalizationManager localizationManager,
|
||||||
|
IUserManager userManager,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
ILibraryMonitor libraryMonitor,
|
||||||
|
IServerConfigurationManager config,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
INetworkManager network)
|
||||||
{
|
{
|
||||||
_json = json;
|
_json = json;
|
||||||
_userManager = userManager;
|
_userManager = userManager;
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_libraryMonitor = libraryMonitor;
|
_libraryMonitor = libraryMonitor;
|
||||||
_config = config;
|
_config = config;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(DeviceManager));
|
||||||
_network = network;
|
_network = network;
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
_localizationManager = localizationManager;
|
_localizationManager = localizationManager;
|
||||||
|
|
|
@ -46,9 +46,22 @@ namespace Emby.Server.Implementations.Dto
|
||||||
private readonly Func<IMediaSourceManager> _mediaSourceManager;
|
private readonly Func<IMediaSourceManager> _mediaSourceManager;
|
||||||
private readonly Func<ILiveTvManager> _livetvManager;
|
private readonly Func<ILiveTvManager> _livetvManager;
|
||||||
|
|
||||||
public DtoService(ILogger logger, ILibraryManager libraryManager, IUserDataManager userDataRepository, IItemRepository itemRepo, IImageProcessor imageProcessor, IServerConfigurationManager config, IFileSystem fileSystem, IProviderManager providerManager, Func<IChannelManager> channelManagerFactory, IApplicationHost appHost, Func<IDeviceManager> deviceManager, Func<IMediaSourceManager> mediaSourceManager, Func<ILiveTvManager> livetvManager)
|
public DtoService(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
ILibraryManager libraryManager,
|
||||||
|
IUserDataManager userDataRepository,
|
||||||
|
IItemRepository itemRepo,
|
||||||
|
IImageProcessor imageProcessor,
|
||||||
|
IServerConfigurationManager config,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
IProviderManager providerManager,
|
||||||
|
Func<IChannelManager> channelManagerFactory,
|
||||||
|
IApplicationHost appHost,
|
||||||
|
Func<IDeviceManager> deviceManager,
|
||||||
|
Func<IMediaSourceManager> mediaSourceManager,
|
||||||
|
Func<ILiveTvManager> livetvManager)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(DtoService));
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
_userDataRepository = userDataRepository;
|
_userDataRepository = userDataRepository;
|
||||||
_itemRepo = itemRepo;
|
_itemRepo = itemRepo;
|
||||||
|
|
|
@ -44,18 +44,22 @@ namespace Emby.Server.Implementations.HttpClientManager
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="HttpClientManager" /> class.
|
/// Initializes a new instance of the <see cref="HttpClientManager" /> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public HttpClientManager(IApplicationPaths appPaths, ILogger logger, IFileSystem fileSystem, Func<string> defaultUserAgentFn)
|
public HttpClientManager(
|
||||||
|
IApplicationPaths appPaths,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
Func<string> defaultUserAgentFn)
|
||||||
{
|
{
|
||||||
if (appPaths == null)
|
if (appPaths == null)
|
||||||
{
|
{
|
||||||
throw new ArgumentNullException(nameof(appPaths));
|
throw new ArgumentNullException(nameof(appPaths));
|
||||||
}
|
}
|
||||||
if (logger == null)
|
if (loggerFactory == null)
|
||||||
{
|
{
|
||||||
throw new ArgumentNullException(nameof(logger));
|
throw new ArgumentNullException(nameof(loggerFactory));
|
||||||
}
|
}
|
||||||
|
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger("HttpClient");
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_appPaths = appPaths;
|
_appPaths = appPaths;
|
||||||
_defaultUserAgentFn = defaultUserAgentFn;
|
_defaultUserAgentFn = defaultUserAgentFn;
|
||||||
|
|
|
@ -51,7 +51,7 @@ namespace Emby.Server.Implementations.HttpServer
|
||||||
|
|
||||||
public HttpListenerHost(
|
public HttpListenerHost(
|
||||||
IServerApplicationHost applicationHost,
|
IServerApplicationHost applicationHost,
|
||||||
ILogger logger,
|
ILoggerFactory loggerFactory,
|
||||||
IServerConfigurationManager config,
|
IServerConfigurationManager config,
|
||||||
string defaultRedirectPath,
|
string defaultRedirectPath,
|
||||||
INetworkManager networkManager,
|
INetworkManager networkManager,
|
||||||
|
@ -60,7 +60,7 @@ namespace Emby.Server.Implementations.HttpServer
|
||||||
Func<Type, Func<string, object>> funcParseFn)
|
Func<Type, Func<string, object>> funcParseFn)
|
||||||
{
|
{
|
||||||
_appHost = applicationHost;
|
_appHost = applicationHost;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger("HttpServer");
|
||||||
_config = config;
|
_config = config;
|
||||||
DefaultRedirectPath = defaultRedirectPath;
|
DefaultRedirectPath = defaultRedirectPath;
|
||||||
_networkManager = networkManager;
|
_networkManager = networkManager;
|
||||||
|
|
|
@ -29,9 +29,14 @@ namespace Emby.Server.Implementations.IO
|
||||||
|
|
||||||
private string _defaultDirectory;
|
private string _defaultDirectory;
|
||||||
|
|
||||||
public ManagedFileSystem(ILogger logger, IEnvironmentInfo environmentInfo, string defaultDirectory, string tempPath, bool enableSeparateFileAndDirectoryQueries)
|
public ManagedFileSystem(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IEnvironmentInfo environmentInfo,
|
||||||
|
string defaultDirectory,
|
||||||
|
string tempPath,
|
||||||
|
bool enableSeparateFileAndDirectoryQueries)
|
||||||
{
|
{
|
||||||
Logger = logger;
|
Logger = loggerFactory.CreateLogger("FileSystem");
|
||||||
_supportsAsyncFileStreams = true;
|
_supportsAsyncFileStreams = true;
|
||||||
_tempPath = tempPath;
|
_tempPath = tempPath;
|
||||||
_environmentInfo = environmentInfo;
|
_environmentInfo = environmentInfo;
|
||||||
|
|
|
@ -155,9 +155,19 @@ namespace Emby.Server.Implementations.Library
|
||||||
/// <param name="userManager">The user manager.</param>
|
/// <param name="userManager">The user manager.</param>
|
||||||
/// <param name="configurationManager">The configuration manager.</param>
|
/// <param name="configurationManager">The configuration manager.</param>
|
||||||
/// <param name="userDataRepository">The user data repository.</param>
|
/// <param name="userDataRepository">The user data repository.</param>
|
||||||
public LibraryManager(IServerApplicationHost appHost, ILogger logger, ITaskManager taskManager, IUserManager userManager, IServerConfigurationManager configurationManager, IUserDataManager userDataRepository, Func<ILibraryMonitor> libraryMonitorFactory, IFileSystem fileSystem, Func<IProviderManager> providerManagerFactory, Func<IUserViewManager> userviewManager)
|
public LibraryManager(
|
||||||
|
IServerApplicationHost appHost,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
ITaskManager taskManager,
|
||||||
|
IUserManager userManager,
|
||||||
|
IServerConfigurationManager configurationManager,
|
||||||
|
IUserDataManager userDataRepository,
|
||||||
|
Func<ILibraryMonitor> libraryMonitorFactory,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
Func<IProviderManager> providerManagerFactory,
|
||||||
|
Func<IUserViewManager> userviewManager)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(LibraryManager));
|
||||||
_taskManager = taskManager;
|
_taskManager = taskManager;
|
||||||
_userManager = userManager;
|
_userManager = userManager;
|
||||||
ConfigurationManager = configurationManager;
|
ConfigurationManager = configurationManager;
|
||||||
|
|
|
@ -41,12 +41,23 @@ namespace Emby.Server.Implementations.Library
|
||||||
private ILocalizationManager _localizationManager;
|
private ILocalizationManager _localizationManager;
|
||||||
private IApplicationPaths _appPaths;
|
private IApplicationPaths _appPaths;
|
||||||
|
|
||||||
public MediaSourceManager(IItemRepository itemRepo, IApplicationPaths applicationPaths, ILocalizationManager localizationManager, IUserManager userManager, ILibraryManager libraryManager, ILogger logger, IJsonSerializer jsonSerializer, IFileSystem fileSystem, IUserDataManager userDataManager, ITimerFactory timerFactory, Func<IMediaEncoder> mediaEncoder)
|
public MediaSourceManager(
|
||||||
|
IItemRepository itemRepo,
|
||||||
|
IApplicationPaths applicationPaths,
|
||||||
|
ILocalizationManager localizationManager,
|
||||||
|
IUserManager userManager,
|
||||||
|
ILibraryManager libraryManager,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IJsonSerializer jsonSerializer,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
IUserDataManager userDataManager,
|
||||||
|
ITimerFactory timerFactory,
|
||||||
|
Func<IMediaEncoder> mediaEncoder)
|
||||||
{
|
{
|
||||||
_itemRepo = itemRepo;
|
_itemRepo = itemRepo;
|
||||||
_userManager = userManager;
|
_userManager = userManager;
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(MediaSourceManager));
|
||||||
_jsonSerializer = jsonSerializer;
|
_jsonSerializer = jsonSerializer;
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_userDataManager = userDataManager;
|
_userDataManager = userDataManager;
|
||||||
|
|
|
@ -80,9 +80,20 @@ namespace Emby.Server.Implementations.Library
|
||||||
private IAuthenticationProvider[] _authenticationProviders;
|
private IAuthenticationProvider[] _authenticationProviders;
|
||||||
private DefaultAuthenticationProvider _defaultAuthenticationProvider;
|
private DefaultAuthenticationProvider _defaultAuthenticationProvider;
|
||||||
|
|
||||||
public UserManager(ILogger logger, IServerConfigurationManager configurationManager, IUserRepository userRepository, IXmlSerializer xmlSerializer, INetworkManager networkManager, Func<IImageProcessor> imageProcessorFactory, Func<IDtoService> dtoServiceFactory, IServerApplicationHost appHost, IJsonSerializer jsonSerializer, IFileSystem fileSystem, ICryptoProvider cryptographyProvider)
|
public UserManager(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IServerConfigurationManager configurationManager,
|
||||||
|
IUserRepository userRepository,
|
||||||
|
IXmlSerializer xmlSerializer,
|
||||||
|
INetworkManager networkManager,
|
||||||
|
Func<IImageProcessor> imageProcessorFactory,
|
||||||
|
Func<IDtoService> dtoServiceFactory,
|
||||||
|
IServerApplicationHost appHost,
|
||||||
|
IJsonSerializer jsonSerializer,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
ICryptoProvider cryptographyProvider)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(UserManager));
|
||||||
UserRepository = userRepository;
|
UserRepository = userRepository;
|
||||||
_xmlSerializer = xmlSerializer;
|
_xmlSerializer = xmlSerializer;
|
||||||
_networkManager = networkManager;
|
_networkManager = networkManager;
|
||||||
|
|
|
@ -26,11 +26,16 @@ namespace Emby.Server.Implementations.LiveTv
|
||||||
private readonly IApplicationHost _appHost;
|
private readonly IApplicationHost _appHost;
|
||||||
private readonly ILibraryManager _libraryManager;
|
private readonly ILibraryManager _libraryManager;
|
||||||
|
|
||||||
public LiveTvDtoService(IDtoService dtoService, IImageProcessor imageProcessor, ILogger logger, IApplicationHost appHost, ILibraryManager libraryManager)
|
public LiveTvDtoService(
|
||||||
|
IDtoService dtoService,
|
||||||
|
IImageProcessor imageProcessor,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IApplicationHost appHost,
|
||||||
|
ILibraryManager libraryManager)
|
||||||
{
|
{
|
||||||
_dtoService = dtoService;
|
_dtoService = dtoService;
|
||||||
_imageProcessor = imageProcessor;
|
_imageProcessor = imageProcessor;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(LiveTvDtoService));
|
||||||
_appHost = appHost;
|
_appHost = appHost;
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,14 +72,10 @@ namespace Emby.Server.Implementations.LiveTv
|
||||||
return EmbyTV.EmbyTV.Current.GetActiveRecordingPath(id);
|
return EmbyTV.EmbyTV.Current.GetActiveRecordingPath(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
private IServerApplicationHost _appHost;
|
|
||||||
private IHttpClient _httpClient;
|
|
||||||
|
|
||||||
public LiveTvManager(
|
public LiveTvManager(
|
||||||
IServerApplicationHost appHost,
|
IServerApplicationHost appHost,
|
||||||
IHttpClient httpClient,
|
|
||||||
IServerConfigurationManager config,
|
IServerConfigurationManager config,
|
||||||
ILogger logger,
|
ILoggerFactory loggerFactory,
|
||||||
IItemRepository itemRepo,
|
IItemRepository itemRepo,
|
||||||
IImageProcessor imageProcessor,
|
IImageProcessor imageProcessor,
|
||||||
IUserDataManager userDataManager,
|
IUserDataManager userDataManager,
|
||||||
|
@ -93,9 +89,8 @@ namespace Emby.Server.Implementations.LiveTv
|
||||||
IFileSystem fileSystem,
|
IFileSystem fileSystem,
|
||||||
Func<IChannelManager> channelManager)
|
Func<IChannelManager> channelManager)
|
||||||
{
|
{
|
||||||
_appHost = appHost;
|
|
||||||
_config = config;
|
_config = config;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(LiveTvManager));
|
||||||
_itemRepo = itemRepo;
|
_itemRepo = itemRepo;
|
||||||
_userManager = userManager;
|
_userManager = userManager;
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
|
@ -107,9 +102,8 @@ namespace Emby.Server.Implementations.LiveTv
|
||||||
_dtoService = dtoService;
|
_dtoService = dtoService;
|
||||||
_userDataManager = userDataManager;
|
_userDataManager = userDataManager;
|
||||||
_channelManager = channelManager;
|
_channelManager = channelManager;
|
||||||
_httpClient = httpClient;
|
|
||||||
|
|
||||||
_tvDtoService = new LiveTvDtoService(dtoService, imageProcessor, logger, appHost, _libraryManager);
|
_tvDtoService = new LiveTvDtoService(dtoService, imageProcessor, loggerFactory, appHost, _libraryManager);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -45,12 +45,18 @@ namespace Emby.Server.Implementations.Localization
|
||||||
/// <param name="configurationManager">The configuration manager.</param>
|
/// <param name="configurationManager">The configuration manager.</param>
|
||||||
/// <param name="fileSystem">The file system.</param>
|
/// <param name="fileSystem">The file system.</param>
|
||||||
/// <param name="jsonSerializer">The json serializer.</param>
|
/// <param name="jsonSerializer">The json serializer.</param>
|
||||||
public LocalizationManager(IServerConfigurationManager configurationManager, IFileSystem fileSystem, IJsonSerializer jsonSerializer, ILogger logger, IAssemblyInfo assemblyInfo, ITextLocalizer textLocalizer)
|
public LocalizationManager(
|
||||||
|
IServerConfigurationManager configurationManager,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
IJsonSerializer jsonSerializer,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IAssemblyInfo assemblyInfo,
|
||||||
|
ITextLocalizer textLocalizer)
|
||||||
{
|
{
|
||||||
_configurationManager = configurationManager;
|
_configurationManager = configurationManager;
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_jsonSerializer = jsonSerializer;
|
_jsonSerializer = jsonSerializer;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(LocalizationManager));
|
||||||
_assemblyInfo = assemblyInfo;
|
_assemblyInfo = assemblyInfo;
|
||||||
_textLocalizer = textLocalizer;
|
_textLocalizer = textLocalizer;
|
||||||
|
|
||||||
|
|
|
@ -26,13 +26,14 @@ namespace Emby.Server.Implementations.MediaEncoder
|
||||||
private readonly IChapterManager _chapterManager;
|
private readonly IChapterManager _chapterManager;
|
||||||
private readonly ILibraryManager _libraryManager;
|
private readonly ILibraryManager _libraryManager;
|
||||||
|
|
||||||
public EncodingManager(IFileSystem fileSystem,
|
public EncodingManager(
|
||||||
ILogger logger,
|
IFileSystem fileSystem,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
IMediaEncoder encoder,
|
IMediaEncoder encoder,
|
||||||
IChapterManager chapterManager, ILibraryManager libraryManager)
|
IChapterManager chapterManager, ILibraryManager libraryManager)
|
||||||
{
|
{
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(EncodingManager));
|
||||||
_encoder = encoder;
|
_encoder = encoder;
|
||||||
_chapterManager = chapterManager;
|
_chapterManager = chapterManager;
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
|
|
|
@ -17,18 +17,6 @@ namespace Emby.Server.Implementations.Net
|
||||||
// but that wasn't really the point so kept to YAGNI principal for now, even if the
|
// but that wasn't really the point so kept to YAGNI principal for now, even if the
|
||||||
// interfaces are a bit ugly, specific and make assumptions.
|
// interfaces are a bit ugly, specific and make assumptions.
|
||||||
|
|
||||||
private readonly ILogger _logger;
|
|
||||||
|
|
||||||
public SocketFactory(ILogger logger)
|
|
||||||
{
|
|
||||||
if (logger == null)
|
|
||||||
{
|
|
||||||
throw new ArgumentNullException(nameof(logger));
|
|
||||||
}
|
|
||||||
|
|
||||||
_logger = logger;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ISocket CreateTcpSocket(IpAddressInfo remoteAddress, int remotePort)
|
public ISocket CreateTcpSocket(IpAddressInfo remoteAddress, int remotePort)
|
||||||
{
|
{
|
||||||
if (remotePort < 0) throw new ArgumentException("remotePort cannot be less than zero.", nameof(remotePort));
|
if (remotePort < 0) throw new ArgumentException("remotePort cannot be less than zero.", nameof(remotePort));
|
||||||
|
|
|
@ -22,9 +22,11 @@ namespace Emby.Server.Implementations.Networking
|
||||||
public event EventHandler NetworkChanged;
|
public event EventHandler NetworkChanged;
|
||||||
public Func<string[]> LocalSubnetsFn { get; set; }
|
public Func<string[]> LocalSubnetsFn { get; set; }
|
||||||
|
|
||||||
public NetworkManager(ILogger logger, IEnvironmentInfo environment)
|
public NetworkManager(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IEnvironmentInfo environment)
|
||||||
{
|
{
|
||||||
Logger = logger;
|
Logger = loggerFactory.CreateLogger(nameof(NetworkManager));
|
||||||
|
|
||||||
// In FreeBSD these events cause a crash
|
// In FreeBSD these events cause a crash
|
||||||
if (environment.OperatingSystem != MediaBrowser.Model.System.OperatingSystem.BSD)
|
if (environment.OperatingSystem != MediaBrowser.Model.System.OperatingSystem.BSD)
|
||||||
|
|
|
@ -28,12 +28,18 @@ namespace Emby.Server.Implementations.Playlists
|
||||||
private readonly IUserManager _userManager;
|
private readonly IUserManager _userManager;
|
||||||
private readonly IProviderManager _providerManager;
|
private readonly IProviderManager _providerManager;
|
||||||
|
|
||||||
public PlaylistManager(ILibraryManager libraryManager, IFileSystem fileSystem, ILibraryMonitor iLibraryMonitor, ILogger logger, IUserManager userManager, IProviderManager providerManager)
|
public PlaylistManager(
|
||||||
|
ILibraryManager libraryManager,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
ILibraryMonitor iLibraryMonitor,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IUserManager userManager,
|
||||||
|
IProviderManager providerManager)
|
||||||
{
|
{
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_iLibraryMonitor = iLibraryMonitor;
|
_iLibraryMonitor = iLibraryMonitor;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(PlaylistManager));
|
||||||
_userManager = userManager;
|
_userManager = userManager;
|
||||||
_providerManager = providerManager;
|
_providerManager = providerManager;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,10 +15,13 @@ namespace Emby.Server.Implementations
|
||||||
private readonly ILogger _logger;
|
private readonly ILogger _logger;
|
||||||
private readonly IHttpResultFactory _resultFactory;
|
private readonly IHttpResultFactory _resultFactory;
|
||||||
|
|
||||||
public ResourceFileManager(IHttpResultFactory resultFactory, ILogger logger, IFileSystem fileSystem)
|
public ResourceFileManager(
|
||||||
|
IHttpResultFactory resultFactory,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IFileSystem fileSystem)
|
||||||
{
|
{
|
||||||
_resultFactory = resultFactory;
|
_resultFactory = resultFactory;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger("ResourceManager");
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -60,13 +60,18 @@ namespace Emby.Server.Implementations.ScheduledTasks
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="applicationPaths">The application paths.</param>
|
/// <param name="applicationPaths">The application paths.</param>
|
||||||
/// <param name="jsonSerializer">The json serializer.</param>
|
/// <param name="jsonSerializer">The json serializer.</param>
|
||||||
/// <param name="logger">The logger.</param>
|
/// <param name="loggerFactory">The logger factory.</param>
|
||||||
/// <exception cref="ArgumentException">kernel</exception>
|
/// <exception cref="System.ArgumentException">kernel</exception>
|
||||||
public TaskManager(IApplicationPaths applicationPaths, IJsonSerializer jsonSerializer, ILogger logger, IFileSystem fileSystem, ISystemEvents systemEvents)
|
public TaskManager(
|
||||||
|
IApplicationPaths applicationPaths,
|
||||||
|
IJsonSerializer jsonSerializer,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
ISystemEvents systemEvents)
|
||||||
{
|
{
|
||||||
ApplicationPaths = applicationPaths;
|
ApplicationPaths = applicationPaths;
|
||||||
JsonSerializer = jsonSerializer;
|
JsonSerializer = jsonSerializer;
|
||||||
Logger = logger;
|
Logger = loggerFactory.CreateLogger(nameof(TaskManager));
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_systemEvents = systemEvents;
|
_systemEvents = systemEvents;
|
||||||
|
|
||||||
|
|
|
@ -18,8 +18,8 @@ namespace Emby.Server.Implementations.Security
|
||||||
private readonly IServerConfigurationManager _config;
|
private readonly IServerConfigurationManager _config;
|
||||||
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
|
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
|
||||||
|
|
||||||
public AuthenticationRepository(ILogger logger, IServerConfigurationManager config)
|
public AuthenticationRepository(ILoggerFactory loggerFactory, IServerConfigurationManager config)
|
||||||
: base(logger)
|
: base(loggerFactory.CreateLogger(nameof(AuthenticationRepository)))
|
||||||
{
|
{
|
||||||
_config = config;
|
_config = config;
|
||||||
DbFilePath = Path.Combine(config.ApplicationPaths.DataPath, "authentication.db");
|
DbFilePath = Path.Combine(config.ApplicationPaths.DataPath, "authentication.db");
|
||||||
|
|
|
@ -13,12 +13,11 @@ namespace Emby.Common.Implementations.Serialization
|
||||||
public class JsonSerializer : IJsonSerializer
|
public class JsonSerializer : IJsonSerializer
|
||||||
{
|
{
|
||||||
private readonly IFileSystem _fileSystem;
|
private readonly IFileSystem _fileSystem;
|
||||||
private readonly ILogger _logger;
|
|
||||||
|
|
||||||
public JsonSerializer(IFileSystem fileSystem, ILogger logger)
|
public JsonSerializer(
|
||||||
|
IFileSystem fileSystem)
|
||||||
{
|
{
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_logger = logger;
|
|
||||||
Configure();
|
Configure();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,7 +68,6 @@ namespace Emby.Common.Implementations.Serialization
|
||||||
|
|
||||||
private static Stream OpenFile(string path)
|
private static Stream OpenFile(string path)
|
||||||
{
|
{
|
||||||
//_logger.LogDebug("Deserializing file {0}", path);
|
|
||||||
return new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read, 131072);
|
return new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read, 131072);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,10 +17,12 @@ namespace Emby.Server.Implementations.Serialization
|
||||||
private readonly IFileSystem _fileSystem;
|
private readonly IFileSystem _fileSystem;
|
||||||
private readonly ILogger _logger;
|
private readonly ILogger _logger;
|
||||||
|
|
||||||
public MyXmlSerializer(IFileSystem fileSystem, ILogger logger)
|
public MyXmlSerializer(
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
ILoggerFactory loggerFactory)
|
||||||
{
|
{
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger("XmlSerializer");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Need to cache these
|
// Need to cache these
|
||||||
|
|
|
@ -90,10 +90,24 @@ namespace Emby.Server.Implementations.Session
|
||||||
public event EventHandler<SessionEventArgs> SessionEnded;
|
public event EventHandler<SessionEventArgs> SessionEnded;
|
||||||
public event EventHandler<SessionEventArgs> SessionActivity;
|
public event EventHandler<SessionEventArgs> SessionActivity;
|
||||||
|
|
||||||
public SessionManager(IUserDataManager userDataManager, ILogger logger, ILibraryManager libraryManager, IUserManager userManager, IMusicManager musicManager, IDtoService dtoService, IImageProcessor imageProcessor, IJsonSerializer jsonSerializer, IServerApplicationHost appHost, IHttpClient httpClient, IAuthenticationRepository authRepo, IDeviceManager deviceManager, IMediaSourceManager mediaSourceManager, ITimerFactory timerFactory)
|
public SessionManager(
|
||||||
|
IUserDataManager userDataManager,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
ILibraryManager libraryManager,
|
||||||
|
IUserManager userManager,
|
||||||
|
IMusicManager musicManager,
|
||||||
|
IDtoService dtoService,
|
||||||
|
IImageProcessor imageProcessor,
|
||||||
|
IJsonSerializer jsonSerializer,
|
||||||
|
IServerApplicationHost appHost,
|
||||||
|
IHttpClient httpClient,
|
||||||
|
IAuthenticationRepository authRepo,
|
||||||
|
IDeviceManager deviceManager,
|
||||||
|
IMediaSourceManager mediaSourceManager,
|
||||||
|
ITimerFactory timerFactory)
|
||||||
{
|
{
|
||||||
_userDataManager = userDataManager;
|
_userDataManager = userDataManager;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(SessionManager));
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
_userManager = userManager;
|
_userManager = userManager;
|
||||||
_musicManager = musicManager;
|
_musicManager = musicManager;
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
using MediaBrowser.Model.System;
|
using MediaBrowser.Model.System;
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
|
|
||||||
namespace Emby.Server.Implementations
|
namespace Emby.Server.Implementations
|
||||||
{
|
{
|
||||||
|
@ -10,12 +9,5 @@ namespace Emby.Server.Implementations
|
||||||
public event EventHandler Suspend;
|
public event EventHandler Suspend;
|
||||||
public event EventHandler SessionLogoff;
|
public event EventHandler SessionLogoff;
|
||||||
public event EventHandler SystemShutdown;
|
public event EventHandler SystemShutdown;
|
||||||
|
|
||||||
private readonly ILogger _logger;
|
|
||||||
|
|
||||||
public SystemEvents(ILogger logger)
|
|
||||||
{
|
|
||||||
_logger = logger;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -121,7 +121,7 @@ namespace Emby.Server.Implementations.Updates
|
||||||
private readonly string _packageRuntime;
|
private readonly string _packageRuntime;
|
||||||
|
|
||||||
public InstallationManager(
|
public InstallationManager(
|
||||||
ILogger logger,
|
ILoggerFactory loggerFactory,
|
||||||
IApplicationHost appHost,
|
IApplicationHost appHost,
|
||||||
IApplicationPaths appPaths,
|
IApplicationPaths appPaths,
|
||||||
IHttpClient httpClient,
|
IHttpClient httpClient,
|
||||||
|
@ -131,9 +131,9 @@ namespace Emby.Server.Implementations.Updates
|
||||||
ICryptoProvider cryptographyProvider,
|
ICryptoProvider cryptographyProvider,
|
||||||
string packageRuntime)
|
string packageRuntime)
|
||||||
{
|
{
|
||||||
if (logger == null)
|
if (loggerFactory == null)
|
||||||
{
|
{
|
||||||
throw new ArgumentNullException(nameof(logger));
|
throw new ArgumentNullException(nameof(loggerFactory));
|
||||||
}
|
}
|
||||||
|
|
||||||
CurrentInstallations = new List<Tuple<InstallationInfo, CancellationTokenSource>>();
|
CurrentInstallations = new List<Tuple<InstallationInfo, CancellationTokenSource>>();
|
||||||
|
@ -147,7 +147,7 @@ namespace Emby.Server.Implementations.Updates
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_cryptographyProvider = cryptographyProvider;
|
_cryptographyProvider = cryptographyProvider;
|
||||||
_packageRuntime = packageRuntime;
|
_packageRuntime = packageRuntime;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(InstallationManager));
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Version GetPackageVersion(PackageVersionInfo version)
|
private static Version GetPackageVersion(PackageVersionInfo version)
|
||||||
|
|
|
@ -89,7 +89,7 @@ namespace Jellyfin.Server
|
||||||
// Allow all https requests
|
// Allow all https requests
|
||||||
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(delegate { return true; });
|
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(delegate { return true; });
|
||||||
|
|
||||||
var fileSystem = new ManagedFileSystem(_loggerFactory.CreateLogger("FileSystem"), environmentInfo, null, appPaths.TempDirectory, true);
|
var fileSystem = new ManagedFileSystem(_loggerFactory, environmentInfo, null, appPaths.TempDirectory, true);
|
||||||
|
|
||||||
using (var appHost = new CoreAppHost(
|
using (var appHost = new CoreAppHost(
|
||||||
appPaths,
|
appPaths,
|
||||||
|
@ -98,12 +98,12 @@ namespace Jellyfin.Server
|
||||||
fileSystem,
|
fileSystem,
|
||||||
environmentInfo,
|
environmentInfo,
|
||||||
new NullImageEncoder(),
|
new NullImageEncoder(),
|
||||||
new SystemEvents(_loggerFactory.CreateLogger("SystemEvents")),
|
new SystemEvents(),
|
||||||
new NetworkManager(_loggerFactory.CreateLogger("NetworkManager"), environmentInfo)))
|
new NetworkManager(_loggerFactory, environmentInfo)))
|
||||||
{
|
{
|
||||||
appHost.Init();
|
appHost.Init();
|
||||||
|
|
||||||
appHost.ImageProcessor.ImageEncoder = getImageEncoder(_logger, fileSystem, options, () => appHost.HttpClient, appPaths, environmentInfo, appHost.LocalizationManager);
|
appHost.ImageProcessor.ImageEncoder = getImageEncoder(fileSystem, () => appHost.HttpClient, appPaths, appHost.LocalizationManager);
|
||||||
|
|
||||||
_logger.LogInformation("Running startup tasks");
|
_logger.LogInformation("Running startup tasks");
|
||||||
|
|
||||||
|
@ -257,21 +257,18 @@ namespace Jellyfin.Server
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IImageEncoder getImageEncoder(
|
public static IImageEncoder getImageEncoder(
|
||||||
ILogger logger,
|
|
||||||
IFileSystem fileSystem,
|
IFileSystem fileSystem,
|
||||||
StartupOptions startupOptions,
|
|
||||||
Func<IHttpClient> httpClient,
|
Func<IHttpClient> httpClient,
|
||||||
IApplicationPaths appPaths,
|
IApplicationPaths appPaths,
|
||||||
IEnvironmentInfo environment,
|
|
||||||
ILocalizationManager localizationManager)
|
ILocalizationManager localizationManager)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return new SkiaEncoder(logger, appPaths, httpClient, fileSystem, localizationManager);
|
return new SkiaEncoder(_loggerFactory, appPaths, httpClient, fileSystem, localizationManager);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
logger.LogInformation(ex, "Skia not available. Will fallback to NullIMageEncoder. {0}");
|
_logger.LogInformation(ex, "Skia not available. Will fallback to NullIMageEncoder. {0}");
|
||||||
}
|
}
|
||||||
|
|
||||||
return new NullImageEncoder();
|
return new NullImageEncoder();
|
||||||
|
|
|
@ -70,7 +70,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||||
private readonly string _originalFFProbePath;
|
private readonly string _originalFFProbePath;
|
||||||
private readonly int DefaultImageExtractionTimeoutMs;
|
private readonly int DefaultImageExtractionTimeoutMs;
|
||||||
|
|
||||||
public MediaEncoder(ILogger logger,
|
public MediaEncoder(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
IJsonSerializer jsonSerializer,
|
IJsonSerializer jsonSerializer,
|
||||||
string ffMpegPath,
|
string ffMpegPath,
|
||||||
string ffProbePath,
|
string ffProbePath,
|
||||||
|
@ -89,7 +90,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||||
IProcessFactory processFactory,
|
IProcessFactory processFactory,
|
||||||
int defaultImageExtractionTimeoutMs)
|
int defaultImageExtractionTimeoutMs)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(MediaEncoder));
|
||||||
_jsonSerializer = jsonSerializer;
|
_jsonSerializer = jsonSerializer;
|
||||||
ConfigurationManager = configurationManager;
|
ConfigurationManager = configurationManager;
|
||||||
FileSystem = fileSystem;
|
FileSystem = fileSystem;
|
||||||
|
|
|
@ -35,8 +35,9 @@ namespace MediaBrowser.MediaEncoding.Subtitles
|
||||||
private readonly IMediaSourceManager _mediaSourceManager;
|
private readonly IMediaSourceManager _mediaSourceManager;
|
||||||
private readonly IProcessFactory _processFactory;
|
private readonly IProcessFactory _processFactory;
|
||||||
|
|
||||||
public SubtitleEncoder(ILibraryManager libraryManager,
|
public SubtitleEncoder(
|
||||||
ILogger logger,
|
ILibraryManager libraryManager,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
IApplicationPaths appPaths,
|
IApplicationPaths appPaths,
|
||||||
IFileSystem fileSystem,
|
IFileSystem fileSystem,
|
||||||
IMediaEncoder mediaEncoder,
|
IMediaEncoder mediaEncoder,
|
||||||
|
@ -46,7 +47,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
|
||||||
IProcessFactory processFactory)
|
IProcessFactory processFactory)
|
||||||
{
|
{
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(SubtitleEncoder));
|
||||||
_appPaths = appPaths;
|
_appPaths = appPaths;
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_mediaEncoder = mediaEncoder;
|
_mediaEncoder = mediaEncoder;
|
||||||
|
|
|
@ -16,10 +16,14 @@ namespace MediaBrowser.Providers.Chapters
|
||||||
private readonly IServerConfigurationManager _config;
|
private readonly IServerConfigurationManager _config;
|
||||||
private readonly IItemRepository _itemRepo;
|
private readonly IItemRepository _itemRepo;
|
||||||
|
|
||||||
public ChapterManager(ILibraryManager libraryManager, ILogger logger, IServerConfigurationManager config, IItemRepository itemRepo)
|
public ChapterManager(
|
||||||
|
ILibraryManager libraryManager,
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IServerConfigurationManager config,
|
||||||
|
IItemRepository itemRepo)
|
||||||
{
|
{
|
||||||
_libraryManager = libraryManager;
|
_libraryManager = libraryManager;
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(ChapterManager));
|
||||||
_config = config;
|
_config = config;
|
||||||
_itemRepo = itemRepo;
|
_itemRepo = itemRepo;
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,9 +37,15 @@ namespace MediaBrowser.Providers.Subtitles
|
||||||
|
|
||||||
private ILocalizationManager _localization;
|
private ILocalizationManager _localization;
|
||||||
|
|
||||||
public SubtitleManager(ILogger logger, IFileSystem fileSystem, ILibraryMonitor monitor, IMediaSourceManager mediaSourceManager, IServerConfigurationManager config, ILocalizationManager localizationManager)
|
public SubtitleManager(
|
||||||
|
ILoggerFactory loggerFactory,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
ILibraryMonitor monitor,
|
||||||
|
IMediaSourceManager mediaSourceManager,
|
||||||
|
IServerConfigurationManager config,
|
||||||
|
ILocalizationManager localizationManager)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = loggerFactory.CreateLogger(nameof(SubtitleManager));
|
||||||
_fileSystem = fileSystem;
|
_fileSystem = fileSystem;
|
||||||
_monitor = monitor;
|
_monitor = monitor;
|
||||||
_mediaSourceManager = mediaSourceManager;
|
_mediaSourceManager = mediaSourceManager;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user