-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartup.cs
172 lines (148 loc) · 6.71 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
using System;
using System.Collections.Generic;
using System.DirectoryServices.AccountManagement;
using System.Linq;
using System.Security.Claims;
using System.Security.Principal;
using System.Threading.Tasks;
using AutoMapper;
using JSNLog;
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Server.IISIntegration;
using Microsoft.AspNetCore.SpaServices.Webpack;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Caching.Memory;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json.Serialization;
using AspNetCoreVueTypescriptStarter.Infrastructure.Services;
namespace AspNetCoreVueTypescriptStarter
{
public class Startup
{
public IConfiguration Configuration { get; }
private readonly ILogger _logger;
public Startup(IConfiguration configuration,
ILoggerFactory loggerFactory)
{
Configuration = configuration;
_logger = loggerFactory.CreateLogger<Startup>();
}
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
var applicationConfig = new ApplicationConfig();
Configuration.Bind("Application", applicationConfig);
services.AddSingleton(applicationConfig);
services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
services.AddTransient<IPrincipal>(provider => provider.GetService<IHttpContextAccessor>().HttpContext.User);
services.AddAuthentication(IISDefaults.AuthenticationScheme); //win auth
services.AddMemoryCache();
services.AddResponseCaching();
services.AddResponseCompression();
services.AddAutoMapper();
services.AddMvc(setup => { setup.ReturnHttpNotAcceptable = true; })
.AddJsonOptions(options =>
{
//options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
options.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();
});
services.AddAuthorization(options =>
{
//TODO add policies
});
services.AddAntiforgery(opt => { opt.HeaderName = "X-XSRF-TOKEN"; });
//***********************//
//* Database contexts
//***********************//
//todo add dbs
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app,
IHostingEnvironment env,
IApplicationLifetime appLifetime,
ILoggerFactory loggerFactory)
{
appLifetime.ApplicationStarted.Register(OnStarted);
appLifetime.ApplicationStopping.Register(OnStopping);
appLifetime.ApplicationStopped.Register(OnStopped);
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions
{
EnvironmentVariables = new Dictionary<string, string>()
{
{ "env", "development" }
},
HotModuleReplacement = false,
ConfigFile = "webpack.dev.config.js"
});
app.UseBrowserLink();
app.UseDeveloperExceptionPage();
}
else
{
app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions
{
EnvironmentVariables = new Dictionary<string, string>()
{
{ "env", "production" }
},
HotModuleReplacement = false,
ConfigFile = "webpack.prod.config.js"
});
app.UseExceptionHandler("/Error/Error");
}
var hostingEnvironment = app.ApplicationServices.GetService<IHostingEnvironment>();
_logger.LogInformation("^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^");
_logger.LogInformation($"ApplicationName: {hostingEnvironment.ApplicationName}");
_logger.LogInformation($"EnvironmentName: {hostingEnvironment.EnvironmentName}");
_logger.LogInformation($"WebRootPath: {hostingEnvironment.WebRootPath}");
_logger.LogInformation($"ContentRootPath: {hostingEnvironment.ContentRootPath}");
_logger.LogInformation("***********************************************************");
var jsnlogConfig = new JsnlogConfiguration
{
consoleAppenders = new List<ConsoleAppender> { new ConsoleAppender { name = "consoleAppender" } },
ajaxAppenders = new List<AjaxAppender> { new AjaxAppender { name = "ajaxAppender", maxBatchSize = 100 } },
loggers = new List<Logger> { new Logger { appenders = "ajaxAppender;consoleAppender" } }
};
app.UseJSNLog(new LoggingAdapter(loggerFactory), jsnlogConfig);
app.UseStatusCodePagesWithReExecute("/error/{0}");
//app.UseStaticFiles();
app.UseStaticFilesWithCache(TimeSpan.FromDays(30));
app.UseResponseCaching();
app.UseResponseCompression();
app.UseAuthentication();
//InitMapper();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Root}/{action=Index}/{id?}");
});
}
private void OnStarted()
{
_logger.LogInformation("-----------------------");
_logger.LogInformation("Website Rev'ing up");
_logger.LogInformation("-----------------------");
}
private void OnStopping()
{
_logger.LogInformation("--------------------------");
_logger.LogInformation("Website Stopping");
_logger.LogInformation("--------------------------");
}
private void OnStopped()
{
_logger.LogInformation("***********************************************************");
_logger.LogInformation("* Website Stopped");
_logger.LogInformation("***********************************************************");
}
}
}