2019-04-03 15:40:03 +00:00
|
|
|
"""Support for IP Cameras."""
|
2021-08-11 00:33:06 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
import asyncio
|
2016-02-19 05:27:50 +00:00
|
|
|
from contextlib import closing
|
2019-12-09 13:20:40 +00:00
|
|
|
import logging
|
2015-11-29 21:49:05 +00:00
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
import aiohttp
|
2017-01-19 18:18:32 +00:00
|
|
|
import async_timeout
|
2015-11-29 21:49:05 +00:00
|
|
|
import requests
|
2016-08-17 17:08:47 +00:00
|
|
|
from requests.auth import HTTPBasicAuth, HTTPDigestAuth
|
2016-08-27 20:42:34 +00:00
|
|
|
import voluptuous as vol
|
2015-11-29 21:49:05 +00:00
|
|
|
|
2019-12-09 13:20:40 +00:00
|
|
|
from homeassistant.components.camera import PLATFORM_SCHEMA, Camera
|
2016-08-27 20:42:34 +00:00
|
|
|
from homeassistant.const import (
|
2019-12-09 13:20:40 +00:00
|
|
|
CONF_AUTHENTICATION,
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_NAME,
|
|
|
|
CONF_PASSWORD,
|
2019-12-09 13:20:40 +00:00
|
|
|
CONF_USERNAME,
|
|
|
|
CONF_VERIFY_SSL,
|
2019-07-31 19:25:30 +00:00
|
|
|
HTTP_BASIC_AUTHENTICATION,
|
|
|
|
HTTP_DIGEST_AUTHENTICATION,
|
|
|
|
)
|
2019-12-09 13:20:40 +00:00
|
|
|
from homeassistant.helpers import config_validation as cv
|
2017-01-19 17:55:27 +00:00
|
|
|
from homeassistant.helpers.aiohttp_client import (
|
2019-07-31 19:25:30 +00:00
|
|
|
async_aiohttp_proxy_web,
|
2019-12-09 13:20:40 +00:00
|
|
|
async_get_clientsession,
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2016-02-07 09:08:55 +00:00
|
|
|
|
2016-08-27 20:42:34 +00:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_MJPEG_URL = "mjpeg_url"
|
|
|
|
CONF_STILL_IMAGE_URL = "still_image_url"
|
|
|
|
CONTENT_TYPE_HEADER = "Content-Type"
|
2015-11-09 04:15:06 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
DEFAULT_NAME = "Mjpeg Camera"
|
2018-12-18 10:22:47 +00:00
|
|
|
DEFAULT_VERIFY_SSL = True
|
2015-11-09 04:15:06 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_MJPEG_URL): cv.url,
|
|
|
|
vol.Optional(CONF_STILL_IMAGE_URL): cv.url,
|
|
|
|
vol.Optional(CONF_AUTHENTICATION, default=HTTP_BASIC_AUTHENTICATION): vol.In(
|
|
|
|
[HTTP_BASIC_AUTHENTICATION, HTTP_DIGEST_AUTHENTICATION]
|
|
|
|
),
|
|
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
|
|
vol.Optional(CONF_PASSWORD): cv.string,
|
|
|
|
vol.Optional(CONF_USERNAME): cv.string,
|
|
|
|
vol.Optional(CONF_VERIFY_SSL, default=DEFAULT_VERIFY_SSL): cv.boolean,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
|
2017-04-30 05:04:49 +00:00
|
|
|
"""Set up a MJPEG IP Camera."""
|
2019-01-03 18:56:36 +00:00
|
|
|
filter_urllib3_logging()
|
|
|
|
|
|
|
|
if discovery_info:
|
|
|
|
config = PLATFORM_SCHEMA(discovery_info)
|
|
|
|
async_add_entities([MjpegCamera(config)])
|
|
|
|
|
|
|
|
|
|
|
|
def filter_urllib3_logging():
|
|
|
|
"""Filter header errors from urllib3 due to a urllib3 bug."""
|
2018-10-02 08:24:44 +00:00
|
|
|
urllib3_logger = logging.getLogger("urllib3.connectionpool")
|
2019-07-31 19:25:30 +00:00
|
|
|
if not any(isinstance(x, NoHeaderErrorFilter) for x in urllib3_logger.filters):
|
|
|
|
urllib3_logger.addFilter(NoHeaderErrorFilter())
|
2018-10-02 08:24:44 +00:00
|
|
|
|
2015-11-09 04:15:06 +00:00
|
|
|
|
2016-08-09 00:34:46 +00:00
|
|
|
def extract_image_from_mjpeg(stream):
|
2016-08-11 09:14:24 +00:00
|
|
|
"""Take in a MJPEG stream object, return the jpg from it."""
|
2019-07-31 19:25:30 +00:00
|
|
|
data = b""
|
2018-11-21 22:12:16 +00:00
|
|
|
|
2018-12-12 10:44:50 +00:00
|
|
|
for chunk in stream:
|
2016-08-09 00:34:46 +00:00
|
|
|
data += chunk
|
2019-07-31 19:25:30 +00:00
|
|
|
jpg_end = data.find(b"\xff\xd9")
|
2018-12-12 10:44:50 +00:00
|
|
|
|
|
|
|
if jpg_end == -1:
|
|
|
|
continue
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
jpg_start = data.find(b"\xff\xd8")
|
2018-12-12 10:44:50 +00:00
|
|
|
|
|
|
|
if jpg_start == -1:
|
|
|
|
continue
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
return data[jpg_start : jpg_end + 2]
|
2016-08-09 00:34:46 +00:00
|
|
|
|
|
|
|
|
2015-11-09 04:15:06 +00:00
|
|
|
class MjpegCamera(Camera):
|
2016-03-07 19:29:54 +00:00
|
|
|
"""An implementation of an IP camera that is reachable over a URL."""
|
2015-11-09 04:15:06 +00:00
|
|
|
|
2018-09-15 09:26:29 +00:00
|
|
|
def __init__(self, device_info):
|
2016-03-07 19:29:54 +00:00
|
|
|
"""Initialize a MJPEG camera."""
|
2015-11-09 04:15:06 +00:00
|
|
|
super().__init__()
|
2016-08-27 20:42:34 +00:00
|
|
|
self._name = device_info.get(CONF_NAME)
|
|
|
|
self._authentication = device_info.get(CONF_AUTHENTICATION)
|
|
|
|
self._username = device_info.get(CONF_USERNAME)
|
|
|
|
self._password = device_info.get(CONF_PASSWORD)
|
|
|
|
self._mjpeg_url = device_info[CONF_MJPEG_URL]
|
2017-01-24 19:25:51 +00:00
|
|
|
self._still_image_url = device_info.get(CONF_STILL_IMAGE_URL)
|
2015-11-09 04:15:06 +00:00
|
|
|
|
2016-10-28 04:40:10 +00:00
|
|
|
self._auth = None
|
2021-03-27 09:03:15 +00:00
|
|
|
if (
|
|
|
|
self._username
|
|
|
|
and self._password
|
|
|
|
and self._authentication == HTTP_BASIC_AUTHENTICATION
|
|
|
|
):
|
|
|
|
self._auth = aiohttp.BasicAuth(self._username, password=self._password)
|
2018-12-18 10:22:47 +00:00
|
|
|
self._verify_ssl = device_info.get(CONF_VERIFY_SSL)
|
2016-10-24 06:48:01 +00:00
|
|
|
|
2021-08-11 00:33:06 +00:00
|
|
|
async def async_camera_image(
|
|
|
|
self, width: int | None = None, height: int | None = None
|
|
|
|
) -> bytes | None:
|
2017-01-19 17:53:08 +00:00
|
|
|
"""Return a still image response from the camera."""
|
|
|
|
# DigestAuth is not supported
|
2019-07-31 19:25:30 +00:00
|
|
|
if (
|
|
|
|
self._authentication == HTTP_DIGEST_AUTHENTICATION
|
|
|
|
or self._still_image_url is None
|
|
|
|
):
|
2020-10-13 19:56:57 +00:00
|
|
|
image = await self.hass.async_add_executor_job(self.camera_image)
|
2017-01-19 17:53:08 +00:00
|
|
|
return image
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
websession = async_get_clientsession(self.hass, verify_ssl=self._verify_ssl)
|
2017-01-19 17:53:08 +00:00
|
|
|
try:
|
2021-11-04 15:07:50 +00:00
|
|
|
async with async_timeout.timeout(10):
|
2019-07-31 19:25:30 +00:00
|
|
|
response = await websession.get(self._still_image_url, auth=self._auth)
|
2017-01-19 17:53:08 +00:00
|
|
|
|
2018-10-01 06:50:05 +00:00
|
|
|
image = await response.read()
|
2017-01-19 17:53:08 +00:00
|
|
|
return image
|
|
|
|
|
|
|
|
except asyncio.TimeoutError:
|
2020-04-03 08:11:08 +00:00
|
|
|
_LOGGER.error("Timeout getting camera image from %s", self._name)
|
2017-01-19 17:53:08 +00:00
|
|
|
|
2017-03-30 07:50:53 +00:00
|
|
|
except aiohttp.ClientError as err:
|
2020-04-03 08:11:08 +00:00
|
|
|
_LOGGER.error("Error getting new camera image from %s: %s", self._name, err)
|
2017-01-19 17:53:08 +00:00
|
|
|
|
2021-08-11 00:33:06 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
def camera_image(
|
|
|
|
self, width: int | None = None, height: int | None = None
|
|
|
|
) -> bytes | None:
|
2016-10-24 06:48:01 +00:00
|
|
|
"""Return a still image response from the camera."""
|
2016-02-07 09:08:55 +00:00
|
|
|
if self._username and self._password:
|
2016-08-27 20:42:34 +00:00
|
|
|
if self._authentication == HTTP_DIGEST_AUTHENTICATION:
|
2021-08-11 00:33:06 +00:00
|
|
|
auth: HTTPDigestAuth | HTTPBasicAuth = HTTPDigestAuth(
|
|
|
|
self._username, self._password
|
|
|
|
)
|
2016-08-17 17:08:47 +00:00
|
|
|
else:
|
|
|
|
auth = HTTPBasicAuth(self._username, self._password)
|
2016-10-24 06:48:01 +00:00
|
|
|
req = requests.get(
|
2018-12-18 10:22:47 +00:00
|
|
|
self._mjpeg_url,
|
|
|
|
auth=auth,
|
|
|
|
stream=True,
|
|
|
|
timeout=10,
|
2019-07-31 19:25:30 +00:00
|
|
|
verify=self._verify_ssl,
|
2018-12-18 10:22:47 +00:00
|
|
|
)
|
2016-02-07 09:08:55 +00:00
|
|
|
else:
|
2016-10-24 06:48:01 +00:00
|
|
|
req = requests.get(self._mjpeg_url, stream=True, timeout=10)
|
2016-02-07 09:08:55 +00:00
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
with closing(req) as response:
|
|
|
|
return extract_image_from_mjpeg(response.iter_content(102400))
|
2016-02-07 09:08:55 +00:00
|
|
|
|
2018-07-23 12:36:36 +00:00
|
|
|
async def handle_async_mjpeg_stream(self, request):
|
2016-03-07 16:45:06 +00:00
|
|
|
"""Generate an HTTP MJPEG stream from the camera."""
|
2016-10-24 06:48:01 +00:00
|
|
|
# aiohttp don't support DigestAuth -> Fallback
|
|
|
|
if self._authentication == HTTP_DIGEST_AUTHENTICATION:
|
2018-11-01 08:28:23 +00:00
|
|
|
return await super().handle_async_mjpeg_stream(request)
|
2016-10-24 06:48:01 +00:00
|
|
|
|
|
|
|
# connect to stream
|
2019-07-31 19:25:30 +00:00
|
|
|
websession = async_get_clientsession(self.hass, verify_ssl=self._verify_ssl)
|
2017-01-19 17:55:27 +00:00
|
|
|
stream_coro = websession.get(self._mjpeg_url, auth=self._auth)
|
2016-11-30 21:05:58 +00:00
|
|
|
|
2018-07-23 12:36:36 +00:00
|
|
|
return await async_aiohttp_proxy_web(self.hass, request, stream_coro)
|
2015-11-09 04:15:06 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
2016-03-07 16:45:06 +00:00
|
|
|
"""Return the name of this camera."""
|
2015-11-09 04:15:06 +00:00
|
|
|
return self._name
|
2018-10-01 18:39:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NoHeaderErrorFilter(logging.Filter):
|
|
|
|
"""Filter out urllib3 Header Parsing Errors due to a urllib3 bug."""
|
|
|
|
|
|
|
|
def filter(self, record):
|
|
|
|
"""Filter out Header Parsing Errors."""
|
|
|
|
return "Failed to parse headers" not in record.getMessage()
|