-
Notifications
You must be signed in to change notification settings - Fork 0
/
Startup.cs
99 lines (85 loc) · 3.15 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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Swashbuckle.AspNetCore.Swagger;
namespace convertizzle
{
public class Startup
{
/// <summary>
/// Gets the global application configuration
/// </summary>
/// <returns></returns>
public IConfiguration Configuration { get; }
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
/// <summary>
/// This method gets called by the runtime. Use this method to add services to the container.
/// </summary>
/// <param name="services"></param>
public void ConfigureServices(IServiceCollection services)
{
var connectionString = Configuration.GetConnectionString("CCContext");
services
.AddEntityFrameworkNpgsql()
.AddDbContext<CCContext>(options => options.UseNpgsql(connectionString));
services.AddMvc();
services.AddSwaggerGen(c =>
{
c.AddSecurityDefinition("apiKey", new ApiKeyScheme {
Name = "apiKey",
In = "Header"
});
//c.IncludeXmlComments(GetXmlDocFile());
c.SwaggerDoc("v1", new Info { Title = "My API", Version = "v1", Description = "Main documentation" });
});
}
/// <summary>
/// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
/// </summary>
/// <param name="app"></param>
/// <param name="env"></param>
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
}
app.UseStaticFiles();
app.UseMvc(routes =>
{
routes.MapRoute("default", "{controller=Home}/{action=Index}/{id?}");
});
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "convertizzle API Documentation");
});
}
/// <summary>
/// Gets the created documentation xml file
/// </summary>
/// <returns></returns>
public string GetXmlDocFile()
{
var baseDirectory = AppDomain.CurrentDomain.BaseDirectory;
Console.WriteLine(baseDirectory);
var commentsFileName = Assembly.GetExecutingAssembly().GetName().Name + ".XML";
return Path.Combine(baseDirectory, commentsFileName);
}
}
}