mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
137 lines
4.9 KiB
C#
137 lines
4.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Http;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using SpotifyAPI.Web.Enums;
|
|
using SpotifyAPI.Web.Models;
|
|
using Unosquare.Labs.EmbedIO;
|
|
using Unosquare.Labs.EmbedIO.Constants;
|
|
using Unosquare.Labs.EmbedIO.Modules;
|
|
|
|
namespace SpotifyAPI.Web.Auth
|
|
{
|
|
public class AuthorizationCodeAuth : SpotifyAuthServer<AuthorizationCode>
|
|
{
|
|
public string SecretId { get; set; }
|
|
|
|
public ProxyConfig ProxyConfig { get; set; }
|
|
|
|
public AuthorizationCodeAuth(string redirectUri, string serverUri, Scope scope = Scope.None, string state = "")
|
|
: base("code", "AuthorizationCodeAuth", redirectUri, serverUri, scope, state)
|
|
{
|
|
}
|
|
|
|
public AuthorizationCodeAuth(string clientId, string secretId, string redirectUri, string serverUri, Scope scope = Scope.None, string state = "")
|
|
: this(redirectUri, serverUri, scope, state)
|
|
{
|
|
ClientId = clientId;
|
|
SecretId = secretId;
|
|
}
|
|
|
|
private bool ShouldRegisterNewApp()
|
|
{
|
|
return string.IsNullOrEmpty(SecretId) || string.IsNullOrEmpty(ClientId);
|
|
}
|
|
|
|
public override string GetUri()
|
|
{
|
|
return ShouldRegisterNewApp() ? $"{RedirectUri}/start.html#{State}" : base.GetUri();
|
|
}
|
|
|
|
protected override void AdaptWebServer(WebServer webServer)
|
|
{
|
|
webServer.Module<WebApiModule>().RegisterController<AuthorizationCodeAuthController>();
|
|
}
|
|
|
|
private string GetAuthHeader() => $"Basic {Convert.ToBase64String(Encoding.UTF8.GetBytes(ClientId + ":" + SecretId))}";
|
|
|
|
public async Task<Token> RefreshToken(string refreshToken)
|
|
{
|
|
List<KeyValuePair<string, string>> args = new List<KeyValuePair<string, string>>
|
|
{
|
|
new KeyValuePair<string, string>("grant_type", "refresh_token"),
|
|
new KeyValuePair<string, string>("refresh_token", refreshToken)
|
|
};
|
|
|
|
return await GetToken(args);
|
|
}
|
|
|
|
public async Task<Token> ExchangeCode(string code)
|
|
{
|
|
List<KeyValuePair<string, string>> args = new List<KeyValuePair<string, string>>
|
|
{
|
|
new KeyValuePair<string, string>("grant_type", "authorization_code"),
|
|
new KeyValuePair<string, string>("code", code),
|
|
new KeyValuePair<string, string>("redirect_uri", RedirectUri)
|
|
};
|
|
|
|
return await GetToken(args);
|
|
}
|
|
|
|
private async Task<Token> GetToken(IEnumerable<KeyValuePair<string, string>> args)
|
|
{
|
|
HttpClientHandler handler = ProxyConfig.CreateClientHandler(ProxyConfig);
|
|
HttpClient client = new HttpClient(handler);
|
|
client.DefaultRequestHeaders.Add("Authorization", GetAuthHeader());
|
|
HttpContent content = new FormUrlEncodedContent(args);
|
|
|
|
HttpResponseMessage resp = await client.PostAsync("https://accounts.spotify.com/api/token", content);
|
|
string msg = await resp.Content.ReadAsStringAsync();
|
|
|
|
return JsonConvert.DeserializeObject<Token>(msg);
|
|
}
|
|
}
|
|
|
|
public class AuthorizationCode
|
|
{
|
|
public string Code { get; set; }
|
|
|
|
public string Error { get; set; }
|
|
}
|
|
|
|
internal class AuthorizationCodeAuthController : WebApiController
|
|
{
|
|
[WebApiHandler(HttpVerbs.Get, "/")]
|
|
public Task<bool> GetEmpty()
|
|
{
|
|
string state = Request.QueryString["state"];
|
|
AuthorizationCodeAuth.Instances.TryGetValue(state, out SpotifyAuthServer<AuthorizationCode> auth);
|
|
|
|
string code = null;
|
|
string error = Request.QueryString["error"];
|
|
if (error == null)
|
|
code = Request.QueryString["code"];
|
|
|
|
Task.Factory.StartNew(() => auth?.TriggerAuth(new AuthorizationCode
|
|
{
|
|
Code = code,
|
|
Error = error
|
|
}));
|
|
|
|
return HttpContext.HtmlResponseAsync("<html><script type=\"text/javascript\">window.close();</script>OK - This window can be closed now</html>");
|
|
}
|
|
|
|
[WebApiHandler(HttpVerbs.Post, "/")]
|
|
public async Task<bool> PostValues()
|
|
{
|
|
Dictionary<string, object> formParams = await HttpContext.RequestFormDataDictionaryAsync();
|
|
|
|
string state = (string) formParams["state"];
|
|
AuthorizationCodeAuth.Instances.TryGetValue(state, out SpotifyAuthServer<AuthorizationCode> authServer);
|
|
|
|
AuthorizationCodeAuth auth = (AuthorizationCodeAuth) authServer;
|
|
auth.ClientId = (string) formParams["clientId"];
|
|
auth.SecretId = (string) formParams["secretId"];
|
|
|
|
string uri = auth.GetUri();
|
|
return HttpContext.Redirect(uri, false);
|
|
}
|
|
|
|
public AuthorizationCodeAuthController(IHttpContext context) : base(context)
|
|
{
|
|
}
|
|
}
|
|
}
|