-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
47 lines (34 loc) · 1.71 KB
/
Program.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
using Rotalarim.Data.Abstract;
using Rotalarim.Data.Concrete;
using Rotalarim.Data.Concrete.EfCore;
using Microsoft.EntityFrameworkCore;
using Microsoft.AspNetCore.Authentication.Cookies;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddControllersWithViews();
builder.Services.AddDbContext<RotalarimContext>(options =>{options.UseSqlite(builder.Configuration["ConnectionStrings:Sql_connection"]);});
builder.Services.AddScoped<IPostRepository ,EfPostRepository>();
builder.Services.AddScoped<ITagRepository ,EfTagRepository>();
builder.Services.AddScoped<ICommentRepository ,EfCommentRepository>();
builder.Services.AddScoped<IUserRepository ,EfUserRepository>();//IUser olan kısmı talep edilir EfUser kısmı türetilip gönderilir
builder.Services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme).AddCookie(); //cookie özelliği uygulamaya tanıtıldı
var app = builder.Build();
app.UseStaticFiles();
app.UseRouting(); //aşağıdaki middleware lerden önce mutlaka routing yapılandırılması lazım sıra önemli!
app.UseAuthentication(); //middleware olarak adlandırılırlar
app.UseAuthorization();//yetkilendirme (uygulamanın belli bölümlerini kullanmaya yarar)
SeedData.TestVerileriniDoldur(app);
app.MapControllerRoute(
name : "post_details",
pattern : "posts/details/{url}",
defaults : new {controller = "Posts", action = "Details"} //sayfanın yönlendireceği yer
);
app.MapControllerRoute(
name : "posts_by_tag",
pattern : "posts/tag/{tag}",
defaults : new {controller = "Posts", action = "Index"} //sayfanın yönlendireceği yer
);
app.MapControllerRoute(
name : "default",
pattern : "{controller=Home}/{action=Index}/{id?}"
);
app.Run();