jellyfin/MediaBrowser.Providers/Music/LastfmAlbumProvider.cs

299 lines
9.7 KiB
C#
Raw Normal View History

2014-01-31 20:55:21 +01:00
using MediaBrowser.Common.Net;
2013-03-05 17:48:17 +01:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities.Audio;
2013-06-09 18:47:28 +02:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
2013-03-05 17:48:17 +01:00
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Serialization;
2013-04-22 06:38:03 +02:00
using System;
2014-01-31 20:55:21 +01:00
using System.Collections.Generic;
2013-09-06 19:26:56 +02:00
using System.IO;
2014-01-31 20:55:21 +01:00
using System.Net;
2013-04-22 06:38:03 +02:00
using System.Threading;
using System.Threading.Tasks;
2013-03-05 17:48:17 +01:00
2013-06-09 18:47:28 +02:00
namespace MediaBrowser.Providers.Music
2013-03-05 17:48:17 +01:00
{
2014-01-31 20:55:21 +01:00
public class LastfmAlbumProvider : IRemoteMetadataProvider<MusicAlbum>, IHasOrder
2013-03-05 17:48:17 +01:00
{
2014-01-31 20:55:21 +01:00
private readonly IJsonSerializer _json;
private readonly IHttpClient _httpClient;
2014-01-31 20:55:21 +01:00
private readonly IServerConfigurationManager _config;
private readonly ILogger _logger;
2013-03-05 17:48:17 +01:00
2014-01-31 20:55:21 +01:00
public LastfmAlbumProvider(IHttpClient httpClient, IJsonSerializer json, IServerConfigurationManager config, ILogger logger)
2013-08-07 18:00:20 +02:00
{
2014-01-31 20:55:21 +01:00
_httpClient = httpClient;
_json = json;
_config = config;
_logger = logger;
2013-08-07 18:00:20 +02:00
}
2014-01-31 20:55:21 +01:00
public async Task<MetadataResult<MusicAlbum>> GetMetadata(ItemId id, CancellationToken cancellationToken)
2013-09-06 19:26:56 +02:00
{
2014-01-31 20:55:21 +01:00
var result = new MetadataResult<MusicAlbum>();
2013-09-06 19:26:56 +02:00
2014-01-31 20:55:21 +01:00
var lastFmData = await GetAlbumResult((AlbumId)id, cancellationToken).ConfigureAwait(false);
2014-01-31 20:55:21 +01:00
if (lastFmData != null && lastFmData.album != null)
2013-06-23 20:55:30 +02:00
{
2014-01-31 20:55:21 +01:00
result.HasMetadata = true;
ProcessAlbumData(result.Item, lastFmData.album);
2013-06-23 20:55:30 +02:00
}
2014-01-31 20:55:21 +01:00
return result;
}
2014-01-31 20:55:21 +01:00
private async Task<LastfmGetAlbumResult> GetAlbumResult(AlbumId item, CancellationToken cancellationToken)
2013-04-22 06:38:03 +02:00
{
2013-09-04 19:02:19 +02:00
// Try album release Id
if (!string.IsNullOrEmpty(item.GetProviderId(MetadataProviders.Musicbrainz)))
{
var result = await GetAlbumResult(item.GetProviderId(MetadataProviders.Musicbrainz), cancellationToken).ConfigureAwait(false);
if (result != null && result.album != null)
{
return result;
}
}
2013-04-22 06:38:03 +02:00
2013-09-04 19:02:19 +02:00
// Try album release group Id
if (!string.IsNullOrEmpty(item.GetProviderId(MetadataProviders.MusicBrainzReleaseGroup)))
{
var result = await GetAlbumResult(item.GetProviderId(MetadataProviders.MusicBrainzReleaseGroup), cancellationToken).ConfigureAwait(false);
if (result != null && result.album != null)
{
return result;
}
}
2013-04-22 06:38:03 +02:00
2014-01-31 20:55:21 +01:00
//// Get each song, distinct by the combination of AlbumArtist and Album
//var songs = item.RecursiveChildren.OfType<Audio>().DistinctBy(i => (i.AlbumArtist ?? string.Empty) + (i.Album ?? string.Empty), StringComparer.OrdinalIgnoreCase).ToList();
2013-04-22 06:38:03 +02:00
2014-01-31 20:55:21 +01:00
//foreach (var song in songs.Where(song => !string.IsNullOrEmpty(song.Album) && !string.IsNullOrEmpty(song.AlbumArtist)))
//{
// var result = await GetAlbumResult(song.AlbumArtist, song.Album, cancellationToken).ConfigureAwait(false);
// if (result != null && result.album != null)
// {
// return result;
// }
//}
if (string.IsNullOrEmpty(item.AlbumArtist))
{
return null;
2013-04-22 06:38:03 +02:00
}
2014-01-31 20:55:21 +01:00
return await GetAlbumResult(item.AlbumArtist, item.Name, cancellationToken);
2013-04-22 06:38:03 +02:00
}
private async Task<LastfmGetAlbumResult> GetAlbumResult(string artist, string album, CancellationToken cancellationToken)
{
// Get albu info using artist and album name
2014-01-31 20:55:21 +01:00
var url = LastfmArtistProvider.RootUrl + string.Format("method=album.getInfo&artist={0}&album={1}&api_key={2}&format=json", UrlEncode(artist), UrlEncode(album), LastfmArtistProvider.ApiKey);
2013-04-22 06:38:03 +02:00
2014-01-31 20:55:21 +01:00
using (var json = await _httpClient.Get(new HttpRequestOptions
{
Url = url,
2014-01-31 20:55:21 +01:00
ResourcePool = LastfmArtistProvider.LastfmResourcePool,
CancellationToken = cancellationToken,
EnableHttpCompression = false
}).ConfigureAwait(false))
2013-04-22 06:38:03 +02:00
{
using (var reader = new StreamReader(json))
{
var jsonText = await reader.ReadToEndAsync().ConfigureAwait(false);
// Fix their bad json
jsonText = jsonText.Replace("\"#text\"", "\"url\"");
2014-01-31 20:55:21 +01:00
return _json.DeserializeFromString<LastfmGetAlbumResult>(jsonText);
}
2013-04-22 06:38:03 +02:00
}
}
2013-09-04 19:02:19 +02:00
private async Task<LastfmGetAlbumResult> GetAlbumResult(string musicbraizId, CancellationToken cancellationToken)
{
// Get albu info using artist and album name
2014-01-31 20:55:21 +01:00
var url = LastfmArtistProvider.RootUrl + string.Format("method=album.getInfo&mbid={0}&api_key={1}&format=json", musicbraizId, LastfmArtistProvider.ApiKey);
2013-09-04 19:02:19 +02:00
2014-01-31 20:55:21 +01:00
using (var json = await _httpClient.Get(new HttpRequestOptions
2013-09-04 19:02:19 +02:00
{
Url = url,
2014-01-31 20:55:21 +01:00
ResourcePool = LastfmArtistProvider.LastfmResourcePool,
2013-09-04 19:02:19 +02:00
CancellationToken = cancellationToken,
EnableHttpCompression = false
}).ConfigureAwait(false))
{
2014-01-31 20:55:21 +01:00
return _json.DeserializeFromStream<LastfmGetAlbumResult>(json);
2013-09-04 19:02:19 +02:00
}
}
2013-04-22 06:38:03 +02:00
2014-01-31 20:55:21 +01:00
private void ProcessAlbumData(MusicAlbum item, LastfmAlbum data)
2013-03-05 17:48:17 +01:00
{
2014-01-31 20:55:21 +01:00
var overview = data.wiki != null ? data.wiki.content : null;
if (!item.LockedFields.Contains(MetadataFields.Overview))
{
item.Overview = overview;
}
// Only grab the date here if the album doesn't already have one, since id3 tags are preferred
DateTime release;
if (DateTime.TryParse(data.releasedate, out release))
{
// Lastfm sends back null as sometimes 1901, other times 0
if (release.Year > 1901)
{
if (!item.PremiereDate.HasValue)
{
item.PremiereDate = release;
}
if (!item.ProductionYear.HasValue)
{
item.ProductionYear = release.Year;
}
}
}
string imageSize;
var url = LastfmHelper.GetImageUrl(data, out imageSize);
var musicBrainzId = item.GetProviderId(MetadataProviders.Musicbrainz) ??
item.GetProviderId(MetadataProviders.MusicBrainzReleaseGroup);
LastfmHelper.SaveImageInfo(_config.ApplicationPaths, _logger, musicBrainzId, url, imageSize);
2013-03-05 17:48:17 +01:00
}
2013-04-22 06:38:03 +02:00
/// <summary>
2014-01-31 20:55:21 +01:00
/// Encodes an URL.
/// </summary>
2014-01-31 20:55:21 +01:00
/// <param name="name">The name.</param>
/// <returns>System.String.</returns>
private string UrlEncode(string name)
{
return WebUtility.UrlEncode(name);
}
public string Name
{
2014-01-31 20:55:21 +01:00
get { return "last.fm"; }
}
2014-01-31 20:55:21 +01:00
public int Order
{
get { return 1; }
}
}
2014-01-31 20:55:21 +01:00
#region Result Objects
2014-01-31 20:55:21 +01:00
public class LastfmStats
{
public string listeners { get; set; }
public string playcount { get; set; }
}
2014-01-31 20:55:21 +01:00
public class LastfmTag
{
public string name { get; set; }
public string url { get; set; }
2013-03-05 17:48:17 +01:00
}
2014-01-31 20:55:21 +01:00
public class LastfmTags
{
public List<LastfmTag> tag { get; set; }
}
public class LastfmFormationInfo
{
public string yearfrom { get; set; }
public string yearto { get; set; }
}
public class LastFmBio
{
public string published { get; set; }
public string summary { get; set; }
public string content { get; set; }
public string placeformed { get; set; }
public string yearformed { get; set; }
public List<LastfmFormationInfo> formationlist { get; set; }
}
public class LastFmImage
{
public string url { get; set; }
public string size { get; set; }
}
public class LastfmArtist : IHasLastFmImages
{
public string name { get; set; }
public string mbid { get; set; }
public string url { get; set; }
public string streamable { get; set; }
public string ontour { get; set; }
public LastfmStats stats { get; set; }
public List<LastfmArtist> similar { get; set; }
public LastfmTags tags { get; set; }
public LastFmBio bio { get; set; }
public List<LastFmImage> image { get; set; }
}
public class LastfmAlbum : IHasLastFmImages
{
public string name { get; set; }
public string artist { get; set; }
public string id { get; set; }
public string mbid { get; set; }
public string releasedate { get; set; }
public int listeners { get; set; }
public int playcount { get; set; }
public LastfmTags toptags { get; set; }
public LastFmBio wiki { get; set; }
public List<LastFmImage> image { get; set; }
}
public interface IHasLastFmImages
{
List<LastFmImage> image { get; set; }
}
public class LastfmGetAlbumResult
{
public LastfmAlbum album { get; set; }
}
public class LastfmGetArtistResult
{
public LastfmArtist artist { get; set; }
}
public class Artistmatches
{
public List<LastfmArtist> artist { get; set; }
}
public class LastfmArtistSearchResult
{
public Artistmatches artistmatches { get; set; }
}
public class LastfmArtistSearchResults
{
public LastfmArtistSearchResult results { get; set; }
}
#endregion
2013-03-05 17:48:17 +01:00
}