jellyfin/MediaBrowser.Providers/Music/LastfmArtistProvider.cs

161 lines
5.4 KiB
C#
Raw Normal View History

2014-05-27 16:35:29 +02:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.Net;
2013-03-04 07:06:38 +01:00
using MediaBrowser.Controller.Configuration;
2013-03-03 21:55:30 +01:00
using MediaBrowser.Controller.Entities;
2013-03-04 02:46:06 +01:00
using MediaBrowser.Controller.Entities.Audio;
2013-06-09 18:47:28 +02:00
using MediaBrowser.Controller.Providers;
2013-05-06 20:34:42 +02:00
using MediaBrowser.Model.Entities;
2013-03-03 21:55:30 +01:00
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Providers;
2013-03-03 21:55:30 +01:00
using MediaBrowser.Model.Serialization;
2013-05-25 19:55:32 +02:00
using System;
using System.Collections.Generic;
using System.IO;
2013-05-25 19:55:32 +02:00
using System.Net;
using System.Threading;
using System.Threading.Tasks;
2013-03-03 21:55:30 +01:00
2013-06-09 18:47:28 +02:00
namespace MediaBrowser.Providers.Music
2013-03-03 21:55:30 +01:00
{
2014-02-07 04:10:13 +01:00
public class LastfmArtistProvider : IRemoteMetadataProvider<MusicArtist, ArtistInfo>, IHasOrder
2013-03-03 21:55:30 +01:00
{
2014-01-31 05:50:09 +01:00
private readonly IJsonSerializer _json;
private readonly IHttpClient _httpClient;
2013-05-06 20:34:42 +02:00
2014-01-31 05:50:09 +01:00
internal static readonly SemaphoreSlim LastfmResourcePool = new SemaphoreSlim(4, 4);
internal const string RootUrl = @"http://ws.audioscrobbler.com/2.0/?";
internal static string ApiKey = "7b76553c3eb1d341d642755aecc40a33";
private readonly IServerConfigurationManager _config;
2014-01-31 20:55:21 +01:00
private readonly ILogger _logger;
2014-01-31 05:50:09 +01:00
2014-01-31 20:55:21 +01:00
public LastfmArtistProvider(IHttpClient httpClient, IJsonSerializer json, IServerConfigurationManager config, ILogger logger)
2013-03-03 21:55:30 +01:00
{
2014-01-31 05:50:09 +01:00
_httpClient = httpClient;
_json = json;
2014-01-31 20:55:21 +01:00
_config = config;
_logger = logger;
2013-03-03 21:55:30 +01:00
}
public async Task<IEnumerable<RemoteSearchResult>> GetSearchResults(ArtistInfo searchInfo, CancellationToken cancellationToken)
{
return new List<RemoteSearchResult>();
}
2014-02-07 04:10:13 +01:00
public async Task<MetadataResult<MusicArtist>> GetMetadata(ArtistInfo id, CancellationToken cancellationToken)
2013-06-23 20:55:30 +02:00
{
2014-01-31 05:50:09 +01:00
var result = new MetadataResult<MusicArtist>();
2014-02-09 08:27:44 +01:00
var musicBrainzId = id.GetMusicBrainzArtistId();
2014-01-31 05:50:09 +01:00
if (!String.IsNullOrWhiteSpace(musicBrainzId))
2013-06-23 20:55:30 +02:00
{
2014-01-31 05:50:09 +01:00
cancellationToken.ThrowIfCancellationRequested();
result.Item = new MusicArtist();
result.HasMetadata = true;
await FetchLastfmData(result.Item, musicBrainzId, cancellationToken).ConfigureAwait(false);
2013-06-23 20:55:30 +02:00
}
2014-01-31 05:50:09 +01:00
return result;
2013-06-23 20:55:30 +02:00
}
2014-04-10 17:06:54 +02:00
protected async Task FetchLastfmData(MusicArtist item, string musicBrainzId, CancellationToken cancellationToken)
2013-08-13 04:06:51 +02:00
{
2014-01-31 05:50:09 +01:00
// Get artist info with provided id
var url = RootUrl + String.Format("method=artist.getInfo&mbid={0}&api_key={1}&format=json", UrlEncode(musicBrainzId), ApiKey);
LastfmGetArtistResult result;
using (var json = await _httpClient.Get(new HttpRequestOptions
{
Url = url,
ResourcePool = LastfmResourcePool,
CancellationToken = cancellationToken,
EnableHttpCompression = false
}).ConfigureAwait(false))
{
using (var reader = new StreamReader(json))
{
var jsonText = await reader.ReadToEndAsync().ConfigureAwait(false);
// Fix their bad json
jsonText = jsonText.Replace("\"#text\"", "\"url\"");
result = _json.DeserializeFromString<LastfmGetArtistResult>(jsonText);
}
}
if (result != null && result.artist != null)
2013-08-13 04:06:51 +02:00
{
2014-01-31 05:50:09 +01:00
ProcessArtistData(item, result.artist, musicBrainzId);
2013-08-13 04:06:51 +02:00
}
}
2014-01-31 05:50:09 +01:00
private void ProcessArtistData(MusicArtist artist, LastfmArtist data, string musicBrainzId)
2013-08-07 19:11:02 +02:00
{
2014-01-31 05:50:09 +01:00
var yearFormed = 0;
2013-08-07 19:11:02 +02:00
2014-01-31 05:50:09 +01:00
if (data.bio != null)
{
Int32.TryParse(data.bio.yearformed, out yearFormed);
if (!artist.LockedFields.Contains(MetadataFields.Overview))
{
2014-05-27 16:35:29 +02:00
artist.Overview = (data.bio.content ?? string.Empty).StripHtml();
2014-01-31 05:50:09 +01:00
}
if (!string.IsNullOrEmpty(data.bio.placeformed) && !artist.LockedFields.Contains(MetadataFields.ProductionLocations))
{
artist.AddProductionLocation(data.bio.placeformed);
}
}
2014-01-31 05:50:09 +01:00
if (yearFormed > 0)
{
artist.PremiereDate = new DateTime(yearFormed, 1, 1, 0, 0, 0, DateTimeKind.Utc);
artist.ProductionYear = yearFormed;
}
string imageSize;
var url = LastfmHelper.GetImageUrl(data, out imageSize);
2014-02-09 22:11:11 +01:00
if (!string.IsNullOrEmpty(musicBrainzId) && !string.IsNullOrEmpty(url))
{
LastfmHelper.SaveImageInfo(_config.ApplicationPaths, _logger, musicBrainzId, url, imageSize);
}
2014-01-31 05:50:09 +01:00
}
2013-05-06 19:28:29 +02:00
2013-05-25 19:55:32 +02:00
/// <summary>
2014-01-31 05:50:09 +01:00
/// Encodes an URL.
2013-05-25 19:55:32 +02:00
/// </summary>
2014-01-31 05:50:09 +01:00
/// <param name="name">The name.</param>
/// <returns>System.String.</returns>
private string UrlEncode(string name)
2013-03-04 02:46:06 +01:00
{
2014-01-31 05:50:09 +01:00
return WebUtility.UrlEncode(name);
2013-03-03 21:55:30 +01:00
}
2014-01-31 05:50:09 +01:00
public string Name
{
2014-01-31 05:50:09 +01:00
get { return "last.fm"; }
}
public int Order
{
2014-02-09 08:27:44 +01:00
get
{
// After fanart & audiodb
return 2;
}
}
public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
2013-03-03 21:55:30 +01:00
}
}