2023-09-22 10:52:17 -05:00
|
|
|
using DamageAssesment.Api.DocuLinks.Db;
|
|
|
|
using DamageAssesment.Api.DocuLinks.Interfaces;
|
|
|
|
using DamageAssesment.Api.DocuLinks.Providers;
|
2023-08-31 18:00:51 -05:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
2023-09-13 15:49:59 -05:00
|
|
|
using System.Reflection;
|
2023-08-31 18:00:51 -05:00
|
|
|
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
|
2023-11-10 14:09:43 -05:00
|
|
|
// CORS setup to allow requests from any origin.
|
|
|
|
builder.Services.AddCors(p => p.AddPolicy("DamageAppCorsPolicy", build => {
|
|
|
|
build.WithOrigins("*").AllowAnyMethod().AllowAnyHeader().AllowAnyOrigin();
|
|
|
|
}));
|
|
|
|
|
2023-08-31 18:00:51 -05:00
|
|
|
// Add services to the container.
|
|
|
|
|
|
|
|
builder.Services.AddControllers();
|
2023-09-13 15:49:59 -05:00
|
|
|
builder.Services.AddSwaggerGen(c =>
|
|
|
|
{
|
|
|
|
// Include XML comments from your assembly
|
|
|
|
var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
|
|
|
var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile);
|
|
|
|
c.IncludeXmlComments(xmlPath);
|
|
|
|
});
|
2023-08-31 18:00:51 -05:00
|
|
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
|
|
builder.Services.AddSwaggerGen();
|
2023-09-22 10:52:17 -05:00
|
|
|
builder.Services.AddScoped<IDoculinkProvider, DoculinkProvider>();
|
2023-08-31 18:00:51 -05:00
|
|
|
builder.Services.AddScoped<IUploadService, UploadService>();
|
|
|
|
builder.Services.AddScoped<IAzureBlobService, AzureBlobService>();
|
|
|
|
builder.Services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies()); //4/30
|
2023-09-22 10:52:17 -05:00
|
|
|
builder.Services.AddDbContext<DoculinkDbContext>(option =>
|
2023-08-31 18:00:51 -05:00
|
|
|
{
|
2023-09-26 11:40:55 -05:00
|
|
|
option.UseSqlServer("DoculinConnection");
|
2023-08-31 18:00:51 -05:00
|
|
|
});
|
|
|
|
var app = builder.Build();
|
|
|
|
|
|
|
|
// Configure the HTTP request pipeline.
|
|
|
|
if (app.Environment.IsDevelopment())
|
|
|
|
{
|
|
|
|
app.UseSwagger();
|
|
|
|
app.UseSwaggerUI();
|
|
|
|
}
|
|
|
|
|
2023-11-10 14:09:43 -05:00
|
|
|
|
|
|
|
// Enable CORS, authentication, and authorization middleware.
|
|
|
|
app.UseCors("DamageAppCorsPolicy");
|
2023-08-31 18:00:51 -05:00
|
|
|
app.UseAuthorization();
|
|
|
|
|
|
|
|
app.MapControllers();
|
|
|
|
|
|
|
|
app.Run();
|