コード例 #1
0
        public static IServiceCollection AddSwaggerConfiguration(this IServiceCollection serviceCollection, IConfiguration configuration)
        {
            var authorizeEndpoint = configuration.GetValue <string>("Swagger:AuthorizeEndpoint");
            var tokenEndpoint     = configuration.GetValue <string>("Swagger:TokenEndpoint");

            serviceCollection.AddSwaggerGen(options =>
            {
                options.SwaggerDoc("v1", new OpenApiInfo
                {
                    Title       = Title,
                    Version     = "v1",
                    Contact     = Contact,
                    Description = "Msal demo api for Frontend for breakfast with Bekk"
                });
                options.AddSecurityDefinition(SecurityDefinitionName, new OpenApiSecurityScheme()
                {
                    Type  = SecuritySchemeType.OAuth2,
                    In    = ParameterLocation.Header,
                    Flows = new OpenApiOAuthFlows()
                    {
                        Implicit = new OpenApiOAuthFlow()
                        {
                            AuthorizationUrl = new Uri(authorizeEndpoint),
                            TokenUrl         = new Uri(tokenEndpoint),
                            Scopes           =
                            {
                                {
                                    Scopes.FullScopeName(Scopes.CandidatesRead), "Read candidates"
                                },
                                {
                                    Scopes.FullScopeName(Scopes.VotesCast), "Cast new votes"
                                },
                                {
                                    Scopes.FullScopeName(Scopes.VotesRead), "Read all casted votes"
                                },
                                {
                                    Scopes.FullScopeName(Scopes.ResultsRead), "Read the result"
                                }
                            }
                        }
                    }
                });

                options.OperationFilter <SwaggerAuthenticationRequirementsOperationFilter>();
            });

            return(serviceCollection);
        }
コード例 #2
0
        public static IApplicationBuilder UseSwaggerConfiguration(this IApplicationBuilder app, IConfiguration configuration)
        {
            app.UseSwagger();
            app.UseSwaggerUI(c =>
            {
                c.RoutePrefix = string.Empty;
                c.SwaggerEndpoint(SwaggerEndpoint, Title);
                c.OAuthConfigObject = new OAuthConfigObject()
                {
                    ClientId = configuration.GetValue <string>("Swagger:ClientId"),
                    Scopes   = new[]
                    {
                        Scopes.FullScopeName(Scopes.CandidatesRead),
                        Scopes.FullScopeName(Scopes.VotesCast),
                        Scopes.FullScopeName(Scopes.VotesRead),
                        Scopes.FullScopeName(Scopes.ResultsRead)
                    },
                    ScopeSeparator = " ",
                };
            });

            return(app);
        }