parent
d9be3874ba
commit
f4fd908f8d
@ -0,0 +1,37 @@
|
|||||||
|
#nullable disable
|
||||||
|
|
||||||
|
#pragma warning disable CS1591
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using MediaBrowser.Controller.Entities;
|
||||||
|
using MediaBrowser.Model.Configuration;
|
||||||
|
using MediaBrowser.Model.Providers;
|
||||||
|
|
||||||
|
namespace MediaBrowser.Controller.Lyrics
|
||||||
|
{
|
||||||
|
public interface ILyricManager
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Adds the parts.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="lyricProviders">The lyric providers.</param>
|
||||||
|
void AddParts(IEnumerable<ILyricProvider> lyricProviders);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the lyrics.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="item">The media item.</param>
|
||||||
|
/// <returns>Lyrics for passed item.</returns>
|
||||||
|
LyricResponse GetLyric(BaseItem item);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Checks if requested item has a matching local lyric file.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="item">The media item.</param>
|
||||||
|
/// <returns>True if item has a matching lyrics file; otherwise false.</returns>
|
||||||
|
bool HasLyricFile(BaseItem item);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,97 @@
|
|||||||
|
#nullable disable
|
||||||
|
|
||||||
|
#pragma warning disable CS1591
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Jellyfin.Extensions;
|
||||||
|
using MediaBrowser.Common.Extensions;
|
||||||
|
using MediaBrowser.Controller.Entities;
|
||||||
|
using MediaBrowser.Controller.Entities.Movies;
|
||||||
|
using MediaBrowser.Controller.Entities.TV;
|
||||||
|
using MediaBrowser.Controller.Library;
|
||||||
|
using MediaBrowser.Controller.Lyrics;
|
||||||
|
using MediaBrowser.Controller.Persistence;
|
||||||
|
using MediaBrowser.Controller.Providers;
|
||||||
|
using MediaBrowser.Controller.Subtitles;
|
||||||
|
using MediaBrowser.Model.Configuration;
|
||||||
|
using MediaBrowser.Model.Entities;
|
||||||
|
using MediaBrowser.Model.Globalization;
|
||||||
|
using MediaBrowser.Model.IO;
|
||||||
|
using MediaBrowser.Model.Providers;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
|
namespace MediaBrowser.Providers.Lyric
|
||||||
|
{
|
||||||
|
public class LyricManager : ILyricManager
|
||||||
|
{
|
||||||
|
private readonly ILogger<LyricManager> _logger;
|
||||||
|
private readonly IFileSystem _fileSystem;
|
||||||
|
private readonly ILibraryMonitor _monitor;
|
||||||
|
private readonly IMediaSourceManager _mediaSourceManager;
|
||||||
|
private readonly ILocalizationManager _localization;
|
||||||
|
|
||||||
|
private ILyricProvider[] _lyricProviders;
|
||||||
|
|
||||||
|
public LyricManager(
|
||||||
|
ILogger<LyricManager> logger,
|
||||||
|
IFileSystem fileSystem,
|
||||||
|
ILibraryMonitor monitor,
|
||||||
|
IMediaSourceManager mediaSourceManager,
|
||||||
|
ILocalizationManager localizationManager)
|
||||||
|
{
|
||||||
|
_logger = logger;
|
||||||
|
_fileSystem = fileSystem;
|
||||||
|
_monitor = monitor;
|
||||||
|
_mediaSourceManager = mediaSourceManager;
|
||||||
|
_localization = localizationManager;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public void AddParts(IEnumerable<ILyricProvider> lyricProviders)
|
||||||
|
{
|
||||||
|
_lyricProviders = lyricProviders
|
||||||
|
.OrderBy(i => i is IHasOrder hasOrder ? hasOrder.Order : 0)
|
||||||
|
.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public LyricResponse GetLyric(BaseItem item)
|
||||||
|
{
|
||||||
|
foreach (ILyricProvider provider in _lyricProviders)
|
||||||
|
{
|
||||||
|
var results = provider.GetLyrics(item);
|
||||||
|
if (results is not null)
|
||||||
|
{
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public bool HasLyricFile(BaseItem item)
|
||||||
|
{
|
||||||
|
foreach (ILyricProvider provider in _lyricProviders)
|
||||||
|
{
|
||||||
|
if (item is null)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (LyricInfo.GetLyricFilePath(provider, item.Path) is not null)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue