-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
69 lines (60 loc) · 2.31 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using Randobot.Models;
namespace Randobot;
internal class Program {
public static void Main (string[] args) {
try {
Log.Info("Beginning Setup Procedures");
var builder = WebApplication.CreateBuilder(args);
var appConfig = Config.GetConfig();
builder.Services.AddSingleton(new Bot(appConfig));
builder.Services.AddSingleton(new TwitchAuth(
appConfig.ClientConfig.ClientId,
appConfig.ClientConfig.ClientSecret,
appConfig.ClientConfig.RedirectBaseUrl
));
var app = builder.Build();
var bot = app.Services.GetService<Bot>();
var auth = app.Services.GetService<TwitchAuth>();
if (auth is null || bot is null) throw new Exception("Bot/TwitchAuth objects not injected properly");
auth.TwitchTokenSet += bot.SetClientCredentials;
bot.CheckCredValidity += auth.AttemptTokenRefresh;
#region endpoints
app.MapGet("/authorize", (TwitchAuth twitchAuth) => {
Log.Info("Requesting User authorization...");
return Results.Redirect(twitchAuth.GetAuthorizationUrl());
});
app.MapGet("/token", async (string? code, string? scope, string? state, string? error, Bot bot, TwitchAuth twitchAuth) => {
try {
if (state != twitchAuth.StateString) {
Log.Warn("State string did not match, possible request forgery");
return Results.BadRequest();
}
if (error != null) {
Log.Warn("Could not authorize");
Log.Warn(error);
return Results.Unauthorized();
}
if (code == null) {
Log.Warn("Did not recieve a code from response");
return Results.BadRequest();
}
Log.Info("User authorized token for Bot Client");
await twitchAuth.GetToken(code);
Log.Info("User Auth Token Generated");
return Results.Content("Success: You may now close this window");
} catch (Exception ex) {
Log.Error(ex.Message);
return Results.StatusCode(500);
}
});
#endregion
app.Urls.Add($"http://localhost:{appConfig.ClientConfig.LocalAppPort}");
app.Run();
} catch (Exception ex) {
Log.Fatal(ex.Message);
Log.Fatal("Press any key to exit...");
Console.ReadKey();
Environment.Exit(1);
}
}
}