-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartup.cs
114 lines (100 loc) · 4.32 KB
/
Startup.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Mime;
using System.Text.Json;
using System.Threading.Tasks;
using Catalog.Repositories;
using Catalog.Settings;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Diagnostics.HealthChecks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
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 Microsoft.OpenApi.Models;
using MongoDB.Bson;
using MongoDB.Bson.Serialization;
using MongoDB.Bson.Serialization.Serializers;
using MongoDB.Driver;
namespace Catalog
{
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)
{
BsonSerializer.RegisterSerializer(new GuidSerializer(BsonType.String));
BsonSerializer.RegisterSerializer(new DateTimeOffsetSerializer(BsonType.String));
var mongoDbSettings = Configuration.GetSection(nameof(MongoDbSettings)).Get<MongoDbSettings>();
services.AddSingleton<IMongoClient>(serviceProvider =>
{
return new MongoClient(mongoDbSettings.ConnectionString);
});
services.AddSingleton<IItemsRepository, MongoDbItemsRepository>();
services.AddControllers(options =>
{
options.SuppressAsyncSuffixInActionNames = false;
});
services.AddControllers();
services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new OpenApiInfo { Title = "catalog_api_freecodecamp", Version = "v1" });
});
services.AddHealthChecks()
.AddMongoDb(mongoDbSettings.ConnectionString,
name: "mongodb",
timeout: TimeSpan.FromSeconds(3),
tags: new [] { "ready" }
);
}
// 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.UseSwagger();
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "catalog_api_freecodecamp v1"));
app.UseHttpsRedirection();
}
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
endpoints.MapHealthChecks("/health-check/ready", new HealthCheckOptions{
Predicate = (check) => check.Tags.Contains("ready"),
ResponseWriter = async(context, report) =>
{
var result = JsonSerializer.Serialize(
new{
status = report.Status.ToString(),
checks = report.Entries.Select(entry => new {
name = entry.Key,
status = entry.Value.Status.ToString(),
exception = entry.Value.Exception != null ? entry.Value.Exception.Message : "none",
duration = entry.Value.Duration.ToString()
})
}
);
context.Response.ContentType = MediaTypeNames.Application.Json;
await context.Response.WriteAsync(result);
}
});
endpoints.MapHealthChecks("/health-check/live", new HealthCheckOptions{
Predicate = (_) => false
});
});
}
}
}