Compare commits
10 Commits
2a782cb9ac
...
main
Author | SHA1 | Date | |
---|---|---|---|
021b7897b5 | |||
16c87e73dd | |||
373e9b91a5 | |||
108f299321 | |||
54359d44ee | |||
4e596be707 | |||
e4b8ed2b99 | |||
7ea2199630 | |||
b5037cd335 | |||
e43ead90af |
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*.log
|
||||
*.tmp
|
34
CreateEffectEndpoint.cs
Normal file
34
CreateEffectEndpoint.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using API.DTO.Effect.Request;
|
||||
using API.DTO.Effect.Response;
|
||||
|
||||
using FastEndpoints;
|
||||
namespace API.Endpoints.Effect;
|
||||
|
||||
public class CreateEffectEndpoint(AppDbContext appDbContext) : Endpoint<CreateEffectDto, GetEffectDto>
|
||||
{
|
||||
public override void Configure()
|
||||
{
|
||||
Post("/effect/create");
|
||||
AllowAnonymous();
|
||||
}
|
||||
|
||||
public override async Task HandleAsync(CreateEffectDto req, CancellationToken ct)
|
||||
{
|
||||
Models.Effect effect = new()
|
||||
{
|
||||
Label = req.Label,
|
||||
};
|
||||
|
||||
appDbContext.Effects.Add(effect);
|
||||
await appDbContext.SaveChangesAsync(ct);
|
||||
Console.WriteLine("Effect added");
|
||||
|
||||
GetEffectDto responseDto = new()
|
||||
{
|
||||
Id = effect.Id,
|
||||
Label = req.Label,
|
||||
};
|
||||
|
||||
await Send.OkAsync(responseDto, ct);
|
||||
}
|
||||
}
|
36
DeleteEffectEndpoint.cs
Normal file
36
DeleteEffectEndpoint.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using FastEndpoints;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace API.Endpoints.Effect;
|
||||
|
||||
public class DeleteEffectRequest
|
||||
{
|
||||
public int Id { get; set; }
|
||||
}
|
||||
public class DeleteEffectEndpoint(AppDbContext appDbContext) : Endpoint<DeleteEffectRequest>
|
||||
{
|
||||
public override void Configure()
|
||||
{
|
||||
Delete("/effects/{@id}", x => new { x.Id });
|
||||
AllowAnonymous();
|
||||
}
|
||||
|
||||
public override async Task HandleAsync(DeleteEffectRequest req, CancellationToken ct)
|
||||
{
|
||||
Models.Effect? effectToDelete = await appDbContext
|
||||
.Effects
|
||||
.SingleOrDefaultAsync(a => a.Id == req.Id, cancellationToken: ct);
|
||||
|
||||
if (effectToDelete == null)
|
||||
{
|
||||
Console.WriteLine($"Aucun effet avec l'ID {req.Id} trouvé.");
|
||||
await Send.NotFoundAsync(ct);
|
||||
return;
|
||||
}
|
||||
|
||||
appDbContext.Effects.Remove(effectToDelete);
|
||||
await appDbContext.SaveChangesAsync(ct);
|
||||
|
||||
await Send.NoContentAsync(ct);
|
||||
}
|
||||
}
|
27
GetAllEffectsEndpoint.cs
Normal file
27
GetAllEffectsEndpoint.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using API.DTO.Effect.Response;
|
||||
using FastEndpoints;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace API.Endpoints.Effect;
|
||||
|
||||
public class GetAllEffectsEndpoint(AppDbContext appDbContext) : EndpointWithoutRequest<List<GetEffectDto>>
|
||||
{
|
||||
public override void Configure()
|
||||
{
|
||||
Get("/effects");
|
||||
AllowAnonymous();
|
||||
}
|
||||
|
||||
public override async Task HandleAsync(CancellationToken ct)
|
||||
{
|
||||
List<GetEffectDto> responseDto = await appDbContext.Effects
|
||||
.Select(a => new GetEffectDto
|
||||
{
|
||||
Id = a.Id,
|
||||
Label = a.Label,
|
||||
}
|
||||
).ToListAsync(ct);
|
||||
|
||||
await Send.OkAsync(responseDto, ct);
|
||||
}
|
||||
}
|
42
GetEffectEndpoint.cs
Normal file
42
GetEffectEndpoint.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using API.DTO.Effect.Response;
|
||||
using FastEndpoints;
|
||||
using Microsoft.AspNetCore.Authentication;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace API.Endpoints.Effect;
|
||||
|
||||
public class GetEffectRequest
|
||||
{
|
||||
public int Id { get; set; }
|
||||
}
|
||||
|
||||
public class GetEffectEndpoint(AppDbContext appDbContext) : Endpoint<GetEffectRequest, GetEffectDto>
|
||||
{
|
||||
public override void Configure()
|
||||
{
|
||||
Get("/effect/{@id}", x => new { x.Id });
|
||||
AllowAnonymous();
|
||||
}
|
||||
|
||||
public override async Task HandleAsync(GetEffectRequest req, CancellationToken ct)
|
||||
{
|
||||
Models.Effect? effect = await appDbContext
|
||||
.Effects
|
||||
.SingleOrDefaultAsync(x => x.Id == req.Id, cancellationToken: ct);
|
||||
|
||||
if (effect == null)
|
||||
{
|
||||
Console.WriteLine("Aucun effet avec l'ID {req.Id} trouvé.");
|
||||
await Send.NotFoundAsync(ct);
|
||||
return;
|
||||
}
|
||||
|
||||
GetEffectDto responseDto = new()
|
||||
{
|
||||
Id = effect.Id,
|
||||
Label = effect.Label,
|
||||
};
|
||||
await Send.OkAsync(responseDto, ct);
|
||||
|
||||
}
|
||||
}
|
42
UpdateEffectEndpoint.cs
Normal file
42
UpdateEffectEndpoint.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using API.DTO.Effect.Request;
|
||||
using API.DTO.Effect.Response;
|
||||
using FastEndpoints;
|
||||
using Microsoft.AspNetCore.Server.Kestrel;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace API.Endpoints.Effect;
|
||||
|
||||
public class UpdateEffectEndpoint(AppDbContext appDbContext) : Endpoint<UpdateEffectDto, GetEffectDto>
|
||||
{
|
||||
public override void Configure()
|
||||
{
|
||||
Put("/effect/{@id}", x => new { x.Id });
|
||||
AllowAnonymous();
|
||||
}
|
||||
|
||||
public override async Task HandleAsync(UpdateEffectDto req, CancellationToken ct)
|
||||
{
|
||||
Models.Effect? effectToEdit = await appDbContext
|
||||
.Effects
|
||||
.SingleOrDefaultAsync(x => x.Id == req.Id, cancellationToken: ct);
|
||||
|
||||
if (effectToEdit == null)
|
||||
{
|
||||
Console.WriteLine("Aucun effet avec l'id {req.Id} trouvé.");
|
||||
await Send.NotFoundAsync(ct);
|
||||
return;
|
||||
|
||||
}
|
||||
effectToEdit.Label = req.Label;
|
||||
await appDbContext.SaveChangesAsync(ct);
|
||||
|
||||
GetEffectDto responseDto = new()
|
||||
{
|
||||
Id = req.Id,
|
||||
Label = req.Label,
|
||||
};
|
||||
await Send.OkAsync(responseDto, ct);
|
||||
|
||||
}
|
||||
|
||||
}
|
1
feature/a/dqzqz
Normal file
1
feature/a/dqzqz
Normal file
@@ -0,0 +1 @@
|
||||
dzqzq
|
18
index.html
Normal file
18
index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Projet Site Web</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Bienvenue sur le site de l'entreprise</h1>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<header>
|
||||
<h2>Entreprise - Service & Solution</h2>
|
||||
</header>
|
||||
|
||||
<footer>
|
||||
<p>© 2024-Entreprise</p>
|
||||
</footer>
|
Reference in New Issue
Block a user