jellyfin/MediaBrowser.Controller/Providers/Music/LastfmHelper.cs

76 lines
2.2 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Entities;
2013-04-24 16:05:47 +02:00
using MediaBrowser.Controller.Entities.Audio;
2013-03-05 17:48:17 +01:00
using MediaBrowser.Model.Entities;
using System;
namespace MediaBrowser.Controller.Providers.Music
{
public static class LastfmHelper
{
2013-04-22 06:38:03 +02:00
public static string LocalArtistMetaFileName = "mbartist.js";
public static string LocalAlbumMetaFileName = "mbalbum.js";
public static void ProcessArtistData(BaseItem artist, LastfmArtist data)
{
2013-03-05 16:45:25 +01:00
var yearFormed = 0;
if (data.bio != null)
2013-03-05 16:45:25 +01:00
{
Int32.TryParse(data.bio.yearformed, out yearFormed);
2013-04-22 06:38:03 +02:00
artist.Overview = data.bio.content;
if (!string.IsNullOrEmpty(data.bio.placeformed))
{
artist.AddProductionLocation(data.bio.placeformed);
}
2013-03-05 16:45:25 +01:00
}
artist.PremiereDate = yearFormed > 0 ? new DateTime(yearFormed, 1, 1, 0, 0, 0, DateTimeKind.Utc) : (DateTime?)null;
artist.ProductionYear = yearFormed;
if (data.tags != null)
{
2013-03-05 17:48:17 +01:00
AddGenres(artist, data.tags);
}
2013-04-24 16:05:47 +02:00
var entity = artist as Artist;
if (entity != null)
{
entity.IsOnTour = string.Equals(data.ontour, "1");
}
2013-03-05 17:48:17 +01:00
}
2013-03-05 17:48:17 +01:00
public static void ProcessAlbumData(BaseItem item, LastfmAlbum data)
{
if (!string.IsNullOrWhiteSpace(data.mbid)) item.SetProviderId(MetadataProviders.Musicbrainz, data.mbid);
var overview = data.wiki != null ? data.wiki.content : null;
item.Overview = overview;
DateTime release;
2013-03-05 17:48:17 +01:00
DateTime.TryParse(data.releasedate, out release);
item.PremiereDate = release;
item.ProductionYear = release.Year;
2013-03-05 17:48:17 +01:00
if (data.toptags != null)
{
AddGenres(item, data.toptags);
}
}
2013-03-05 17:48:17 +01:00
private static void AddGenres(BaseItem item, LastfmTags tags)
{
item.Genres.Clear();
2013-03-05 17:48:17 +01:00
foreach (var tag in tags.tag)
{
2013-04-22 06:38:03 +02:00
if (!string.IsNullOrEmpty(tag.name))
{
item.AddGenre(tag.name);
}
2013-03-05 17:48:17 +01:00
}
}
}
}