1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.AspNetCore.Http;
- using Microsoft.AspNetCore.Mvc.Filters;
- using Microsoft.Extensions.Configuration;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.Hosting;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Serialization;
- using Serilog;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using XYY.Core.Standard.Data.Infrastructure;
- using XYY.Service.Standard.RegionService;
- using XYY.Service.Standard.TrackingService;
- using XYY.Service.Standard.UserService;
- using XYY.Core.SwaggerGen.Strandard;
- using Microsoft.OpenApi.Models;
- using XYY.Authentication.Standard;
- namespace XYY.API.Tracking
- {
- 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.
- // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddXYYService(new ServiceOption
- {
- UseRabbit = true
- }, Configuration);
- services.AddAuthentication(BasicAuthenticationScheme.DefaultScheme)
- .AddScheme<BasicAuthenticationOption, BasicAuthenticationHandler>(BasicAuthenticationScheme.DefaultScheme, null
- );
- services.AddCors(option => option.AddPolicy(MyAllowSpecificOrigins, policy =>
- policy.AllowAnyHeader().AllowAnyOrigin().WithMethods("GET", "POST", "HEAD", "PUT", "DELETE", "OPTIONS")));
- services.AddControllers().AddNewtonsoftJson(options =>
- {
- options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
- options.SerializerSettings.NullValueHandling = NullValueHandling.Ignore;
- options.SerializerSettings.ContractResolver = new DefaultContractResolver();
- options.SerializerSettings.DateTimeZoneHandling = DateTimeZoneHandling.Local;
- });
- services.RegionUserService();
- services.AddDB(Configuration["DBConnectionStrings:SqlService"]);
- services.AddSingleton(x => new TrackingES(Configuration[DefaultConfig.ESUrlKey]));
- services.AddScoped<ITraceSupplementConfigService, TraceSupplementConfigService>();
- services.AddSwaggerGen(c =>
- {
- c.SetAuth();
- c.SwaggerDoc("v1", new OpenApiInfo { Title = "KnowledgeBase", Version = "v1" });
- });
- }
- // 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.UseStatusCodePages();
- app.UseRouting();
- app.UseSwagger();
- app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "KnowledgeBase v1"));
- app.UseRouting();
- app.UseCors(MyAllowSpecificOrigins);
- app.UseBasicAuthentication();
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllers();
- });
- }
- }
- }
|