mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
request: Store client information using ZulipRequestNotes.
This concludes the HttpRequest migration to eliminate arbitrary attributes (except private ones that are belong to django) attached to the request object during runtime and migrated them to a separate data structure dedicated for the purpose of adding information (so called notes) to a HttpRequest.
This commit is contained in:
@@ -5,7 +5,7 @@ from django.http import HttpRequest, HttpResponse
|
||||
|
||||
from zerver.decorator import webhook_view
|
||||
from zerver.lib.actions import check_send_private_message
|
||||
from zerver.lib.request import REQ, has_request_variables
|
||||
from zerver.lib.request import REQ, get_request_notes, has_request_variables
|
||||
from zerver.lib.response import json_success
|
||||
from zerver.models import UserProfile, get_user
|
||||
|
||||
@@ -35,5 +35,7 @@ def api_dialogflow_webhook(
|
||||
body = f"{status} - {error_status}"
|
||||
|
||||
receiving_user = get_user(email, user_profile.realm)
|
||||
check_send_private_message(user_profile, request.client, receiving_user, body)
|
||||
client = get_request_notes(request).client
|
||||
assert client is not None
|
||||
check_send_private_message(user_profile, client, receiving_user, body)
|
||||
return json_success()
|
||||
|
||||
Reference in New Issue
Block a user