|
@@ -0,0 +1,75 @@
|
|
|
|
+using Microsoft.AspNetCore.Builder;
|
|
|
|
+using Microsoft.AspNetCore.Hosting;
|
|
|
|
+using Microsoft.AspNetCore.HttpsPolicy;
|
|
|
|
+using Microsoft.AspNetCore.Mvc;
|
|
|
|
+using Microsoft.Extensions.Configuration;
|
|
|
|
+using Microsoft.Extensions.DependencyInjection;
|
|
|
|
+using Microsoft.Extensions.Hosting;
|
|
|
|
+using Microsoft.Extensions.Logging;
|
|
|
|
+using System;
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
+using System.Linq;
|
|
|
|
+using System.Threading.Tasks;
|
|
|
|
+using TEAMModelOS.SDK.DI;
|
|
|
|
+
|
|
|
|
+namespace TEAMModelAPI
|
|
|
|
+{
|
|
|
|
+ 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.WithOrigins("http://teammodelos-test.chinacloudsites.cn",
|
|
|
|
+ "https://www.teammodel.cn", "https://localhost:5001",
|
|
|
|
+ "http://localhost:5000", "http://localhost:64524",
|
|
|
|
+ "https://localhost:44341", "https://localhost:8888", "http://localhost:8888")
|
|
|
|
+ .AllowAnyHeader()
|
|
|
|
+ .AllowAnyMethod();
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+ services.AddControllers().AddJsonOptions(options => { options.JsonSerializerOptions.IgnoreNullValues = false; });
|
|
|
|
+ services.AddAzureStorage(Configuration.GetValue<string>("Azure:Storage:ConnectionString"));
|
|
|
|
+ services.AddAzureRedis(Configuration.GetValue<string>("Azure:Redis:ConnectionString"));
|
|
|
|
+ services.AddAzureCosmos(Configuration.GetValue<string>("Azure:Cosmos:ConnectionString"));
|
|
|
|
+ services.AddMemoryCache();
|
|
|
|
+ services.AddSnowflakeId(Convert.ToInt64(Configuration.GetValue<string>("Option:LocationNum")), 1);
|
|
|
|
+ services.AddHttpClient();
|
|
|
|
+ services.AddHttpClient<DingDing>();
|
|
|
|
+ services.AddAzureServiceBus(Configuration.GetValue<string>("Azure:ServiceBus:ConnectionString"));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 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.UseCors(MyAllowSpecificOrigins); //使用跨域設定
|
|
|
|
+ app.UseAuthentication();
|
|
|
|
+ app.UseAuthorization();
|
|
|
|
+ app.UseEndpoints(endpoints =>
|
|
|
|
+ {
|
|
|
|
+ endpoints.MapControllers();
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|