mirror of
https://github.com/home-assistant/core.git
synced 2025-04-22 16:27:56 +00:00
Ensure webhooks take HA cloud into account (#97801)
* Ensure webhooks take HA cloud into account * Avoid circular import
This commit is contained in:
parent
05e131452d
commit
3df71eca45
@ -145,16 +145,26 @@ async def async_handle_webhook(
|
||||
return Response(status=HTTPStatus.METHOD_NOT_ALLOWED)
|
||||
|
||||
if webhook["local_only"] in (True, None) and not isinstance(request, MockRequest):
|
||||
if TYPE_CHECKING:
|
||||
assert isinstance(request, Request)
|
||||
assert request.remote is not None
|
||||
try:
|
||||
remote = ip_address(request.remote)
|
||||
except ValueError:
|
||||
_LOGGER.debug("Unable to parse remote ip %s", request.remote)
|
||||
return Response(status=HTTPStatus.OK)
|
||||
if has_cloud := "cloud" in hass.config.components:
|
||||
from hass_nabucasa import remote # pylint: disable=import-outside-toplevel
|
||||
|
||||
if not network.is_local(remote):
|
||||
is_local = True
|
||||
if has_cloud and remote.is_cloud_request.get():
|
||||
is_local = False
|
||||
else:
|
||||
if TYPE_CHECKING:
|
||||
assert isinstance(request, Request)
|
||||
assert request.remote is not None
|
||||
|
||||
try:
|
||||
request_remote = ip_address(request.remote)
|
||||
except ValueError:
|
||||
_LOGGER.debug("Unable to parse remote ip %s", request.remote)
|
||||
return Response(status=HTTPStatus.OK)
|
||||
|
||||
is_local = network.is_local(request_remote)
|
||||
|
||||
if not is_local:
|
||||
_LOGGER.warning("Received remote request for local webhook %s", webhook_id)
|
||||
if webhook["local_only"]:
|
||||
return Response(status=HTTPStatus.OK)
|
||||
|
@ -1,7 +1,7 @@
|
||||
"""Test the webhook component."""
|
||||
from http import HTTPStatus
|
||||
from ipaddress import ip_address
|
||||
from unittest.mock import patch
|
||||
from unittest.mock import Mock, patch
|
||||
|
||||
from aiohttp import web
|
||||
import pytest
|
||||
@ -206,6 +206,8 @@ async def test_webhook_not_allowed_method(hass: HomeAssistant) -> None:
|
||||
|
||||
async def test_webhook_local_only(hass: HomeAssistant, mock_client) -> None:
|
||||
"""Test posting a webhook with local only."""
|
||||
hass.config.components.add("cloud")
|
||||
|
||||
hooks = []
|
||||
webhook_id = webhook.async_generate_id()
|
||||
|
||||
@ -234,6 +236,16 @@ async def test_webhook_local_only(hass: HomeAssistant, mock_client) -> None:
|
||||
# No hook received
|
||||
assert len(hooks) == 1
|
||||
|
||||
# Request from Home Assistant Cloud remote UI
|
||||
with patch(
|
||||
"hass_nabucasa.remote.is_cloud_request", Mock(get=Mock(return_value=True))
|
||||
):
|
||||
resp = await mock_client.post(f"/api/webhook/{webhook_id}", json={"data": True})
|
||||
|
||||
# No hook received
|
||||
assert resp.status == HTTPStatus.OK
|
||||
assert len(hooks) == 1
|
||||
|
||||
|
||||
async def test_listing_webhook(
|
||||
hass: HomeAssistant,
|
||||
|
@ -1,6 +1,6 @@
|
||||
"""The tests for the webhook automation trigger."""
|
||||
from ipaddress import ip_address
|
||||
from unittest.mock import patch
|
||||
from unittest.mock import Mock, patch
|
||||
|
||||
import pytest
|
||||
|
||||
@ -68,6 +68,9 @@ async def test_webhook_post(
|
||||
hass: HomeAssistant, hass_client_no_auth: ClientSessionGenerator
|
||||
) -> None:
|
||||
"""Test triggering with a POST webhook."""
|
||||
# Set up fake cloud
|
||||
hass.config.components.add("cloud")
|
||||
|
||||
events = []
|
||||
|
||||
@callback
|
||||
@ -114,6 +117,16 @@ async def test_webhook_post(
|
||||
await hass.async_block_till_done()
|
||||
assert len(events) == 1
|
||||
|
||||
# Request from Home Assistant Cloud remote UI
|
||||
with patch(
|
||||
"hass_nabucasa.remote.is_cloud_request", Mock(get=Mock(return_value=True))
|
||||
):
|
||||
await client.post("/api/webhook/post_webhook", data={"hello": "world"})
|
||||
|
||||
# No hook received
|
||||
await hass.async_block_till_done()
|
||||
assert len(events) == 1
|
||||
|
||||
|
||||
async def test_webhook_allowed_methods_internet(
|
||||
hass: HomeAssistant, hass_client_no_auth: ClientSessionGenerator
|
||||
@ -141,7 +154,6 @@ async def test_webhook_allowed_methods_internet(
|
||||
},
|
||||
"action": {
|
||||
"event": "test_success",
|
||||
"event_data_template": {"hello": "yo {{ trigger.data.hello }}"},
|
||||
},
|
||||
}
|
||||
},
|
||||
@ -150,7 +162,7 @@ async def test_webhook_allowed_methods_internet(
|
||||
|
||||
client = await hass_client_no_auth()
|
||||
|
||||
await client.post("/api/webhook/post_webhook", data={"hello": "world"})
|
||||
await client.post("/api/webhook/post_webhook")
|
||||
await hass.async_block_till_done()
|
||||
|
||||
assert len(events) == 0
|
||||
@ -160,7 +172,7 @@ async def test_webhook_allowed_methods_internet(
|
||||
"homeassistant.components.webhook.ip_address",
|
||||
return_value=ip_address("123.123.123.123"),
|
||||
):
|
||||
await client.put("/api/webhook/post_webhook", data={"hello": "world"})
|
||||
await client.put("/api/webhook/post_webhook")
|
||||
await hass.async_block_till_done()
|
||||
assert len(events) == 1
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user