IF.Lastfm/IF.Lastfm.Core/Api/Commands/PostAsyncCommandBase.cs

40 lines
1.0 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
namespace IF.Lastfm.Core.Api.Commands
{
internal abstract class PostAsyncCommandBase<T> : LastAsyncCommandBase<T>
{
protected PostAsyncCommandBase(IAuth auth)
{
Auth = auth;
2013-07-23 22:46:29 +01:00
}
protected override Uri BuildRequestUrl()
2013-07-23 22:46:29 +01:00
{
return new Uri(LastFm.ApiRoot, UriKind.Absolute);
}
public override async Task<T> ExecuteAsync()
{
SetParameters();
2013-07-23 22:46:29 +01:00
Url = BuildRequestUrl();
Parameters.Add("sk", Auth.User.Token);
var apisig = Auth.GenerateMethodSignature(Method, Parameters);
var postContent = LastFm.CreatePostBody(Method,
Auth.ApiKey,
apisig,
Parameters);
var httpClient = new HttpClient();
var response = await httpClient.PostAsync(Url, postContent);
return await HandleResponse(response);
}
}
}