Skip to content
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

Inject constructed arguments schema into view method #514

Open
juledwar opened this issue May 29, 2023 · 2 comments
Open

Inject constructed arguments schema into view method #514

juledwar opened this issue May 29, 2023 · 2 comments

Comments

@juledwar
Copy link

Using this example from the documentation:

@blp.arguments(PetQueryArgsSchema, location="query")

The arguments decorator will make sure the results of the PetQueryArgsSchema are injected into the wrapped view method, but the schema object is thrown away once finished with.

It would be very useful to also optionally inject the constructed schema object as well, since I have quite a few schemas that set internal context that is required in subsequent processing.

Marshmallow schemas have a similar thing when doing their own @post_dump etc decorators where you can use pass_orig to get at the original data before the schema processed it. I suggest we have a pass_schema to add an extra schema= kwarg to the wrapped method.

It's possible that this needs to happen in the webargs use_args function and not here, but I thought I'd gather opinions on this enhancement before attempting a fix myself.

@lafrech
Copy link
Member

lafrech commented May 30, 2023

Hi.

Before adding another feature, I'd like to see if this can be addressed with current code with a trick on your side.

Do you think you could define a base Schema with a post_load method adding the context as attribute to the deserialized data? (You might need to change the schema dict_class to a type that allows setattr. I think using an attr is better that adding an item to the returned data.)

@juledwar
Copy link
Author

Hmm, an ugly hack, :)

This could work in some situations, but not all (mostly as you say the objects that the schema returns that don't have __setattr__ on them).

My schemas sometimes return SQLAlchemy models, so it does work there but makes me nervous about potential DB column clashes.

However, the biggest problem is that Marshmallow doesn't guarantee the ordering of the post_load methods. So your proposal could end up copying context before it's available.

The cleanest solution would be the one I proposed, I think.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants