change name of all api routes

This commit is contained in:
2025-11-18 08:36:35 +01:00
parent 95d321234d
commit 5771af2c2e
28 changed files with 35 additions and 29 deletions

View File

@@ -8,7 +8,7 @@ public class CreateAuthorEndpoint(LibraryDbContext database) : Endpoint<CreateAu
{
public override void Configure()
{
Post("/api/authors");
Post("/authors");
Roles("admin");
}

View File

@@ -14,7 +14,7 @@ public class DeleteAuthorEndpoint(LibraryDbContext database) : Endpoint<DeleteAu
{
public override void Configure()
{
Delete("/api/authors/{@Id}", x => new {x.Id});
Delete("/authors/{@Id}", x => new {x.Id});
Roles("admin");
}

View File

@@ -9,7 +9,7 @@ public class GetAllAuthorsEndpoint(LibraryDbContext database) : EndpointWithoutR
{
public override void Configure()
{
Get("/api/authors");
Get("/authors");
Roles("viewer", "admin", "librarian");
}

View File

@@ -15,7 +15,7 @@ public class GetAuthorEndpoint(LibraryDbContext database) : Endpoint<GetAuthorRe
{
public override void Configure()
{
Get("/api/authors/{@Id}", x => new {x.Id});
Get("/authors/{@Id}", x => new {x.Id});
Roles("viewer", "admin", "librarian");
}

View File

@@ -10,7 +10,7 @@ public class UpdateAuthorEndpoint(LibraryDbContext database) : Endpoint<UpdateAu
{
public override void Configure()
{
Put("/api/authors/{@Id}", x => new {x.Id});
Put("/authors/{@Id}", x => new {x.Id});
Roles("admin");
}

View File

@@ -9,7 +9,7 @@ public class CreateBookEndpoint(LibraryDbContext database) : Endpoint<CreateBook
{
public override void Configure()
{
Post("/api/books");
Post("/books");
Roles("admin");
}

View File

@@ -15,7 +15,7 @@ public class DeleteBookEndpoint(LibraryDbContext database) : Endpoint<DeleteBook
{
public override void Configure()
{
Delete("/api/books/{@Id}", x => new {x.Id});
Delete("/books/{@Id}", x => new {x.Id});
Roles("admin");
}

View File

@@ -8,7 +8,7 @@ public class GetAllBooksEndpoint(LibraryDbContext database) : EndpointWithoutReq
{
public override void Configure()
{
Get("/api/books");
Get("/books");
Roles("viewer", "admin", "librarian"); }
public override async Task HandleAsync(CancellationToken ct)

View File

@@ -13,7 +13,7 @@ public class GetBookEndpoint(LibraryDbContext database) : Endpoint<GetBookReques
{
public override void Configure()
{
Get("/api/books/{@Id}", x => new {x.Id});
Get("/books/{@Id}", x => new {x.Id});
Roles("viewer", "admin", "librarian"); }
public override async Task HandleAsync(GetBookRequest req, CancellationToken ct)

View File

@@ -9,7 +9,7 @@ public class UpdateBookEndpoint(LibraryDbContext database) : Endpoint<UpdateBook
{
public override void Configure()
{
Put("/api/books/{@Id}", x => new {x.Id});
Put("/books/{@Id}", x => new {x.Id});
Roles("admin");
}

View File

@@ -9,7 +9,7 @@ public class CreateLoanEndpoint(LibraryDbContext database) : Endpoint<CreateLoan
{
public override void Configure()
{
Post("/api/loans");
Post("/loans");
Roles("admin", "librarian");
}

View File

@@ -15,7 +15,7 @@ public class DeleteLoanEndpoint(LibraryDbContext database) : Endpoint<DeleteLoan
{
public override void Configure()
{
Delete("/api/loans/{@Id}", x => new {x.Id});
Delete("/loans/{@Id}", x => new {x.Id});
Roles("admin");
}

View File

@@ -8,7 +8,7 @@ public class GetAllLoanEndpoint(LibraryDbContext database) : EndpointWithoutRequ
{
public override void Configure()
{
Get("/api/loans");
Get("/loans");
Roles("viewer", "admin", "librarian"); }
public override async Task HandleAsync(CancellationToken ct)

View File

@@ -13,7 +13,7 @@ public class GetLoanEndpoint(LibraryDbContext database) : Endpoint<GetLoanReques
{
public override void Configure()
{
Get("/api/loans/{@Id}", x => new {x.Id});
Get("/loans/{@Id}", x => new {x.Id});
Roles("viewer", "admin", "librarian"); }
public override async Task HandleAsync(GetLoanRequest req, CancellationToken ct)

View File

@@ -9,7 +9,7 @@ public class PatchLoanEndpoint(LibraryDbContext database) : Endpoint<PatchLoanDt
{
public override void Configure()
{
Patch("/api/loans/{@Id}/EffectiveReturningDate", x => new {x.Id});
Patch("/loans/{@Id}/EffectiveReturningDate", x => new {x.Id});
Roles("admin", "librarian");
}

View File

@@ -9,7 +9,7 @@ public class UpdateLoanEndpoint(LibraryDbContext database) : Endpoint<UpdateLoan
{
public override void Configure()
{
Put("/api/loans/{@Id}", x => new {x.Id});
Put("/loans/{@Id}", x => new {x.Id});
Roles("admin", "librarian");
}

View File

@@ -9,7 +9,7 @@ public class CreateLoginEndpoint(LibraryDbContext database) : Endpoint<CreateLog
{
public override void Configure()
{
Post("/api/logins");
Post("/logins");
AllowAnonymous();
}

View File

@@ -14,7 +14,7 @@ public class DeleteLoginEndpoint(LibraryDbContext database) : Endpoint<DeleteLog
{
public override void Configure()
{
Delete("/api/logins/{@Id}", x => new {x.Id});
Delete("/logins/{@Id}", x => new {x.Id});
}
public override async Task HandleAsync(DeleteLoginRequest req, CancellationToken ct)

View File

@@ -9,7 +9,7 @@ public class GetAllLoginEndpoint(LibraryDbContext database) : EndpointWithoutReq
{
public override void Configure()
{
Get("/api/logins");
Get("/logins");
}
public override async Task HandleAsync(CancellationToken ct)

View File

@@ -13,7 +13,7 @@ public class GetLoginEndpoint(LibraryDbContext database) : Endpoint<GetLoginRequ
{
public override void Configure()
{
Get("/api/logins/{@Id}", x => new {x.Id});
Get("/logins/{@Id}", x => new {x.Id});
}
public override async Task HandleAsync(GetLoginRequest req, CancellationToken ct)

View File

@@ -11,7 +11,7 @@ public class UpdateLoginEndpoint(LibraryDbContext database) : Endpoint<UpdateLog
{
public override void Configure()
{
Put("/api/logins/{@Id}", x => new {x.Id});
Put("/logins/{@Id}", x => new {x.Id});
}
public override async Task HandleAsync(UpdateLoginDto req, CancellationToken ct)

View File

@@ -10,7 +10,7 @@ public class UserLoginEndpoint(LibraryDbContext database) : Endpoint<ConnectLogi
{
public override void Configure()
{
Post("/api/login");
Post("/login");
AllowAnonymous();
}

View File

@@ -8,7 +8,7 @@ public class CreateUserEndpoint(LibraryDbContext database) : Endpoint<CreateUser
{
public override void Configure()
{
Post("/api/users");
Post("/users");
Roles("admin");
}

View File

@@ -14,7 +14,7 @@ public class DeleteUserEndpoint(LibraryDbContext database) : Endpoint<DeleteUser
{
public override void Configure()
{
Delete("/api/users/{@Id}", x => new {x.Id});
Delete("/users/{@Id}", x => new {x.Id});
Roles("admin");
}

View File

@@ -9,7 +9,7 @@ public class GetAllUsersEndpoint(LibraryDbContext database) : EndpointWithoutReq
{
public override void Configure()
{
Get("/api/users");
Get("/users");
Roles("viewer", "admin", "librarian"); }
public override async Task HandleAsync(CancellationToken ct)

View File

@@ -15,7 +15,7 @@ public class GetUserEndpoint(LibraryDbContext database) : Endpoint<GetUserReques
{
public override void Configure()
{
Get("/api/users/{@Id}", x => new {x.Id});
Get("/users/{@Id}", x => new {x.Id});
Roles("viewer", "admin", "librarian"); }
public override async Task HandleAsync(GetUserRequest req, CancellationToken ct)

View File

@@ -9,7 +9,7 @@ public class UpdateUserEndpoint(LibraryDbContext database) : Endpoint<UpdateUser
{
public override void Configure()
{
Put("/api/users/{@Id}", x => new {x.Id});
Put("/users/{@Id}", x => new {x.Id});
Roles("admin");
}

View File

@@ -10,7 +10,10 @@ builder.Services
.AddAuthenticationJwtBearer(s => s.SigningKey = "ThisIsASuperSecretJwtKeyThatIsAtLeast32CharsLong")
.AddAuthorization()
.AddFastEndpoints()
.SwaggerDocument();
.SwaggerDocument(options =>
{
options.ShortSchemaNames = true;
});
// On ajoute ici la configuration de la base de données
builder.Services.AddDbContext<LibraryDbContext>();
@@ -19,7 +22,10 @@ builder.Services.AddDbContext<LibraryDbContext>();
WebApplication app = builder.Build();
app.UseAuthentication()
.UseAuthorization()
.UseFastEndpoints()
.UseFastEndpoints(options =>
{
options.Endpoints.RoutePrefix = "API";
})
.UseSwaggerGen();
app.UseHttpsRedirection();