-
-
Notifications
You must be signed in to change notification settings - Fork 322
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
Usage recommandation to add checks on provided value #870
Comments
This looks like perfect use case for contextvars. In combination with DI, you can have a |
Interesting, didn't know my_context_var: ContextVar[MyContext] = ContextVar("my_context")
class MyContainer(containers.DeclarativeContainer):
my_context = providers.Callable(my_context_var.get)
some_service = providers.Factory(MyService, my_context) Then I can manage the def request_handler(rqst):
reset_token = my_context_var.set(MyContext(customer_id=rqst.customer_id))
try:
process(rqst)
finally:
my_context_var.reset(reset_token) That being said, I am still curious to know whether it's possible or not to have a custom validation logic on the provided value, beyond the I thought (but not tried yet) about overriding the Any idea ? |
I do not think there is an elegant way to handle the validation the way to described. Indeed you can override |
I am trying to implement a behavior that is really close to ThreadLocalSingleton scopes.
I have a container that is created when app starts. It holds data about the current customer.
So when the app starts, the value is
None
.But at runtime, I want to forbid any injection if the current value is None.
Of course, I would like to keep this DI logic near containers.
(No
if not context: ...
inMyService
below)I am currently able to do this kind of tricks by having 2 providers like below.
my_context
will be overrode within each requests._safe_my_context
will validate it before being injected in other components.I'm not 100% comfortable with this.
I am feeling like there's room for a
DelegatedThreadLocalSingleton
that could acceptMyContext | None
but would provide only aMyContext
. Just didn't find examples ofDelegate...
of how to implement it properly.Thanks for the lib!
The text was updated successfully, but these errors were encountered: