12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Lyrics;
- namespace MediaBrowser.Providers.Lyric
- {
- /// <summary>
- /// TXT Lyric Provider.
- /// </summary>
- public class TxtLyricProvider : ILyricProvider
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="TxtLyricProvider"/> class.
- /// </summary>
- public TxtLyricProvider()
- {
- Name = "TxtLyricProvider";
- SupportedMediaTypes = new Collection<string>
- {
- "lrc", "txt"
- };
- }
- /// <summary>
- /// Gets a value indicating the provider name.
- /// </summary>
- public string Name { get; }
- /// <summary>
- /// Gets a value indicating the File Extenstions this provider supports.
- /// </summary>
- public IEnumerable<string> SupportedMediaTypes { get; }
- /// <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>
- public LyricResponse? GetLyrics(BaseItem item)
- {
- string? lyricFilePath = LyricInfo.GetLyricFilePath(this, item.Path);
- if (string.IsNullOrEmpty(lyricFilePath))
- {
- return null;
- }
- List<Controller.Lyrics.Lyric> lyricList = new List<Controller.Lyrics.Lyric>();
- string lyricData = System.IO.File.ReadAllText(lyricFilePath);
- // Splitting on Environment.NewLine caused some new lines to be missed in Windows.
- char[] newLineDelims = new[] { '\r', '\n' };
- string[] lyricTextLines = lyricData.Split(newLineDelims, StringSplitOptions.RemoveEmptyEntries);
- if (!lyricTextLines.Any())
- {
- return null;
- }
- foreach (string lyricTextLine in lyricTextLines)
- {
- lyricList.Add(new Controller.Lyrics.Lyric { Text = lyricTextLine });
- }
- return new LyricResponse { Lyrics = lyricList };
- }
- }
- }
|