| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- using Microsoft.AspNetCore.Authentication.Cookies;
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.AspNetCore.Http;
- using Microsoft.AspNetCore.HttpsPolicy;
- using Microsoft.Extensions.Configuration;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.FileProviders;
- using Microsoft.Extensions.Hosting;
- using Microsoft.Extensions.Options;
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Pulsa
- {
- 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().AddRazorRuntimeCompilation();
- services.AddSingleton<IConfiguration>(Configuration);
- services.AddLocalization(options => options.ResourcesPath = "Resources");
- services.AddMvc()
- .AddViewLocalization(Microsoft.AspNetCore.Mvc.Razor.LanguageViewLocationExpanderFormat.Suffix)
- .AddDataAnnotationsLocalization();
- services.Configure<RequestLocalizationOptions>(options =>
- {
- var cultures = new List<CultureInfo> {
- new CultureInfo("en"),
- new CultureInfo("te"),
- new CultureInfo("fr")
- };
- options.DefaultRequestCulture = new Microsoft.AspNetCore.Localization.RequestCulture("fr");
- options.SupportedCultures = cultures;
- options.SupportedUICultures = cultures;
- });
- services.AddAntiforgery(o => o.HeaderName = "XSRF-TOKEN");
- services.AddDistributedMemoryCache(); // Adds a default in-memory implementation of IDistributedCache
- services.AddSession(options =>
- {
- options.IdleTimeout = TimeSpan.FromSeconds(600);
- options.Cookie.HttpOnly = true;
- options.Cookie.IsEssential = true;
- //options.Cookie.SecurePolicy = CookieSecurePolicy.Always;
- });
- //services.AddSession();
- services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme).AddCookie();
- services.AddHttpContextAccessor();
- }
- // 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();
- }
- else
- {
- app.UseExceptionHandler("/Home/Error");
- // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
- app.UseHsts();
- }
- app.UseSession();
- app.UseHttpsRedirection();
- app.UseStaticFiles();
- app.UseRequestLocalization(app.ApplicationServices.GetRequiredService<IOptions<RequestLocalizationOptions>>().Value);
- string pathContent = Configuration.GetSection("pathContent").Value;
- if (pathContent != null && pathContent.Length > 0)
- {
- app.UseStaticFiles(new StaticFileOptions()
- {
- FileProvider = new PhysicalFileProvider(Configuration.GetSection("pathOutside").Value),
- RequestPath = new PathString(pathContent)
- });
- }
- app.UseRouting();
- app.UseAuthorization();
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllerRoute(
- name: "default",
- pattern: "{controller=Home}/{action=Index}/{id?}");
- });
- }
- }
- }
|