2021-07-19 01:15:57 +00:00
|
|
|
using BinaryDad.Coding.Hubs;
|
2021-07-19 00:56:02 +00:00
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
2021-07-23 00:54:41 +00:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2021-07-19 00:56:02 +00:00
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Hosting;
|
2024-01-18 00:41:19 +00:00
|
|
|
using StackExchange.Redis;
|
|
|
|
using System;
|
2024-01-18 00:47:11 +00:00
|
|
|
using System.Net;
|
2021-07-19 00:56:02 +00:00
|
|
|
|
|
|
|
namespace BinaryDad.Coding
|
|
|
|
{
|
|
|
|
public class Startup
|
|
|
|
{
|
|
|
|
public Startup(IConfiguration configuration)
|
|
|
|
{
|
|
|
|
Configuration = configuration;
|
|
|
|
}
|
|
|
|
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
|
{
|
2021-07-22 23:45:32 +00:00
|
|
|
services.AddMvc();
|
2024-01-18 01:02:43 +00:00
|
|
|
services.AddSignalR().AddStackExchangeRedis(options =>
|
2024-01-18 00:41:19 +00:00
|
|
|
{
|
|
|
|
options.ConnectionFactory = async writer =>
|
|
|
|
{
|
|
|
|
var config = new ConfigurationOptions
|
|
|
|
{
|
|
|
|
AbortOnConnectFail = false
|
|
|
|
};
|
2024-01-18 01:02:43 +00:00
|
|
|
config.EndPoints.Add("redis:6379");
|
2024-01-18 00:47:11 +00:00
|
|
|
config.SetDefaultPorts();
|
2024-01-18 00:41:19 +00:00
|
|
|
var connection = await ConnectionMultiplexer.ConnectAsync(config, writer);
|
|
|
|
connection.ConnectionFailed += (_, e) =>
|
|
|
|
{
|
|
|
|
Console.WriteLine("Connection to Redis failed.");
|
2024-01-18 00:49:18 +00:00
|
|
|
Console.WriteLine(e.ToString());
|
2024-01-18 00:41:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (!connection.IsConnected)
|
|
|
|
{
|
|
|
|
Console.WriteLine("Did not connect to Redis.");
|
|
|
|
}
|
2024-01-18 01:07:30 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
Console.WriteLine("Connected to Redis.");
|
|
|
|
}
|
2024-01-18 00:41:19 +00:00
|
|
|
|
|
|
|
return connection;
|
|
|
|
};
|
|
|
|
});
|
2021-07-23 00:54:41 +00:00
|
|
|
|
|
|
|
services.AddHttpsRedirection(options =>
|
|
|
|
{
|
|
|
|
options.RedirectStatusCode = StatusCodes.Status301MovedPermanently;
|
|
|
|
options.HttpsPort = 443;
|
|
|
|
});
|
2021-07-19 00:56:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
|
|
{
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
{
|
|
|
|
app.UseDeveloperExceptionPage();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
app.UseExceptionHandler("/Error");
|
|
|
|
}
|
|
|
|
|
|
|
|
app.UseStaticFiles();
|
|
|
|
|
|
|
|
app.UseRouting();
|
|
|
|
|
|
|
|
app.UseAuthorization();
|
|
|
|
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
|
|
{
|
2021-07-22 23:45:32 +00:00
|
|
|
endpoints.MapControllerRoute("default", "{action=Index}/{id?}", new { controller = "Home" });
|
2021-07-19 01:15:57 +00:00
|
|
|
endpoints.MapHub<CodeHub>("/codeHub");
|
2021-07-19 00:56:02 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|