b1ed1cb201
Removes the spurious Api segment to match the pattern used by all other models projects: CvMatcher.Models.*, Rag.Models.*, PageFetcher.Models.*. Updated all consumers: email-api, api, cv-search-job. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
130 lines
4.8 KiB
C#
130 lines
4.8 KiB
C#
using System.Reflection;
|
|
using CvMatcher.Models.Settings;
|
|
using CvSearch.Data;
|
|
using CvSearchJob.Clients;
|
|
using CvSearchJob.Services;
|
|
using Email.Data;
|
|
using Email.Data.Repositories;
|
|
using Email.Data.Repositories.Contracts;
|
|
using Email.Data.Services;
|
|
using Email.Models.Clients;
|
|
using CvSearchJob.Tasks;
|
|
using JobScheduler.Scheduling;
|
|
using JobScheduler.Tasks;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using PageFetcher.Models;
|
|
using Refit;
|
|
using Serilog;
|
|
using Common.Settings;
|
|
using StartupHelpers;
|
|
|
|
const string ServiceName = "cv-search-job";
|
|
|
|
StartupExtensions.LoadDotEnvFile();
|
|
var appVersion = StartupExtensions.GetApplicationVersion(Assembly.GetExecutingAssembly());
|
|
|
|
try
|
|
{
|
|
var builder = Host.CreateApplicationBuilder(args);
|
|
|
|
builder.ConfigureJsonSerilog(ServiceName, appVersion);
|
|
Log.Information("Starting {Service} version {AppVersion}", ServiceName, appVersion);
|
|
|
|
builder.Services.Configure<JobSearchSettings>(builder.Configuration.GetSection("JobSearch"));
|
|
builder.Services.Configure<DatabaseSettings>(builder.Configuration.GetSection("Database"));
|
|
|
|
builder.Services.AddDbContext<CvSearchDbContext>(options =>
|
|
{
|
|
var connectionString = builder.Services.GetConfiguredDbConnectionString(builder.Configuration);
|
|
options.UseSqlServer(connectionString, sql =>
|
|
{
|
|
sql.MigrationsAssembly("cv-search-data");
|
|
sql.MigrationsHistoryTable(CvSearchDbContext.MigrationTableName, CvSearchDbContext.SchemaName);
|
|
});
|
|
});
|
|
|
|
builder.Services.AddRefitClient<ICvMatcherInternalApi>()
|
|
.ConfigureHttpClient((sp, client) =>
|
|
{
|
|
var config = sp.GetRequiredService<Microsoft.Extensions.Configuration.IConfiguration>();
|
|
var baseUrl = config["CvMatcherApi:BaseUrl"] ?? string.Empty;
|
|
if (!string.IsNullOrWhiteSpace(baseUrl))
|
|
client.BaseAddress = new Uri(baseUrl.TrimEnd('/') + "/");
|
|
var key = config["CvMatcherApi:InternalApiKey"];
|
|
if (!string.IsNullOrWhiteSpace(key))
|
|
client.DefaultRequestHeaders.Add("X-Internal-Api-Key", key);
|
|
});
|
|
|
|
builder.Services.AddDbContext<EmailDbContext>(options =>
|
|
{
|
|
var connectionString = builder.Services.GetConfiguredDbConnectionString(builder.Configuration);
|
|
options.UseSqlServer(connectionString, sql =>
|
|
{
|
|
sql.MigrationsHistoryTable(EmailDbContext.MigrationTableName, EmailDbContext.SchemaName);
|
|
sql.MigrationsAssembly("email-data");
|
|
});
|
|
});
|
|
|
|
builder.Services.AddScoped<IEmailTemplateRepository, EfEmailTemplateRepository>();
|
|
builder.Services.AddSingleton<IEmailTemplateService, EmailTemplateService>();
|
|
|
|
builder.Services.AddRefitClient<IEmailApiClient>()
|
|
.ConfigureHttpClient((sp, client) =>
|
|
{
|
|
var config = sp.GetRequiredService<Microsoft.Extensions.Configuration.IConfiguration>();
|
|
var baseUrl = config["EmailApi:BaseUrl"] ?? string.Empty;
|
|
if (!string.IsNullOrWhiteSpace(baseUrl))
|
|
client.BaseAddress = new Uri(baseUrl.TrimEnd('/') + "/");
|
|
var key = config["EmailApi:InternalApiKey"];
|
|
if (!string.IsNullOrWhiteSpace(key))
|
|
client.DefaultRequestHeaders.Add("X-Internal-Api-Key", key);
|
|
});
|
|
|
|
builder.Services.AddRefitClient<IPageFetcherApiClient>()
|
|
.ConfigureHttpClient((sp, client) =>
|
|
{
|
|
var config = sp.GetRequiredService<Microsoft.Extensions.Configuration.IConfiguration>();
|
|
var baseUrl = config["PageFetcherApi:BaseUrl"] ?? string.Empty;
|
|
if (!string.IsNullOrWhiteSpace(baseUrl))
|
|
client.BaseAddress = new Uri(baseUrl.TrimEnd('/') + "/");
|
|
var key = config["PageFetcherApi:InternalApiKey"];
|
|
if (!string.IsNullOrWhiteSpace(key))
|
|
client.DefaultRequestHeaders.Add("X-Internal-Api-Key", key);
|
|
});
|
|
|
|
builder.Services.AddSingleton<HtmlJobSearcher>();
|
|
builder.Services.AddSingleton<CvSearchEmailSender>();
|
|
|
|
builder.Services.AddSingleton<CvSearchJobTask>();
|
|
builder.Services.AddSingleton<IEnumerable<IJobTask>>(sp => new IJobTask[]
|
|
{
|
|
sp.GetRequiredService<CvSearchJobTask>(),
|
|
});
|
|
|
|
builder.Services.AddHostedService<JobSchedulerHostedService>();
|
|
|
|
var host = builder.Build();
|
|
|
|
host.LogHostStartupDiagnostics(ServiceName);
|
|
|
|
Log.Information("Running EF Core migrations");
|
|
using (var scope = host.Services.CreateScope())
|
|
{
|
|
var db = scope.ServiceProvider.GetRequiredService<CvSearchDbContext>();
|
|
db.Database.Migrate();
|
|
}
|
|
|
|
Log.Information("{Service} startup complete. Background scheduler is running.", ServiceName);
|
|
await host.RunAsync();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Fatal(ex, "{Service} terminated unexpectedly", ServiceName);
|
|
}
|
|
finally
|
|
{
|
|
Log.CloseAndFlush();
|
|
}
|