using System.Dynamic; using System.Text; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Identity; using Microsoft.EntityFrameworkCore; using Microsoft.IdentityModel.Tokens; using Microsoft.OpenApi.Models; using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using Server.Configurations; using Server.Constants; using Server.Data; using Server.Helpers; using Server.Models; using Server.Services; using SharedModels.DataTransferObjects; var builder = WebApplication.CreateBuilder(args); var services = builder.Services; var configuration = builder.Configuration; // Add services to the container. services.AddControllers().AddNewtonsoftJson(options => { options.SerializerSettings.Formatting = Formatting.Indented; options.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver(); options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Error; options.SerializerSettings.DateFormatHandling = DateFormatHandling.IsoDateFormat; }); services.AddHttpContextAccessor(); // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle services.AddEndpointsApiExplorer(); services.AddSwaggerGen(options => { options.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme { Scheme = "Bearer", BearerFormat = "JWT", In = ParameterLocation.Header, Name = "Authorization", Description = "Bearer Authentication with JWT Token", Type = SecuritySchemeType.Http }); options.AddSecurityRequirement(new OpenApiSecurityRequirement { { new OpenApiSecurityScheme { Reference = new OpenApiReference { Id = "Bearer", Type = ReferenceType.SecurityScheme } }, new List() } }); }); services.AddCors(options => { options.AddDefaultPolicy(policy => policy.AllowAnyOrigin() .AllowAnyHeader().AllowAnyMethod()); }); services.AddIdentityCore(options => { options.User.RequireUniqueEmail = true; options.Password.RequiredLength = 8; }).AddRoles().AddEntityFrameworkStores().AddDefaultTokenProviders(); // Configuration from AppSettings services.Configure(configuration.GetSection("SmtpCredentials")); services.Configure(configuration.GetSection("Jwt")); // Adding Authentication - JWT services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme) .AddJwtBearer(options => { // options.RequireHttpsMetadata = false; // options.SaveToken = false; options.TokenValidationParameters = new TokenValidationParameters { ValidateIssuerSigningKey = true, ValidateAudience = false, ValidateIssuer = false, ValidateLifetime = true, ValidIssuer = configuration["Jwt:Issuer"], ValidAudience = configuration["Jwt:Audience"], IssuerSigningKey = new SymmetricSecurityKey( Encoding.UTF8.GetBytes(configuration["Jwt:Key"])) }; }); services.AddAuthorization(options => { // options.FallbackPolicy = new AuthorizationPolicyBuilder().RequireAuthenticatedUser().Build(); // Policies for accessing endpoints on a top level based on user role options.AddPolicy(Identity.Roles.User + "Access", policy => policy.RequireRole(Identity.Roles.User.ToString())); options.AddPolicy(Identity.Roles.Driver + "Access", policy => policy.RequireRole(Identity.Roles.Driver.ToString(), Identity.Roles.Company.ToString(), Identity.Roles.Administrator.ToString())); options.AddPolicy(Identity.Roles.Company + "Access", policy => policy.RequireRole(Identity.Roles.Company.ToString(), Identity.Roles.Administrator.ToString())); options.AddPolicy(Identity.Roles.Administrator + "Access", policy => policy.RequireRole(Identity.Roles.Administrator.ToString())); }); services.AddAutoMapper(typeof(MapperInitializer)); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped, SortHelper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); services.AddScoped, Pager>(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped, DataShaper>(); services.AddScoped, DataShaper>(); // Adding DB Context with PostgreSQL var connectionString = configuration.GetConnectionString("DefaultConnection"); services.AddDbContext(options => options.UseNpgsql(connectionString)); var app = builder.Build(); // Data seeding using var scope = app.Services.CreateScope(); var serviceProvider = scope.ServiceProvider; await SeedData.Initialize(serviceProvider); // Configure the HTTP request pipeline. if (app.Environment.IsDevelopment()) { app.UseSwagger(); app.UseSwaggerUI(); } /* app.UseHttpsRedirection(); */ app.UseAuthentication(); app.UseAuthorization(); app.UseCors(); app.MapControllers(); app.Run();