-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStartup.cs
176 lines (127 loc) · 5.62 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
173
174
175
176
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using sb_light_admin.BL.Interfaces;
using sb_light_admin.BL.Repositories;
using sb_light_admin.DAL.Database;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using sb_light_admin.BL.Mapper;
using Newtonsoft.Json.Serialization;
using Microsoft.AspNetCore.Mvc.Razor;
using sb_light_admin.view.Resources;
using System.Globalization;
using Microsoft.AspNetCore.Localization;
using Microsoft.AspNetCore.Identity;
namespace sb_light_admin.view
{
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)
{
services.AddControllersWithViews()
.AddViewLocalization(LanguageViewLocationExpanderFormat.Suffix)
.AddDataAnnotationsLocalization(options =>
{
options.DataAnnotationLocalizerProvider = (type, factory) =>
factory.Create(typeof(SharedResource));
})
.AddNewtonsoftJson(opt => {
opt.SerializerSettings.ContractResolver = new DefaultContractResolver();
});
// add microsoft identity services to write IdentityUser and identityRole to database :
services.AddIdentity<IdentityUser, IdentityRole>(options =>
{
// Default Password settings.
options.Password.RequireDigit = true;
options.Password.RequireLowercase = true;
options.Password.RequireNonAlphanumeric = true;
options.Password.RequireUppercase = true;
options.Password.RequiredLength = 8;
options.Password.RequiredUniqueChars = 0;
}).AddEntityFrameworkStores<DbContainer>()
.AddTokenProvider<DataProtectorTokenProvider<IdentityUser>>(TokenOptions.DefaultProvider);
// add connection string to open database sqlserver source :
// note that you can add multiple connection string by adding the same line underneath but with changing the connection name :
services.AddDbContextPool<DbContainer>(opts =>
opts.UseSqlServer(Configuration.GetConnectionString("sb_light_admin_Connection")));
// add dependency injection (scoped type) into memory :
#region Dependency Injection :
services.AddScoped<IDepartmentMirror, DepartmentMirror>();
services.AddScoped<IEmployeeMirror, EmployeeMirror>();
services.AddScoped<IMailsRep, MailsRep>();
services.AddScoped<ICountryMirror, CountryMirror>();
services.AddScoped<ICityMirror, CityMirror>();
services.AddScoped<IDistrictMirror, DistrictMirror>();
#endregion
// this is to add mapper configuration to map between database and mirrors :
services.AddAutoMapper(x => x.AddProfile(new DomainProfile()));
// this is to add API configuration services :
//services.AddControllers();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
// this region is located for Globlization or Multi-language Configuration :
#region
var supportedCultures = new[] {
new CultureInfo("ar-EG"),
new CultureInfo("en-US"),
};
app.UseRequestLocalization(new RequestLocalizationOptions
{
DefaultRequestCulture = new RequestCulture("en-US"),
SupportedCultures = supportedCultures,
SupportedUICultures = supportedCultures,
RequestCultureProviders = new List<IRequestCultureProvider>
{
new QueryStringRequestCultureProvider(),
new CookieRequestCultureProvider()
}
});
#endregion
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
}
app.UseStaticFiles();
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
// this end point is a reference to Areas (divided your controllers into areas) :
#region
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "areas",
pattern: "{area:exists}/{controller=Home}/{action=Index}/{id?}"
);
});
#endregion
#region api routing :
//app.UseEndpoints(a => a.MapDefaultControllerRoute());
#endregion
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
});
}
}
}