af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
52 lines
2.0 KiB
C#
52 lines
2.0 KiB
C#
// <copyright file="PlaylistXmlProvider.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.LocalMetadata.Providers
|
|
{
|
|
using System.Threading;
|
|
using MediaBrowser.Controller.Playlists;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.LocalMetadata.Parsers;
|
|
using MediaBrowser.LocalMetadata.Savers;
|
|
using MediaBrowser.Model.IO;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
/// <summary>
|
|
/// Playlist xml provider.
|
|
/// </summary>
|
|
public class PlaylistXmlProvider : BaseXmlProvider<Playlist>
|
|
{
|
|
private readonly ILogger<PlaylistXmlParser> _logger;
|
|
private readonly IProviderManager _providerManager;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PlaylistXmlProvider"/> class.
|
|
/// </summary>
|
|
/// <param name="fileSystem">Instance of the <see cref="IFileSystem"/> interface.</param>
|
|
/// <param name="logger">Instance of the <see cref="ILogger{PlaylistXmlParser}"/> interface.</param>
|
|
/// <param name="providerManager">Instance of the <see cref="IProviderManager"/> interface.</param>
|
|
public PlaylistXmlProvider(
|
|
IFileSystem fileSystem,
|
|
ILogger<PlaylistXmlParser> logger,
|
|
IProviderManager providerManager)
|
|
: base(fileSystem)
|
|
{
|
|
_logger = logger;
|
|
_providerManager = providerManager;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Fetch(MetadataResult<Playlist> result, string path, CancellationToken cancellationToken)
|
|
{
|
|
new PlaylistXmlParser(_logger, _providerManager).Fetch(result, path, cancellationToken);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override FileSystemMetadata? GetXmlFile(ItemInfo info, IDirectoryService directoryService)
|
|
{
|
|
return directoryService.GetFile(PlaylistXmlSaver.GetSavePath(info.Path));
|
|
}
|
|
}
|
|
}
|