You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.7 KiB
116 lines
2.7 KiB
using API_Services;
|
|
using DbContextLib;
|
|
using DbDataManager;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.OpenApi.Models;
|
|
using Model;
|
|
using StubbedContextLib;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
// Add services to the container.
|
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|
|
|
|
|
|
|
builder.Services.AddControllers();
|
|
builder.Services.AddSwaggerGen();
|
|
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
|
|
builder.Services.AddDbContext<LibraryContext>(options =>
|
|
{
|
|
options.UseSqlite("Data Source=Entity_FrameWork.Article.db");
|
|
|
|
});
|
|
builder.Services.AddScoped<IDataManager, DbManager>();
|
|
|
|
// Add Authorization
|
|
builder.Services.AddDbContext<ApplicationDbContext>(
|
|
options => options.UseInMemoryDatabase("AppDb"));
|
|
builder.Services.AddAuthorization();
|
|
builder.Services.AddIdentityApiEndpoints<IdentityUser>()
|
|
.AddEntityFrameworkStores<ApplicationDbContext>();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
builder.Services.AddSwaggerGen(option =>
|
|
{
|
|
option.SwaggerDoc("v1", new OpenApiInfo { Title = "Demo API", Version = "v1" });
|
|
option.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme
|
|
{
|
|
In = ParameterLocation.Header,
|
|
Description = "Please enter a valid token",
|
|
Name = "Authorization",
|
|
Type = SecuritySchemeType.Http,
|
|
BearerFormat = "JWT",
|
|
Scheme = "Bearer"
|
|
});
|
|
option.AddSecurityRequirement(new OpenApiSecurityRequirement
|
|
{
|
|
{
|
|
new OpenApiSecurityScheme
|
|
{
|
|
Reference = new OpenApiReference
|
|
{
|
|
Type=ReferenceType.SecurityScheme,
|
|
Id="Bearer"
|
|
}
|
|
},
|
|
new string[]{}
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
var app = builder.Build();
|
|
|
|
app.MapIdentityApi<IdentityUser>();
|
|
|
|
app.MapSwagger().RequireAuthorization();
|
|
|
|
// Configure the HTTP request pipeline.
|
|
/*
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI();
|
|
}*/
|
|
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI();
|
|
|
|
app.UseHttpsRedirection();
|
|
app.UseAuthentication();
|
|
app.UseAuthorization();
|
|
app.MapControllers();
|
|
|
|
using var scoped = app.Services.CreateScope();
|
|
var libraryContext = scoped.ServiceProvider.GetService<LibraryContext>();
|
|
//libraryContext.Database.EnsureCreated();
|
|
libraryContext.Database.Migrate();
|
|
|
|
app.MapPost("/logout", async (SignInManager<IdentityUser> signInManager,
|
|
[FromBody]object empty) =>
|
|
{
|
|
if (empty != null)
|
|
{
|
|
await signInManager.SignOutAsync();
|
|
return Results.Ok();
|
|
}
|
|
return Results.Unauthorized();
|
|
})
|
|
.WithOpenApi()
|
|
.RequireAuthorization();
|
|
|
|
|
|
app.Run();
|
|
|
|
|
|
|