IF.Lastfm/IF.Lastfm.Core/Api/Commands/AlbumApi/GetAlbumInfoCommand.cs
2013-09-01 20:52:44 +01:00

56 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
using IF.Lastfm.Core.Api.Enums;
using IF.Lastfm.Core.Api.Helpers;
using IF.Lastfm.Core.Objects;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace IF.Lastfm.Core.Api.Commands.AlbumApi
{
internal class GetAlbumInfoCommand : GetAsyncCommandBase<LastResponse<Album>>
{
public string ArtistName { get; private set; }
public string AlbumName { get; private set; }
public bool Autocorrect { get; set; }
public GetAlbumInfoCommand(IAuth auth, string artistname, string albumname) : base(auth)
{
Method = "album.getInfo";
ArtistName = artistname;
AlbumName = albumname;
}
public override void SetParameters()
{
Parameters.Add("artist", ArtistName);
Parameters.Add("album", AlbumName);
Parameters.Add("autocorrect", Convert.ToInt32(Autocorrect).ToString());
base.DisableCaching();
}
public async override Task<LastResponse<Album>> HandleResponse(HttpResponseMessage response)
{
string json = await response.Content.ReadAsStringAsync();
LastFmApiError error;
if (LastFm.IsResponseValid(json, out error) && response.IsSuccessStatusCode)
{
var jtoken = JsonConvert.DeserializeObject<JToken>(json);
var album = Album.ParseJToken(jtoken.SelectToken("album"));
return LastResponse<Album>.CreateSuccessResponse(album);
}
else
{
return LastResponse<Album>.CreateErrorResponse(error);
}
}
}
}