-
Notifications
You must be signed in to change notification settings - Fork 326
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
Feat/allow passing answer from @on to @after hook #683
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -356,10 +356,25 @@ async def _handle_call(self, msg): | |
call_unique_id_required = "call_unique_id" in handler_signature.parameters | ||
# call_unique_id should be passed as kwarg only if is defined explicitly | ||
# in the handler signature | ||
inject_response = getattr(handler, "_inject_response", False) | ||
if call_unique_id_required: | ||
response = handler(**snake_case_payload, call_unique_id=msg.unique_id) | ||
if inject_response: | ||
response = handler( | ||
**snake_case_payload, | ||
call_unique_id=msg.unique_id, | ||
on_response=response_payload, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be better the term "call_response". The "on" prefix is given to functions/callbacks as an action will be performed via that callback function. Here we want to pass an argument.. |
||
) | ||
else: | ||
response = handler( | ||
**snake_case_payload, call_unique_id=msg.unique_id | ||
) | ||
else: | ||
response = handler(**snake_case_payload) | ||
if inject_response: | ||
response = handler( | ||
**snake_case_payload, on_response=response_payload | ||
) | ||
else: | ||
response = handler(**snake_case_payload) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not so "elegant" to have 4 calls to handler(). My suggestion is to use keyword arguments instead, like I did in #264 (comment) . There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This approach was suggested by @tropxy in this comment and clarified by @OrangeTux in a later comment (both authors of this repo). There is no 4 calls to the handler, the handler is only called once depending on the parameters. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @OSkrk what @astrand is suggesting is something like this (right @astrand ?): if "call_unique_id" in handler_signature.parameters:
snake_case_payload["call_unique_id"] = msg.unique_id
if inject_response:
snake_case_payload["on_response"] = response_payload
response = handler(**snake_case_payload) May you try that and see if it works? Note: I have used your current nomenclature, but if you change the code then "on_response" will be "call_response" |
||
# Create task to avoid blocking when making a call inside the | ||
# after handler | ||
if inspect.isawaitable(response): | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ def inner(*args, **kwargs): | |
return decorator | ||
|
||
|
||
def after(action): | ||
def after(action, inject_response=False): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you include notes in the doc strings in respect to the new argument and its purpose? |
||
"""Function decorator to mark function as hook to post-request hook. | ||
|
||
This hook's arguments are the data that is in the payload for the specific | ||
|
@@ -76,6 +76,7 @@ def inner(*args, **kwargs): | |
return func(*args, **kwargs) | ||
|
||
inner._after_action = action | ||
inner._inject_response = inject_response | ||
if func.__name__ not in routables: | ||
routables.append(func.__name__) | ||
return inner | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why check attribute on the handler, instead of checking signature parameters? This opens up for some corner cases, like if inject_response is True but after handler does not accept "on_response" kwarg. Also it is different from how call_unique_id is handled.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@astrand , thanks for your comment. Why would you set the flag to
True
(which defaults toFalse
) to pass the reponse and do not accept it in the @after ?