blob: 0ff05a0cbd8b429fa0741f78c739d4e0f603a1bf (
plain)
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
|
using CrupestApi.Commons;
namespace CrupestApi.Todos;
public static class TodosWebApplicationExtensions
{
public static WebApplication MapTodos(this WebApplication app, string path)
{
if (app is null)
{
throw new ArgumentNullException(nameof(app));
}
app.MapGet(path, async (context) =>
{
var todosService = context.RequestServices.GetRequiredService<TodosService>();
try
{
var todos = await todosService.GetTodosAsync();
await context.Response.WriteJsonAsync(todos);
}
catch (Exception e)
{
await context.Response.WriteMessageAsync(e.Message, statusCode: StatusCodes.Status503ServiceUnavailable);
}
});
return app;
}
}
|