-
Notifications
You must be signed in to change notification settings - Fork 0
/
Startup.cs
76 lines (67 loc) · 2.77 KB
/
Startup.cs
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
using Microsoft.AspNetCore.Authentication.JwtBearer;
using DOTNET_RPG.Services.CharacterSkillService;
using Microsoft.Extensions.DependencyInjection;
using DOTNET_RPG.Services.CharacterService;
using Microsoft.Extensions.Configuration;
using DOTNET_RPG.Services.WeaponService;
using DOTNET_RPG.Services.FightService;
using DOTNET_RPG.Services.AuthService;
using Microsoft.IdentityModel.Tokens;
using Microsoft.EntityFrameworkCore;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Hosting;
using Microsoft.AspNetCore.Http;
using DOTNET_RPG.Data;
using System.Text;
namespace DOTNET_RPG
{
public class Startup
{
public Startup(IConfiguration configuration)
{
_configuration = configuration;
}
public IConfiguration _configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<DataContext>(x => x.UseSqlServer(_configuration.GetConnectionString("DefaultConnection")));
services.AddControllers();
services.AddScoped<ICharacterService, CharacterService>();
services.AddScoped<IAuthRepository, AuthRepository>();
services.AddScoped<IWeaponService, WeaponService>();
services.AddScoped<ICharacterSkillService, CharacterSkillService>();
services.AddScoped<IFightService, FightService>();
services.AddAutoMapper(typeof(Startup));
services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
.AddJwtBearer(options =>
{
options.TokenValidationParameters = new TokenValidationParameters
{
ValidateIssuerSigningKey = true,
IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(_configuration.GetSection("AppSettings").GetSection("Token").Value)),
ValidateIssuer = false,
ValidateAudience = false
};
});
services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
//app.UseHttpsRedirection();
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
}
}