Exemplo n.º 1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IStudentsDbService dbService)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            //
            // app.UseHttpsRedirection();
            //sprawdzanie/obrabianie otrzymanych danych
            //  app.UseMiddleware<LoggingMiddleware>();


            app.Use(async(context, next) =>
            {
                if (!context.Request.Headers.ContainsKey("Index"))
                {
                    //za pomoca streamera odczytac body using(var reader = new StreamReader(context.Request.Body, Encoding.UTF8, true, 102, true)) { await  }
                    context.Response.StatusCode = StatusCodes.Status401Unauthorized;
                    await context.Response.WriteAsync("Nie podano indeksu w naglowku");
                    return;
                }
                else
                {//Sprawdzanie czy w bazie istnieje student o takim indeksie
                    var index = context.Request.Headers["Index"].ToString();
                    if (!dbService.CzyInstnieje(index))
                    {
                        context.Response.StatusCode = StatusCodes.Status401Unauthorized;
                        await context.Response.WriteAsync("NIe istnieje student o danym numerze indeksu");
                        return;
                    }
                }
                await next();
            });

            app.UseRouting();

            app.UseAuthentication();

            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
            });
        }