jellyfin/MediaBrowser.Providers/Lyric/TxtLyricProvider.cs

59 lines
1.7 KiB
C#
Raw Normal View History

2022-09-10 14:58:03 -04:00
using System.Collections.Generic;
2022-09-21 17:49:28 -04:00
using System.IO;
using System.Linq;
2022-09-22 08:13:53 -04:00
using System.Threading.Tasks;
2022-09-10 14:58:03 -04:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Lyrics;
2022-09-18 13:13:01 -04:00
using MediaBrowser.Controller.Resolvers;
2022-09-10 14:58:03 -04:00
2022-09-17 17:37:38 -04:00
namespace MediaBrowser.Providers.Lyric;
/// <summary>
/// TXT Lyric Provider.
/// </summary>
public class TxtLyricProvider : ILyricProvider
2022-09-10 14:58:03 -04:00
{
2022-09-17 17:37:38 -04:00
/// <inheritdoc />
public string Name => "TxtLyricProvider";
2022-09-15 20:49:25 -04:00
2022-09-18 13:13:01 -04:00
/// <summary>
/// Gets the priority.
/// </summary>
/// <value>The priority.</value>
public ResolverPriority Priority => ResolverPriority.Second;
2022-09-17 17:37:38 -04:00
/// <inheritdoc />
2022-09-18 21:17:53 -04:00
public IReadOnlyCollection<string> SupportedMediaTypes { get; } = new[] { "lrc", "elrc", "txt" };
2022-09-15 20:49:25 -04:00
2022-09-17 17:37:38 -04:00
/// <summary>
/// Opens lyric file for the requested item, and processes it for API return.
/// </summary>
/// <param name="item">The item to to process.</param>
/// <returns>If provider can determine lyrics, returns a <see cref="LyricResponse"/>; otherwise, null.</returns>
2022-09-22 08:13:53 -04:00
public async Task<LyricResponse?> GetLyrics(BaseItem item)
2022-09-17 17:37:38 -04:00
{
string? lyricFilePath = this.GetLyricFilePath(item.Path);
2022-09-10 14:58:03 -04:00
2022-09-17 17:37:38 -04:00
if (string.IsNullOrEmpty(lyricFilePath))
2022-09-10 14:58:03 -04:00
{
2022-09-17 17:37:38 -04:00
return null;
}
2022-09-10 14:58:03 -04:00
2022-09-22 08:13:53 -04:00
string[] lyricTextLines = await Task.FromResult(File.ReadAllLines(lyricFilePath)).ConfigureAwait(false);
2022-09-10 14:58:03 -04:00
2022-09-17 17:37:38 -04:00
if (lyricTextLines.Length == 0)
{
return null;
}
2022-09-10 14:58:03 -04:00
2022-09-21 17:49:28 -04:00
LyricLine[] lyricList = new LyricLine[lyricTextLines.Length];
2022-09-19 16:26:38 -04:00
2022-09-21 17:49:28 -04:00
for (int lyricLine = 0; lyricLine < lyricTextLines.Length; lyricLine++)
2022-09-17 17:37:38 -04:00
{
2022-09-21 17:49:28 -04:00
lyricList[lyricLine] = new LyricLine(lyricTextLines[lyricLine]);
2022-09-10 14:58:03 -04:00
}
2022-09-17 17:37:38 -04:00
return new LyricResponse { Lyrics = lyricList };
2022-09-10 14:58:03 -04:00
}
}