1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- using Microsoft.AspNetCore.Authentication.JwtBearer;
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.Extensions.Configuration;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.Hosting;
- using Microsoft.IdentityModel.Tokens;
- using Newtonsoft.Json;
- using Quartz;
- using Quartz.Impl;
- using System;
- using System.Text;
- using System.Text.Json.Serialization;
- using wispro.sp.api.Job;
- namespace wispro.sp.api
- {
- public class Startup
- {
- readonly string MyAllowSpecificOrigins = "_myAllowSpecificOrigins";
- 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.AddCors(options =>
- {
- options.AddPolicy(MyAllowSpecificOrigins,
- builder =>
- {
- builder.AllowAnyOrigin()
- .AllowAnyMethod()
- .AllowAnyHeader();
- });
- });
-
- services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme).AddJwtBearer(option =>
- {
- option.TokenValidationParameters = new TokenValidationParameters
- {
- ValidateIssuer = false,
- ValidateAudience = false,
- ValidateLifetime = true,
- ValidateIssuerSigningKey = true,
- ValidIssuer = Configuration["jwt:Issuer"],
- IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(Configuration["jwt:Key"])),
- ClockSkew = TimeSpan.Zero
- };
- });
- services.AddControllers().AddNewtonsoftJson(o =>
- {
- o.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore;
- o.SerializerSettings.DefaultValueHandling = DefaultValueHandling.Ignore;
- o.SerializerSettings.NullValueHandling = NullValueHandling.Ignore;
-
- });
- services.AddDbContext<spDbContext>(optionsAction =>
- optionsAction.UseSqlServer(Configuration.GetConnectionString("DefaultConnect"))
- );
- services.AddSingleton<ISchedulerFactory, StdSchedulerFactory>();
- }
- // 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.UseCors(MyAllowSpecificOrigins);
- app.UseHttpsRedirection();
- app.UseRouting();
- app.UseAuthentication();
- app.UseAuthorization();
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllers();
- });
-
- }
- }
- }
|