You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Providers.Music
|
|
{
|
|
public static class LastfmHelper
|
|
{
|
|
public static string LocalArtistMetaFileName = "MBArtist.json";
|
|
|
|
public static void ProcessArtistData(BaseItem artist, LastfmArtist data)
|
|
{
|
|
artist.Overview = data.bio != null ? data.bio.content : null;
|
|
var yearFormed = 0;
|
|
try
|
|
{
|
|
yearFormed = Convert.ToInt32(data.bio.yearformed);
|
|
}
|
|
catch (FormatException)
|
|
{
|
|
}
|
|
catch (NullReferenceException)
|
|
{
|
|
}
|
|
catch (OverflowException)
|
|
{
|
|
}
|
|
artist.PremiereDate = new DateTime(yearFormed, 1,1);
|
|
if (data.tags != null)
|
|
{
|
|
foreach (var tag in data.tags.tag)
|
|
{
|
|
artist.AddGenre(tag.name);
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|