IF.Lastfm/IF.Lastfm.Core/Api/Auth.cs

50 lines
2.0 KiB
C#
Raw Normal View History

2013-06-08 18:49:21 +01:00
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
using IF.Lastfm.Core.Objects;
2013-06-08 18:49:21 +01:00
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using xBrainLab.Security.Cryptography;
namespace IF.Lastfm.Core.Api
{
public class Auth : IAuth
{
private const string ApiSignatureSeedFormat = "api_key{0}method{1}password{2}username{3}{4}";
private const string ApiAuthMethod = "auth.getMobileSession";
private readonly string _apiSecret;
public bool HasAuthenticated { get { return User != null; } }
public string ApiKey { get; private set; }
public UserSession User { get; private set; }
2013-06-08 18:49:21 +01:00
public Auth(string apikey, string secret)
{
ApiKey = apikey;
_apiSecret = secret;
2013-06-08 18:49:21 +01:00
}
public async Task GetSessionTokenAsync(string username, string password)
2013-06-08 18:49:21 +01:00
{
const string apiMethod = "auth.getMobileSession";
var apisigseed = string.Format(ApiSignatureSeedFormat, ApiKey, ApiAuthMethod, password, username, _apiSecret);
2013-06-08 18:49:21 +01:00
var apisig = MD5.GetHashString(apisigseed);
var postContent = LastFm.CreatePostBody(apiMethod, ApiKey, apisig, new Dictionary<string, string>
2013-06-08 18:49:21 +01:00
{
{"password", password},
{"username", username}
});
var httpClient = new HttpClient();
var response = await httpClient.PostAsync("https://ws.audioscrobbler.com/2.0/", postContent);
var json = await response.Content.ReadAsStringAsync();
var sessionObject = JsonConvert.DeserializeObject<JObject>(json).GetValue("session");
User = JsonConvert.DeserializeObject<UserSession>(sessionObject.ToString());
2013-06-08 18:49:21 +01:00
}
}
}