2013-04-10 15:56:36 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-04-24 14:05:47 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2013-03-05 16:48:17 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-03-12 22:49:45 +00:00
|
|
|
|
using System;
|
2013-05-17 15:22:08 +00:00
|
|
|
|
using System.Linq;
|
2013-03-04 20:03:36 +00:00
|
|
|
|
|
2013-06-09 16:47:28 +00:00
|
|
|
|
namespace MediaBrowser.Providers.Music
|
2013-03-04 20:03:36 +00:00
|
|
|
|
{
|
|
|
|
|
public static class LastfmHelper
|
|
|
|
|
{
|
2013-12-05 16:50:21 +00:00
|
|
|
|
public static void ProcessArtistData(MusicArtist artist, LastfmArtist data)
|
2013-03-04 20:03:36 +00:00
|
|
|
|
{
|
2013-03-05 15:45:25 +00:00
|
|
|
|
var yearFormed = 0;
|
2013-04-10 15:56:36 +00:00
|
|
|
|
|
|
|
|
|
if (data.bio != null)
|
2013-03-05 15:45:25 +00:00
|
|
|
|
{
|
2013-04-10 15:56:36 +00:00
|
|
|
|
Int32.TryParse(data.bio.yearformed, out yearFormed);
|
2013-06-15 22:19:47 +00:00
|
|
|
|
if (!artist.LockedFields.Contains(MetadataFields.Overview))
|
|
|
|
|
{
|
|
|
|
|
artist.Overview = data.bio.content;
|
|
|
|
|
}
|
|
|
|
|
if (!string.IsNullOrEmpty(data.bio.placeformed) && !artist.LockedFields.Contains(MetadataFields.ProductionLocations))
|
2013-04-22 04:38:03 +00:00
|
|
|
|
{
|
|
|
|
|
artist.AddProductionLocation(data.bio.placeformed);
|
|
|
|
|
}
|
2013-03-05 15:45:25 +00:00
|
|
|
|
}
|
2013-04-10 15:56:36 +00:00
|
|
|
|
|
2013-11-08 21:22:02 +00:00
|
|
|
|
if (yearFormed > 0)
|
|
|
|
|
{
|
|
|
|
|
artist.PremiereDate = new DateTime(yearFormed, 1, 1, 0, 0, 0, DateTimeKind.Utc);
|
|
|
|
|
|
|
|
|
|
artist.ProductionYear = yearFormed;
|
|
|
|
|
}
|
2013-09-06 15:23:20 +00:00
|
|
|
|
|
2013-12-05 16:50:21 +00:00
|
|
|
|
string imageSize;
|
|
|
|
|
artist.LastFmImageUrl = GetImageUrl(data, out imageSize);
|
|
|
|
|
artist.LastFmImageSize = imageSize;
|
2013-09-06 15:23:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-06 16:29:20 +00:00
|
|
|
|
private static string GetImageUrl(IHasLastFmImages data, out string size)
|
2013-09-06 15:23:20 +00:00
|
|
|
|
{
|
2013-11-06 16:29:20 +00:00
|
|
|
|
size = null;
|
|
|
|
|
|
2013-09-06 15:23:20 +00:00
|
|
|
|
if (data.image == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-06 17:26:56 +00:00
|
|
|
|
var validImages = data.image
|
2013-09-06 15:38:22 +00:00
|
|
|
|
.Where(i => !string.IsNullOrWhiteSpace(i.url))
|
2013-09-06 17:26:56 +00:00
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
var img = validImages
|
2013-09-06 15:38:22 +00:00
|
|
|
|
.FirstOrDefault(i => string.Equals(i.size, "mega", StringComparison.OrdinalIgnoreCase)) ??
|
|
|
|
|
data.image.FirstOrDefault(i => string.Equals(i.size, "extralarge", StringComparison.OrdinalIgnoreCase)) ??
|
2013-11-06 16:29:20 +00:00
|
|
|
|
data.image.FirstOrDefault(i => string.Equals(i.size, "large", StringComparison.OrdinalIgnoreCase)) ??
|
|
|
|
|
data.image.FirstOrDefault(i => string.Equals(i.size, "medium", StringComparison.OrdinalIgnoreCase)) ??
|
2013-09-06 15:23:20 +00:00
|
|
|
|
data.image.FirstOrDefault();
|
|
|
|
|
|
|
|
|
|
if (img != null)
|
|
|
|
|
{
|
2013-11-06 16:29:20 +00:00
|
|
|
|
size = img.size;
|
2013-09-06 15:23:20 +00:00
|
|
|
|
return img.url;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
2013-03-05 16:48:17 +00:00
|
|
|
|
}
|
2013-03-04 20:03:36 +00:00
|
|
|
|
|
2013-03-05 16:48:17 +00:00
|
|
|
|
public static void ProcessAlbumData(BaseItem item, LastfmAlbum data)
|
|
|
|
|
{
|
2013-03-12 04:09:31 +00:00
|
|
|
|
var overview = data.wiki != null ? data.wiki.content : null;
|
|
|
|
|
|
2013-06-15 22:19:47 +00:00
|
|
|
|
if (!item.LockedFields.Contains(MetadataFields.Overview))
|
|
|
|
|
{
|
|
|
|
|
item.Overview = overview;
|
|
|
|
|
}
|
2013-09-02 01:37:44 +00:00
|
|
|
|
|
2013-11-15 15:10:56 +00:00
|
|
|
|
// Only grab the date here if the album doesn't already have one, since id3 tags are preferred
|
2013-12-18 05:44:46 +00:00
|
|
|
|
DateTime release;
|
2013-11-15 15:10:56 +00:00
|
|
|
|
|
2013-12-18 05:44:46 +00:00
|
|
|
|
if (DateTime.TryParse(data.releasedate, out release))
|
|
|
|
|
{
|
|
|
|
|
// Lastfm sends back null as sometimes 1901, other times 0
|
|
|
|
|
if (release.Year > 1901)
|
2013-11-08 21:22:02 +00:00
|
|
|
|
{
|
2013-12-18 05:44:46 +00:00
|
|
|
|
if (!item.PremiereDate.HasValue)
|
2013-11-15 15:10:56 +00:00
|
|
|
|
{
|
|
|
|
|
item.PremiereDate = release;
|
2013-12-18 05:44:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!item.ProductionYear.HasValue)
|
|
|
|
|
{
|
2013-11-15 15:10:56 +00:00
|
|
|
|
item.ProductionYear = release.Year;
|
|
|
|
|
}
|
2013-11-08 21:22:02 +00:00
|
|
|
|
}
|
2013-09-02 01:37:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-06 15:38:22 +00:00
|
|
|
|
var album = (MusicAlbum)item;
|
2013-11-06 16:29:20 +00:00
|
|
|
|
|
|
|
|
|
string imageSize;
|
|
|
|
|
|
|
|
|
|
album.LastFmImageUrl = GetImageUrl(data, out imageSize);
|
|
|
|
|
album.LastFmImageSize = imageSize;
|
2013-03-04 20:03:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|