53 lines
1.6 KiB
C#
53 lines
1.6 KiB
C#
using Microsoft.Extensions.Caching.Memory;
|
|||
|
|
using Microsoft.Extensions.Configuration;
|
||
|
|
using Microsoft.IdentityModel.Tokens;
|
||
|
|
|
||
|
|
namespace JSMachine.WMS.Authorization
|
||
|
|
{
|
||
|
|
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.AddControllers();
|
||
|
|
|
||
|
|
AuthorizationConfigResolver.SetConfig(Configuration);
|
||
|
|
|
||
|
|
services
|
||
|
|
.AddIdentityServer()
|
||
|
|
.AddDeveloperSigningCredential() //���������û��֤�����ʹ�õĿ���������
|
||
|
|
.AddInMemoryApiScopes(AuthorizationConfigResolver.GetApiScopes())
|
||
|
|
.AddInMemoryClients(AuthorizationConfigResolver.GetClients())
|
||
|
|
.AddInMemoryIdentityResources(AuthorizationConfigResolver.IdentityResources);
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
// 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.UseIdentityServer();
|
||
|
|
|
||
|
|
app.UseRouting();
|
||
|
|
|
||
|
|
app.UseAuthorization();
|
||
|
|
|
||
|
|
app.UseEndpoints(endpoints =>
|
||
|
|
{
|
||
|
|
endpoints.MapControllers();
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|