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

74 lines
2.4 KiB
C#
Raw Normal View History

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;
using System;
using System.Linq;
namespace MediaBrowser.Controller.Providers.Music
{
public static class LastfmHelper
{
2013-05-24 14:35:05 +00:00
public static string LocalArtistMetaFileName = "lastfmartist.json";
public static string LocalAlbumMetaFileName = "lastfmalbum.json";
public static void ProcessArtistData(BaseItem artist, LastfmArtist data)
{
2013-03-05 15:45:25 +00:00
var yearFormed = 0;
if (data.bio != null)
2013-03-05 15:45:25 +00:00
{
Int32.TryParse(data.bio.yearformed, out yearFormed);
2013-04-22 04:38:03 +00:00
artist.Overview = data.bio.content;
if (!string.IsNullOrEmpty(data.bio.placeformed))
{
artist.AddProductionLocation(data.bio.placeformed);
}
2013-03-05 15:45:25 +00:00
}
artist.PremiereDate = yearFormed > 0 ? new DateTime(yearFormed, 1, 1, 0, 0, 0, DateTimeKind.Utc) : (DateTime?)null;
artist.ProductionYear = yearFormed;
if (data.tags != null)
{
AddTags(artist, data.tags);
2013-03-05 16:48:17 +00:00
}
}
public static void ProcessArtistData(MusicArtist source, Artist target)
{
target.PremiereDate = source.PremiereDate;
target.ProductionYear = source.ProductionYear;
target.Tags = source.Tags.ToList();
target.Overview = source.Overview;
target.ProductionLocations = source.ProductionLocations.ToList();
2013-05-28 17:33:00 +00:00
target.Genres = source.Genres.ToList();
}
2013-03-05 16:48:17 +00: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 16:48:17 +00:00
DateTime.TryParse(data.releasedate, out release);
item.PremiereDate = release;
item.ProductionYear = release.Year;
2013-03-05 16:48:17 +00:00
if (data.toptags != null)
{
AddTags(item, data.toptags);
}
}
private static void AddTags(BaseItem item, LastfmTags tags)
2013-03-05 16:48:17 +00:00
{
var itemTags = (from tag in tags.tag where !string.IsNullOrEmpty(tag.name) select tag.name).ToList();
item.Tags = itemTags;
2013-03-05 16:48:17 +00:00
}
}
}