-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[QUESTION] CBV Inheritance #2
Comments
Okay, it wasn't super straightforward, but I think I've mostly addressed this now in #3. The main change is that I've added a decorator called I haven't tested it properly yet, but the following at least seems to generate the right OpenAPI schema: from typing import Optional
from fastapi import APIRouter, Depends, FastAPI
from fastapi_utils.cbv import cbv, generic_cbv
def get_a(a: Optional[int]):
return a
def get_b(b: Optional[int]):
return b
router = APIRouter()
@generic_cbv(router)
class GenericCBV:
service: Optional[int] = Depends(None)
model: Optional[int] = Depends(None)
@property
def model_id(self):
return f"{self.model.vertex_label()}_id"
@router.get("/")
async def get_model_list(self):
return self.service.get(self.model.vertex_label())
router_a = APIRouter()
router_b = APIRouter()
@cbv(router_a)
class CBVA(GenericCBV):
service: Optional[int] = Depends(get_a)
model: Optional[int] = Depends(get_a)
@cbv(router_b)
class CBVB(GenericCBV):
service: Optional[int] = Depends(get_b)
model: Optional[int] = Depends(get_b)
app = FastAPI()
app.include_router(router_a, prefix="/a")
app.include_router(router_b, prefix="/b")
# It's ugly, but you can look inside here to confirm it worked as expected:
# * there is a "/a/" route that expects a query parameter with name "a", and
# * there is a "/b/" route that expects a query parameter with name "b"
print(app.openapi()) @bgorges does this seem to you like a good API for this? |
Hmm, actually, I think I can get rid of the separate decorator, and just use (I'll need to make sure this plays nicely with inheritance if you override the parent class methods, but I have some ideas.) |
I've been thinking of it in terms of basic CRUD operations, maybe with the possibility of switching pydantic models within the signatures... Might be too much signature mangling at that point. |
I see, that's useful context. Given this, are you uninterested in the feature as implemented above? The I think the biggest challenge with this now is that you can't change the I think this is a bigger issue with FastAPI that should be addressed there (it would be necessary to make use of the new starlette routing table approach anyway); I've been thinking about it for a while, maybe I'll make a pull request (though I suspect the change will be a little controversial at best). |
I second giving it more thought. It would be very useful to make CRUD operations code fore 15-ish models much easier to maintain, but if it becomes complicated then there is no real benefit. ;) I might have to look at starlette routing and see what that looks like. That said I am very happy to have found fastapi and your contributions, I was struggling to make marshmallow dance. |
Hi, First of all, big props to @dmontagu for providing these very useful fastapi utils. I would really like this feature also. It's been a while since the last comment, any update on when this might make it? The PR has some conflicts, so I'm guessing there are some issues to resolve. For context my problems are around use of Depends and Request in a base class as class BaseCBV:
def __init__(
self,
request: Request,
some_dependency: SomeClass = Depends(get_some_dependency),
):
self._some_depedency = some_depedency
self._request = request
@cbv(router)
class ChildCBV(BaseCBV):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs) As is, this complains about the request: If I move request from the If I simply move the Thanks |
router is not inhertable of class cbv only wraps class properities to dependancies even refactoring the cbv to have those methods and give them to the router is not enough so the solution we are looking for is a registerable class |
Description
How might I go about writing a CBV that can be inherited from? I want to make a generic class that just needs the class variables set to populate the default CRUD operations that are in the generic base class.
"First" attempt
I am pretty sure I am either missing something or this isn't possible yet. Thanks!
The text was updated successfully, but these errors were encountered: