dotnet / aspnetcore

ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
https://asp.net
MIT License
35.36k stars 9.99k forks source link

[Route Groups] Investigate callback based API #41432

Open halter73 opened 2 years ago

halter73 commented 2 years ago

Is there an existing issue for this?

Is your feature request related to a problem? Please describe the problem.

A callback-based version of MapGroup was considered as an [alternative design in the original route grouping issue. In this design, the IEndpointRouteBuilder would be passed to a callback rather than returned from MapGroup.

Describe the solution you'd like

If we use callbacks instead of the return type of MapGroup to define endpoints, it naturally leads to a nested structure in the cod that matches the nested structure of a group. For example:

var builder = WebApplication.CreateBuilder(args);
// ...
var app = builder.Build();

app.MapGroup("/todos", group =>
{
    group.MapGet("/", (int id, TodoDb db) => db.ToListAsync());
    group.MapGet("/{id}", (int id, TodoDb db) => db.GetAsync(id));
    group.MapPost("/", (Todo todo, TodoDb db) => db.AddAsync(todo));

    // string org cannot be an argument to the configureGroup callback because that would require MapGet and other
    // IEndpointRouteBuilder extension methods to be repeatedly called fore every request.
    group.MapGroup("/{org}", nestedGroup =>
    {
        nestedGroup.MapGet("/", (string org, TodoDb db) => db.Filter(todo => todo.Org == org).ToListAsync());
        // ...
    }).RequireAuthorization();
    // ....
}).RequireCors("AllowAll");
// ...

So instead of what we have today:

var builder = WebApplication.CreateBuilder(args);
// ...
var app = builder.Build();

var group = app.MapGroup("/todos");
group.MapGet("/", (int id, TodoDb db) => db.ToListAsync());
group.MapGet("/{id}", (int id, TodoDb db) => db.GetAsync(id));
group.MapPost("/", (Todo todo, TodoDb db) => db.AddAsync(todo));
group.RequireCors("AllowAll");

var nestedGroup = group.MapGroup("/{org}");
nestedGroup.MapGet("/", (string org, TodoDb db) => db.Filter(todo => todo.Org == org).ToListAsync());
nestedGroup.RequireAuthorization();
// ...

You an already manually introduce scopes to get a similar kind of structure with the existing API as demonstrated by https://twitter.com/davidfowl/status/1519480212060139521, but I doubt many people will structure their code like this in practice unless we use callbacks:

var builder = WebApplication.CreateBuilder(args);
// ...
var app = builder.Build();

var group = app.MapGroup("/todos");
{
        group.MapGet("/", (int id, TodoDb db) => db.ToListAsync());
        group.MapGet("/{id}", (int id, TodoDb db) => db.GetAsync(id));
        group.MapPost("/", (Todo todo, TodoDb db) => db.AddAsync(todo));
        group.RequireCors("AllowAll");

        var nestedGroup = group.MapGroup("/{org}");
        {
            nestedGroup.MapGet("/", (string org, TodoDb db) => db.Filter(todo => todo.Org == org).ToListAsync());
            nestedGroup.RequireAuthorization();
        }
}
// ...

Additional context

The current API and a callback-based API are not mutually exclusive. These are different overloads, so both could be supported. I don't like this however, because I think having too many ways to do things does more harm by creating confusion than it helps by providing more flexibility.

If we do decide to support both, we'd need to decide would MapGroup still return a GroupRouteBuilder that you can add endpoints on? And would the callback parameter also be a GroupRouteBuilder meaning you could add both routes and conventions both inside and outside the callback? In our docs, would we normally add endpoints inside the callback and conventions outside the callback like in the sample above?

ghost commented 2 years ago

Thanks for contacting us.

We're moving this issue to the .NET 7 Planning milestone for future evaluation / consideration. We would like to keep this around to collect more feedback, which can help us with prioritizing this work. We will re-evaluate this issue, during our next planning meeting(s). If we later determine, that the issue has no community involvement, or it's very rare and low-impact issue, we will close it - so that the team can focus on more important and high impact issues. To learn more about what to expect next and how this issue will be handled you can read more about our triage process here.

ghost commented 1 year ago

Thanks for contacting us.

We're moving this issue to the .NET 8 Planning milestone for future evaluation / consideration. We would like to keep this around to collect more feedback, which can help us with prioritizing this work. We will re-evaluate this issue, during our next planning meeting(s). If we later determine, that the issue has no community involvement, or it's very rare and low-impact issue, we will close it - so that the team can focus on more important and high impact issues. To learn more about what to expect next and how this issue will be handled you can read more about our triage process here.