mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
110 lines
3.4 KiB
C#
110 lines
3.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using SpotifyAPI.Web;
|
|
using SpotifyAPI.Web.Auth;
|
|
using static SpotifyAPI.Web.Scopes;
|
|
|
|
namespace Example.CLI.PersistentConfig
|
|
{
|
|
/// <summary>
|
|
/// This is a basic example how to get user access using the Auth package and a CLI Program
|
|
/// Your spotify app needs to have http://localhost:5543 as redirect uri whitelisted
|
|
/// </summary>
|
|
public class Program
|
|
{
|
|
private const string CredentialsPath = "credentials.json";
|
|
private static readonly string? clientId = Environment.GetEnvironmentVariable("SPOTIFY_CLIENT_ID");
|
|
private static readonly EmbedIOAuthServer _server = new(new Uri("http://localhost:5543/callback"), 5543);
|
|
|
|
private static void Exiting()
|
|
{
|
|
Console.CursorVisible = true;
|
|
}
|
|
|
|
public static async Task<int> Main()
|
|
{
|
|
// This is a bug in the SWAN Logging library, need this hack to bring back the cursor
|
|
AppDomain.CurrentDomain.ProcessExit += (sender, e) => Exiting();
|
|
|
|
if (string.IsNullOrEmpty(clientId))
|
|
{
|
|
throw new NullReferenceException(
|
|
"Please set SPOTIFY_CLIENT_ID via environment variables before starting the program"
|
|
);
|
|
}
|
|
|
|
if (File.Exists(CredentialsPath))
|
|
{
|
|
await Start();
|
|
}
|
|
else
|
|
{
|
|
await StartAuthentication();
|
|
}
|
|
|
|
_ = Console.ReadKey();
|
|
return 0;
|
|
}
|
|
|
|
private static async Task Start()
|
|
{
|
|
var json = await File.ReadAllTextAsync(CredentialsPath);
|
|
var token = JsonConvert.DeserializeObject<PKCETokenResponse>(json);
|
|
|
|
var authenticator = new PKCEAuthenticator(clientId!, token!);
|
|
authenticator.TokenRefreshed += (sender, token) => File.WriteAllText(CredentialsPath, JsonConvert.SerializeObject(token));
|
|
|
|
var config = SpotifyClientConfig.CreateDefault()
|
|
.WithAuthenticator(authenticator);
|
|
|
|
var spotify = new SpotifyClient(config);
|
|
|
|
var me = await spotify.UserProfile.Current();
|
|
Console.WriteLine($"Welcome {me.DisplayName} ({me.Id}), you're authenticated!");
|
|
|
|
var playlists = await spotify.PaginateAll(await spotify.Playlists.CurrentUsers().ConfigureAwait(false));
|
|
Console.WriteLine($"Total Playlists in your Account: {playlists.Count}");
|
|
|
|
_server.Dispose();
|
|
Environment.Exit(0);
|
|
}
|
|
|
|
private static async Task StartAuthentication()
|
|
{
|
|
var (verifier, challenge) = PKCEUtil.GenerateCodes();
|
|
|
|
await _server.Start();
|
|
_server.AuthorizationCodeReceived += async (sender, response) =>
|
|
{
|
|
await _server.Stop();
|
|
var token = await new OAuthClient().RequestToken(
|
|
new PKCETokenRequest(clientId!, response.Code, _server.BaseUri, verifier)
|
|
);
|
|
|
|
await File.WriteAllTextAsync(CredentialsPath, JsonConvert.SerializeObject(token));
|
|
await Start();
|
|
};
|
|
|
|
var request = new LoginRequest(_server.BaseUri, clientId!, LoginRequest.ResponseType.Code)
|
|
{
|
|
CodeChallenge = challenge,
|
|
CodeChallengeMethod = "S256",
|
|
Scope = new List<string> { UserReadEmail, UserReadPrivate, PlaylistReadPrivate, PlaylistReadCollaborative }
|
|
};
|
|
|
|
var uri = request.ToUri();
|
|
try
|
|
{
|
|
BrowserUtil.Open(uri);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
Console.WriteLine("Unable to open URL, manually open: {0}", uri);
|
|
}
|
|
}
|
|
}
|
|
}
|