-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
87 lines (71 loc) · 2.14 KB
/
Program.cs
File metadata and controls
87 lines (71 loc) · 2.14 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using BiometricAPI.Data;
using BiometricAPI.Services;
using Microsoft.EntityFrameworkCore;
using System.Text.Json.Serialization;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers()
.AddJsonOptions(options =>
{
options.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter());
options.JsonSerializerOptions.PropertyNamingPolicy = null;
});
// Add Entity Framework and SQLite
builder.Services.AddDbContext<BiometricDbContext>(options =>
options.UseSqlite(builder.Configuration.GetConnectionString("DefaultConnection")));
// Add services
builder.Services.AddSingleton<BiometricService>();
builder.Services.AddScoped<BiometricDataService>();
// Add Swagger/OpenAPI
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new Microsoft.OpenApi.Models.OpenApiInfo
{
Title = "Biometric API",
Version = "v1",
Description = "API para captura e gerenciamento de biometrias usando SDK iDBio"
});
});
// Add CORS
builder.Services.AddCors(options =>
{
options.AddPolicy("AllowAll", policy =>
{
policy.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader();
});
});
// Add logging
builder.Services.AddLogging(logging =>
{
logging.AddConsole();
logging.AddDebug();
});
var app = builder.Build();
// Configure the HTTP request pipeline.
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "Biometric API V1");
c.RoutePrefix = string.Empty; // Swagger UI na raiz
});
app.UseCors("AllowAll");
// Desabilitar HTTPS redirection em desenvolvimento
if (!app.Environment.IsDevelopment())
{
app.UseHttpsRedirection();
}
app.UseAuthorization();
app.MapControllers();
// Initialize database
using (var scope = app.Services.CreateScope())
{
var context = scope.ServiceProvider.GetRequiredService<BiometricDbContext>();
context.Database.EnsureCreated();
}
// Initialize biometric service
var biometricService = app.Services.GetRequiredService<BiometricService>();
biometricService.Initialize();
app.Run();