James Tombleson
799668a059
* Still working though it but looking good on releases * added the example discord message test * updated source repo to return an existing record before a new is added * updated the sources repo interface * updated new routes to check for existing records * starting to migrate the seed out of the sql migrations * A new seed script was made to reload the db from the api * Docker image works locally * Adding CI to build docker image * ... disabled swagger so I can test docker * Added more to the github job but its not finished. Isnt pulling sources yet. * cleaned up formatting * Controller updates to look for existing records when requesting a new one * null check cleanup * namespace fix
81 lines
2.2 KiB
C#
81 lines
2.2 KiB
C#
using Hangfire;
|
|
using Hangfire.MemoryStorage;
|
|
using Newsbot.Collector.Domain.Consts;
|
|
using Newsbot.Collector.Domain.Models;
|
|
using Newsbot.Collector.Services.Jobs;
|
|
using Serilog;
|
|
|
|
Log.Logger = new LoggerConfiguration()
|
|
.WriteTo.Console()
|
|
.CreateLogger();
|
|
|
|
Log.Information("Starting up");
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Define Logger
|
|
builder.Host.UseSerilog(); // <-- Add this line
|
|
|
|
// Build the config
|
|
var config = GetConfiguration();
|
|
builder.Configuration.AddConfiguration(config);
|
|
|
|
// Configure Hangfire
|
|
builder.Services.AddHangfire(f => f.UseMemoryStorage());
|
|
builder.Services.AddHangfireServer();
|
|
GlobalConfiguration.Configuration.UseSerilogLogProvider();
|
|
|
|
builder.Services.AddControllers();
|
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
builder.Services.AddSwaggerGen();
|
|
|
|
builder.Services.Configure<ConnectionStrings>(config.GetSection("ConnectionStrings"));
|
|
|
|
var app = builder.Build();
|
|
|
|
// Configure the HTTP request pipeline.
|
|
//if (app.Environment.IsDevelopment())
|
|
//{
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI();
|
|
//}
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseHangfireDashboard();
|
|
SetupRecurringJobs(config, Log.Logger);
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllers();
|
|
|
|
app.Run();
|
|
|
|
|
|
static IConfiguration GetConfiguration()
|
|
{
|
|
return new ConfigurationBuilder()
|
|
.AddJsonFile("appsettings.json", true)
|
|
.AddEnvironmentVariables()
|
|
.Build();
|
|
}
|
|
|
|
static void SetupRecurringJobs(IConfiguration configuration, Serilog.ILogger logger)
|
|
{
|
|
//RecurringJob.AddOrUpdate<HelloWorldJob>("Example", x => x.InitAndExecute(new HelloWorldJobOptions
|
|
//{
|
|
// Message = "Hello from the background!"
|
|
//}), "0/1 * * * *");
|
|
|
|
RecurringJob.AddOrUpdate<RssWatcherJob>("RSS", x => x.InitAndExecute(new RssWatcherJobOptions
|
|
{
|
|
ConnectionString = configuration.GetSection(ConfigConnectionStringConst.Database).Value ?? ""
|
|
}), "15 0-23 * * *");
|
|
|
|
RecurringJob.AddOrUpdate<DiscordNotificationJob>("Discord Alerts", x => x.InitAndExecute(new DiscordNotificationJobOptions
|
|
{
|
|
DatabaseConnectionString = configuration.GetSection(ConfigConnectionStringConst.Database).Value ?? ""
|
|
}), "5/10 * * * *");
|
|
}
|